diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml index 4f067327d..b9391bc6d 100644 --- a/.github/workflows/build_tests.yml +++ b/.github/workflows/build_tests.yml @@ -21,9 +21,9 @@ jobs: os: [windows-latest, macOS-13, ubuntu-latest] fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -37,7 +37,7 @@ jobs: python setup.py bdist_wheel ls dist/* - name: Save wheel - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: wntr_${{ matrix.python-version }}_${{ matrix.os }}.whl path: dist/wntr* @@ -52,11 +52,11 @@ jobs: fail-fast: false steps: - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Download wheel - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: wntr_${{ matrix.python-version }}_${{ matrix.os }}.whl - name: Install wntr @@ -76,9 +76,9 @@ jobs: os: [windows-latest, macOS-13, ubuntu-latest] fail-fast: false steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -94,33 +94,35 @@ jobs: coverage run --context=${{ matrix.os }}.py${{ matrix.python-version }} --source=wntr --omit="*/tests/*","*/sim/network_isolation/network_isolation.py","*/sim/aml/evaluator.py" --append -m pytest --doctest-glob="*.rst" documentation env: COVERAGE_FILE: .coverage.${{ matrix.python-version }}.${{ matrix.os }} - - name: Save coverage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: - name: coverage + name: .coverage.${{ matrix.python-version }}.${{ matrix.os }} path: .coverage.${{ matrix.python-version }}.${{ matrix.os }} + include-hidden-files: true combine_reports: needs: [ pytest_coverage ] runs-on: ubuntu-latest steps: - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.11 - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install coverage run: | python -m pip install --upgrade pip pip install -r requirements.txt python -m pip install -e . - # pip install coveralls + pip install coveralls - name: Download coverage artifacts from test matrix - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: - name: coverage + pattern: .coverage.*.ubuntu-latest # coverage from other OS cause problems - name: Setup coverage and combine reports + run: coverage combine .coverage.*.ubuntu-latest + - name: Create coverage report run: | echo "[paths]" > .coveragerc echo "source = " >> .coveragerc @@ -129,55 +131,21 @@ jobs: echo " D:\\a\\WNTR\\WNTR\\wntr" >> .coveragerc echo " /home/runner/work/WNTR/WNTR/wntr" >> .coveragerc echo " /Users/runner/work/WNTR/WNTR/wntr" >> .coveragerc - coverage combine - - name: Create coverage report - run: | + echo " ${{ github.workspace }}/wntr" >> .coveragerc coverage report coverage json --pretty-print coverage html --show-contexts - name: Save coverage JSON - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-json path: coverage.json - name: Save coverage html - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-html path: htmlcov - - combine_reports_upload_coveralls: - needs: [ pytest_coverage ] - runs-on: ubuntu-latest - continue-on-error: true - steps: - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: 3.11 - - uses: actions/checkout@v2 - - name: Install coverage - run: | - python -m pip install --upgrade pip - pip install coveralls - pip install -r requirements.txt - python -m pip install -e . - - name: Download coverage artifacts from test matrix - uses: actions/download-artifact@v2 - with: - name: coverage - - name: Setup coverage and combine reports - run: | - echo "[paths]" > .coveragerc - echo "source = " >> .coveragerc - echo " wntr/" >> .coveragerc - echo " wntr\\" >> .coveragerc - echo " D:\\a\\WNTR\\WNTR\\wntr" >> .coveragerc - echo " /home/runner/work/WNTR/WNTR/wntr" >> .coveragerc - echo " /Users/runner/work/WNTR/WNTR/wntr" >> .coveragerc - coverage combine - name: Push to coveralls - run: | - coveralls --service=github + run: coveralls --service=github --rcfile=.coveragerc env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0e4de3db7..a976f3e41 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,48 +10,72 @@ on: jobs: wheels: + name: Build distribution 📦 on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-2019, macOS-13, ubuntu-20.04] + os: [windows-latest, macOS-13, macos-13, ubuntu-latest] steps: - - uses: actions/checkout@v3 + - name: Harden Runner + uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 + with: + egress-policy: audit + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - name: Build wheels - uses: pypa/cibuildwheel@v2.11.1 + uses: pypa/cibuildwheel@79b0dd328794e1180a7268444d46cdf12e1abd01 # v2.21.0 env: CIBW_ENVIRONMENT: BUILD_WNTR_EXTENSIONS='true' - CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* cp311-* + CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* cp312-* CIBW_SKIP: "*-win32 *-manylinux_i686 pp* *-musllinux*" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 with: + name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl source: + name: Make SDist artifact 📦 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - name: Harden Runner + uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 + with: + egress-policy: audit + + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/setup-python@v5 with: python-version: '3.11' - - name: build the sdist - run: | - python -m pip install --upgrade build - python -m build --sdist - - uses: actions/upload-artifact@v3 + + - name: Build SDist + run: pipx run build --sdist + + - uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 with: + name: cibw-sdist path: dist/*.tar.gz publish-to-pypi: + name: Publish Python 🐍 distribution 📦 to PyPI needs: [wheels, source] runs-on: ubuntu-latest + environment: + name: release + permissions: + id-token: write if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') steps: - - uses: actions/download-artifact@v3 + - name: Harden Runner + uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 + with: + egress-policy: audit + + - uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 with: - name: artifact + pattern: cibw-* path: dist + merge-multiple: true - - uses: pypa/gh-action-pypi-publish@release/v1 + - uses: pypa/gh-action-pypi-publish@0ab0b79471669eb3a4d647e625009c62f9f3b241 # release/v1 with: user: __token__ password: ${{ secrets.PYPI_WNTR_API_TOKEN }} diff --git a/examples/data/ky4_buildings.geojson b/examples/data/ky4_buildings.geojson new file mode 100644 index 000000000..e578888f4 --- /dev/null +++ b/examples/data/ky4_buildings.geojson @@ -0,0 +1,13584 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:EPSG::3089" } }, +"features": [ +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992524.844144077040255, 3912464.814681003335863 ], [ 4992539.527522400952876, 3912464.125373985152692 ], [ 4992540.887643307447433, 3912493.987958315294236 ], [ 4992526.20428126398474, 3912494.677264603320509 ], [ 4992524.844144077040255, 3912464.814681003335863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989555.76655978616327, 3908142.486671866383404 ], [ 4989514.591538593173027, 3908143.474427244160324 ], [ 4989513.842499650083482, 3908098.320063515566289 ], [ 4989555.016664321534336, 3908097.69643741985783 ], [ 4989555.76655978616327, 3908142.486671866383404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989136.07798876054585, 3908331.500325657427311 ], [ 4989133.377270347438753, 3908374.82530385022983 ], [ 4989088.181001670658588, 3908372.162224669475108 ], [ 4989090.593731635250151, 3908328.83651502802968 ], [ 4989136.07798876054585, 3908331.500325657427311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988542.497339894063771, 3906794.824156222864985 ], [ 4988543.833041404373944, 3906836.338597384281456 ], [ 4988502.943080443888903, 3906837.692753417417407 ], [ 4988501.606404493562877, 3906796.542444376274943 ], [ 4988542.497339894063771, 3906794.824156222864985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989379.407892041839659, 3908656.558569110929966 ], [ 4989419.729470983147621, 3908651.198848527856171 ], [ 4989424.818576316349208, 3908687.98918060772121 ], [ 4989384.784040023572743, 3908693.713754320051521 ], [ 4989379.407892041839659, 3908656.558569110929966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989312.298376974649727, 3908552.974756169132888 ], [ 4989293.576628546230495, 3908555.840400203131139 ], [ 4989294.996829905547202, 3908563.490786466281861 ], [ 4989271.089886457659304, 3908567.435713585466146 ], [ 4989263.141688733361661, 3908522.627254230435938 ], [ 4989306.059280549176037, 3908515.453270398080349 ], [ 4989312.298376974649727, 3908552.974756169132888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986741.518124177120626, 3903466.941601010039449 ], [ 4986754.697192433290184, 3903494.647725028917193 ], [ 4986745.471579669974744, 3903498.994818556122482 ], [ 4986752.348187103867531, 3903513.212712292559445 ], [ 4986718.041034237481654, 3903529.150904669426382 ], [ 4986701.138764808885753, 3903493.060702605172992 ], [ 4986719.589982968755066, 3903484.366488322615623 ], [ 4986717.012466455809772, 3903478.534103179816157 ], [ 4986741.518124177120626, 3903466.941601010039449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986532.861950524151325, 3914318.320417859591544 ], [ 4986546.600938466377556, 3914350.397608020808548 ], [ 4986519.225870260968804, 3914362.347504276316613 ], [ 4986505.487740393728018, 3914329.906195960938931 ], [ 4986532.861950524151325, 3914318.320417859591544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988349.566071102395654, 3905878.54892756883055 ], [ 4988372.885739776305854, 3905880.063697604462504 ], [ 4988371.394184722565114, 3905900.815507729072124 ], [ 4988393.274123843759298, 3905902.326699275989085 ], [ 4988390.884156142361462, 3905936.913288086652756 ], [ 4988345.685533432289958, 3905933.523201799485832 ], [ 4988349.566071102395654, 3905878.54892756883055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988317.333035354502499, 3907602.271227876655757 ], [ 4988357.619602262973785, 3907611.475129833910614 ], [ 4988349.761100723408163, 3907645.319835632573813 ], [ 4988309.474581954069436, 3907636.115945272613317 ], [ 4988317.333035354502499, 3907602.271227876655757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988314.189804442226887, 3906092.934496013913304 ], [ 4988360.253800765611231, 3906095.598427059594542 ], [ 4988359.653367326594889, 3906105.428498384542763 ], [ 4988379.806412415578961, 3906106.571234481409192 ], [ 4988378.0114601617679, 3906133.512537615839392 ], [ 4988344.615043883211911, 3906131.608467376325279 ], [ 4988343.41328115388751, 3906151.632741231936961 ], [ 4988326.715538163669407, 3906150.498657415620983 ], [ 4988327.910925650969148, 3906133.023292778991163 ], [ 4988311.789049155078828, 3906131.890655815601349 ], [ 4988314.189804442226887, 3906092.934496013913304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986371.485363468527794, 3908691.339247579686344 ], [ 4986375.735198737122118, 3908719.751904823817313 ], [ 4986357.878501928411424, 3908722.257557680364698 ], [ 4986359.296000191941857, 3908731.364312125369906 ], [ 4986341.151401189155877, 3908733.869278436526656 ], [ 4986340.302662996575236, 3908727.676965042483062 ], [ 4986305.453024411574006, 3908732.690421080682427 ], [ 4986300.921376343816519, 3908701.72816319251433 ], [ 4986371.485363468527794, 3908691.339247579686344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986151.700965493917465, 3908616.160235408227891 ], [ 4986102.736465924419463, 3908624.052925048395991 ], [ 4986095.645864575169981, 3908579.611616660840809 ], [ 4986088.445400480180979, 3908580.686637917067856 ], [ 4986082.774123056791723, 3908544.623812076169997 ], [ 4986071.541104412637651, 3908546.417373220901936 ], [ 4986057.64325549826026, 3908459.356127673760056 ], [ 4986106.319248081184924, 3908451.82679227925837 ], [ 4986113.411624628119171, 3908495.539838770870119 ], [ 4986120.324198507703841, 3908494.464129134546965 ], [ 4986126.566867628134787, 3908532.349005188327283 ], [ 4986137.799895874224603, 3908530.555467071011662 ], [ 4986151.700965493917465, 3908616.160235408227891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985833.59530923794955, 3909797.36902340175584 ], [ 4985829.463180033490062, 3909839.59852000605315 ], [ 4985818.813519515097141, 3909838.480525023303926 ], [ 4985817.634793411009014, 3909849.765815732069314 ], [ 4985779.928703561425209, 3909846.033896359149367 ], [ 4985781.110912323929369, 3909833.292080368846655 ], [ 4985769.885447939857841, 3909832.172721802722663 ], [ 4985771.948841282166541, 3909812.150361513253301 ], [ 4985784.613813444040716, 3909813.273178538307548 ], [ 4985786.678968468680978, 3909792.522557808551937 ], [ 4985833.59530923794955, 3909797.36902340175584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985824.687799703329802, 3910149.464267047122121 ], [ 4985875.67172040976584, 3910138.662862745579332 ], [ 4985886.773531901650131, 3910191.124734250362962 ], [ 4985835.789706132374704, 3910201.926117843482643 ], [ 4985824.687799703329802, 3910149.464267047122121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985727.899197921156883, 3910052.372413250152022 ], [ 4985735.274407769553363, 3910098.270880114752799 ], [ 4985703.593525151722133, 3910103.292722332291305 ], [ 4985696.21826261933893, 3910057.394264027010649 ], [ 4985727.899197921156883, 3910052.372413250152022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985677.134469956159592, 3904447.888453532010317 ], [ 4985704.732964058406651, 3904466.889488834422082 ], [ 4985655.322979304939508, 3904537.412594407331198 ], [ 4985623.988065043464303, 3904515.489603481255472 ], [ 4985645.658111456781626, 3904484.954451331868768 ], [ 4985636.74627633113414, 3904478.742856392171234 ], [ 4985650.325635394081473, 3904459.840542152989656 ], [ 4985662.686850407160819, 3904468.609331962652504 ], [ 4985677.134469956159592, 3904447.888453532010317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987748.882091622799635, 3908451.472274734638631 ], [ 4987756.580973728559911, 3908481.714349918067455 ], [ 4987711.637540947645903, 3908493.255389792844653 ], [ 4987700.22724412754178, 3908450.259501545224339 ], [ 4987717.800838335417211, 3908445.933376329485327 ], [ 4987721.224283716641366, 3908458.68649216555059 ], [ 4987748.882091622799635, 3908451.472274734638631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987550.705354178324342, 3913970.880475249141455 ], [ 4987571.276134146377444, 3913917.039420573506504 ], [ 4987600.897413202561438, 3913928.400721683166921 ], [ 4987580.326582388952374, 3913982.241754056420177 ], [ 4987550.705354178324342, 3913970.880475249141455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985573.48242428060621, 3910576.353957742452621 ], [ 4985555.238916371017694, 3910620.734533228911459 ], [ 4985526.189777533523738, 3910609.012757657561451 ], [ 4985544.434116677381098, 3910564.268031679093838 ], [ 4985573.48242428060621, 3910576.353957742452621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987162.060730162076652, 3894379.633195188362151 ], [ 4987185.254206138662994, 3894319.2445501354523 ], [ 4987212.307386354543269, 3894329.506547017022967 ], [ 4987189.113858288154006, 3894389.895169102121145 ], [ 4987162.060730162076652, 3894379.633195188362151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987078.794668326154351, 3908377.359775034245104 ], [ 4987096.652554955333471, 3908374.490471304394305 ], [ 4987095.520525437779725, 3908366.476777167059481 ], [ 4987112.225866800174117, 3908363.968792055267841 ], [ 4987113.0762242320925, 3908369.432867366820574 ], [ 4987146.775718222372234, 3908364.053504946175963 ], [ 4987151.882280968129635, 3908395.017311322968453 ], [ 4987083.618744979612529, 3908406.138080023229122 ], [ 4987078.794668326154351, 3908377.359775034245104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985208.050491478294134, 3909406.978640255052596 ], [ 4985219.094020774587989, 3909363.673117304220796 ], [ 4985248.730859386734664, 3909371.026353491935879 ], [ 4985237.687285258434713, 3909414.331864449661225 ], [ 4985208.050491478294134, 3909406.978640255052596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985045.742114120163023, 3905132.770656434819102 ], [ 4985078.044414328411222, 3905110.99944774620235 ], [ 4985090.956327960826457, 3905130.329112394712865 ], [ 4985122.393085904419422, 3905109.284164514858276 ], [ 4985145.061505099758506, 3905142.838192882947624 ], [ 4985080.747468660585582, 3905185.288783431984484 ], [ 4985045.742114120163023, 3905132.770656434819102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984857.213618122972548, 3915192.227791140321642 ], [ 4984879.25930389482528, 3915242.166390364523977 ], [ 4984832.579815546050668, 3915262.811509044375271 ], [ 4984810.534921824000776, 3915212.508815303444862 ], [ 4984857.213618122972548, 3915192.227791140321642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987038.441324755549431, 3894748.557890220545232 ], [ 4987062.490371509455144, 3894691.44838889176026 ], [ 4987094.433139096945524, 3894704.635278911329806 ], [ 4987070.384036073461175, 3894761.744752111379057 ], [ 4987038.441324755549431, 3894748.557890220545232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986835.685856072232127, 3908185.231456719338894 ], [ 4986781.244611422531307, 3908195.294338252395391 ], [ 4986774.14258342795074, 3908155.95068962033838 ], [ 4986828.583905019797385, 3908145.887793944217265 ], [ 4986835.685856072232127, 3908185.231456719338894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984766.201884089037776, 3904863.379126719664782 ], [ 4984735.050491297617555, 3904885.517557917162776 ], [ 4984743.373588064685464, 3904897.189442160073668 ], [ 4984721.45220928452909, 3904912.795325929764658 ], [ 4984687.297620641067624, 3904865.377532621845603 ], [ 4984699.989043395966291, 3904856.304199766367674 ], [ 4984692.527195471338928, 3904845.726758190430701 ], [ 4984708.391274054534733, 3904834.476128743961453 ], [ 4984714.992699383758008, 3904843.595015124883503 ], [ 4984739.797965407371521, 3904826.175280833616853 ], [ 4984766.201884089037776, 3904863.379126719664782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984441.53176143951714, 3916797.807588844560087 ], [ 4984452.770647551864386, 3916792.007878736592829 ], [ 4984442.168234855867922, 3916771.955532154999673 ], [ 4984461.764351503923535, 3916761.805873858276755 ], [ 4984471.79453144967556, 3916780.400342930108309 ], [ 4984491.968018582090735, 3916769.523796455934644 ], [ 4984503.71826567966491, 3916791.035404051654041 ], [ 4984490.749845742247999, 3916797.92342443484813 ], [ 4984501.066101964563131, 3916817.246847648173571 ], [ 4984487.809013272635639, 3916824.498324363026768 ], [ 4984495.260733901523054, 3916837.988848515786231 ], [ 4984470.188280748203397, 3916851.40280393185094 ], [ 4984441.53176143951714, 3916797.807588844560087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984416.286166444420815, 3907824.76963839866221 ], [ 4984390.071645866148174, 3907830.534144343342632 ], [ 4984384.371403243392706, 3907805.759739111643285 ], [ 4984410.58594673499465, 3907799.995227697771043 ], [ 4984416.286166444420815, 3907824.76963839866221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986559.445372845046222, 3897216.555308339186013 ], [ 4986534.82798180449754, 3897271.843305194750428 ], [ 4986475.268501399084926, 3897245.481336965691298 ], [ 4986500.17382884118706, 3897190.193985617719591 ], [ 4986559.445372845046222, 3897216.555308339186013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986512.348376963287592, 3904867.563117041252553 ], [ 4986514.170720370486379, 3904828.60542788496241 ], [ 4986560.526778691448271, 3904830.538711564615369 ], [ 4986561.132774984464049, 3904818.159699377603829 ], [ 4986587.908902018330991, 3904819.681317837443203 ], [ 4986584.867355226539075, 3904886.310063922777772 ], [ 4986548.588854985311627, 3904884.765356135554612 ], [ 4986549.489876201376319, 3904869.474004820454866 ], [ 4986512.348376963287592, 3904867.563117041252553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986469.058291415683925, 3910008.280567955691367 ], [ 4986465.9391447333619, 3909988.609810666646808 ], [ 4986479.186873908154666, 3909986.821305520832539 ], [ 4986476.637340445071459, 3909969.700861627236009 ], [ 4986510.332930609583855, 3909965.048957373015583 ], [ 4986512.318145423196256, 3909977.434303793590516 ], [ 4986518.366660105995834, 3909976.35659759119153 ], [ 4986521.481346746906638, 3909997.848015419673175 ], [ 4986527.529857211746275, 3909996.770311271306127 ], [ 4986531.209712359122932, 3910022.632700623013079 ], [ 4986485.993865728378296, 3910029.077269244473428 ], [ 4986482.594793039374053, 3910006.128632391337305 ], [ 4986469.058291415683925, 3910008.280567955691367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986204.259425963275135, 3906049.517524217721075 ], [ 4986194.682592598721385, 3906080.445611258968711 ], [ 4986175.691756444983184, 3906074.937736226711422 ], [ 4986166.114085220731795, 3906106.229963989462703 ], [ 4986118.639208996668458, 3906091.550026725511998 ], [ 4986123.862563994713128, 3906074.812556602992117 ], [ 4986131.343727665953338, 3906077.015412257518619 ], [ 4986145.562709570862353, 3906031.533226833213121 ], [ 4986204.259425963275135, 3906049.517524217721075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984337.910610482096672, 3909444.611860571429133 ], [ 4984364.127823513001204, 3909437.026643567718565 ], [ 4984372.412876194342971, 3909464.356073071248829 ], [ 4984346.194832305423915, 3909472.305412987247109 ], [ 4984337.910610482096672, 3909444.611860571429133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984185.008566810749471, 3917073.21933731297031 ], [ 4984150.711689228191972, 3917092.802268793340772 ], [ 4984118.31906699296087, 3917036.649699933826923 ], [ 4984152.903815071098506, 3917017.067401834763587 ], [ 4984185.008566810749471, 3917073.21933731297031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986081.251451048068702, 3909175.662281926255673 ], [ 4986080.775800941511989, 3909134.149987312499434 ], [ 4986092.868781115859747, 3909133.815036821644753 ], [ 4986092.896023600362241, 3909122.526983851101249 ], [ 4986112.474599074572325, 3909122.210108881816268 ], [ 4986112.447348365560174, 3909133.498161824885756 ], [ 4986134.041266415268183, 3909133.186167936772108 ], [ 4986134.495729713700712, 3909183.437601488083601 ], [ 4986107.432504788041115, 3909183.37225892720744 ], [ 4986107.4518425418064, 3909175.361382387112826 ], [ 4986081.251451048068702, 3909175.662281926255673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986076.054802793078125, 3902855.771916494239122 ], [ 4986053.27057723980397, 3902869.918092994019389 ], [ 4986018.271980498917401, 3902814.121609073597938 ], [ 4986051.727115979418159, 3902793.446765829343349 ], [ 4986063.489308656193316, 3902812.045834324322641 ], [ 4986058.585831953212619, 3902815.311191964894533 ], [ 4986070.634228381328285, 3902834.639216975774616 ], [ 4986065.154805625788867, 3902837.903184273745865 ], [ 4986076.054802793078125, 3902855.771916494239122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986056.668972028419375, 3910176.240418222267181 ], [ 4986108.230486610904336, 3910164.712581993080676 ], [ 4986119.335349958389997, 3910215.718026482965797 ], [ 4986067.774806827306747, 3910226.881710783578455 ], [ 4986056.668972028419375, 3910176.240418222267181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985976.744426664896309, 3902360.313836129847914 ], [ 4985970.114753826521337, 3902362.846789068542421 ], [ 4985985.001989579759538, 3902399.295780124142766 ], [ 4985954.15839234739542, 3902411.601968748960644 ], [ 4985919.805921997874975, 3902326.312547411303967 ], [ 4985956.991303831338882, 3902311.47266895417124 ], [ 4985976.744426664896309, 3902360.313836129847914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985957.646767147816718, 3909333.397985326591879 ], [ 4985970.601616841740906, 3909333.793321501463652 ], [ 4985970.903556172735989, 3909327.9679223774001 ], [ 4985992.494683709926903, 3909328.748207055032253 ], [ 4985992.508722685277462, 3909322.922114425804466 ], [ 4986018.706336008384824, 3909323.71352068008855 ], [ 4986017.445871273986995, 3909368.862962848972529 ], [ 4986002.187801807187498, 3909368.462053092662245 ], [ 4986001.870059942826629, 3909380.841806420590729 ], [ 4985973.369265541434288, 3909380.04486805293709 ], [ 4985973.686994284391403, 3909367.665114385541528 ], [ 4985956.701495473273098, 3909367.260069187264889 ], [ 4985957.646767147816718, 3909333.397985326591879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983484.735920979641378, 3909865.380362426396459 ], [ 4983509.49863943643868, 3909863.981201959308237 ], [ 4983509.768818870186806, 3909871.628619947005063 ], [ 4983540.577417980879545, 3909870.243499012198299 ], [ 4983540.31146839633584, 3909860.77542576380074 ], [ 4983564.786294703371823, 3909859.375648782588542 ], [ 4983566.990673808380961, 3909901.984317055903375 ], [ 4983486.94464397802949, 3909906.168369286227971 ], [ 4983484.735920979641378, 3909865.380362426396459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985731.104567197151482, 3904757.165829817764461 ], [ 4985761.604097229428589, 3904767.070592375937849 ], [ 4985763.632887782528996, 3904761.613484821747988 ], [ 4985803.626133102923632, 3904775.182407607790083 ], [ 4985788.835541761480272, 3904818.842706912662834 ], [ 4985718.343736402690411, 3904795.004927684087306 ], [ 4985731.104567197151482, 3904757.165829817764461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985695.196161577478051, 3910843.555280230008066 ], [ 4985649.673062527552247, 3910858.739716617390513 ], [ 4985639.380630861036479, 3910828.856121744960546 ], [ 4985684.904647921212018, 3910813.307537076529115 ], [ 4985695.196161577478051, 3910843.555280230008066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985684.317793857306242, 3909617.49304576497525 ], [ 4985706.121095574460924, 3909769.752928420435637 ], [ 4985657.737248769961298, 3909776.555423445533961 ], [ 4985655.473326154984534, 3909760.164011678192765 ], [ 4985647.408621959388256, 3909761.601212402340025 ], [ 4985645.145564476028085, 3909744.845670763868839 ], [ 4985652.633599440567195, 3909743.771220036782324 ], [ 4985650.649716323241591, 3909730.65767714753747 ], [ 4985642.58587624784559, 3909731.730748394504189 ], [ 4985640.034039529971778, 3909715.338648382108659 ], [ 4985647.522082504816353, 3909714.264196242205799 ], [ 4985645.825222996994853, 3909701.515474895015359 ], [ 4985637.473473287187517, 3909702.587857627309859 ], [ 4985634.925121007487178, 3909684.739234868902713 ], [ 4985636.941302569583058, 3909684.379933530464768 ], [ 4985632.69258900731802, 3909655.239114382304251 ], [ 4985637.588661348447204, 3909654.522581406403333 ], [ 4985635.891793217509985, 3909641.773861160501838 ], [ 4985627.540025356225669, 3909642.84624693589285 ], [ 4985624.989043227396905, 3909626.090018388815224 ], [ 4985684.317793857306242, 3909617.49304576497525 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985559.737787306308746, 3910184.513807867653668 ], [ 4985604.670483827590942, 3910175.882204192690551 ], [ 4985609.219250199384987, 3910199.925883993506432 ], [ 4985597.986083019524813, 3910202.083775986451656 ], [ 4985602.821874104440212, 3910226.492275633849204 ], [ 4985557.313471991568804, 3910235.122504486236721 ], [ 4985552.762922289781272, 3910211.807094942778349 ], [ 4985564.571873031556606, 3910209.650562361814082 ], [ 4985559.737787306308746, 3910184.513807867653668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985445.983603128232062, 3903691.033704924862832 ], [ 4985481.981901871971786, 3903690.027327998075634 ], [ 4985484.115034879185259, 3903761.402226819191128 ], [ 4985448.692761121317744, 3903762.409976804628968 ], [ 4985447.891497633419931, 3903736.190584730822593 ], [ 4985437.811852241866291, 3903736.530638938769698 ], [ 4985437.285496637225151, 3903715.773878687992692 ], [ 4985446.789219317026436, 3903715.432448461651802 ], [ 4985445.983603128232062, 3903691.033704924862832 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983364.193643503822386, 3894251.883488188032061 ], [ 4983366.381748117506504, 3894177.606126223690808 ], [ 4983384.240246472880244, 3894178.375655480660498 ], [ 4983383.926089405082166, 3894189.662943646777421 ], [ 4983437.215173390693963, 3894191.242680502124131 ], [ 4983435.662810537032783, 3894239.668313182890415 ], [ 4983407.433949920348823, 3894238.874769715126604 ], [ 4983407.737171355634928, 3894232.321139729581773 ], [ 4983391.606268977746367, 3894231.919717668090016 ], [ 4983390.694091784767807, 3894252.672990940976888 ], [ 4983364.193643503822386, 3894251.883488188032061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983085.265052857808769, 3916559.784325488377362 ], [ 4983107.333020595833659, 3916600.982332663144916 ], [ 4983057.477755111642182, 3916627.449383803177625 ], [ 4983035.409732937812805, 3916586.25141688901931 ], [ 4983085.265052857808769, 3916559.784325488377362 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985267.033838043920696, 3901928.93898910144344 ], [ 4985280.675812093541026, 3901884.183347196318209 ], [ 4985337.080903060734272, 3901901.067828907165676 ], [ 4985327.792465698905289, 3901931.632704389747232 ], [ 4985293.834607967175543, 3901921.356086472980678 ], [ 4985289.481002021580935, 3901935.546830132603645 ], [ 4985267.033838043920696, 3901928.93898910144344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982621.032547413371503, 3905075.416911171749234 ], [ 4982583.842031439766288, 3905094.995119823142886 ], [ 4982569.792284894734621, 3905068.745562955737114 ], [ 4982606.982826828025281, 3905049.167335169389844 ], [ 4982621.032547413371503, 3905075.416911171749234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984802.903189103119075, 3914666.653669957537204 ], [ 4984864.484528973698616, 3914674.446249635890126 ], [ 4984863.898485573008657, 3914678.814470874611288 ], [ 4984875.408946139737964, 3914680.298268067184836 ], [ 4984871.887504088692367, 3914708.692386844195426 ], [ 4984798.795789620839059, 3914699.416020710021257 ], [ 4984802.903189103119075, 3914666.653669957537204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984793.810252184048295, 3909261.434993605129421 ], [ 4984827.857239753939211, 3909230.200113149825484 ], [ 4984848.245998678728938, 3909252.460470865480602 ], [ 4984814.199876891449094, 3909283.33119509415701 ], [ 4984793.810252184048295, 3909261.434993605129421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984718.854128583334386, 3905890.847692569717765 ], [ 4984752.278626340441406, 3905881.095094440039247 ], [ 4984771.129582995548844, 3905945.95516317198053 ], [ 4984737.418077994138002, 3905955.342927873600274 ], [ 4984718.854128583334386, 3905890.847692569717765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984656.165640307590365, 3910003.940987110137939 ], [ 4984658.66905830707401, 3909919.103905159048736 ], [ 4984710.199496767483652, 3909920.682102530263364 ], [ 4984707.696776212193072, 3910005.155048774089664 ], [ 4984656.165640307590365, 3910003.940987110137939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982559.755045138299465, 3904924.526458061300218 ], [ 4982537.563618278130889, 3904932.850868335925043 ], [ 4982524.397525587119162, 3904897.864190191496164 ], [ 4982546.876099248416722, 3904889.904555965680629 ], [ 4982559.755045138299465, 3904924.526458061300218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982514.951017192564905, 3916488.199519869405776 ], [ 4982465.704979857429862, 3916500.103678653016686 ], [ 4982460.000691459514201, 3916477.150209725368768 ], [ 4982473.536100260913372, 3916473.903847768902779 ], [ 4982463.554213277064264, 3916433.462176530621946 ], [ 4982499.264931759797037, 3916424.804356382228434 ], [ 4982514.951017192564905, 3916488.199519869405776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982365.734281606972218, 3916288.313937897793949 ], [ 4982376.678470361046493, 3916285.425766097847372 ], [ 4982374.39571284968406, 3916276.68134616361931 ], [ 4982400.315391818992794, 3916270.18592253793031 ], [ 4982407.450637585483491, 3916296.783977433107793 ], [ 4982370.586800503544509, 3916306.167564135976136 ], [ 4982365.734281606972218, 3916288.313937897793949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982297.740723790600896, 3915810.415082084015012 ], [ 4982264.618947744369507, 3915819.44318330148235 ], [ 4982256.912722081877291, 3915790.659072609152645 ], [ 4982261.232740998268127, 3915789.576481715776026 ], [ 4982251.245313917286694, 3915751.319701236672699 ], [ 4982265.645398633554578, 3915747.711064657662064 ], [ 4982257.654624601826072, 3915717.469771777279675 ], [ 4982295.096557374112308, 3915707.359077158849686 ], [ 4982308.50983249861747, 3915758.004224871750921 ], [ 4982291.805403250269592, 3915762.33587033348158 ], [ 4982295.231301034800708, 3915774.724220755975693 ], [ 4982288.606935412622988, 3915776.529838304035366 ], [ 4982297.740723790600896, 3915810.415082084015012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984040.183212202973664, 3914262.49191824067384 ], [ 4984046.957171267829835, 3914320.040920862928033 ], [ 4984027.37815626617521, 3914322.17996211675927 ], [ 4984020.315452762879431, 3914264.9944237023592 ], [ 4984040.183212202973664, 3914262.49191824067384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983968.925750867463648, 3903969.747853268869221 ], [ 4984004.436124379746616, 3903930.868668933864683 ], [ 4984034.321315689943731, 3903957.884214824065566 ], [ 4984046.447229565121233, 3903944.439676999114454 ], [ 4984065.125658166594803, 3903961.23338615661487 ], [ 4984017.489356133155525, 3904013.557036881800741 ], [ 4983968.925750867463648, 3903969.747853268869221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983925.744513804093003, 3909148.699621440842748 ], [ 4983933.158736498095095, 3909179.304073203355074 ], [ 4983889.083544776774943, 3909190.125265538692474 ], [ 4983881.381368045695126, 3909159.520154588855803 ], [ 4983925.744513804093003, 3909148.699621440842748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983765.997989100404084, 3909501.53629803378135 ], [ 4983812.948262462392449, 3909492.178129125852138 ], [ 4983846.242707908153534, 3909659.756808407139033 ], [ 4983799.004813930951059, 3909669.114249867387116 ], [ 4983765.997989100404084, 3909501.53629803378135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983697.879254953935742, 3904744.353053631260991 ], [ 4983708.346320163458586, 3904701.045695694629103 ], [ 4983715.540955002419651, 3904702.883077821694314 ], [ 4983718.736389838159084, 3904690.87415669253096 ], [ 4983734.276634897105396, 3904694.91573644336313 ], [ 4983737.183277447707951, 3904683.27027782658115 ], [ 4983753.588235582225025, 3904686.949747684411705 ], [ 4983743.121938837692142, 3904729.892957781907171 ], [ 4983750.316563592292368, 3904731.7303492478095 ], [ 4983744.501586243510246, 3904755.749524395912886 ], [ 4983697.879254953935742, 3904744.353053631260991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983516.167432333342731, 3905619.30446915468201 ], [ 4983469.490858828648925, 3905631.940971163567156 ], [ 4983448.649577436968684, 3905554.696741520892829 ], [ 4983476.598001598380506, 3905547.114675852004439 ], [ 4983485.73467365372926, 3905580.635977373458445 ], [ 4983504.462925510481, 3905575.581511691212654 ], [ 4983516.167432333342731, 3905619.30446915468201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983429.2465899894014, 3915678.280804557260126 ], [ 4983482.5529670342803, 3915654.007255540695041 ], [ 4983496.87310818489641, 3915684.991849747952074 ], [ 4983443.566779488697648, 3915709.265370820648968 ], [ 4983429.2465899894014, 3915678.280804557260126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983416.035574694164097, 3909943.145766003988683 ], [ 4983364.170909699052572, 3909961.596591061912477 ], [ 4983349.866049733944237, 3909922.601296733599156 ], [ 4983401.731622336432338, 3909903.786313516553491 ], [ 4983416.035574694164097, 3909943.145766003988683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981256.022374891676009, 3904740.974226119928062 ], [ 4981178.994042528793216, 3904805.617780597880483 ], [ 4981136.488900508731604, 3904755.272842455189675 ], [ 4981213.229319320991635, 3904690.628525579348207 ], [ 4981256.022374891676009, 3904740.974226119928062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981120.643744411878288, 3916514.914525572676212 ], [ 4981128.625815572217107, 3916549.52508676238358 ], [ 4981078.230011430568993, 3916561.06509067164734 ], [ 4981067.682565486058593, 3916515.160664800554514 ], [ 4981100.799833653494716, 3916507.587614008691162 ], [ 4981103.365133859217167, 3916518.881496523506939 ], [ 4981120.643744411878288, 3916514.914525572676212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983194.254883108660579, 3909486.010857548099011 ], [ 4983235.725574625656009, 3909480.644509003963321 ], [ 4983240.251376428641379, 3909515.611704919952899 ], [ 4983198.780737928114831, 3909520.978046605829149 ], [ 4983194.254883108660579, 3909486.010857548099011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983035.791205704212189, 3915169.041558586061001 ], [ 4983046.644613492302597, 3915205.844074228778481 ], [ 4983024.753539580851793, 3915212.348136807791889 ], [ 4983029.035996913909912, 3915227.651620221324265 ], [ 4983005.12921523489058, 3915234.515197180677205 ], [ 4982989.704601113684475, 3915182.772690694313496 ], [ 4983035.791205704212189, 3915169.041558586061001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981050.312272264622152, 3906860.491925791371614 ], [ 4981070.116317789070308, 3906888.938319011125714 ], [ 4981025.130191560834646, 3906919.789443130139261 ], [ 4981005.326121369376779, 3906891.343082529958338 ], [ 4981050.312272264622152, 3906860.491925791371614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980863.708804762922227, 3903366.23266019532457 ], [ 4980854.438879121094942, 3903390.973034608643502 ], [ 4980833.434116752818227, 3903383.279695621225983 ], [ 4980842.416056596674025, 3903358.538675513584167 ], [ 4980863.708804762922227, 3903366.23266019532457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980847.204660374671221, 3907301.733078610617667 ], [ 4980831.623507870361209, 3907316.627948000561446 ], [ 4980838.230477966368198, 3907323.561112813651562 ], [ 4980809.377285374328494, 3907350.807063632179052 ], [ 4980789.556362751871347, 3907330.007595095317811 ], [ 4980834.27783009968698, 3907288.231515391264111 ], [ 4980847.204660374671221, 3907301.733078610617667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982611.30349657125771, 3915637.073370692785829 ], [ 4982634.733919964171946, 3915712.502694468013942 ], [ 4982628.68518933840096, 3915714.309543637558818 ], [ 4982636.686364917084575, 3915739.817226070445031 ], [ 4982597.513171837665141, 3915751.744162262883037 ], [ 4982588.369763062335551, 3915722.228406181093305 ], [ 4982579.441009398549795, 3915724.75695852516219 ], [ 4982562.011806837283075, 3915668.276360744610429 ], [ 4982572.957100488245487, 3915665.024137718137354 ], [ 4982568.385785786435008, 3915650.084198045078665 ], [ 4982611.30349657125771, 3915637.073370692785829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980429.797374416142702, 3907130.760746971238405 ], [ 4980481.019776579923928, 3907143.982371370308101 ], [ 4980472.889560466632247, 3907174.915691550821066 ], [ 4980421.667213372886181, 3907161.694082406815141 ], [ 4980429.797374416142702, 3907130.760746971238405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982311.979553453624249, 3904984.044040376786143 ], [ 4982340.802035828121006, 3904972.093199844006449 ], [ 4982358.55816385615617, 3905014.73699501529336 ], [ 4982329.735719193704426, 3905026.687816822901368 ], [ 4982311.979553453624249, 3904984.044040376786143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980096.231978440657258, 3902988.02931946888566 ], [ 4980087.889529843814671, 3902984.005608942825347 ], [ 4980097.14692771807313, 3902964.726919529028237 ], [ 4980129.366428722627461, 3902980.091005697380751 ], [ 4980122.133597894571722, 3902995.368674901779741 ], [ 4980138.531300351954997, 3903003.051359286997467 ], [ 4980126.092624894343317, 3903028.513297511264682 ], [ 4980086.105887495912611, 3903009.490895448252559 ], [ 4980096.231978440657258, 3902988.02931946888566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980032.782516214996576, 3906717.327513913623989 ], [ 4980033.023450396955013, 3906738.811837020330131 ], [ 4980004.516506442800164, 3906739.477753079961985 ], [ 4980003.987616409547627, 3906717.99280062969774 ], [ 4980032.782516214996576, 3906717.327513913623989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979818.430921734310687, 3903869.712825058493763 ], [ 4979792.751394396647811, 3903892.961286135483533 ], [ 4979760.576403281651437, 3903857.570457994006574 ], [ 4979786.255936401896179, 3903834.321966677904129 ], [ 4979818.430921734310687, 3903869.712825058493763 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979772.732921650633216, 3903167.932033353950828 ], [ 4979753.657070968300104, 3903199.934056931175292 ], [ 4979720.870393225923181, 3903180.563740292564034 ], [ 4979740.234189776703715, 3903148.56232057325542 ], [ 4979772.732921650633216, 3903167.932033353950828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979705.708718632347882, 3902737.018847499974072 ], [ 4979765.118137430399656, 3902697.457832706626505 ], [ 4979782.341984278522432, 3902722.620395931880921 ], [ 4979722.643827782012522, 3902762.544876204803586 ], [ 4979705.708718632347882, 3902737.018847499974072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979627.782815262675285, 3900297.171969840768725 ], [ 4979634.185299807228148, 3900266.598898495081812 ], [ 4979683.124298553913832, 3900276.536781465634704 ], [ 4979676.721760637126863, 3900307.109841338824481 ], [ 4979627.782815262675285, 3900297.171969840768725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979546.42811581119895, 3903679.773027866147459 ], [ 4979505.994524556212127, 3903734.305062957108021 ], [ 4979459.417539859190583, 3903700.339909084141254 ], [ 4979519.779166520573199, 3903618.905281826853752 ], [ 4979567.218534109182656, 3903653.600672791246325 ], [ 4979555.954682411625981, 3903668.869752256665379 ], [ 4979566.017679879441857, 3903676.174216178711504 ], [ 4979557.641393829137087, 3903687.808246922679245 ], [ 4979546.42811581119895, 3903679.773027866147459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979493.848558844998479, 3900037.256224437616765 ], [ 4979536.732824380509555, 3900050.457894066814333 ], [ 4979528.611849896609783, 3900076.657690395135432 ], [ 4979485.728411234915257, 3900063.091904582455754 ], [ 4979493.848558844998479, 3900037.256224437616765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981252.856007879599929, 3901774.024508742615581 ], [ 4981277.344581235200167, 3901769.709621161688119 ], [ 4981280.758933598175645, 3901788.287932312116027 ], [ 4981315.907047321088612, 3901782.176236548926681 ], [ 4981323.018792766146362, 3901821.518288861494511 ], [ 4981310.342546699568629, 3901823.67474375013262 ], [ 4981312.617948478087783, 3901836.424416907131672 ], [ 4981294.755533318966627, 3901839.661682507023215 ], [ 4981292.763227765448391, 3901829.09742983430624 ], [ 4981263.664500088430941, 3901834.494401596486568 ], [ 4981252.856007879599929, 3901774.024508742615581 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979346.958090697415173, 3892977.188340562861413 ], [ 4979376.100651230663061, 3892955.767716128379107 ], [ 4979391.32482052128762, 3892976.191866977605969 ], [ 4979394.787297076545656, 3892973.650451574008912 ], [ 4979429.830658128485084, 3893021.063051863573492 ], [ 4979438.198371498845518, 3893014.890966578852385 ], [ 4979453.709751359187067, 3893035.679904414806515 ], [ 4979412.737050945870578, 3893065.81394817866385 ], [ 4979386.885501668788493, 3893030.801634934265167 ], [ 4979381.403325847350061, 3893034.795200673863292 ], [ 4979365.030011298134923, 3893012.912054070737213 ], [ 4979370.512189129367471, 3893008.918485037051141 ], [ 4979346.958090697415173, 3892977.188340562861413 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979260.08212864305824, 3908530.847819390706718 ], [ 4979254.558314929716289, 3908555.596905322279781 ], [ 4979235.277548769488931, 3908551.185698095243424 ], [ 4979241.089259293861687, 3908526.437229672446847 ], [ 4979260.08212864305824, 3908530.847819390706718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979102.583181529305875, 3906395.600712537299842 ], [ 4979118.065882283262908, 3906426.221142479218543 ], [ 4979081.458801313303411, 3906444.348933351691812 ], [ 4979067.695852385833859, 3906417.373544938862324 ], [ 4979079.513778750784695, 3906411.572863600216806 ], [ 4979077.506060630083084, 3906407.92722240369767 ], [ 4979102.583181529305875, 3906395.600712537299842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981147.501232017762959, 3903173.509919579606503 ], [ 4981127.276731099933386, 3903203.323623344767839 ], [ 4981055.677363658323884, 3903155.827110328711569 ], [ 4981075.901820532977581, 3903126.013353547081351 ], [ 4981147.501232017762959, 3903173.509919579606503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981058.375973973423243, 3907377.21354107093066 ], [ 4981079.143942335620522, 3907360.509689536411315 ], [ 4981095.511129175312817, 3907380.57341545028612 ], [ 4981074.743166064843535, 3907397.277254541404545 ], [ 4981058.375973973423243, 3907377.21354107093066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980983.737836279906332, 3905463.533349974546582 ], [ 4981014.001374121755362, 3905450.491893033031374 ], [ 4981036.920443303883076, 3905502.977867657784373 ], [ 4981006.65695327706635, 3905516.019299206323922 ], [ 4980983.737836279906332, 3905463.533349974546582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978911.637326026335359, 3895542.634975224733353 ], [ 4978881.94290457200259, 3895554.223445121198893 ], [ 4978868.765846062451601, 3895519.967010800726712 ], [ 4978898.171465518884361, 3895508.742036805488169 ], [ 4978911.637326026335359, 3895542.634975224733353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978858.802593236789107, 3905273.186567928176373 ], [ 4978865.718042777851224, 3905271.016603756695986 ], [ 4978858.853334565646946, 3905249.518111367244273 ], [ 4978883.345383050851524, 3905241.92386229429394 ], [ 4978889.638081609271467, 3905261.600475045386702 ], [ 4978903.756941501051188, 3905257.261182179208845 ], [ 4978914.339156334288418, 3905290.784012163523585 ], [ 4978869.100032666698098, 3905305.2522426629439 ], [ 4978858.802593236789107, 3905273.186567928176373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978661.641388378106058, 3906985.641361797694117 ], [ 4978619.557710058987141, 3907007.035274390131235 ], [ 4978605.507435579784214, 3906979.695368134882301 ], [ 4978647.59036756772548, 3906958.665564379189163 ], [ 4978661.641388378106058, 3906985.641361797694117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980576.143555854447186, 3901356.320433666463941 ], [ 4980589.052479576319456, 3901379.289182951673865 ], [ 4980567.426687855273485, 3901391.257765838876367 ], [ 4980554.517751468345523, 3901368.289026761893183 ], [ 4980576.143555854447186, 3901356.320433666463941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980535.504476739093661, 3905939.55351364472881 ], [ 4980452.20597564522177, 3905977.239587736781687 ], [ 4980435.802962703630328, 3905972.833870001137257 ], [ 4980441.819244671612978, 3905986.684137287549675 ], [ 4980349.874797796830535, 3906027.992804984096438 ], [ 4980346.149990506470203, 3906019.609577224124223 ], [ 4980317.947825158946216, 3906012.264928764663637 ], [ 4980307.788273164071143, 3906049.384060751646757 ], [ 4980285.917615528218448, 3906043.509889957029372 ], [ 4980296.657821714878082, 3906004.207233926281333 ], [ 4980285.146592980250716, 3906001.268885704688728 ], [ 4980255.747851614840329, 3906014.313064767513424 ], [ 4980197.289941091090441, 3905885.64617731096223 ], [ 4980202.805575302802026, 3905865.266888288315386 ], [ 4980244.88670767378062, 3905846.424381835386157 ], [ 4980248.04048300627619, 3905852.621549104806036 ], [ 4980260.702749093994498, 3905855.926540672779083 ], [ 4980300.247541968710721, 3905943.040950423106551 ], [ 4980316.100325412116945, 3905935.793152760248631 ], [ 4980310.942989988252521, 3905924.129593902267516 ], [ 4980360.518602760508657, 3905901.662421653978527 ], [ 4980355.360479052178562, 3905890.362984704785049 ], [ 4980327.690834228880703, 3905902.682623927481472 ], [ 4980291.58458168245852, 3905823.222501595504582 ], [ 4980346.060198033228517, 3905798.58127880608663 ], [ 4980355.803001945838332, 3905820.086491671856493 ], [ 4980370.502499497495592, 3905813.564453626982868 ], [ 4980373.985052830539644, 3905801.191629979759455 ], [ 4980391.567200428806245, 3905793.219418501015753 ], [ 4980398.444168219342828, 3905808.528096492867917 ], [ 4980462.719605972990394, 3905779.539099814835936 ], [ 4980535.504476739093661, 3905939.55351364472881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980509.379835582338274, 3898720.959477002266794 ], [ 4980483.726104523986578, 3898730.006189435720444 ], [ 4980463.973144758492708, 3898675.343108979985118 ], [ 4980496.545806532725692, 3898663.398585038259625 ], [ 4980508.569566329941154, 3898696.560955081135035 ], [ 4980501.651490927673876, 3898699.094616394024342 ], [ 4980509.379835582338274, 3898720.959477002266794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978233.299607839435339, 3909110.534404242411256 ], [ 4978255.440667242743075, 3909123.690145934000611 ], [ 4978240.127515370957553, 3909149.146944401785731 ], [ 4978217.986469523981214, 3909135.991215130314231 ], [ 4978233.299607839435339, 3909110.534404242411256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980375.261875059455633, 3902734.113990935031325 ], [ 4980385.393107413314283, 3902710.46775056887418 ], [ 4980377.049814436584711, 3902706.808080439455807 ], [ 4980385.152404587715864, 3902688.983477114699781 ], [ 4980398.099314142018557, 3902694.473937716800719 ], [ 4980404.177270865999162, 3902680.650327982380986 ], [ 4980431.508560455404222, 3902692.726832951419055 ], [ 4980406.908749817870557, 3902748.020622589159757 ], [ 4980375.261875059455633, 3902734.113990935031325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980280.330230637453496, 3907538.260121113155037 ], [ 4980293.92028246447444, 3907512.072453630156815 ], [ 4980337.060921893455088, 3907534.015226051677018 ], [ 4980323.470838968642056, 3907560.202872067224234 ], [ 4980280.330230637453496, 3907538.260121113155037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980177.26378193218261, 3899390.95758698368445 ], [ 4980194.560447916388512, 3899383.71290376316756 ], [ 4980188.830556996166706, 3899369.863378709182143 ], [ 4980208.144121594727039, 3899362.258996612392366 ], [ 4980212.726750072091818, 3899373.921225814148784 ], [ 4980237.80535030271858, 3899364.144729514606297 ], [ 4980249.264278940856457, 3899392.207930501084775 ], [ 4980188.150731971487403, 3899417.198855618014932 ], [ 4980177.26378193218261, 3899390.95758698368445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980139.794351858086884, 3899272.168919507414103 ], [ 4980114.713309380225837, 3899283.037892961408943 ], [ 4980101.817317341454327, 3899253.515082981437445 ], [ 4980126.610368903726339, 3899242.645466784015298 ], [ 4980139.794351858086884, 3899272.168919507414103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980146.117331736721098, 3895071.578657099977136 ], [ 4980206.751398249529302, 3895138.347285156603903 ], [ 4980183.661324098706245, 3895159.052041925955564 ], [ 4980123.028044737875462, 3895091.919337301049381 ], [ 4980146.117331736721098, 3895071.578657099977136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980115.449352839030325, 3898157.876655976288021 ], [ 4980076.250885589979589, 3898170.171267535537481 ], [ 4980060.803516020067036, 3898121.708141749724746 ], [ 4980100.29007204528898, 3898109.414138634223491 ], [ 4980115.449352839030325, 3898157.876655976288021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978028.512571391649544, 3903154.358742294833064 ], [ 4978069.648577310144901, 3903175.201168175321072 ], [ 4978060.974037255160511, 3903191.932868329808116 ], [ 4978094.055255237966776, 3903208.752861439716071 ], [ 4978098.970783894881606, 3903199.29584559192881 ], [ 4978124.284469367936254, 3903212.458132747095078 ], [ 4978121.391663138754666, 3903218.64224283117801 ], [ 4978133.186124376021326, 3903224.493306079879403 ], [ 4978101.088134927675128, 3903287.420100573915988 ], [ 4978059.089185023680329, 3903266.211669225245714 ], [ 4978067.763700128532946, 3903249.479967709630728 ], [ 4978035.545657819136977, 3903233.025961681734771 ], [ 4978031.4971460159868, 3903241.028295964468271 ], [ 4977993.813013913109899, 3903222.013872349169105 ], [ 4978028.512571391649544, 3903154.358742294833064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977970.171074037440121, 3909237.424052601214498 ], [ 4977978.049865561537445, 3909187.554515344556421 ], [ 4978012.012074897997081, 3909192.724100427236408 ], [ 4978004.133221791125834, 3909242.593627870548517 ], [ 4977970.171074037440121, 3909237.424052601214498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977941.04796923790127, 3906392.760900582186878 ], [ 4977950.790173369459808, 3906415.357640428002924 ], [ 4977912.45932322088629, 3906432.026856753509492 ], [ 4977902.717860702425241, 3906409.066000193357468 ], [ 4977941.04796923790127, 3906392.760900582186878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977890.176246125251055, 3907714.453317082952708 ], [ 4977901.075839503668249, 3907734.139439577702433 ], [ 4977905.687968897633255, 3907731.600238034967333 ], [ 4977916.013235789723694, 3907750.556891225744039 ], [ 4977886.899341857992113, 3907766.517328786663711 ], [ 4977865.675222054123878, 3907727.510443203151226 ], [ 4977890.176246125251055, 3907714.453317082952708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977848.842439224943519, 3909020.873419576324522 ], [ 4977878.266654231585562, 3908993.625475152395666 ], [ 4977890.044043586589396, 3909006.394940733443946 ], [ 4977887.448261188343167, 3909008.574264262337238 ], [ 4977912.152336047030985, 3909035.208030555862933 ], [ 4977885.324676339514554, 3909059.912483524531126 ], [ 4977848.842439224943519, 3909020.873419576324522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977819.225441243499517, 3909002.96854956401512 ], [ 4977837.035127641633153, 3909022.305079861544073 ], [ 4977815.112694628536701, 3909041.922077713534236 ], [ 4977797.591680280864239, 3909022.222036665771157 ], [ 4977819.225441243499517, 3909002.96854956401512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977765.242013276554644, 3906470.678946165367961 ], [ 4977803.289378930814564, 3906451.824131031055003 ], [ 4977816.193603818304837, 3906476.976401953026652 ], [ 4977778.145498582161963, 3906496.195329511072487 ], [ 4977765.242013276554644, 3906470.678946165367961 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979898.756709240376949, 3906647.849544331431389 ], [ 4979931.003706434741616, 3906648.648211817257106 ], [ 4979929.430446027778089, 3906709.818972608540207 ], [ 4979896.895589048042893, 3906709.019678544253111 ], [ 4979898.756709240376949, 3906647.849544331431389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979840.97499736584723, 3899340.336524603422731 ], [ 4979906.414937335066497, 3899312.441208910662681 ], [ 4979918.163835688494146, 3899339.776638901326805 ], [ 4979852.724743822589517, 3899367.307797661051154 ], [ 4979840.97499736584723, 3899340.336524603422731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979788.430525875650346, 3900059.379920464940369 ], [ 4979820.97740560863167, 3900058.358435641508549 ], [ 4979822.34442235995084, 3900091.8614352773875 ], [ 4979789.509579079225659, 3900092.882291180081666 ], [ 4979788.430525875650346, 3900059.379920464940369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979679.242156570777297, 3899942.620524750556797 ], [ 4979669.675443758256733, 3899971.36604863172397 ], [ 4979627.369500373490155, 3899957.073031871579587 ], [ 4979636.936172924004495, 3899928.327493182383478 ], [ 4979679.242156570777297, 3899942.620524750556797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977534.86165679153055, 3911295.679943949449807 ], [ 4977555.619068637490273, 3911281.52224881388247 ], [ 4977574.560641137883067, 3911309.600201938301325 ], [ 4977536.217921961098909, 3911335.373293426353484 ], [ 4977512.396027784794569, 3911300.730750322341919 ], [ 4977530.270005907863379, 3911288.75179583625868 ], [ 4977534.86165679153055, 3911295.679943949449807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977513.032692273147404, 3913196.045980219729245 ], [ 4977477.339886035770178, 3913194.878849254921079 ], [ 4977477.971250492148101, 3913168.298423328436911 ], [ 4977467.608148372732103, 3913168.276734659448266 ], [ 4977468.234169578179717, 3913144.245232417713851 ], [ 4977514.577255945652723, 3913145.798788754269481 ], [ 4977513.032692273147404, 3913196.045980219729245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977457.949871770106256, 3906638.627522359136492 ], [ 4977470.569442925974727, 3906662.322506065946072 ], [ 4977436.268028351478279, 3906680.093230057507753 ], [ 4977441.142337788827717, 3906689.934988140594214 ], [ 4977414.911479101516306, 3906703.717165262904018 ], [ 4977397.417553053237498, 3906670.180456109810621 ], [ 4977457.949871770106256, 3906638.627522359136492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979587.311594499275088, 3900366.633059875108302 ], [ 4979604.972953810356557, 3900323.70397666702047 ], [ 4979634.899015514180064, 3900335.785282337106764 ], [ 4979616.949615221470594, 3900378.713720748201013 ], [ 4979587.311594499275088, 3900366.633059875108302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979564.776473553851247, 3907432.555796817410737 ], [ 4979512.120863791555166, 3907416.419750589411706 ], [ 4979506.901097631081939, 3907433.522649977821857 ], [ 4979491.36338659748435, 3907428.755247083026916 ], [ 4979497.452446146868169, 3907409.105303245130926 ], [ 4979484.217335830442607, 3907404.70702847559005 ], [ 4979521.913010770455003, 3907282.440313041210175 ], [ 4979603.629719206131995, 3907307.742779708933085 ], [ 4979564.776473553851247, 3907432.555796817410737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979401.020211219787598, 3900478.381612770725042 ], [ 4979446.546276558190584, 3900468.284492307342589 ], [ 4979453.678461785428226, 3900499.615180118475109 ], [ 4979420.829945584759116, 3900507.190809299703687 ], [ 4979422.256545485928655, 3900513.384119643364102 ], [ 4979409.578261490911245, 3900516.269727406091988 ], [ 4979401.020211219787598, 3900478.381612770725042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979304.469008116982877, 3907842.36923998920247 ], [ 4979496.6692134141922, 3907903.231175431516021 ], [ 4979468.2589295450598, 3907992.74617179017514 ], [ 4979425.96315913554281, 3907979.545794845558703 ], [ 4979439.296568041667342, 3907938.427706494461745 ], [ 4979406.208625121042132, 3907927.796230534557253 ], [ 4979409.976020141504705, 3907916.516281069256365 ], [ 4979370.557729492895305, 3907904.05048566358164 ], [ 4979332.293275259435177, 3908023.76730065792799 ], [ 4979254.607792297378182, 3907999.202610954176635 ], [ 4979304.469008116982877, 3907842.36923998920247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979203.33557527884841, 3900264.938160926103592 ], [ 4979246.786193949170411, 3900282.510159631725401 ], [ 4979234.916835213080049, 3900310.886743464972824 ], [ 4979191.754256692714989, 3900293.315384524408728 ], [ 4979203.33557527884841, 3900264.938160926103592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979156.409677379764616, 3903865.000963896512985 ], [ 4979162.775481211021543, 3903850.813554301857948 ], [ 4979092.006926344707608, 3903817.889306947588921 ], [ 4979102.710985153913498, 3903794.972066621761769 ], [ 4979176.068124192766845, 3903829.358447102364153 ], [ 4979169.70309310592711, 3903843.181723590940237 ], [ 4979338.855047907680273, 3903922.563359538558871 ], [ 4979328.151624821126461, 3903945.116377779748291 ], [ 4979156.409677379764616, 3903865.000963896512985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979139.020109632983804, 3904585.215708717238158 ], [ 4979120.295133179053664, 3904588.816694021224976 ], [ 4979113.751338876783848, 3904552.025308226235211 ], [ 4979164.45126230828464, 3904543.031235936097801 ], [ 4979172.704673354513943, 3904588.201346536632627 ], [ 4979140.72901869378984, 3904593.958549311384559 ], [ 4979139.020109632983804, 3904585.215708717238158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977357.380976461805403, 3913845.334781559649855 ], [ 4977350.457206963561475, 3913852.602994767948985 ], [ 4977370.567612703889608, 3913871.579951651860029 ], [ 4977343.161946586333215, 3913899.925139172002673 ], [ 4977325.924025047570467, 3913883.86726796394214 ], [ 4977319.000273964367807, 3913891.135489466134459 ], [ 4977298.02855656016618, 3913871.064372872002423 ], [ 4977338.994641927070916, 3913827.817969303578138 ], [ 4977357.380976461805403, 3913845.334781559649855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977307.493278575129807, 3906160.572052415460348 ], [ 4977334.550428197719157, 3906164.998095212504268 ], [ 4977330.469125451520085, 3906189.022284852806479 ], [ 4977345.436618567444384, 3906191.602450263686478 ], [ 4977342.230527059175074, 3906210.166486457455903 ], [ 4977359.500754778273404, 3906213.115598699543625 ], [ 4977354.253238710574806, 3906244.055857366416603 ], [ 4977309.350841008126736, 3906236.31537118460983 ], [ 4977314.89080382976681, 3906203.190922525711358 ], [ 4977320.935234603472054, 3906204.29593046894297 ], [ 4977323.559355668723583, 3906188.643732877913862 ], [ 4977303.410480197519064, 3906185.324506799690425 ], [ 4977307.493278575129807, 3906160.572052415460348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977221.758366791531444, 3905158.666701897978783 ], [ 4977174.793756331317127, 3905172.405924776569009 ], [ 4977165.928690950386226, 3905142.89280859939754 ], [ 4977212.8941066917032, 3905128.789440352935344 ], [ 4977221.758366791531444, 3905158.666701897978783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977215.85666879825294, 3901493.672883111983538 ], [ 4977222.002265517599881, 3901446.71279662149027 ], [ 4977251.081622804515064, 3901450.414682749193162 ], [ 4977244.647987073287368, 3901497.374162673484534 ], [ 4977215.85666879825294, 3901493.672883111983538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977185.578048680908978, 3908291.219432091806084 ], [ 4977226.788755398243666, 3908272.734503667335957 ], [ 4977238.539455596357584, 3908298.612387761939317 ], [ 4977197.328780369833112, 3908317.097298455424607 ], [ 4977185.578048680908978, 3908291.219432091806084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978870.29259713832289, 3900316.656915692612529 ], [ 4978884.748119842261076, 3900290.834631968289614 ], [ 4978925.883950176648796, 3900313.49897764576599 ], [ 4978911.428399998694658, 3900339.321239605545998 ], [ 4978870.29259713832289, 3900316.656915692612529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978764.880505134351552, 3907045.579819492995739 ], [ 4978773.481753797270358, 3907062.712443827651441 ], [ 4978782.1282111229375, 3907058.725501681677997 ], [ 4978794.743297733366489, 3907083.877635357901454 ], [ 4978761.596374143846333, 3907100.1926165567711 ], [ 4978740.380783060565591, 3907057.543751061894 ], [ 4978764.880505134351552, 3907045.579819492995739 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978738.560210383497179, 3906562.684308758471161 ], [ 4978767.670457396656275, 3906549.273718641139567 ], [ 4978781.99937298707664, 3906580.983883715700358 ], [ 4978752.889932313933969, 3906594.030328167136759 ], [ 4978738.560210383497179, 3906562.684308758471161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976923.594551366753876, 3905223.591014991048723 ], [ 4976974.310589173808694, 3905205.853683380410075 ], [ 4976986.047025512903929, 3905239.378141459543258 ], [ 4976935.043848945759237, 3905256.750724426005036 ], [ 4976923.594551366753876, 3905223.591014991048723 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976881.471649815328419, 3906097.784248111303896 ], [ 4976930.089698708616197, 3906119.00459762243554 ], [ 4976911.285382429137826, 3906161.569073409307748 ], [ 4976893.161812144331634, 3906153.520635559223592 ], [ 4976896.054022392258048, 3906147.336382175795734 ], [ 4976865.56035418715328, 3906133.80037039751187 ], [ 4976881.471649815328419, 3906097.784248111303896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976809.296787519007921, 3905493.17607226036489 ], [ 4976761.478161892853677, 3905502.544671720359474 ], [ 4976752.933792323805392, 3905457.010551548562944 ], [ 4976778.282873074524105, 3905452.329208777751774 ], [ 4976776.289066893979907, 3905441.765267828013748 ], [ 4976798.469245966523886, 3905437.80565972533077 ], [ 4976809.296787519007921, 3905493.17607226036489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978671.304614573717117, 3901923.868768383748829 ], [ 4978672.339850500226021, 3901978.490635747555643 ], [ 4978642.963942189700902, 3901979.156148246955127 ], [ 4978641.928646593354642, 3901924.534281980246305 ], [ 4978671.304614573717117, 3901923.868768383748829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978531.258937005884945, 3906286.593651652801782 ], [ 4978581.983361978083849, 3906264.489778692834079 ], [ 4978594.306411674246192, 3906291.825973697006702 ], [ 4978543.581251617521048, 3906314.29395412420854 ], [ 4978531.258937005884945, 3906286.593651652801782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978516.395621120929718, 3904343.554809876251966 ], [ 4978540.310150715522468, 3904337.051414814777672 ], [ 4978540.596556703560054, 3904337.780288527719676 ], [ 4978563.358486160635948, 3904331.638588304631412 ], [ 4978570.785604368895292, 3904359.692559982184321 ], [ 4978524.109191044233739, 3904372.33764233905822 ], [ 4978516.395621120929718, 3904343.554809876251966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978474.353219508193433, 3906507.136406673584133 ], [ 4978487.531539289280772, 3906538.479830747004598 ], [ 4978433.351716686040163, 3906560.940662874374539 ], [ 4978420.461279977113008, 3906529.597877543885261 ], [ 4978474.353219508193433, 3906507.136406673584133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978455.973290143534541, 3902020.632541767321527 ], [ 4978504.096771763637662, 3902006.533909205812961 ], [ 4978509.24401294067502, 3902023.659034426324069 ], [ 4978517.888945466838777, 3902021.128537132870406 ], [ 4978525.609399309381843, 3902046.998294290155172 ], [ 4978475.180564252659678, 3902061.820241757202893 ], [ 4978472.89298212248832, 3902054.16861874749884 ], [ 4978457.619804494082928, 3902058.869806804694235 ], [ 4978451.329129793681204, 3902037.73681588191539 ], [ 4978460.262035548686981, 3902035.206912982277572 ], [ 4978455.973290143534541, 3902020.632541767321527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978427.245139004662633, 3908348.088765257969499 ], [ 4978439.973104192875326, 3908320.077654924243689 ], [ 4978481.681353126652539, 3908338.737218015361577 ], [ 4978469.241268567740917, 3908366.748922049533576 ], [ 4978427.245139004662633, 3908348.088765257969499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978373.890912377275527, 3906358.720914011355489 ], [ 4978386.786906093358994, 3906387.514761151280254 ], [ 4978333.755515530705452, 3906411.434762534685433 ], [ 4978320.858703252859414, 3906383.005070794839412 ], [ 4978373.890912377275527, 3906358.720914011355489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978237.36958553083241, 3908549.050633412785828 ], [ 4978256.127995657734573, 3908528.33487395895645 ], [ 4978300.957478698343039, 3908568.484599077142775 ], [ 4978282.199061839841306, 3908589.200327748432755 ], [ 4978237.36958553083241, 3908549.050633412785828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976588.392556505277753, 3905656.579543348867446 ], [ 4976606.471545805223286, 3905686.47558871936053 ], [ 4976612.813818573951721, 3905682.847336815670133 ], [ 4976622.569404069334269, 3905699.617501060012728 ], [ 4976582.784397415816784, 3905723.204115184955299 ], [ 4976554.949782800860703, 3905676.53794191358611 ], [ 4976588.392556505277753, 3905656.579543348867446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976575.157403691671789, 3909007.660687821451575 ], [ 4976600.412339264526963, 3909047.039019219577312 ], [ 4976577.637605313211679, 3909061.557413475122303 ], [ 4976552.094741763547063, 3909022.17851052666083 ], [ 4976575.157403691671789, 3909007.660687821451575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976460.701162275858223, 3912305.741255610249937 ], [ 4976496.446860156022012, 3912281.781944051384926 ], [ 4976513.665334853343666, 3912308.034956042189151 ], [ 4976478.208277887664735, 3912331.630705125629902 ], [ 4976460.701162275858223, 3912305.741255610249937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976410.953665218316019, 3901619.454612761735916 ], [ 4976438.594502558931708, 3901622.42440603626892 ], [ 4976432.147373761981726, 3901676.666672908701003 ], [ 4976404.794578650034964, 3901673.697477172594517 ], [ 4976410.953665218316019, 3901619.454612761735916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976286.80247356556356, 3901492.482536242809147 ], [ 4976277.158671442419291, 3901560.919393804389983 ], [ 4976243.473723220638931, 3901556.11674410989508 ], [ 4976253.11744121555239, 3901487.67987464973703 ], [ 4976286.80247356556356, 3901492.482536242809147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977938.9669268745929, 3907925.024692894890904 ], [ 4977977.028504060581326, 3907898.523361731786281 ], [ 4977994.252206192351878, 3907922.95659742411226 ], [ 4977956.190646475180984, 3907949.457904598210007 ], [ 4977938.9669268745929, 3907925.024692894890904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976191.466067344881594, 3905582.938697821460664 ], [ 4976233.254633804783225, 3905565.181714424863458 ], [ 4976241.564811279065907, 3905584.861835262738168 ], [ 4976231.766478660516441, 3905588.847234621178359 ], [ 4976242.656231308355927, 3905614.358742760960013 ], [ 4976200.867734948173165, 3905632.115712069906294 ], [ 4976191.69743023160845, 3905610.613185743801296 ], [ 4976201.496493591926992, 3905606.263641468249261 ], [ 4976191.466067344881594, 3905582.938697821460664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976061.266807790845633, 3905888.543521774932742 ], [ 4976018.034695734269917, 3905908.48262370750308 ], [ 4976007.426856254227459, 3905885.884831335395575 ], [ 4976016.361221231520176, 3905881.897588859777898 ], [ 4976005.466911468654871, 3905858.570950138382614 ], [ 4976039.476767706684768, 3905842.618473099544644 ], [ 4976061.266807790845633, 3905888.543521774932742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976026.214614815078676, 3907969.486816563643515 ], [ 4976066.865516390651464, 3907942.988061602693051 ], [ 4976083.800032128579915, 3907968.876009085215628 ], [ 4976042.861233480274677, 3907995.374151709023863 ], [ 4976026.214614815078676, 3907969.486816563643515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976024.588232482783496, 3907637.394875809084624 ], [ 4976051.11281568929553, 3907619.970613626297563 ], [ 4976077.807216903194785, 3907660.443748392630368 ], [ 4976050.994733392260969, 3907677.867397430352867 ], [ 4976024.588232482783496, 3907637.394875809084624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975871.492715829052031, 3912412.684403281658888 ], [ 4975902.29724686499685, 3912411.654653071425855 ], [ 4975903.644748805090785, 3912456.809925035573542 ], [ 4975872.840269482694566, 3912457.839673731010407 ], [ 4975871.492715829052031, 3912412.684403281658888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977762.961464378982782, 3904953.700887233950198 ], [ 4977775.244592259638011, 3905000.699708654079586 ], [ 4977744.99361178278923, 3905008.282858360558748 ], [ 4977732.709669177420437, 3904961.648180611431599 ], [ 4977762.961464378982782, 3904953.700887233950198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977654.124316106550395, 3912218.279477033298463 ], [ 4977663.519406442530453, 3912268.185468465089798 ], [ 4977628.385073095560074, 3912274.666112532839179 ], [ 4977624.115873085334897, 3912251.352621087338775 ], [ 4977610.580458271317184, 3912253.873154518660158 ], [ 4977605.742366154678166, 3912227.28127303160727 ], [ 4977654.124316106550395, 3912218.279477033298463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977628.099532409571111, 3903628.707122127525508 ], [ 4977728.175315690226853, 3903556.819246816914529 ], [ 4977748.849988316185772, 3903584.900820566341281 ], [ 4977648.48552377242595, 3903657.152145544998348 ], [ 4977628.099532409571111, 3903628.707122127525508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977516.168362323194742, 3914035.380557482130826 ], [ 4977499.436956215649843, 3914052.459802892524749 ], [ 4977466.113656736910343, 3914019.982145481277257 ], [ 4977502.748995178379118, 3913982.917197985574603 ], [ 4977528.02914307359606, 3914007.367106701713055 ], [ 4977508.124446254223585, 3914027.716902086511254 ], [ 4977516.168362323194742, 3914035.380557482130826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977422.798428673297167, 3905685.620741190388799 ], [ 4977445.856804019771516, 3905674.744998184032738 ], [ 4977440.69588909484446, 3905664.17438277695328 ], [ 4977461.448449146002531, 3905654.386227123904973 ], [ 4977480.655387200415134, 3905695.209177051205188 ], [ 4977459.326202060095966, 3905705.36024371907115 ], [ 4977464.773521972820163, 3905716.659725827630609 ], [ 4977442.579767325893044, 3905727.17312904028222 ], [ 4977422.798428673297167, 3905685.620741190388799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975837.647430770099163, 3910934.963343642186373 ], [ 4975886.364166568033397, 3910903.746937254443765 ], [ 4975897.556254855357111, 3910921.248082641046494 ], [ 4975848.839537663385272, 3910952.464469071477652 ], [ 4975837.647430770099163, 3910934.963343642186373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975735.911318706348538, 3910280.045887863729149 ], [ 4975766.754494212567806, 3910261.173549198079854 ], [ 4975762.162948896177113, 3910253.881576426327229 ], [ 4975784.646859199739993, 3910240.090158374048769 ], [ 4975807.316647228784859, 3910276.549464667215943 ], [ 4975753.989600838162005, 3910309.213182323146611 ], [ 4975735.911318706348538, 3910280.045887863729149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975731.332535685040057, 3905580.545321440324187 ], [ 4975761.488487876020372, 3905619.204445806797594 ], [ 4975730.341720283962786, 3905643.173976310528815 ], [ 4975700.185750390402973, 3905604.514886332675815 ], [ 4975731.332535685040057, 3905580.545321440324187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977285.638575160875916, 3906699.077683267183602 ], [ 4977309.856116940267384, 3906684.198783497791737 ], [ 4977305.838722323067486, 3906677.636025434359908 ], [ 4977319.389072543941438, 3906669.289259901735932 ], [ 4977339.477535878308117, 3906701.374805562663823 ], [ 4977320.448867266997695, 3906713.351449473295361 ], [ 4977328.48363664932549, 3906726.476970902178437 ], [ 4977310.031616075895727, 3906738.090693734586239 ], [ 4977285.638575160875916, 3906699.077683267183602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977244.766988700255752, 3912493.800327558070421 ], [ 4977253.990252756513655, 3912488.357553074136376 ], [ 4977268.047348748892546, 3912511.691396548878402 ], [ 4977225.677204091101885, 3912537.092415466438979 ], [ 4977199.284101294353604, 3912493.341431193053722 ], [ 4977232.43102119769901, 3912473.383149997331202 ], [ 4977244.766988700255752, 3912493.800327558070421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977221.95582252368331, 3901607.294427888933569 ], [ 4977193.168408793397248, 3901601.772525689564645 ], [ 4977202.195342029444873, 3901554.090167780872434 ], [ 4977230.982805037871003, 3901559.612079477868974 ], [ 4977221.95582252368331, 3901607.294427888933569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977097.591771245934069, 3906157.221925226505846 ], [ 4977050.639553996734321, 3906165.863548599649221 ], [ 4977044.654833725653589, 3906135.992303681094199 ], [ 4977091.607857896946371, 3906126.986539666540921 ], [ 4977097.591771245934069, 3906157.221925226505846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977096.78781368676573, 3903218.678261214401573 ], [ 4977119.334302227944136, 3903177.942422699183226 ], [ 4977131.127484273165464, 3903184.521305402740836 ], [ 4977148.760362459346652, 3903152.514425640925765 ], [ 4977137.542356071062386, 3903146.300862743053585 ], [ 4977158.355075811967254, 3903108.474502979312092 ], [ 4977222.500726588070393, 3903143.200496709905565 ], [ 4977213.25076191034168, 3903159.931270624510944 ], [ 4977216.414653436280787, 3903161.758515727240592 ], [ 4977202.828454967588186, 3903186.491151166148484 ], [ 4977189.88416531868279, 3903179.545709550846368 ], [ 4977172.829470173455775, 3903210.46137226652354 ], [ 4977183.759470998309553, 3903216.674350769724697 ], [ 4977162.94604102242738, 3903254.864823046606034 ], [ 4977096.78781368676573, 3903218.678261214401573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977040.673626844771206, 3908469.343047006521374 ], [ 4977003.229656150564551, 3908476.547972332220525 ], [ 4976997.534078634344041, 3908446.313161971513182 ], [ 4977034.690175263211131, 3908439.107631072867662 ], [ 4977040.673626844771206, 3908469.343047006521374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975403.057815788313746, 3898585.289827366359532 ], [ 4975408.783736115321517, 3898602.415484174154699 ], [ 4975367.858498468995094, 3898615.441740763839334 ], [ 4975354.403655520640314, 3898574.632070126011968 ], [ 4975404.551472754217684, 3898558.711331580765545 ], [ 4975412.28033260628581, 3898582.395368197467178 ], [ 4975403.057815788313746, 3898585.289827366359532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975262.943363593891263, 3896502.912667107302696 ], [ 4975313.951791069470346, 3896490.634798421058804 ], [ 4975327.380647407844663, 3896544.917145152110606 ], [ 4975276.372316648252308, 3896557.194988761562854 ], [ 4975262.943363593891263, 3896502.912667107302696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975088.168642799369991, 3905957.581941982731223 ], [ 4975091.895097531378269, 3905965.964440473821014 ], [ 4975121.001241311430931, 3905954.006426178850234 ], [ 4975135.04245444200933, 3905987.898839711211622 ], [ 4975083.170053976587951, 3906009.27864746702835 ], [ 4975065.402326241135597, 3905967.003765212837607 ], [ 4975088.168642799369991, 3905957.581941982731223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976792.277899699285626, 3911078.931831979192793 ], [ 4976745.889086592011154, 3911097.770886092912406 ], [ 4976733.573151021264493, 3911067.158274258952588 ], [ 4976780.249142240732908, 3911048.683925750199705 ], [ 4976792.277899699285626, 3911078.931831979192793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976718.731217324733734, 3905286.890406254678965 ], [ 4976774.612017007544637, 3905277.902520408853889 ], [ 4976779.729625582695007, 3905309.592555232346058 ], [ 4976724.136838089674711, 3905318.581025039311498 ], [ 4976718.731217324733734, 3905286.890406254678965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975056.646203234791756, 3900272.702595157548785 ], [ 4975009.704768996685743, 3900271.152138404082507 ], [ 4975010.643795723095536, 3900233.648568694945425 ], [ 4975039.154590719379485, 3900234.433873891364783 ], [ 4975038.53559052105993, 3900255.916338254697621 ], [ 4975057.255011796951294, 3900256.317938468884677 ], [ 4975056.646203234791756, 3900272.702595157548785 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975005.214019223116338, 3909856.908246713224798 ], [ 4974988.204646737314761, 3909868.526466655079275 ], [ 4974964.091719581745565, 3909833.157376513816416 ], [ 4974988.019439096562564, 3909817.183385948184878 ], [ 4974979.407930132001638, 3909804.42151905875653 ], [ 4974999.587882900610566, 3909790.988973252475262 ], [ 4975027.719007659703493, 3909832.556392708793283 ], [ 4975000.907912002876401, 3909850.709375625941902 ], [ 4975005.214019223116338, 3909856.908246713224798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974972.985357334837317, 3899189.975415833760053 ], [ 4974994.632986159995198, 3899166.714352371171117 ], [ 4975017.056557458825409, 3899187.514628255739808 ], [ 4975027.15889547765255, 3899176.610929158516228 ], [ 4975045.270245273597538, 3899193.397167577408254 ], [ 4975013.809014048427343, 3899227.198338539339602 ], [ 4974972.985357334837317, 3899189.975415833760053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974807.011158172041178, 3905298.305768600199372 ], [ 4974772.144032197073102, 3905310.980907536577433 ], [ 4974755.820167656056583, 3905266.160204160027206 ], [ 4974790.687343953177333, 3905253.485044389031827 ], [ 4974807.011158172041178, 3905298.305768600199372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974806.641273113898933, 3897969.079037802293897 ], [ 4974818.098485729657114, 3898001.145314421039075 ], [ 4974772.846426294185221, 3898017.076891395263374 ], [ 4974761.388441680930555, 3897985.374762375373393 ], [ 4974806.641273113898933, 3897969.079037802293897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976615.83091638609767, 3902541.127345862798393 ], [ 4976636.824780464172363, 3902555.007586984429508 ], [ 4976614.294258523732424, 3902588.097093858290464 ], [ 4976561.955081186257303, 3902552.668602562509477 ], [ 4976584.196090591140091, 3902520.306718692183495 ], [ 4976615.542188399471343, 3902541.490882149897516 ], [ 4976615.83091638609767, 3902541.127345862798393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976578.666752055287361, 3909959.87481678975746 ], [ 4976549.84394205827266, 3909975.837317931000143 ], [ 4976554.146674072369933, 3909983.492962642107159 ], [ 4976517.253025140613317, 3910004.172612875234336 ], [ 4976501.189902293495834, 3909975.373085912317038 ], [ 4976523.383530897088349, 3909963.038221355061978 ], [ 4976519.367936136201024, 3909955.74730512779206 ], [ 4976562.890817263163626, 3909931.439977835863829 ], [ 4976578.666752055287361, 3909959.87481678975746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976577.21858384180814, 3908286.318509917706251 ], [ 4976556.176712140440941, 3908297.927425971254706 ], [ 4976544.129195744171739, 3908276.054687050636858 ], [ 4976565.170329669490457, 3908264.809892561752349 ], [ 4976577.21858384180814, 3908286.318509917706251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976554.561657782644033, 3905305.486878466792405 ], [ 4976592.023421028628945, 3905291.726998953614384 ], [ 4976612.066526313312352, 3905346.752175270114094 ], [ 4976561.349495555274189, 3905365.218452486675233 ], [ 4976546.17294561676681, 3905324.040332852862775 ], [ 4976559.429046492092311, 3905318.969770130701363 ], [ 4976554.561657782644033, 3905305.486878466792405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976515.307331525720656, 3908850.596393656916916 ], [ 4976507.556970896199346, 3908839.292345165740699 ], [ 4976489.970483995042741, 3908850.908422724343836 ], [ 4976472.749008002690971, 3908825.01961341034621 ], [ 4976532.137984521687031, 3908786.543696679640561 ], [ 4976548.210033970884979, 3908811.337780303321779 ], [ 4976530.335600680671632, 3908822.95323868887499 ], [ 4976538.370869698002934, 3908835.714409958571196 ], [ 4976515.307331525720656, 3908850.596393656916916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976501.408342935144901, 3899785.514074438717216 ], [ 4976524.421223721466959, 3899799.034220280125737 ], [ 4976495.808964642696083, 3899847.404750792775303 ], [ 4976472.796111026778817, 3899833.884629061445594 ], [ 4976501.408342935144901, 3899785.514074438717216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976476.931541128084064, 3901185.18200154369697 ], [ 4976480.771223509684205, 3901138.581149287056178 ], [ 4976508.414045405574143, 3901140.822755014989525 ], [ 4976504.574315389618278, 3901187.423603381495923 ], [ 4976476.931541128084064, 3901185.18200154369697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976397.363603509031236, 3909503.243777547031641 ], [ 4976381.510246676392853, 3909512.314558706711978 ], [ 4976369.172992443665862, 3909491.533684380352497 ], [ 4976384.739201113581657, 3909482.098174141719937 ], [ 4976397.363603509031236, 3909503.243777547031641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976411.606385861523449, 3899898.210077915340662 ], [ 4976418.845405347645283, 3899879.290148819796741 ], [ 4976449.062889084219933, 3899890.640237161889672 ], [ 4976442.111857355572283, 3899909.560749667230994 ], [ 4976411.606385861523449, 3899898.210077915340662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974669.732982087880373, 3897582.100520496256649 ], [ 4974620.712770371697843, 3897609.677021610550582 ], [ 4974614.971675840206444, 3897599.834113585297018 ], [ 4974604.014219329692423, 3897606.002571110147983 ], [ 4974595.690235142596066, 3897591.420850833877921 ], [ 4974602.610926137305796, 3897587.429156991653144 ], [ 4974586.824139107950032, 3897559.723949060309678 ], [ 4974626.040489847771823, 3897537.589866487309337 ], [ 4974635.512260333634913, 3897554.35865509044379 ], [ 4974649.641706640832126, 3897546.375862078741193 ], [ 4974669.732982087880373, 3897582.100520496256649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974663.761357271112502, 3900297.043930699583143 ], [ 4974702.879642923362553, 3900322.246710294857621 ], [ 4974685.836147653870285, 3900348.06609001243487 ], [ 4974667.715222892351449, 3900336.377890073228627 ], [ 4974661.649101766757667, 3900345.469098632223904 ], [ 4974649.856239128857851, 3900337.798923453316092 ], [ 4974656.789256814867258, 3900327.252912596333772 ], [ 4974647.872783875092864, 3900321.409107043407857 ], [ 4974663.761357271112502, 3900297.043930699583143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974496.741637998260558, 3895342.359455346595496 ], [ 4974499.479112293571234, 3895269.174852596595883 ], [ 4974510.424509269185364, 3895269.560665743425488 ], [ 4974511.334127954207361, 3895246.622311430983245 ], [ 4974548.490462751127779, 3895248.152473310474306 ], [ 4974545.749243505299091, 3895323.157710421830416 ], [ 4974540.276195285841823, 3895323.146860121749341 ], [ 4974539.370885236188769, 3895343.900446134619415 ], [ 4974496.741637998260558, 3895342.359455346595496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974472.850366644561291, 3904205.611354500520974 ], [ 4974501.939376424066722, 3904203.12006229441613 ], [ 4974500.813512271270156, 3904190.009100229013711 ], [ 4974520.974332281388342, 3904188.228401004336774 ], [ 4974525.487127672880888, 3904235.938563530799001 ], [ 4974488.621798197738826, 3904239.142686052713543 ], [ 4974488.338166883215308, 3904236.957335581071675 ], [ 4974475.953738165087998, 3904238.025197682902217 ], [ 4974472.850366644561291, 3904205.611354500520974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974400.40136419609189, 3910696.487549879588187 ], [ 4974423.123088168911636, 3910707.456496709026396 ], [ 4974411.849972675554454, 3910730.374559140298516 ], [ 4974389.12754332087934, 3910719.769753133878112 ], [ 4974400.40136419609189, 3910696.487549879588187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976214.008441669866443, 3912860.902900181245059 ], [ 4976173.663104369305074, 3912882.30425593117252 ], [ 4976151.008676728233695, 3912839.654338997788727 ], [ 4976191.066192123107612, 3912818.252361069433391 ], [ 4976214.008441669866443, 3912860.902900181245059 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976173.502936688251793, 3901128.119930176530033 ], [ 4976142.981632040813565, 3901125.144528127275407 ], [ 4976147.680261234752834, 3901080.730170132126659 ], [ 4976178.200871640816331, 3901084.069706699810922 ], [ 4976173.502936688251793, 3901128.119930176530033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976146.716332661919296, 3905781.66319858469069 ], [ 4976085.047466839663684, 3905805.569982810877264 ], [ 4976076.168044137768447, 3905782.611560040619224 ], [ 4976083.083879557438195, 3905780.076748790219426 ], [ 4976075.922448627650738, 3905761.855545734521002 ], [ 4976115.689851751551032, 3905746.643177194986492 ], [ 4976121.99114781524986, 3905763.041975231375545 ], [ 4976137.264043021015823, 3905757.247058298904449 ], [ 4976146.716332661919296, 3905781.66319858469069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976093.936051845550537, 3903284.341351789422333 ], [ 4976126.491517133079469, 3903277.125185384880751 ], [ 4976133.625324125401676, 3903309.183304637204856 ], [ 4976101.069895701482892, 3903316.399462547153234 ], [ 4976093.936051845550537, 3903284.341351789422333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976062.15910520311445, 3900791.799940690398216 ], [ 4976033.948059292510152, 3900785.552199168130755 ], [ 4976044.990667976438999, 3900737.1453270111233 ], [ 4976073.201019441708922, 3900743.757209130097181 ], [ 4976062.15910520311445, 3900791.799940690398216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975924.476524633355439, 3902217.091824671719223 ], [ 4975917.542011972516775, 3902228.365779542829841 ], [ 4975885.328094156458974, 3902208.637195876799524 ], [ 4975915.377407310530543, 3902159.904745997395366 ], [ 4975951.330676867626607, 3902181.825761921238154 ], [ 4975941.217972593382001, 3902198.191075955051929 ], [ 4975952.147187461145222, 3902205.131808774080127 ], [ 4975939.145046069286764, 3902226.224945951718837 ], [ 4975924.476524633355439, 3902217.091824671719223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974232.72189615573734, 3909008.765513369813561 ], [ 4974226.403703963384032, 3909000.742140178103 ], [ 4974239.956234729848802, 3908990.209023343864828 ], [ 4974266.090544229373336, 3909023.396635296288878 ], [ 4974232.641474416479468, 3909049.548193976283073 ], [ 4974212.825343667529523, 3909024.383982611820102 ], [ 4974232.72189615573734, 3909008.765513369813561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974243.270623286254704, 3896501.975499894004315 ], [ 4974203.490625742822886, 3896517.190554375294596 ], [ 4974189.448978993110359, 3896480.38579421536997 ], [ 4974172.729594198986888, 3896486.907206792384386 ], [ 4974162.413813884370029, 3896459.577169931959361 ], [ 4974210.84090715367347, 3896441.466052654199302 ], [ 4974228.608442421071231, 3896487.745539034716785 ], [ 4974236.680097632110119, 3896484.484281030483544 ], [ 4974243.270623286254704, 3896501.975499894004315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974210.783302071504295, 3898224.974226560909301 ], [ 4974234.706527094356716, 3898216.282251953613013 ], [ 4974236.138752085156739, 3898220.290506343357265 ], [ 4974265.538040670566261, 3898209.788704161997885 ], [ 4974278.42944866605103, 3898245.134754075668752 ], [ 4974225.107716569676995, 3898263.964375747833401 ], [ 4974210.783302071504295, 3898224.974226560909301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974158.702603742480278, 3902733.900766209233552 ], [ 4974145.440668167546391, 3902741.521412937436253 ], [ 4974130.516087641008198, 3902716.002865926362574 ], [ 4974167.708005137741566, 3902694.228209191467613 ], [ 4974179.475584933534265, 3902714.278592391870916 ], [ 4974189.278244537301362, 3902708.47180336015299 ], [ 4974217.117904772050679, 3902756.227830892428756 ], [ 4974183.386039422824979, 3902775.824448326602578 ], [ 4974158.702603742480278, 3902733.900766209233552 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974125.019903756678104, 3896579.666399745736271 ], [ 4974072.554811706766486, 3896600.682775154709816 ], [ 4974055.071548827923834, 3896556.224596316926181 ], [ 4974062.566362963058054, 3896553.326282559428364 ], [ 4974057.693970794789493, 3896540.936299190390855 ], [ 4974093.439110860228539, 3896526.805485893506557 ], [ 4974108.343558040447533, 3896564.340152784250677 ], [ 4974117.280017485842109, 3896560.716429701540619 ], [ 4974125.019903756678104, 3896579.666399745736271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974077.058353003114462, 3903980.525454280432314 ], [ 4974036.41989173181355, 3903998.652166055049747 ], [ 4974014.056787910871208, 3903948.722252095583826 ], [ 4974035.961267898790538, 3903938.933722931426018 ], [ 4974037.968424525111914, 3903943.307241783011705 ], [ 4974065.349222361110151, 3903930.980575044173747 ], [ 4974079.685806632041931, 3903962.324051603674889 ], [ 4974070.463130707852542, 3903966.311367298010737 ], [ 4974077.058353003114462, 3903980.525454280432314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974017.783008026890457, 3905130.700357660651207 ], [ 4974005.919865056872368, 3905159.807594188954681 ], [ 4973982.903177103959024, 3905149.930863194633275 ], [ 4973994.765584720298648, 3905121.187746882904321 ], [ 4974017.783008026890457, 3905130.700357660651207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975723.602784304879606, 3909961.040614 ], [ 4975713.437765692360699, 3910004.715935930144042 ], [ 4975670.561638194136322, 3909994.433337037917227 ], [ 4975680.725853198207915, 3909951.122130408417434 ], [ 4975723.602784304879606, 3909961.040614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975686.053578230552375, 3905615.774338447488844 ], [ 4975716.500452451407909, 3905652.977475354447961 ], [ 4975684.196823817677796, 3905679.493637283798307 ], [ 4975653.749935145489872, 3905642.2905363724567 ], [ 4975686.053578230552375, 3905615.774338447488844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975627.917618047446012, 3905459.079978961497545 ], [ 4975663.960339929908514, 3905434.756114135496318 ], [ 4975689.797357312403619, 3905473.406408743001521 ], [ 4975653.755400881171227, 3905497.366109252907336 ], [ 4975627.917618047446012, 3905459.079978961497545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975531.46580551750958, 3898895.059552550781518 ], [ 4975513.516866902820766, 3898940.539595721755177 ], [ 4975475.240803737193346, 3898925.533006734214723 ], [ 4975481.320008734241128, 3898910.251799923367798 ], [ 4975473.837450433522463, 3898907.323661363683641 ], [ 4975485.706387266516685, 3898877.488925384357572 ], [ 4975531.46580551750958, 3898895.059552550781518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973978.632020646706223, 3902777.242586968932301 ], [ 4973930.48447098582983, 3902805.550387559924275 ], [ 4973904.365785554982722, 3902761.075207996647805 ], [ 4973936.080207759514451, 3902742.202547850087285 ], [ 4973949.283532043918967, 3902764.440431824419647 ], [ 4973965.716702481731772, 3902755.005253283772618 ], [ 4973978.632020646706223, 3902777.242586968932301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973954.11125301476568, 3899127.512593530584127 ], [ 4973976.30693409498781, 3899118.088737970683724 ], [ 4973980.034692380577326, 3899126.471047594677657 ], [ 4974004.247914435341954, 3899116.322912658099085 ], [ 4974017.436533685773611, 3899146.935746177099645 ], [ 4973970.739665282890201, 3899166.507146312855184 ], [ 4973954.11125301476568, 3899127.512593530584127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973901.716042957268655, 3896909.857913006097078 ], [ 4973846.955303727649152, 3896926.864806827623397 ], [ 4973829.492537826299667, 3896871.847042374778539 ], [ 4973864.655338652431965, 3896860.627822428010404 ], [ 4973874.960572816431522, 3896893.419677626341581 ], [ 4973894.847341951914132, 3896887.268411836586893 ], [ 4973901.716042957268655, 3896909.857913006097078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973845.352177233435214, 3904809.926528833806515 ], [ 4973828.955213705077767, 3904801.519415815826505 ], [ 4973824.041480072773993, 3904810.97722185170278 ], [ 4973805.055776788853109, 3904801.108532691374421 ], [ 4973811.413547434844077, 3904789.46875849692151 ], [ 4973798.18120467569679, 3904782.524380613584071 ], [ 4973815.812629476189613, 3904748.694632288534194 ], [ 4973844.003631256520748, 3904763.315053375903517 ], [ 4973853.541753529570997, 3904745.127146656159312 ], [ 4973873.96510998532176, 3904756.091079587582499 ], [ 4973845.352177233435214, 3904809.926528833806515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973753.862633970566094, 3904179.43605286302045 ], [ 4973810.61787043325603, 3904165.710007290355861 ], [ 4973814.617977045476437, 3904181.739612751640379 ], [ 4973827.006679345853627, 3904178.4866659110412 ], [ 4973832.148639782331884, 3904199.616347800008953 ], [ 4973820.624538979493082, 3904202.506852286867797 ], [ 4973824.623209277167916, 3904219.264719629194587 ], [ 4973786.882672904990613, 3904228.294194903690368 ], [ 4973779.73991009965539, 3904199.513850796967745 ], [ 4973760.149376704357564, 3904204.209271567407995 ], [ 4973753.862633970566094, 3904179.43605286302045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973722.466950160451233, 3899610.98858503671363 ], [ 4973692.784948636777699, 3899619.669783064164221 ], [ 4973685.058428457006812, 3899594.16558123473078 ], [ 4973715.02846509590745, 3899585.484937005210668 ], [ 4973722.466950160451233, 3899610.98858503671363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973722.27714431937784, 3899708.211031199898571 ], [ 4973674.137874352745712, 3899729.600787047296762 ], [ 4973663.81503392662853, 3899706.276308092754334 ], [ 4973673.039818968623877, 3899701.924734118860215 ], [ 4973665.584269789047539, 3899685.160194798372686 ], [ 4973704.498807647265494, 3899668.121984118595719 ], [ 4973722.27714431937784, 3899708.211031199898571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973714.099181719124317, 3897848.217965553980321 ], [ 4973657.601654285565019, 3897870.683810952119529 ], [ 4973644.990179344080389, 3897838.979914281051606 ], [ 4973677.850963659584522, 3897825.935308946296573 ], [ 4973671.258267942816019, 3897809.536600821185857 ], [ 4973694.895079076290131, 3897800.115328962914646 ], [ 4973714.099181719124317, 3897848.217965553980321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973623.38879610132426, 3910249.991317681502551 ], [ 4973606.377432701177895, 3910263.066940790042281 ], [ 4973591.156591154634953, 3910243.738247758708894 ], [ 4973602.40153630822897, 3910235.020971154794097 ], [ 4973598.667410266585648, 3910230.644102157093585 ], [ 4973631.537184337154031, 3910205.21887506917119 ], [ 4973647.90604998357594, 3910226.370493215043098 ], [ 4973621.09131271392107, 3910247.073777112178504 ], [ 4973623.38879610132426, 3910249.991317681502551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973368.271937696263194, 3903442.411963783204556 ], [ 4973361.093916215933859, 3903431.474107216112316 ], [ 4973341.198695089668036, 3903444.544259377755225 ], [ 4973323.109620108269155, 3903417.199360731523484 ], [ 4973364.05268544703722, 3903390.697148770093918 ], [ 4973389.320459773764014, 3903428.615806789137423 ], [ 4973368.271937696263194, 3903442.411963783204556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973249.977384420111775, 3902518.018032999243587 ], [ 4973219.420726327225566, 3902533.980690539348871 ], [ 4973210.811662533320487, 3902518.306410258170217 ], [ 4973241.657015966251493, 3902501.980170561932027 ], [ 4973249.977384420111775, 3902518.018032999243587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975070.200532434508204, 3900263.626469767186791 ], [ 4975096.982551162131131, 3900264.77250517392531 ], [ 4975095.767075168900192, 3900296.449429748114198 ], [ 4975068.985087958164513, 3900295.303395527414978 ], [ 4975070.200532434508204, 3900263.626469767186791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975045.99887297488749, 3910768.050157094374299 ], [ 4975058.619343569502234, 3910791.379937100224197 ], [ 4975035.851294057443738, 3910803.71486532734707 ], [ 4975023.231538361869752, 3910780.020964380353689 ], [ 4975045.99887297488749, 3910768.050157094374299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972911.724518883042037, 3910391.71761768637225 ], [ 4972902.204425190575421, 3910401.895030773244798 ], [ 4972879.50001735240221, 3910381.459955392405391 ], [ 4972889.020809516310692, 3910370.918402960058302 ], [ 4972911.724518883042037, 3910391.71761768637225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974827.884105103090405, 3904938.949457293841988 ], [ 4974794.741313382051885, 3904953.084529487881809 ], [ 4974784.422919606789947, 3904929.031286295037717 ], [ 4974772.606724319048226, 3904934.105591032654047 ], [ 4974761.428071597591043, 3904908.229985675774515 ], [ 4974806.67579634860158, 3904888.657021583523601 ], [ 4974814.414227311499417, 3904906.879024617373943 ], [ 4974825.365858927369118, 3904902.167146175634116 ], [ 4974831.383819852024317, 3904916.744408330880105 ], [ 4974820.432193104177713, 3904921.456284356303513 ], [ 4974827.884105103090405, 3904938.949457293841988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974721.179026018828154, 3909795.167167413514107 ], [ 4974746.726005064323545, 3909833.45195489982143 ], [ 4974727.122734754346311, 3909846.521705819759518 ], [ 4974723.390186835080385, 3909841.416419067420065 ], [ 4974701.480840337462723, 3909855.938129847869277 ], [ 4974679.378478863276541, 3909822.758092411328107 ], [ 4974721.179026018828154, 3909795.167167413514107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974655.88258555252105, 3908028.266512734815478 ], [ 4974631.084654662758112, 3908046.787981209810823 ], [ 4974612.70702550560236, 3908021.990481470245868 ], [ 4974637.504966507665813, 3908003.468996319454163 ], [ 4974655.88258555252105, 3908028.266512734815478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974626.936446661129594, 3910569.490161220543087 ], [ 4974665.558108715340495, 3910547.354816503822803 ], [ 4974678.755521455779672, 3910570.321428223513067 ], [ 4974687.113798537291586, 3910565.604324322193861 ], [ 4974701.459127977490425, 3910590.393895019777119 ], [ 4974672.925279637798667, 3910606.723120183683932 ], [ 4974671.204447596333921, 3910603.442502676509321 ], [ 4974652.757682331837714, 3910614.32981538772583 ], [ 4974626.936446661129594, 3910569.490161220543087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974635.861056770198047, 3899988.934069650713354 ], [ 4974680.792759153991938, 3899987.56683287024498 ], [ 4974681.874562351964414, 3900022.889642012305558 ], [ 4974636.942918948829174, 3900024.256877017207444 ], [ 4974635.861056770198047, 3899988.934069650713354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974596.752453562803566, 3901554.618279566057026 ], [ 4974636.957989826798439, 3901611.502527630422264 ], [ 4974625.710556318983436, 3901619.491066183429211 ], [ 4974630.880593261681497, 3901626.419820789713413 ], [ 4974659.719155791215599, 3901606.449919423554093 ], [ 4974691.596745567396283, 3901651.301384068559855 ], [ 4974609.117411032319069, 3901709.034308671951294 ], [ 4974605.097163030877709, 3901703.200233129784465 ], [ 4974592.11968881264329, 3901712.277744151186198 ], [ 4974580.920000365003943, 3901696.233759114984423 ], [ 4974593.032072120346129, 3901687.882786813657731 ], [ 4974578.673185925930738, 3901667.462962355930358 ], [ 4974588.767190957441926, 3901660.200376483611763 ], [ 4974567.228826302103698, 3901629.570646703708917 ], [ 4974573.573222956620157, 3901625.213663625530899 ], [ 4974548.014535212889314, 3901588.749880058225244 ], [ 4974596.752453562803566, 3901554.618279566057026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974591.291255850344896, 3903000.207494986709207 ], [ 4974615.792091260664165, 3902988.603939914144576 ], [ 4974628.983883026987314, 3903016.304106965661049 ], [ 4974604.771039712242782, 3903027.908221926540136 ], [ 4974591.291255850344896, 3903000.207494986709207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972582.513979873619974, 3913933.738137157168239 ], [ 4972563.2825937718153, 3913904.934843390248716 ], [ 4972593.545757469721138, 3913884.965322501026094 ], [ 4972612.777125543914735, 3913913.768637562636286 ], [ 4972582.513979873619974, 3913933.738137157168239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974184.047913258895278, 3899807.795853161253035 ], [ 4974188.031960677355528, 3899832.200439870823175 ], [ 4974139.055031969211996, 3899840.114888336043805 ], [ 4974131.657126422971487, 3899794.219895704649389 ], [ 4974174.295823905616999, 3899787.385343734640628 ], [ 4974177.709605586715043, 3899808.87576212361455 ], [ 4974184.047913258895278, 3899807.795853161253035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974158.243615372106433, 3909401.517749132588506 ], [ 4974178.41628492064774, 3909391.72590150590986 ], [ 4974197.629098956473172, 3909430.725942831952125 ], [ 4974177.168547708541155, 3909440.517209113575518 ], [ 4974158.243615372106433, 3909401.517749132588506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972011.942809566855431, 3898102.389418684877455 ], [ 4972042.210934270173311, 3898088.973787575960159 ], [ 4972053.109793182462454, 3898113.39109615329653 ], [ 4972023.12971559446305, 3898126.807259253691882 ], [ 4972011.942809566855431, 3898102.389418684877455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974066.088419063016772, 3900184.438843029551208 ], [ 4974109.026658468879759, 3900171.414556906092912 ], [ 4974119.328160627745092, 3900205.298957793507725 ], [ 4974076.389970269054174, 3900218.323227724526078 ], [ 4974066.088419063016772, 3900184.438843029551208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973987.574387459084392, 3900274.58904063468799 ], [ 4973942.039357040077448, 3900290.157343815546483 ], [ 4973927.720619439147413, 3900248.618394357617944 ], [ 4973947.894351862370968, 3900241.739461642690003 ], [ 4973949.32651046756655, 3900245.747705610003322 ], [ 4973974.975869609043002, 3900237.058877566829324 ], [ 4973987.574387459084392, 3900274.58904063468799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973892.042381103150547, 3909491.663872419390827 ], [ 4973915.976902354508638, 3909472.04761862102896 ], [ 4973946.423974891193211, 3909508.156444684136659 ], [ 4973922.48946341779083, 3909527.772671793121845 ], [ 4973892.042381103150547, 3909491.663872419390827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973838.621009279042482, 3900303.063490302301943 ], [ 4973853.533674838021398, 3900335.500292093958706 ], [ 4973809.141573720611632, 3900355.804754841141403 ], [ 4973790.213215609081089, 3900314.985124420374632 ], [ 4973812.121282457374036, 3900304.832305231131613 ], [ 4973816.136215373873711, 3900313.579290467314422 ], [ 4973838.621009279042482, 3900303.063490302301943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973820.721638509072363, 3900030.658849647734314 ], [ 4973835.885435975156724, 3900082.030912850052118 ], [ 4973811.967559348791838, 3900088.902606655377895 ], [ 4973806.532507214695215, 3900069.957192484289408 ], [ 4973782.614627412520349, 3900076.828912360593677 ], [ 4973773.173106995411217, 3900044.766977047547698 ], [ 4973820.721638509072363, 3900030.658849647734314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973772.52797829080373, 3904648.10969984671101 ], [ 4973720.918577151373029, 3904681.508976299315691 ], [ 4973692.495605987496674, 3904638.121844325680286 ], [ 4973723.346646477468312, 3904617.790705250110477 ], [ 4973738.56348386220634, 3904640.760707320645452 ], [ 4973759.034637962467968, 3904627.32783502433449 ], [ 4973772.52797829080373, 3904648.10969984671101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971891.592143954709172, 3900983.161554132122546 ], [ 4971933.359589315950871, 3900978.870719647500664 ], [ 4971935.055968323722482, 3900995.623928394634277 ], [ 4971952.915741886943579, 3900993.472831828985363 ], [ 4971954.051919404417276, 3901001.849980174563825 ], [ 4971969.318366965278983, 3901000.422263397369534 ], [ 4971973.844495855271816, 3901043.762352962512523 ], [ 4971914.794083132408559, 3901049.841191634535789 ], [ 4971911.120174447074533, 3901012.692939465865493 ], [ 4971894.989754446782172, 3901014.119061226025224 ], [ 4971891.592143954709172, 3900983.161554132122546 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971881.570424554869533, 3905079.253339315298945 ], [ 4971886.448431420139968, 3905088.365819460712373 ], [ 4971884.430719343014061, 3905089.454412103630602 ], [ 4971889.02283151447773, 3905097.473959430586547 ], [ 4971872.881144105456769, 3905106.182703251484782 ], [ 4971863.698967912234366, 3905089.051224073860794 ], [ 4971881.570424554869533, 3905079.253339315298945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971774.788866375572979, 3902449.660583532880992 ], [ 4971787.121284354478121, 3902476.629462928045541 ], [ 4971745.040844270959496, 3902495.485174890141934 ], [ 4971732.995687425136566, 3902468.880985134746879 ], [ 4971774.788866375572979, 3902449.660583532880992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971705.738635443150997, 3903488.760943179484457 ], [ 4971684.974894447252154, 3903504.743739221710712 ], [ 4971669.462223859503865, 3903484.687414879444987 ], [ 4971689.938003168441355, 3903468.704066544771194 ], [ 4971705.738635443150997, 3903488.760943179484457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973750.671871432103217, 3903159.498099368531257 ], [ 4973687.537259773351252, 3903194.69555787043646 ], [ 4973674.62332365848124, 3903171.730098894797266 ], [ 4973691.920062358491123, 3903162.29643588559702 ], [ 4973687.328154720366001, 3903154.276589947752655 ], [ 4973733.453334175050259, 3903128.877449046820402 ], [ 4973750.671871432103217, 3903159.498099368531257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971549.191201850771904, 3905277.444966143462807 ], [ 4971575.137254291214049, 3905261.107623849995434 ], [ 4971580.879177458584309, 3905270.22166736330837 ], [ 4971607.977733585052192, 3905253.522383893374354 ], [ 4971630.371516183018684, 3905288.885122874286026 ], [ 4971577.3262729505077, 3905322.285830013919622 ], [ 4971549.191201850771904, 3905277.444966143462807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971484.6233468959108, 3905929.483975821640342 ], [ 4971538.247932725585997, 3905893.535237852483988 ], [ 4971558.060704313218594, 3905923.066993478219956 ], [ 4971504.724091885611415, 3905959.016231076326221 ], [ 4971484.6233468959108, 3905929.483975821640342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971318.54018628038466, 3893219.569116596598178 ], [ 4971330.009030079469085, 3893248.720795050729066 ], [ 4971290.225204953923821, 3893264.304259223397821 ], [ 4971278.756324760615826, 3893235.152597482316196 ], [ 4971318.54018628038466, 3893219.569116596598178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973329.928205082193017, 3909110.414032619912177 ], [ 4973361.342602182179689, 3909093.724849146790802 ], [ 4973386.875229081138968, 3909140.747473950497806 ], [ 4973355.460870928131044, 3909157.436628053430468 ], [ 4973329.928205082193017, 3909110.414032619912177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973243.828946260735393, 3904505.070278552826494 ], [ 4973213.261168315075338, 3904527.951434237882495 ], [ 4973183.964195852167904, 3904489.29686485696584 ], [ 4973192.326912476681173, 3904483.122793326154351 ], [ 4973178.540157942101359, 3904464.889576042536646 ], [ 4973200.45728712901473, 3904448.181891231797636 ], [ 4973243.828946260735393, 3904505.070278552826494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973030.874456177465618, 3910262.315733263269067 ], [ 4973053.644848010502756, 3910248.522584551014006 ], [ 4973063.690282606519759, 3910264.563796242699027 ], [ 4973040.919899162836373, 3910278.356936573516577 ], [ 4973030.874456177465618, 3910262.315733263269067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971260.851705510169268, 3912602.158255777321756 ], [ 4971282.682355107739568, 3912627.688230838626623 ], [ 4971224.44189909286797, 3912676.373680410906672 ], [ 4971202.899103461764753, 3912650.844287173822522 ], [ 4971260.851705510169268, 3912602.158255777321756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971000.863763533532619, 3911380.37315937038511 ], [ 4970975.795692176558077, 3911392.343136294279248 ], [ 4970980.672177788801491, 3911401.819619275163859 ], [ 4970956.179900934919715, 3911413.790680464357138 ], [ 4970934.957387763075531, 3911370.055470096413046 ], [ 4970953.686638646759093, 3911360.986790669150651 ], [ 4970947.090918550267816, 3911347.137537290807813 ], [ 4970977.634199369698763, 3911332.264604274649173 ], [ 4971000.863763533532619, 3911380.37315937038511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973023.039067343808711, 3897888.752956112381071 ], [ 4973043.406940668821335, 3897931.395405393559486 ], [ 4973020.343723197467625, 3897942.274875016417354 ], [ 4973016.328875542618334, 3897933.163892378099263 ], [ 4972979.427756585180759, 3897950.571090504527092 ], [ 4972963.652123219333589, 3897916.312514149118215 ], [ 4973023.039067343808711, 3897888.752956112381071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972956.00912391860038, 3912961.125686594750732 ], [ 4972976.639030397869647, 3912861.756998573895544 ], [ 4973010.594033541157842, 3912868.740933198481798 ], [ 4973005.654692773707211, 3912892.400083705317229 ], [ 4973017.164457160979509, 3912894.971193889155984 ], [ 4973011.353797840885818, 3912922.634131538216025 ], [ 4973003.584206166677177, 3912921.162628970574588 ], [ 4972999.226926662027836, 3912941.545702588744462 ], [ 4973010.44880423694849, 3912944.116255448199809 ], [ 4973004.926729839295149, 3912971.415617989376187 ], [ 4972956.00912391860038, 3912961.125686594750732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970902.490765022113919, 3894189.929647272452712 ], [ 4970922.669606007635593, 3894182.320212898310274 ], [ 4970934.136445221491158, 3894212.564122599549592 ], [ 4970913.957623644731939, 3894220.173548507504165 ], [ 4970902.490765022113919, 3894189.929647272452712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970804.287184541113675, 3911822.431433326099068 ], [ 4970785.559648204594851, 3911830.771955932490528 ], [ 4970788.713551769964397, 3911837.696299247909337 ], [ 4970775.459742730483413, 3911843.86212462792173 ], [ 4970764.276788966730237, 3911819.808730724267662 ], [ 4970749.582914175465703, 3911826.336047759279609 ], [ 4970737.541660183109343, 3911799.368019616231322 ], [ 4970761.743596388958395, 3911788.488621027208865 ], [ 4970759.44996122457087, 3911783.38653161842376 ], [ 4970781.923304576426744, 3911773.232231806498021 ], [ 4970804.287184541113675, 3911822.431433326099068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970754.172724129632115, 3902614.533164218999445 ], [ 4970782.6844642451033, 3902613.493306531105191 ], [ 4970784.051865098997951, 3902652.821972403209656 ], [ 4970755.540837419219315, 3902653.497698923107237 ], [ 4970754.172724129632115, 3902614.533164218999445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970739.166465498507023, 3901380.466121597215533 ], [ 4970745.86534883081913, 3901339.695819813758135 ], [ 4970776.6709592808038, 3901344.850400498136878 ], [ 4970769.972701387479901, 3901385.25656526396051 ], [ 4970739.166465498507023, 3901380.466121597215533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972468.967475149780512, 3897838.533901586197317 ], [ 4972464.383306429721415, 3897825.780617773067206 ], [ 4972479.947941496036947, 3897819.984198866412044 ], [ 4972497.140783999115229, 3897866.625609297305346 ], [ 4972456.788434559479356, 3897881.478034113533795 ], [ 4972453.922030041925609, 3897874.189973955508322 ], [ 4972431.727939752861857, 3897882.522693711332977 ], [ 4972421.697573384270072, 3897855.922108043450862 ], [ 4972468.967475149780512, 3897838.533901586197317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972361.771289284341037, 3892107.297960965428501 ], [ 4972360.679847630672157, 3892075.252557020634413 ], [ 4972426.081123188138008, 3892072.82806877605617 ], [ 4972427.171793867833912, 3892105.237602735869586 ], [ 4972361.771289284341037, 3892107.297960965428501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972279.86300337407738, 3907930.795195896178484 ], [ 4972321.356715196743608, 3907913.395687428768724 ], [ 4972347.438353068195283, 3907976.076012897305191 ], [ 4972305.945412838831544, 3907993.11135087441653 ], [ 4972279.86300337407738, 3907930.795195896178484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970539.827396941371262, 3893553.49289859784767 ], [ 4970568.656854281201959, 3893541.529514554422349 ], [ 4970584.432780401781201, 3893578.699619210325181 ], [ 4970555.603355810046196, 3893590.662986601237208 ], [ 4970539.827396941371262, 3893553.49289859784767 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970434.943280042149127, 3898919.478369127493352 ], [ 4970458.004609827883542, 3898908.596674794796854 ], [ 4970478.947800796478987, 3898953.423034900799394 ], [ 4970435.708711732178926, 3898973.37103372393176 ], [ 4970419.929778280667961, 3898939.478058444336057 ], [ 4970439.820237376727164, 3898930.047068566083908 ], [ 4970434.943280042149127, 3898919.478369127493352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970409.836628898978233, 3897686.488185726571828 ], [ 4970457.398882849141955, 3897666.18394095171243 ], [ 4970467.437263887375593, 3897689.506632592529058 ], [ 4970455.906739244237542, 3897694.583340591285378 ], [ 4970464.510296922177076, 3897714.990365795325488 ], [ 4970428.766652991063893, 3897730.218400731682777 ], [ 4970409.836628898978233, 3897686.488185726571828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972003.331275017932057, 3898849.568118413444608 ], [ 4971935.888514629565179, 3898874.201705229934305 ], [ 4971925.287489040754735, 3898844.687171778641641 ], [ 4971937.104443942196667, 3898840.33989153476432 ], [ 4971933.380128817632794, 3898829.773093410301954 ], [ 4971949.808808067813516, 3898823.613864470273256 ], [ 4971952.099898654967546, 3898830.536659488920122 ], [ 4971991.009081487543881, 3898816.409007660578936 ], [ 4972003.331275017932057, 3898849.568118413444608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971948.040291550569236, 3908003.721750893164426 ], [ 4971964.671568774618208, 3908039.802225366234779 ], [ 4971941.618134243413806, 3908050.318556602112949 ], [ 4971924.986832649447024, 3908014.238096171058714 ], [ 4971948.040291550569236, 3908003.721750893164426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971948.779243159107864, 3906696.489063904155046 ], [ 4971973.283817650750279, 3906680.513506100978702 ], [ 4971999.124243643134832, 3906719.524412052705884 ], [ 4971974.619689231738448, 3906735.499946674332023 ], [ 4971948.779243159107864, 3906696.489063904155046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971873.035105199553072, 3904718.747067327611148 ], [ 4971845.589616404846311, 3904766.396601330023259 ], [ 4971754.404698418453336, 3904714.882534751202911 ], [ 4971781.850077613256872, 3904667.232909112237394 ], [ 4971873.035105199553072, 3904718.747067327611148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969915.285254672169685, 3899278.657209074124694 ], [ 4969912.091403162106872, 3899292.852505120914429 ], [ 4969931.380994811654091, 3899296.892868212424219 ], [ 4969926.15324486233294, 3899320.915995212737471 ], [ 4969871.45198037661612, 3899309.164818523917347 ], [ 4969879.584845685400069, 3899271.309988799039274 ], [ 4969915.285254672169685, 3899278.657209074124694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969703.902770759537816, 3897989.618969645351171 ], [ 4969726.638484029099345, 3897999.855602304916829 ], [ 4969707.839300620369613, 3898042.789037700276822 ], [ 4969664.382131399586797, 3898023.411840693093836 ], [ 4969678.841832575388253, 3897991.030324690509588 ], [ 4969699.275311395525932, 3898000.170396472793072 ], [ 4969703.902770759537816, 3897989.618969645351171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969580.426659158430994, 3897139.881748042069376 ], [ 4969560.00033819489181, 3897126.372228408697993 ], [ 4969591.482031526975334, 3897078.727831156458706 ], [ 4969608.16848780401051, 3897089.681737694889307 ], [ 4969603.258771414868534, 3897096.955500166397542 ], [ 4969634.618008386343718, 3897117.403194891288877 ], [ 4969612.955694177187979, 3897150.50001806113869 ], [ 4969585.336361560039222, 3897132.607981217093766 ], [ 4969580.426659158430994, 3897139.881748042069376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969493.271266438998282, 3897233.670660447329283 ], [ 4969475.63320766761899, 3897271.508506099227816 ], [ 4969435.341043992899358, 3897253.229758676607162 ], [ 4969452.979057899676263, 3897215.391886981669813 ], [ 4969493.271266438998282, 3897233.670660447329283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969464.184252538718283, 3910232.009717593435198 ], [ 4969410.637664054520428, 3910230.82128045335412 ], [ 4969410.621998532675207, 3910239.560435852967203 ], [ 4969379.242059743031859, 3910239.140070885885507 ], [ 4969380.2127256533131, 3910179.424057063180953 ], [ 4969419.653821352869272, 3910179.858874655794352 ], [ 4969419.339811495505273, 3910194.423617029562593 ], [ 4969429.703407823108137, 3910194.806332436855882 ], [ 4969430.018076285719872, 3910179.87745871860534 ], [ 4969450.745932864956558, 3910180.278770297300071 ], [ 4969450.725028146989644, 3910191.930977111682296 ], [ 4969464.831270895898342, 3910192.320420838426799 ], [ 4969464.184252538718283, 3910232.009717593435198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971070.912665934301913, 3893465.62438916740939 ], [ 4971083.488072774372995, 3893519.538789538200945 ], [ 4971055.244629410095513, 3893526.040772283449769 ], [ 4971051.244639838114381, 3893508.191040676087141 ], [ 4971039.42818546295166, 3893511.082185598090291 ], [ 4971033.998598108068109, 3893487.403745057061315 ], [ 4971045.815062292851508, 3893484.512597784399986 ], [ 4971042.957244048826396, 3893472.126918484456837 ], [ 4971070.912665934301913, 3893465.62438916740939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970887.875137152150273, 3898516.490708792582154 ], [ 4970890.515072385780513, 3898490.642348778899759 ], [ 4970902.897967214696109, 3898491.757611105684191 ], [ 4970905.536573856137693, 3898466.637510593514889 ], [ 4970951.034542131237686, 3898471.819422997999936 ], [ 4970948.104505945928395, 3898498.759630725253373 ], [ 4970937.737764256075025, 3898497.648074548691511 ], [ 4970935.10114972665906, 3898521.675785839091986 ], [ 4970887.875137152150273, 3898516.490708792582154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970877.007838155142963, 3894886.097664943430573 ], [ 4970846.183418470434844, 3894887.13316579721868 ], [ 4970844.56455840356648, 3894827.77710496308282 ], [ 4970875.389046073891222, 3894826.741602288093418 ], [ 4970877.007838155142963, 3894886.097664943430573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969167.855059104971588, 3899298.069716991856694 ], [ 4969187.408091864548624, 3899315.946963637601584 ], [ 4969150.759784455411136, 3899355.571818605065346 ], [ 4969107.340648819692433, 3899315.804279909469187 ], [ 4969133.023700959049165, 3899287.81199628347531 ], [ 4969156.889812486246228, 3899309.702337004244328 ], [ 4969167.855059104971588, 3899298.069716991856694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969004.520123356021941, 3910172.199269175995141 ], [ 4969033.88616831600666, 3910171.887349198106676 ], [ 4969033.867387264966965, 3910182.447161861229688 ], [ 4969064.961445142515004, 3910181.77421663980931 ], [ 4969065.744126046076417, 3910227.292188309133053 ], [ 4969032.92274808883667, 3910227.962060444522649 ], [ 4969033.188624645583332, 3910240.343042921740562 ], [ 4969005.550026428885758, 3910240.658034009858966 ], [ 4969004.520123356021941, 3910172.199269175995141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968961.961510058492422, 3898953.236301358323544 ], [ 4968916.444607071578503, 3898958.981623875908554 ], [ 4968913.603833763860166, 3898936.764648478943855 ], [ 4968896.895006854087114, 3898938.919804279692471 ], [ 4968894.059378830716014, 3898913.789799417834729 ], [ 4968943.320571282878518, 3898908.051082722377032 ], [ 4968946.159384676255286, 3898931.360447809100151 ], [ 4968959.122712749056518, 3898929.926934296265244 ], [ 4968961.961510058492422, 3898953.236301358323544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968963.589695569127798, 3895277.349568349774927 ], [ 4968929.883954016491771, 3895279.110410481225699 ], [ 4968929.04562059044838, 3895264.543750279583037 ], [ 4968923.572560435160995, 3895264.534043523017317 ], [ 4968922.464893829077482, 3895239.407155547756702 ], [ 4968961.644396559335291, 3895237.291889362968504 ], [ 4968963.589695569127798, 3895277.349568349774927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968901.401391788385808, 3894771.82782139396295 ], [ 4968920.414714302867651, 3894771.133272552862763 ], [ 4968921.51659216824919, 3894799.537306287325919 ], [ 4968875.135580962523818, 3894801.275743007659912 ], [ 4968873.760429861024022, 3894764.496254973579198 ], [ 4968901.128175994381309, 3894763.452364957425743 ], [ 4968901.401391788385808, 3894771.82782139396295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968884.896270032040775, 3891080.624610367696732 ], [ 4968918.641488266177475, 3891059.564969725906849 ], [ 4968909.73618062119931, 3891044.984044808894396 ], [ 4968934.25189049448818, 3891029.734119800385088 ], [ 4968950.914598453789949, 3891056.345053054857999 ], [ 4968928.706292062066495, 3891070.142541089560837 ], [ 4968948.529687363654375, 3891101.49274856550619 ], [ 4968912.188368987292051, 3891124.368392029311508 ], [ 4968884.896270032040775, 3891080.624610367696732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970768.33815720397979, 3898364.427985297050327 ], [ 4970773.442055614665151, 3898408.132994411047548 ], [ 4970729.364617853425443, 3898413.513769515324384 ], [ 4970728.229957113973796, 3898404.044299455825239 ], [ 4970718.435193347744644, 3898405.118661213666201 ], [ 4970716.446513572707772, 3898390.18566923122853 ], [ 4970725.665238071233034, 3898389.11024643201381 ], [ 4970723.396581270731986, 3898369.807178198359907 ], [ 4970768.33815720397979, 3898364.427985297050327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970622.815755819901824, 3897618.786259259097278 ], [ 4970581.317300453782082, 3897630.726351977325976 ], [ 4970568.436102815903723, 3897587.007129495497793 ], [ 4970609.935288513079286, 3897574.702888560481369 ], [ 4970622.815755819901824, 3897618.786259259097278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970611.341009074822068, 3897279.760302438400686 ], [ 4970567.562482437118888, 3897278.223425184842199 ], [ 4970568.784101540222764, 3897240.356167454272509 ], [ 4970588.945188569836318, 3897241.121425905730575 ], [ 4970589.247259070165455, 3897233.475254682358354 ], [ 4970613.152132992632687, 3897234.611533225048333 ], [ 4970611.341009074822068, 3897279.760302438400686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970505.340418435633183, 3897281.750633662566543 ], [ 4970449.151759035885334, 3897293.664014121517539 ], [ 4970438.873155115172267, 3897244.123550213407725 ], [ 4970464.806268108077347, 3897238.709072235971689 ], [ 4970465.375003723427653, 3897242.7155412719585 ], [ 4970495.918679320253432, 3897236.217145983595401 ], [ 4970505.340418435633183, 3897281.750633662566543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970453.938615148887038, 3913079.503469209186733 ], [ 4970433.760072109289467, 3913094.760117351077497 ], [ 4970442.088812758214772, 3913105.335233640857041 ], [ 4970411.533181563019753, 3913128.219698509667069 ], [ 4970387.984250703826547, 3913097.589414561167359 ], [ 4970438.718445925973356, 3913059.448263960890472 ], [ 4970453.938615148887038, 3913079.503469209186733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970485.659324987791479, 3894345.374401834793389 ], [ 4970547.343434195965528, 3894324.732084149960428 ], [ 4970559.377414535731077, 3894360.074684358667582 ], [ 4970497.69337703473866, 3894380.716974857728928 ], [ 4970485.659324987791479, 3894345.374401834793389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968715.497447579167783, 3898745.609901157673448 ], [ 4968718.057460816577077, 3898763.820926040410995 ], [ 4968729.292747404426336, 3898762.384249975439161 ], [ 4968736.69244571775198, 3898812.64727411326021 ], [ 4968693.190834869630635, 3898818.760665209963918 ], [ 4968689.491592092439532, 3898793.265029637143016 ], [ 4968693.237111353315413, 3898792.543380467686802 ], [ 4968686.976547392085195, 3898749.564980963710696 ], [ 4968715.497447579167783, 3898745.609901157673448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968650.250839215703309, 3901772.510817707050592 ], [ 4968628.723780399188399, 3901731.690216896124184 ], [ 4968663.89089563395828, 3901713.181569206528366 ], [ 4968694.602620946243405, 3901771.496685760095716 ], [ 4968672.11914686113596, 3901783.109187360852957 ], [ 4968662.93443130236119, 3901765.614706888329238 ], [ 4968650.250839215703309, 3901772.510817707050592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968577.695977768860757, 3902580.025117089506239 ], [ 4968541.510783526115119, 3902523.15699577331543 ], [ 4968565.727862779051065, 3902507.906124058179557 ], [ 4968581.235717258416116, 3902532.330202139914036 ], [ 4968610.930811475031078, 3902513.447710448410362 ], [ 4968630.172062424942851, 3902543.704491018783301 ], [ 4968604.225188042037189, 3902560.044649686664343 ], [ 4968616.000181804411113, 3902578.271945946849883 ], [ 4968598.990267310291529, 3902589.165898964740336 ], [ 4968588.651305924169719, 3902573.125925017986447 ], [ 4968577.695977768860757, 3902580.025117089506239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968547.763034681789577, 3898806.488069180864841 ], [ 4968560.89200006891042, 3898874.603502981364727 ], [ 4968526.894452037289739, 3898881.098023979924619 ], [ 4968517.474415626376867, 3898833.016283731441945 ], [ 4968524.965433964505792, 3898831.572937943506986 ], [ 4968520.968409677036107, 3898811.538753181230277 ], [ 4968547.763034681789577, 3898806.488069180864841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970374.524984238669276, 3912429.380295145791024 ], [ 4970366.067519426345825, 3912489.082671876996756 ], [ 4970336.424101816490293, 3912485.023026710376143 ], [ 4970339.048211705870926, 3912466.821162658277899 ], [ 4970314.01004458963871, 3912463.134090959094465 ], [ 4970314.88496480602771, 3912456.945424928329885 ], [ 4970304.524247881956398, 3912455.469971679616719 ], [ 4970309.482566676102579, 3912420.158108633942902 ], [ 4970374.524984238669276, 3912429.380295145791024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970137.93298092763871, 3894678.646265769377351 ], [ 4970195.283189909532666, 3894664.549583030864596 ], [ 4970203.291244005784392, 3894696.243408149573952 ], [ 4970145.941098347306252, 3894710.340074064675719 ], [ 4970137.93298092763871, 3894678.646265769377351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968443.255397540517151, 3908128.789013656321913 ], [ 4968442.156169053167105, 3908098.92824726505205 ], [ 4968484.770633332431316, 3908097.546599704306573 ], [ 4968485.581896560266614, 3908127.406861642375588 ], [ 4968443.255397540517151, 3908128.789013656321913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968253.518895922228694, 3901871.949979003053159 ], [ 4968231.315406732261181, 3901888.297039055265486 ], [ 4968224.132333884947002, 3901878.81708355108276 ], [ 4968246.33582650590688, 3901862.470017653889954 ], [ 4968253.518895922228694, 3901871.949979003053159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968230.222101096995175, 3906631.469141782727093 ], [ 4968250.913222301751375, 3906654.445629935711622 ], [ 4968213.135351156815886, 3906687.879703456070274 ], [ 4968192.444223545491695, 3906664.903243915177882 ], [ 4968230.222101096995175, 3906631.469141782727093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969969.89600114710629, 3912363.099473473150283 ], [ 4970001.587755347602069, 3912348.955773467663676 ], [ 4970007.320757687091827, 3912362.439104060642421 ], [ 4970019.132788001559675, 3912357.362680533435196 ], [ 4970026.87361469399184, 3912374.855125001166016 ], [ 4970017.654425179585814, 3912378.843852389138192 ], [ 4970034.283578592352569, 3912416.015626098029315 ], [ 4970007.201801027171314, 3912427.982855409849435 ], [ 4969998.314113947562873, 3912407.939402842894197 ], [ 4969991.111365695483983, 3912411.203532174695283 ], [ 4969969.89600114710629, 3912363.099473473150283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969693.81878053676337, 3900707.832970930729061 ], [ 4969657.532411037012935, 3900707.039329330902547 ], [ 4969658.142510078847408, 3900688.105640914756805 ], [ 4969648.063246958889067, 3900687.723358116112649 ], [ 4969648.664815371856093, 3900673.523351094219834 ], [ 4969682.6465915562585, 3900674.676958042196929 ], [ 4969682.046317555010319, 3900688.148705636616796 ], [ 4969694.429561463184655, 3900688.535153976175934 ], [ 4969693.81878053676337, 3900707.832970930729061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969648.906737728044391, 3897980.052508412860334 ], [ 4969638.497134622186422, 3898002.60982271283865 ], [ 4969574.896314241923392, 3897973.000877388287336 ], [ 4969591.088681261055171, 3897938.073520977050066 ], [ 4969636.2715810155496, 3897958.910224385093898 ], [ 4969630.4881032994017, 3897971.644361435901374 ], [ 4969648.906737728044391, 3897980.052508412860334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969485.323900589719415, 3901982.643554782029241 ], [ 4969471.420315575785935, 3902027.406693570315838 ], [ 4969480.630554301664233, 3902030.336267413105816 ], [ 4969474.546968371607363, 3902050.35254517942667 ], [ 4969464.185456651262939, 3902047.056777140125632 ], [ 4969460.710063022561371, 3902057.974466986954212 ], [ 4969425.307082851417363, 3902047.351187739986926 ], [ 4969442.398642034269869, 3901991.305686238687485 ], [ 4969455.062741121277213, 3901995.333837326616049 ], [ 4969461.146324836649001, 3901975.317555815447122 ], [ 4969485.323900589719415, 3901982.643554782029241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969482.219995618797839, 3900984.191624104510993 ], [ 4969456.299836759455502, 3900984.509250515606254 ], [ 4969455.490714386105537, 3900953.920830570627004 ], [ 4969481.411556193605065, 3900953.239073985721916 ], [ 4969482.219995618797839, 3900984.191624104510993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969483.598827539011836, 3898931.955394645221531 ], [ 4969462.307813732884824, 3898919.536771218758076 ], [ 4969485.131047772243619, 3898880.615795991383493 ], [ 4969527.138370985165238, 3898904.723802827764302 ], [ 4969509.226411846466362, 3898935.278567515313625 ], [ 4969488.510792164131999, 3898923.22508652228862 ], [ 4969483.598827539011836, 3898931.955394645221531 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967656.694276236928999, 3913443.028581451158971 ], [ 4967733.577106933109462, 3913429.324439072050154 ], [ 4967739.280766770243645, 3913460.285642780829221 ], [ 4967662.397392574697733, 3913474.353901362512261 ], [ 4967656.694276236928999, 3913443.028581451158971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967590.842805570922792, 3900213.641017453279346 ], [ 4967582.485075951553881, 3900216.90378177491948 ], [ 4967573.883277523331344, 3900194.67700221342966 ], [ 4967614.806709484197199, 3900179.089961586985737 ], [ 4967632.871100455522537, 3900225.365687017329037 ], [ 4967600.304823693819344, 3900238.054068448022008 ], [ 4967590.842805570922792, 3900213.641017453279346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967578.04870751593262, 3899448.945359111763537 ], [ 4967547.513900808990002, 3899452.169916494283825 ], [ 4967545.814059249125421, 3899435.781129460781813 ], [ 4967576.348884357139468, 3899432.556570173241198 ], [ 4967578.04870751593262, 3899448.945359111763537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967551.710576243698597, 3899691.046576197724789 ], [ 4967522.039445802569389, 3899694.636780641507357 ], [ 4967516.358883598819375, 3899648.382459797896445 ], [ 4967546.030064314603806, 3899644.792249191552401 ], [ 4967551.710576243698597, 3899691.046576197724789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969394.101586515083909, 3891329.867231939453632 ], [ 4969424.068993911147118, 3891327.007882996927947 ], [ 4969426.897122566588223, 3891356.507359736599028 ], [ 4969397.217193292453885, 3891359.731348853092641 ], [ 4969394.101586515083909, 3891329.867231939453632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969343.657464159652591, 3903740.414100249763578 ], [ 4969377.957250144332647, 3903722.633078351151198 ], [ 4969393.455834340304136, 3903751.42720331903547 ], [ 4969359.155422874726355, 3903769.572335788048804 ], [ 4969343.657464159652591, 3903740.414100249763578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967201.779786507599056, 3899690.810158334672451 ], [ 4967152.82022962346673, 3899689.634106946177781 ], [ 4967153.737737586721778, 3899658.320473071653396 ], [ 4967202.697351478040218, 3899659.496526110451669 ], [ 4967201.779786507599056, 3899690.810158334672451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969036.081591870635748, 3912822.050669631455094 ], [ 4969045.627869482152164, 3912795.850060157012194 ], [ 4969075.834555331617594, 3912806.827816055156291 ], [ 4969066.288252102211118, 3912833.028414973523468 ], [ 4969036.081591870635748, 3912822.050669631455094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968979.762868002988398, 3894117.990873956587166 ], [ 4969026.42277907487005, 3894122.079177451319993 ], [ 4969023.774516688659787, 3894153.389572976157069 ], [ 4968976.826591834425926, 3894149.300762576051056 ], [ 4968979.762868002988398, 3894117.990873956587166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968898.154746455140412, 3902452.053165882825851 ], [ 4968925.716087276116014, 3902499.803193329367787 ], [ 4968879.304476304911077, 3902526.302454922348261 ], [ 4968867.533509109169245, 3902505.890265323687345 ], [ 4968872.722278754226863, 3902502.986412287224084 ], [ 4968856.931853648275137, 3902475.648618273902684 ], [ 4968898.154746455140412, 3902452.053165882825851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967074.197666592895985, 3899687.315164172556251 ], [ 4967014.290678268298507, 3899687.941353946458548 ], [ 4967013.785341120325029, 3899646.42964637465775 ], [ 4967039.994766155257821, 3899646.110155296511948 ], [ 4967039.974914891645312, 3899657.76228900346905 ], [ 4967073.672556080855429, 3899657.455589178483933 ], [ 4967074.197666592895985, 3899687.315164172556251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966972.60439823102206, 3896765.363636357709765 ], [ 4966943.2163005778566, 3896770.047349061816931 ], [ 4966939.225212832912803, 3896745.643881433643401 ], [ 4966968.613336448557675, 3896740.960164435673505 ], [ 4966972.60439823102206, 3896765.363636357709765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968617.836415496654809, 3890584.209921961184591 ], [ 4968634.271289275959134, 3890576.956314877606928 ], [ 4968641.443774037063122, 3890594.082987990695983 ], [ 4968625.297656149603426, 3890600.972971211653203 ], [ 4968617.836415496654809, 3890584.209921961184591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968522.475641697645187, 3907286.326703825499862 ], [ 4968482.37890266533941, 3907328.859630478546023 ], [ 4968441.272559834644198, 3907290.553548097610474 ], [ 4968470.406932734884322, 3907260.017648236826062 ], [ 4968472.419223829172552, 3907261.841844420880079 ], [ 4968483.668869170360267, 3907250.209395067300647 ], [ 4968522.475641697645187, 3907286.326703825499862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968409.62912991642952, 3913342.746618681121618 ], [ 4968363.267370001412928, 3913351.768603317905217 ], [ 4968357.560574417933822, 3913322.992062494158745 ], [ 4968403.923021194525063, 3913313.605935984756798 ], [ 4968409.62912991642952, 3913342.746618681121618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966706.857372905127704, 3898911.822422380093485 ], [ 4966716.569251184351742, 3898959.539888466708362 ], [ 4966709.94241504650563, 3898960.985199749469757 ], [ 4966714.227550248615444, 3898981.747862233780324 ], [ 4966683.68739422224462, 3898987.886432397179306 ], [ 4966669.978311608545482, 3898919.406808539759368 ], [ 4966706.857372905127704, 3898911.822422380093485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966596.63737721554935, 3898687.332137894351035 ], [ 4966629.772486222907901, 3898679.741330357734114 ], [ 4966645.497924827970564, 3898748.224328940268606 ], [ 4966612.362895703874528, 3898755.815117403399199 ], [ 4966596.63737721554935, 3898687.332137894351035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968404.414879993535578, 3901712.725050743669271 ], [ 4968448.353424875065684, 3901783.079409627709538 ], [ 4968419.811500281095505, 3901800.871705551631749 ], [ 4968375.872910024598241, 3901730.51739257434383 ], [ 4968404.414879993535578, 3901712.725050743669271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968334.882425989955664, 3898661.918799920473248 ], [ 4968366.864068011753261, 3898655.420502620283514 ], [ 4968377.71112435311079, 3898711.151417731773108 ], [ 4968340.25591294746846, 3898718.368372237309813 ], [ 4968335.403607196174562, 3898693.234897473361343 ], [ 4968340.877883137203753, 3898692.152097668033093 ], [ 4968334.882425989955664, 3898661.918799920473248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967918.93914910312742, 3897690.787104880437255 ], [ 4967948.617605423554778, 3897684.284313100855798 ], [ 4967946.044946579262614, 3897672.991819004993886 ], [ 4967977.74027257040143, 3897666.12843343988061 ], [ 4967982.885562796145678, 3897688.713427951559424 ], [ 4967975.969682161696255, 3897690.522053943481296 ], [ 4967980.826939575374126, 3897713.106547686737031 ], [ 4967952.589287310838699, 3897719.247677478473634 ], [ 4967951.732790725305676, 3897714.876631301827729 ], [ 4967925.511985650286078, 3897720.65716395759955 ], [ 4967918.93914910312742, 3897690.787104880437255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967810.23626695945859, 3897923.641696263570338 ], [ 4967711.119627561420202, 3897943.861461722757667 ], [ 4967696.267429986968637, 3897871.373949144035578 ], [ 4967795.383694684132934, 3897851.518258576281369 ], [ 4967810.23626695945859, 3897923.641696263570338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967800.858318631537259, 3896187.090964562259614 ], [ 4967771.17887669056654, 3896193.229785260744393 ], [ 4967758.330843613483012, 3896127.300114324782044 ], [ 4967786.569491863250732, 3896121.522914688568562 ], [ 4967790.566209557466209, 3896142.285215076990426 ], [ 4967797.193168154917657, 3896141.204301062040031 ], [ 4967801.763444670476019, 3896163.424114537425339 ], [ 4967796.577352649532259, 3896164.143392891157418 ], [ 4967800.858318631537259, 3896187.090964562259614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965886.834973772056401, 3900147.762455099262297 ], [ 4965878.429061251692474, 3900180.156094556674361 ], [ 4965826.898847405798733, 3900166.597757421433926 ], [ 4965835.304701974615455, 3900134.2041021049954 ], [ 4965886.834973772056401, 3900147.762455099262297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967704.601794431917369, 3901548.01162221422419 ], [ 4967722.700362863019109, 3901573.896189311984926 ], [ 4967701.651421210728586, 3901588.789157647639513 ], [ 4967683.265483416616917, 3901562.539977339562029 ], [ 4967704.601794431917369, 3901548.01162221422419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967675.327677864581347, 3903990.187209685798734 ], [ 4967751.440457389689982, 3903937.883915400132537 ], [ 4967772.98408891633153, 3903968.872355051804334 ], [ 4967759.145502549596131, 3903978.315812373999506 ], [ 4967770.635003216564655, 3903995.085735080298036 ], [ 4967739.498544696718454, 3904016.151462147943676 ], [ 4967723.987638453021646, 3903993.548498397693038 ], [ 4967692.561994190327823, 3904015.342042080592364 ], [ 4967675.327677864581347, 3903990.187209685798734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965578.334647262468934, 3891792.302610158454627 ], [ 4965557.298457111231983, 3891795.545090655330569 ], [ 4965551.022811864502728, 3891757.665383921470493 ], [ 4965607.504733382724226, 3891748.291171677410603 ], [ 4965611.782876184210181, 3891774.51548306690529 ], [ 4965576.625900723971426, 3891780.283551893662661 ], [ 4965578.334647262468934, 3891792.302610158454627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965551.110949769616127, 3906382.586170829366893 ], [ 4965565.570237816311419, 3906344.740318228956312 ], [ 4965624.272718407213688, 3906367.049227965064347 ], [ 4965610.10129594989121, 3906404.895524841267616 ], [ 4965551.110949769616127, 3906382.586170829366893 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965544.301898895762861, 3897759.230896843131632 ], [ 4965576.84137693233788, 3897764.018225472420454 ], [ 4965564.609085653908551, 3897845.927261127158999 ], [ 4965529.478050826117396, 3897840.771547794342041 ], [ 4965534.429122198373079, 3897807.643892183434218 ], [ 4965514.559949618764222, 3897804.698126053903252 ], [ 4965517.764245197176933, 3897782.855615197215229 ], [ 4965540.513121399097145, 3897786.170258318539709 ], [ 4965544.301898895762861, 3897759.230896843131632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965355.099661499261856, 3892471.763530330266804 ], [ 4965317.937796775251627, 3892470.974333437625319 ], [ 4965318.865919260308146, 3892432.014089384116232 ], [ 4965356.027240441180766, 3892433.167415210045874 ], [ 4965355.099661499261856, 3892471.763530330266804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965305.861383429728448, 3905986.735992962028831 ], [ 4965323.770457508042455, 3905952.172860163729638 ], [ 4965351.390110195614398, 3905966.055176241323352 ], [ 4965347.634924234822392, 3905973.331645255442709 ], [ 4965404.024100947193801, 3906002.190639719367027 ], [ 4965388.7141956044361, 3906032.024278605356812 ], [ 4965327.433656628243625, 3906000.972502185031772 ], [ 4965328.59019810706377, 3905998.061346537433565 ], [ 4965305.861383429728448, 3905986.735992962028831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965246.43227441702038, 3900427.086870041675866 ], [ 4965279.539205885492265, 3900435.151953720487654 ], [ 4965258.659484171308577, 3900522.873177159577608 ], [ 4965225.264655085280538, 3900514.807647550012916 ], [ 4965246.43227441702038, 3900427.086870041675866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965223.56768799200654, 3898207.312227267306298 ], [ 4965226.198629877530038, 3898183.648089500609785 ], [ 4965239.157945397309959, 3898184.761684818658978 ], [ 4965241.791286977007985, 3898159.641033315565437 ], [ 4965270.876422049477696, 3898162.96582051878795 ], [ 4965265.612075112760067, 3898211.75060291076079 ], [ 4965223.56768799200654, 3898207.312227267306298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966955.534461270086467, 3913231.721573150716722 ], [ 4966980.584764209575951, 3913228.122872113250196 ], [ 4966985.989693304523826, 3913266.001934194006026 ], [ 4966960.940044533461332, 3913269.236498049926013 ], [ 4966955.534461270086467, 3913231.721573150716722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966752.565864473581314, 3899132.926729893777519 ], [ 4966769.426125450991094, 3899211.243255245499313 ], [ 4966735.716220789588988, 3899218.468789129052311 ], [ 4966718.85586623288691, 3899140.152284580282867 ], [ 4966752.565864473581314, 3899132.926729893777519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965201.775655736215413, 3891804.793004957493395 ], [ 4965203.552431881427765, 3891775.301500676665455 ], [ 4965224.293354607187212, 3891776.427802565973252 ], [ 4965223.699896773323417, 3891786.986558536067605 ], [ 4965234.646241686306894, 3891787.732721670065075 ], [ 4965233.462893013842404, 3891806.66546814609319 ], [ 4965201.775655736215413, 3891804.793004957493395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964990.313316194340587, 3899771.962573252618313 ], [ 4965004.498002433218062, 3899727.561775465030223 ], [ 4965033.85998632479459, 3899736.712846004869789 ], [ 4965019.962670744396746, 3899781.478226820006967 ], [ 4964990.313316194340587, 3899771.962573252618313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966637.621556689962745, 3897101.615841738414019 ], [ 4966600.165189701132476, 3897108.471085469704121 ], [ 4966598.452945554628968, 3897099.000825255177915 ], [ 4966577.70758911408484, 3897102.971260746475309 ], [ 4966572.568986336700618, 3897075.652870861347765 ], [ 4966631.058201290667057, 3897065.191793251782656 ], [ 4966637.621556689962745, 3897101.615841738414019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964841.923300981521606, 3901765.699730230029672 ], [ 4964886.588939214125276, 3901748.658074788283557 ], [ 4964898.060489969328046, 3901778.171285859774798 ], [ 4964853.394893418997526, 3901795.212922533974051 ], [ 4964841.923300981521606, 3901765.699730230029672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964744.99119492713362, 3901513.928422543685883 ], [ 4964770.393176566809416, 3901477.55648586479947 ], [ 4964789.666627844795585, 3901491.06053448934108 ], [ 4964782.738965066149831, 3901500.880838148295879 ], [ 4964802.587780959904194, 3901514.74995882762596 ], [ 4964776.030888342298567, 3901552.94064846355468 ], [ 4964755.606699365191162, 3901538.706485048867762 ], [ 4964763.977233663201332, 3901527.067857321351767 ], [ 4964744.99119492713362, 3901513.928422543685883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964730.061070472002029, 3902731.921540634706616 ], [ 4964757.694955302402377, 3902739.248880966566503 ], [ 4964742.624752528965473, 3902798.213688196148723 ], [ 4964714.990335375070572, 3902791.250493014231324 ], [ 4964730.061070472002029, 3902731.921540634706616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964629.849891087971628, 3903977.815860770177096 ], [ 4964633.661005075089633, 3903935.946933352854103 ], [ 4964667.059992496855557, 3903938.913921995088458 ], [ 4964663.248826875351369, 3903980.782844747416675 ], [ 4964629.849891087971628, 3903977.815860770177096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964624.602219232358038, 3906871.924192803446203 ], [ 4964650.832209115847945, 3906854.488221471197903 ], [ 4964668.354261785745621, 3906880.369885059539229 ], [ 4964642.124285710975528, 3906897.805839562322944 ], [ 4964624.602219232358038, 3906871.924192803446203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966248.113579513505101, 3911252.192551884334534 ], [ 4966235.445442954078317, 3911252.899602362886071 ], [ 4966235.718694058246911, 3911261.639247206971049 ], [ 4966202.898047028109431, 3911262.676708839368075 ], [ 4966202.621738888323307, 3911255.757723242975771 ], [ 4966189.378445472568274, 3911256.099700283259153 ], [ 4966188.002976264804602, 3911217.863455700688064 ], [ 4966246.735144310630858, 3911215.776963254902512 ], [ 4966248.113579513505101, 3911252.192551884334534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966074.892539348453283, 3894107.892517620697618 ], [ 4966046.639406120404601, 3894121.31819664966315 ], [ 4966026.544996104203165, 3894079.045753954909742 ], [ 4966055.086232263594866, 3894065.620534253306687 ], [ 4966074.892539348453283, 3894107.892517620697618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964606.095450419932604, 3899781.17155649419874 ], [ 4964634.336045125499368, 3899771.385610919445753 ], [ 4964643.223713710904121, 3899796.524943092372268 ], [ 4964614.983142143115401, 3899806.310879472643137 ], [ 4964606.095450419932604, 3899781.17155649419874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964385.462791218422353, 3892792.080035943537951 ], [ 4964430.677089686505497, 3892801.255837222095579 ], [ 4964423.707565157674253, 3892835.836871082428843 ], [ 4964378.20524060446769, 3892826.660619185306132 ], [ 4964385.462791218422353, 3892792.080035943537951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965851.142279479652643, 3894754.57774390373379 ], [ 4965892.075399004854262, 3894737.531618185807019 ], [ 4965915.317625402472913, 3894792.189598514698446 ], [ 4965874.383969734422863, 3894809.59981755586341 ], [ 4965851.142279479652643, 3894754.57774390373379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965774.068493416532874, 3897286.605971822049469 ], [ 4965736.616824795491993, 3897290.913518774323165 ], [ 4965737.470079306513071, 3897297.469265434890985 ], [ 4965710.101427464745939, 3897300.701150051318109 ], [ 4965704.98968340922147, 3897256.633003014605492 ], [ 4965769.809496568515897, 3897249.457689182832837 ], [ 4965774.068493416532874, 3897286.605971822049469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964190.744750675745308, 3901790.868809706531465 ], [ 4964172.834379244595766, 3901825.432610083837062 ], [ 4964140.893558855168521, 3901809.359867551364005 ], [ 4964147.826719861477613, 3901795.898099472280592 ], [ 4964131.136905656196177, 3901787.496459975373 ], [ 4964142.114657051861286, 3901766.030270312447101 ], [ 4964190.744750675745308, 3901790.868809706531465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964128.743678253144026, 3895343.849288886412978 ], [ 4964134.568094736896455, 3895304.168493301142007 ], [ 4964150.11959823500365, 3895306.378082544077188 ], [ 4964154.488665086217225, 3895276.162329399492592 ], [ 4964168.600486289709806, 3895278.005502291955054 ], [ 4964165.399320618249476, 3895298.391628406476229 ], [ 4964193.334299182519317, 3895302.441661231219769 ], [ 4964190.130791005678475, 3895324.284297917038202 ], [ 4964172.563496259041131, 3895321.707337531261146 ], [ 4964168.485959322191775, 3895349.738778557628393 ], [ 4964128.743678253144026, 3895343.849288886412978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963903.947143314406276, 3904307.649097037035972 ], [ 4963922.632669314742088, 3904327.705977853387594 ], [ 4963881.970417588949203, 3904365.511083610821515 ], [ 4963852.074133572168648, 3904333.055994876660407 ], [ 4963878.028532278724015, 3904309.064494851510972 ], [ 4963888.951903474517167, 3904321.098154055885971 ], [ 4963903.947143314406276, 3904307.649097037035972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963908.112161775119603, 3898598.816761024761945 ], [ 4963911.039175461046398, 3898569.326881888322532 ], [ 4963972.953140084631741, 3898575.979560602921993 ], [ 4963969.153896998614073, 3898610.565866084769368 ], [ 4963931.141624825075269, 3898606.500049030408263 ], [ 4963931.72633808478713, 3898601.039028441067785 ], [ 4963908.112161775119603, 3898598.816761024761945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965654.051496493630111, 3897229.967340825125575 ], [ 4965680.555507299490273, 3897227.098099641036242 ], [ 4965683.670920553617179, 3897259.146661407314241 ], [ 4965657.166940999217331, 3897262.015899570658803 ], [ 4965654.051496493630111, 3897229.967340825125575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965624.04707923065871, 3891849.546197377610952 ], [ 4965633.180677155964077, 3891901.26752568827942 ], [ 4965598.023262076079845, 3891907.39969451026991 ], [ 4965593.742725099436939, 3891882.631893454585224 ], [ 4965590.573112151585519, 3891882.990794300101697 ], [ 4965582.012609022669494, 3891833.091068767011166 ], [ 4965612.559433722868562, 3891827.679527970962226 ], [ 4965616.554273484274745, 3891850.990345662925392 ], [ 4965624.04707923065871, 3891849.546197377610952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963632.396398834884167, 3904493.290494805201888 ], [ 4963586.593466937541962, 3904504.50636327220127 ], [ 4963578.009251056239009, 3904469.900374334771186 ], [ 4963623.812238281592727, 3904458.684491472318769 ], [ 4963632.396398834884167, 3904493.290494805201888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963566.469218651764095, 3900460.07408845750615 ], [ 4963536.456477724947035, 3900498.624666994903237 ], [ 4963499.637162332423031, 3900470.164595800451934 ], [ 4963529.649882034398615, 3900431.61397680779919 ], [ 4963566.469218651764095, 3900460.07408845750615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963576.591340920887887, 3893116.325455414596945 ], [ 4963531.618402590975165, 3893137.010025809518993 ], [ 4963513.530129150487483, 3893098.383935994468629 ], [ 4963542.935382895171642, 3893084.957415587734431 ], [ 4963544.94506264757365, 3893089.330122166313231 ], [ 4963560.512795801274478, 3893082.072043524123728 ], [ 4963576.591340920887887, 3893116.325455414596945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965284.050534511916339, 3901197.28437756979838 ], [ 4965282.01728839520365, 3901207.840831848792732 ], [ 4965252.363639588467777, 3901201.966176674701273 ], [ 4965260.496588713489473, 3901159.74035205040127 ], [ 4965300.803023115731776, 3901167.45312687754631 ], [ 4965294.414674162864685, 3901199.486143607180566 ], [ 4965284.050534511916339, 3901197.28437756979838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963448.93213255610317, 3898646.521212221123278 ], [ 4963459.293974785134196, 3898650.907041491009295 ], [ 4963471.146817182190716, 3898622.887652431149036 ], [ 4963498.778976004570723, 3898634.219099699053913 ], [ 4963485.769454753026366, 3898665.149698738474399 ], [ 4963505.341604862362146, 3898673.555449547246099 ], [ 4963480.767856912687421, 3898732.141750685404986 ], [ 4963456.589729322120547, 3898722.272264533676207 ], [ 4963462.950160309672356, 3898706.988794922828674 ], [ 4963429.273661592043936, 3898693.098988430108875 ], [ 4963448.93213255610317, 3898646.521212221123278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964985.305693392641842, 3905679.977709277067333 ], [ 4964946.650708702392876, 3905723.246474329847842 ], [ 4964935.436886732466519, 3905713.396690187510103 ], [ 4964945.533276319503784, 3905702.125028774607927 ], [ 4964936.33209356945008, 3905694.099174827337265 ], [ 4964929.120471027679741, 3905702.098344937432557 ], [ 4964910.430737737566233, 3905685.682053058408201 ], [ 4964946.489479531534016, 3905645.322067025117576 ], [ 4964985.305693392641842, 3905679.977709277067333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964924.635050900280476, 3901197.426167588680983 ], [ 4964962.623373341746628, 3901213.873801119625568 ], [ 4964951.349052940495312, 3901240.072864609770477 ], [ 4964913.072768766433001, 3901223.624778880272061 ], [ 4964924.635050900280476, 3901197.426167588680983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963194.50464213360101, 3899821.534802597947419 ], [ 4963206.932142060250044, 3899793.880305631551892 ], [ 4963229.66879125777632, 3899804.111453575547785 ], [ 4963217.241272618062794, 3899831.765940185636282 ], [ 4963194.50464213360101, 3899821.534802597947419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964826.881104078143835, 3897721.281130142975599 ], [ 4964758.34718210529536, 3897710.610347023699433 ], [ 4964763.00399122480303, 3897680.759244869928807 ], [ 4964787.192015673033893, 3897684.803839221131057 ], [ 4964788.6480897879228, 3897674.974694257136434 ], [ 4964833.281516983173788, 3897681.965492899995297 ], [ 4964826.881104078143835, 3897721.281130142975599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964802.734162691049278, 3903912.187760479748249 ], [ 4964808.843951721675694, 3903873.599764662329108 ], [ 4964827.556858426891267, 3903876.543151882477105 ], [ 4964829.591499037109315, 3903864.894255687016994 ], [ 4964855.789099936373532, 3903869.306325786747038 ], [ 4964847.932559451088309, 3903919.543672975618392 ], [ 4964802.734162691049278, 3903912.187760479748249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964767.470962546765804, 3892963.836178421508521 ], [ 4964770.942664519883692, 3892954.738579691387713 ], [ 4964753.95592909026891, 3892948.520897730719298 ], [ 4964764.950142901390791, 3892919.408391722943634 ], [ 4964804.969204904511571, 3892934.402474989648908 ], [ 4964794.264213819988072, 3892962.787175915203989 ], [ 4964784.475374550558627, 3892959.130035243928432 ], [ 4964780.714408965781331, 3892968.955421368125826 ], [ 4964767.470962546765804, 3892963.836178421508521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962828.073604318313301, 3897642.375996375922114 ], [ 4962815.633681936189532, 3897677.677338719367981 ], [ 4962804.694173551164567, 3897674.019127225968987 ], [ 4962795.725847483612597, 3897699.494344130158424 ], [ 4962784.210848452523351, 3897695.471121701877564 ], [ 4962780.161553982645273, 3897706.388756585307419 ], [ 4962736.980151760391891, 3897691.392755133099854 ], [ 4962743.924906937405467, 3897670.648081204853952 ], [ 4962755.727952590212226, 3897674.671731066890061 ], [ 4962773.6645622048527, 3897623.721274679992348 ], [ 4962828.073604318313301, 3897642.375996375922114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962781.493146782740951, 3897590.233437206596136 ], [ 4962800.889156024903059, 3897526.904847116675228 ], [ 4962832.269949643872678, 3897536.420746196527034 ], [ 4962812.873873225413263, 3897599.749313997570425 ], [ 4962781.493146782740951, 3897590.233437206596136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962754.544744240120053, 3910932.321740370243788 ], [ 4962819.900369877927005, 3910929.145591494627297 ], [ 4962819.344313413836062, 3910916.4000882091932 ], [ 4962855.045818430371583, 3910914.270556043833494 ], [ 4962857.565756044350564, 3910960.155173521954566 ], [ 4962756.221441516652703, 3910965.096270015928894 ], [ 4962754.544744240120053, 3910932.321740370243788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962733.508547103963792, 3896021.489345639012754 ], [ 4962761.72428712900728, 3896029.907878878060728 ], [ 4962752.169806307181716, 3896061.572380293626338 ], [ 4962723.954096577130258, 3896053.153856923803687 ], [ 4962733.508547103963792, 3896021.489345639012754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962416.421869082376361, 3900687.325959146488458 ], [ 4962435.180778072215617, 3900661.865573453251272 ], [ 4962471.715191358700395, 3900688.867229941766709 ], [ 4962441.12381799519062, 3900730.331189630087465 ], [ 4962414.082752229645848, 3900710.262589382473379 ], [ 4962425.914635543711483, 3900694.623108097352087 ], [ 4962416.421869082376361, 3900687.325959146488458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964246.605025679804385, 3903236.557400787714869 ], [ 4964231.867868922650814, 3903268.213220083620399 ], [ 4964210.573221031576395, 3903258.711764834355563 ], [ 4964207.972176790237427, 3903264.533702376764268 ], [ 4964183.512754302471876, 3903253.20655507594347 ], [ 4964209.520876796916127, 3903196.443688783794641 ], [ 4964240.599005718715489, 3903210.694494182709605 ], [ 4964231.929019664414227, 3903229.979566758032888 ], [ 4964246.605025679804385, 3903236.557400787714869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964197.598540630191565, 3898943.380587899591774 ], [ 4964230.407369772903621, 3898959.090622847899795 ], [ 4964214.514675083570182, 3898991.472786058671772 ], [ 4964181.993892301805317, 3898975.763230258598924 ], [ 4964197.598540630191565, 3898943.380587899591774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962021.110819478519261, 3900994.049417532514781 ], [ 4962039.860298139043152, 3900974.414824454113841 ], [ 4962068.906276498921216, 3901001.76870475942269 ], [ 4962050.444789716042578, 3901021.403715095482767 ], [ 4962021.110819478519261, 3900994.049417532514781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963892.952154206112027, 3893811.583214438986033 ], [ 4963909.945475758984685, 3893813.430819595232606 ], [ 4963906.138726978562772, 3893852.386572672519833 ], [ 4963888.857358853332698, 3893850.538512971252203 ], [ 4963892.952154206112027, 3893811.583214438986033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963720.067466307431459, 3893655.462372585199773 ], [ 4963740.230277021415532, 3893656.950748553033918 ], [ 4963737.88195588067174, 3893684.620831463485956 ], [ 4963717.719741005450487, 3893682.768329256679863 ], [ 4963720.067466307431459, 3893655.462372585199773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961973.485180146992207, 3898973.418737038504332 ], [ 4961987.343615784309804, 3898951.227809189353138 ], [ 4962027.627226457931101, 3898976.777992933057249 ], [ 4962013.769322884269059, 3898998.604771201033145 ], [ 4961973.485180146992207, 3898973.418737038504332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961879.489824207499623, 3898659.760606708470732 ], [ 4961866.204065077938139, 3898684.137231253087521 ], [ 4961815.266440321691334, 3898656.386434057727456 ], [ 4961828.552166861481965, 3898632.009784743655473 ], [ 4961879.489824207499623, 3898659.760606708470732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961735.443027927540243, 3896006.858979335520416 ], [ 4961782.094150461256504, 3896015.304255499970168 ], [ 4961772.510628648102283, 3896066.996173260267824 ], [ 4961726.147640177048743, 3896058.551347193773836 ], [ 4961735.443027927540243, 3896006.858979335520416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961670.609185758046806, 3892190.326169358100742 ], [ 4961715.256911721080542, 3892194.398746605496854 ], [ 4961711.154621353372931, 3892240.272766390349716 ], [ 4961666.5069709867239, 3892236.20019584801048 ], [ 4961670.609185758046806, 3892190.326169358100742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961576.4113864377141, 3893145.658199966419488 ], [ 4961581.948245632462204, 3893103.427575193345547 ], [ 4961637.824622292071581, 3893110.79403445776552 ], [ 4961632.286035923287272, 3893154.117031608708203 ], [ 4961615.580768384039402, 3893151.90717153949663 ], [ 4961614.124521617777646, 3893162.464717967901379 ], [ 4961596.555569228716195, 3893159.88944423571229 ], [ 4961598.013448696583509, 3893148.239513182081282 ], [ 4961576.4113864377141, 3893145.658199966419488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961561.342979869805276, 3897622.604066595900804 ], [ 4961550.891988836228848, 3897677.207847672514617 ], [ 4961526.128506540320814, 3897672.437044695951045 ], [ 4961529.902362214401364, 3897652.779696688987315 ], [ 4961512.049398199655116, 3897649.475782095454633 ], [ 4961509.727703833021224, 3897661.124454453121871 ], [ 4961495.0419842004776, 3897658.553554557729512 ], [ 4961497.366398523561656, 3897645.084236616268754 ], [ 4961483.256729580461979, 3897642.514205748215318 ], [ 4961487.902280892245471, 3897617.760341543704271 ], [ 4961538.005411946214736, 3897627.302762998268008 ], [ 4961539.746693883091211, 3897618.566260702442378 ], [ 4961561.342979869805276, 3897622.604066595900804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961526.482231831178069, 3893591.276958904229105 ], [ 4961502.864547831006348, 3893588.328555101063102 ], [ 4961502.280222256667912, 3893593.789612364955246 ], [ 4961472.326005321927369, 3893590.103490909095854 ], [ 4961479.034524287097156, 3893534.765950571279973 ], [ 4961532.319000506773591, 3893541.035928839351982 ], [ 4961526.482231831178069, 3893591.276958904229105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963232.688308388926089, 3903586.340713150799274 ], [ 4963256.009620734490454, 3903588.926073735579848 ], [ 4963256.594091629609466, 3903583.465022070333362 ], [ 4963279.915973699651659, 3903585.686273273546249 ], [ 4963274.947084497660398, 3903632.651404342148453 ], [ 4963228.591932245530188, 3903627.84525038022548 ], [ 4963232.688308388926089, 3903586.340713150799274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963024.208676097914577, 3896354.025543755386025 ], [ 4963057.899078140966594, 3896360.99638096569106 ], [ 4963044.552805752493441, 3896422.877631819806993 ], [ 4962989.266568629071116, 3896411.139586325269192 ], [ 4962995.359590317122638, 3896382.746951540000737 ], [ 4963016.956087106838822, 3896387.150052548386157 ], [ 4963024.208676097914577, 3896354.025543755386025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961363.806263490580022, 3898359.307165705133229 ], [ 4961334.675249905325472, 3898386.573444038163871 ], [ 4961289.239860901609063, 3898338.07645614631474 ], [ 4961318.658903891220689, 3898310.810558727011085 ], [ 4961363.806263490580022, 3898359.307165705133229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961282.907272947020829, 3898915.577028657309711 ], [ 4961309.961845537647605, 3898928.361886328551918 ], [ 4961296.093107531778514, 3898957.835746187251061 ], [ 4961269.03801592066884, 3898945.415031417272985 ], [ 4961282.907272947020829, 3898915.577028657309711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961264.341935363598168, 3899004.397094117477536 ], [ 4961240.950899363495409, 3899045.873098422307521 ], [ 4961215.626670720987022, 3899031.634362134151161 ], [ 4961239.305154060013592, 3898990.522893803194165 ], [ 4961264.341935363598168, 3899004.397094117477536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961181.97882676590234, 3908881.32953470107168 ], [ 4961200.150176380760968, 3908859.144485856872052 ], [ 4961226.893310576677322, 3908881.032192747108638 ], [ 4961208.721953601576388, 3908903.217223800253123 ], [ 4961181.97882676590234, 3908881.32953470107168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962562.264948545023799, 3893677.690728192217648 ], [ 4962577.297352196648717, 3893643.48572131851688 ], [ 4962587.373194257728755, 3893647.870758700184524 ], [ 4962594.310468988493085, 3893632.588015282526612 ], [ 4962616.765057107433677, 3893642.454036563169211 ], [ 4962594.794774970039725, 3893692.305891226511449 ], [ 4962562.264948545023799, 3893677.690728192217648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962499.599974230863154, 3899033.210071014240384 ], [ 4962522.043929511681199, 3899047.081465166993439 ], [ 4962515.40280716214329, 3899057.995168554130942 ], [ 4962552.52150993142277, 3899080.992372653912753 ], [ 4962537.219244457781315, 3899105.365573619958013 ], [ 4962477.369168786332011, 3899068.1324432650581 ], [ 4962499.599974230863154, 3899033.210071014240384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962434.292892697267234, 3893533.663486597128212 ], [ 4962455.097869753837585, 3893492.184682111255825 ], [ 4962489.64059142768383, 3893509.35170287033543 ], [ 4962480.970988788641989, 3893527.180716970004141 ], [ 4962497.666455081664026, 3893535.581290601287037 ], [ 4962486.107736263424158, 3893558.867803022731096 ], [ 4962434.292892697267234, 3893533.663486597128212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960690.808429445140064, 3909270.225484861060977 ], [ 4960664.578561156988144, 3909290.942530949600041 ], [ 4960625.495455583557487, 3909241.727373464498669 ], [ 4960652.013247860595584, 3909221.010712071787566 ], [ 4960690.808429445140064, 3909270.225484861060977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960586.868292073719203, 3893533.445700660347939 ], [ 4960571.245170590467751, 3893579.30307188956067 ], [ 4960533.814192268066108, 3893566.503841822966933 ], [ 4960536.996841533109546, 3893557.041144265327603 ], [ 4960523.751816568896174, 3893552.652246138546616 ], [ 4960536.192216350696981, 3893516.257545015309006 ], [ 4960586.868292073719203, 3893533.445700660347939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960405.147368436679244, 3908124.61220438266173 ], [ 4960438.554884179495275, 3908118.470665161963552 ], [ 4960436.556451694108546, 3908106.815527444239706 ], [ 4960464.204037475399673, 3908101.758016193285584 ], [ 4960467.06089795473963, 3908117.055728592909873 ], [ 4960478.292892625555396, 3908114.887332955375314 ], [ 4960483.719205372966826, 3908145.118209816981107 ], [ 4960446.279802035540342, 3908151.982074910774827 ], [ 4960445.138223602436483, 3908145.061902006156743 ], [ 4960410.002702433615923, 3908151.565046555828303 ], [ 4960405.147368436679244, 3908124.61220438266173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960317.359876049682498, 3898795.449910978786647 ], [ 4960319.700540733523667, 3898770.328349800780416 ], [ 4960325.171828392893076, 3898771.064563096500933 ], [ 4960326.927995258942246, 3898751.768231536727399 ], [ 4960353.710000960156322, 3898754.356091047637165 ], [ 4960349.613650169223547, 3898798.409850177820772 ], [ 4960317.359876049682498, 3898795.449910978786647 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960257.714344454929233, 3907542.514976709615439 ], [ 4960263.488690179772675, 3907531.599405062850565 ], [ 4960295.712405846454203, 3907548.032144664786756 ], [ 4960274.924748610705137, 3907587.328184206038713 ], [ 4960264.854819438420236, 3907582.215714775491506 ], [ 4960256.482298849150538, 3907597.861228611320257 ], [ 4960226.560953211039305, 3907582.160138886421919 ], [ 4960249.658808165229857, 3907538.133701272308826 ], [ 4960257.714344454929233, 3907542.514976709615439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962033.483591554686427, 3900242.13904030714184 ], [ 4962044.748848858289421, 3900220.308321538381279 ], [ 4962093.095673812553287, 3900245.142605097498745 ], [ 4962081.830387555062771, 3900266.973303928505629 ], [ 4962033.483591554686427, 3900242.13904030714184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961896.101984800770879, 3899483.083649538923055 ], [ 4961885.122349464334548, 3899506.371373438742012 ], [ 4961860.945986115373671, 3899495.410930306185037 ], [ 4961871.92615526355803, 3899471.759067431557924 ], [ 4961896.101984800770879, 3899483.083649538923055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961887.223059398122132, 3892019.148189284838736 ], [ 4961926.635825131088495, 3892055.984768682625145 ], [ 4961887.103625853545964, 3892098.163891815580428 ], [ 4961847.690868048928678, 3892061.32736947061494 ], [ 4961887.223059398122132, 3892019.148189284838736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960061.355862237513065, 3909132.759270236361772 ], [ 4960126.490327617153525, 3909086.244517092593014 ], [ 4960155.223624321632087, 3909125.976516576949507 ], [ 4960133.320012503303587, 3909141.602493132930249 ], [ 4960120.103152465075254, 3909123.012626997660846 ], [ 4960076.584423584863544, 3909153.900939928367734 ], [ 4960061.355862237513065, 3909132.759270236361772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961673.131015201099217, 3898750.481945015024394 ], [ 4961655.808306895196438, 3898778.129772899206728 ], [ 4961615.524045325815678, 3898752.58014944801107 ], [ 4961632.846181460656226, 3898725.296425104141235 ], [ 4961673.131015201099217, 3898750.481945015024394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961589.368490822613239, 3900251.664447030983865 ], [ 4961627.481080292724073, 3900187.634754286613315 ], [ 4961654.817283518612385, 3900203.697566197719425 ], [ 4961616.704104641452432, 3900268.091350226663053 ], [ 4961589.368490822613239, 3900251.664447030983865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961467.45080578699708, 3895885.929890633095056 ], [ 4961499.994906276464462, 3895889.619893176015466 ], [ 4961496.492522518150508, 3895920.201510882005095 ], [ 4961463.948458595201373, 3895916.511512515600771 ], [ 4961467.45080578699708, 3895885.929890633095056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959755.888087495230138, 3900892.02920014411211 ], [ 4959761.996518846601248, 3900849.798831931781024 ], [ 4959736.370093730278313, 3900846.120819623582065 ], [ 4959744.225780009292066, 3900790.420128338504583 ], [ 4959803.82905902992934, 3900798.880560350604355 ], [ 4959799.467329013161361, 3900828.004730836953968 ], [ 4959781.615220032632351, 3900825.430218545719981 ], [ 4959776.668130986392498, 3900861.107900199480355 ], [ 4959795.960195727646351, 3900863.684474450070411 ], [ 4959791.016749719157815, 3900896.813247041311115 ], [ 4959755.888087495230138, 3900892.02920014411211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959674.338301997631788, 3906563.980733684729785 ], [ 4959726.50923337880522, 3906525.821569229941815 ], [ 4959757.258282062597573, 3906567.740751737728715 ], [ 4959705.08738814201206, 3906605.899857475422323 ], [ 4959674.338301997631788, 3906563.980733684729785 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961398.01875011343509, 3893579.432681765407324 ], [ 4961403.857456659898162, 3893527.735112223774195 ], [ 4961451.957715023308992, 3893533.268930788617581 ], [ 4961447.577253377065063, 3893572.952419944573194 ], [ 4961423.095322855748236, 3893570.002794036641717 ], [ 4961421.925071231089532, 3893582.017295917030424 ], [ 4961398.01875011343509, 3893579.432681765407324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961289.368407357484102, 3898638.483781855087727 ], [ 4961309.497220616787672, 3898660.361567904707044 ], [ 4961283.540221313014627, 3898683.991337695624679 ], [ 4961263.411404708400369, 3898662.113570775371045 ], [ 4961289.368407357484102, 3898638.483781855087727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961239.612519707530737, 3898590.344564297236502 ], [ 4961265.570112618617713, 3898566.350624335929751 ], [ 4961287.424408529885113, 3898590.051611092872918 ], [ 4961261.178799000568688, 3898614.045101541560143 ], [ 4961239.612519707530737, 3898590.344564297236502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960889.274383459240198, 3899442.617998695932329 ], [ 4960878.29989963863045, 3899462.993099144659936 ], [ 4960833.117595710791647, 3899438.89393648551777 ], [ 4960844.092055036686361, 3899418.518817873671651 ], [ 4960889.274383459240198, 3899442.617998695932329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959338.886895357631147, 3897628.102021916769445 ], [ 4959355.643250871449709, 3897592.441067408770323 ], [ 4959400.834636013954878, 3897613.260559820570052 ], [ 4959384.07823340781033, 3897648.921486609149724 ], [ 4959338.886895357631147, 3897628.102021916769445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959326.928864289075136, 3892648.983764541335404 ], [ 4959341.020723838359118, 3892666.117769604083151 ], [ 4959334.963745741173625, 3892671.206988528836519 ], [ 4959351.069076010026038, 3892690.528622973244637 ], [ 4959314.152128309011459, 3892720.33487250097096 ], [ 4959284.24248921405524, 3892684.243812341243029 ], [ 4959326.928864289075136, 3892648.983764541335404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960676.056320590898395, 3893022.703745884820819 ], [ 4960618.146944431588054, 3893026.260169642046094 ], [ 4960617.587314357981086, 3893014.971361303236336 ], [ 4960609.808623863384128, 3893015.324100403115153 ], [ 4960608.687756476923823, 3892993.838867969810963 ], [ 4960617.906853841617703, 3892993.488237771205604 ], [ 4960616.219961845315993, 3892965.083731867838651 ], [ 4960679.891613060608506, 3892961.171625927090645 ], [ 4960681.576301747001708, 3892991.03264729026705 ], [ 4960674.085683614015579, 3892991.385790322441608 ], [ 4960676.056320590898395, 3893022.703745884820819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960618.550966493785381, 3908282.957322860602289 ], [ 4960579.662012217566371, 3908296.737386871594936 ], [ 4960571.346015974879265, 3908273.784898696001619 ], [ 4960610.522915694862604, 3908260.005244620144367 ], [ 4960618.550966493785381, 3908282.957322860602289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960545.281477157026529, 3897742.718784919474274 ], [ 4960534.914020985364914, 3897741.611241542268544 ], [ 4960532.581050668843091, 3897761.270834935363382 ], [ 4960504.359522079117596, 3897757.588308751583099 ], [ 4960507.274380564689636, 3897733.924136328045279 ], [ 4960504.106589626520872, 3897733.555380277801305 ], [ 4960506.728634619154036, 3897713.167947590351105 ], [ 4960548.484935112297535, 3897718.690909350756556 ], [ 4960545.281477157026529, 3897742.718784919474274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960507.07789758965373, 3897079.582940139807761 ], [ 4960530.401924356818199, 3897084.350698012392968 ], [ 4960520.539001183584332, 3897132.037257378455251 ], [ 4960497.215014078654349, 3897127.269507939461619 ], [ 4960507.07789758965373, 3897079.582940139807761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960377.95793369691819, 3908210.507743742782623 ], [ 4960390.854792285710573, 3908251.309311581309885 ], [ 4960331.228507419116795, 3908270.157381970901042 ], [ 4960318.3315674578771, 3908229.355842270888388 ], [ 4960377.95793369691819, 3908210.507743742782623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960360.077346299774945, 3898535.159170289058238 ], [ 4960364.685148418880999, 3898535.530005197040737 ], [ 4960366.731499187648296, 3898514.777581772767007 ], [ 4960393.513737321831286, 3898517.36548058828339 ], [ 4960389.417286305688322, 3898561.419227428734303 ], [ 4960358.026763739064336, 3898558.824627150315791 ], [ 4960360.077346299774945, 3898535.159170289058238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960321.991208395920694, 3899770.232688983436674 ], [ 4960343.01046081725508, 3899773.904554434586316 ], [ 4960340.686806011013687, 3899787.373989307321608 ], [ 4960319.667563813738525, 3899783.702125644311309 ], [ 4960321.991208395920694, 3899770.232688983436674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958650.662504244595766, 3900610.816381357610226 ], [ 4958647.744518527761102, 3900638.122091513127089 ], [ 4958675.100292695686221, 3900641.073212374001741 ], [ 4958672.473325302824378, 3900666.194543893449008 ], [ 4958648.861043049022555, 3900663.612764767836779 ], [ 4958650.029249423183501, 3900651.962221344001591 ], [ 4958597.33319278806448, 3900646.426989366766065 ], [ 4958601.709842377342284, 3900605.650480800773948 ], [ 4958650.662504244595766, 3900610.816381357610226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958635.001001100055873, 3905036.803959236014634 ], [ 4958656.621155542321503, 3905019.719877787865698 ], [ 4958674.442692433483899, 3905042.320829096250236 ], [ 4958652.823051612824202, 3905059.040765888057649 ], [ 4958635.001001100055873, 3905036.803959236014634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958628.676474871113896, 3897989.04990115808323 ], [ 4958639.69037171266973, 3897939.543581041041762 ], [ 4958708.795570655725896, 3897954.933244358282536 ], [ 4958698.649690549820662, 3898001.527708468027413 ], [ 4958748.175511597655714, 3898012.156516264658421 ], [ 4958741.509257992729545, 3898042.005853476468474 ], [ 4958676.723173615522683, 3898027.714507698547095 ], [ 4958682.521222466602921, 3898000.776983291376382 ], [ 4958628.676474871113896, 3897989.04990115808323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959864.231984240934253, 3898646.958380827214569 ], [ 4959889.000618868507445, 3898647.722235214430839 ], [ 4959886.909632252529263, 3898699.789801180828363 ], [ 4959841.117227324284613, 3898697.903365536592901 ], [ 4959843.509738663211465, 3898636.368852645624429 ], [ 4959864.822147713974118, 3898637.127722320146859 ], [ 4959864.231984240934253, 3898646.958380827214569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959855.08549734018743, 3899199.694470303598791 ], [ 4959808.435124800540507, 3899194.165556422900409 ], [ 4959813.975825317203999, 3899146.472478300333023 ], [ 4959849.971848052926362, 3899150.529578563757241 ], [ 4959847.637929353863001, 3899171.281635608058423 ], [ 4959858.292875786311924, 3899172.38932853937149 ], [ 4959855.08549734018743, 3899199.694470303598791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959783.578683758154511, 3893628.776428471319377 ], [ 4959766.232724630273879, 3893671.718768307939172 ], [ 4959703.181225490756333, 3893646.139492177870125 ], [ 4959720.52710023149848, 3893603.197112297639251 ], [ 4959783.578683758154511, 3893628.776428471319377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958025.849123487249017, 3905766.046690349467099 ], [ 4958009.418424789793789, 3905779.132938881870359 ], [ 4958012.005927667021751, 3905782.04952987190336 ], [ 4957969.34357678424567, 3905816.219550503883511 ], [ 4957944.909716463647783, 3905785.963266300037503 ], [ 4958004.002788871526718, 3905738.70694582676515 ], [ 4958025.849123487249017, 3905766.046690349467099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957985.928866558708251, 3898105.413530468009412 ], [ 4957994.89847069978714, 3898075.567154585383832 ], [ 4958020.522295112721622, 3898083.248919686302543 ], [ 4958023.416001587174833, 3898073.421376309357584 ], [ 4958042.706246947869658, 3898078.909720008727163 ], [ 4958038.655448113568127, 3898092.376974753569812 ], [ 4958044.989018250256777, 3898094.570422389078885 ], [ 4958049.039819935336709, 3898081.103168577421457 ], [ 4958065.450796470977366, 3898085.859327476006001 ], [ 4958071.238243836909533, 3898066.204250735696405 ], [ 4958102.332546692341566, 3898075.350107131060213 ], [ 4958093.073300436139107, 3898106.288439449388534 ], [ 4958066.297915682196617, 3898098.240897990297526 ], [ 4958057.618259360082448, 3898126.63112871022895 ], [ 4957985.928866558708251, 3898105.413530468009412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959703.339308227412403, 3901387.899578922893852 ], [ 4959699.555844379588962, 3901415.568081191275269 ], [ 4959686.310913450084627, 3901413.728483308572322 ], [ 4959683.112822839058936, 3901434.843476964626461 ], [ 4959671.019859090447426, 3901433.005533968098462 ], [ 4959668.983110120519996, 3901447.567841242998838 ], [ 4959630.400311436504126, 3901442.050757369492203 ], [ 4959638.253526986576617, 3901387.806533988099545 ], [ 4959656.393266020342708, 3901390.381363476160914 ], [ 4959657.558235915377736, 3901381.279766777530313 ], [ 4959703.339308227412403, 3901387.899578922893852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959584.213113617151976, 3909188.514753224793822 ], [ 4959614.676618357189, 3909226.792116010095924 ], [ 4959594.788745681755245, 3909242.421410363633186 ], [ 4959588.753630800172687, 3909234.766021567862481 ], [ 4959553.878058872185647, 3909262.026194684673101 ], [ 4959529.449643663130701, 3909231.404274059925228 ], [ 4959584.213113617151976, 3909188.514753224793822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957848.282399035990238, 3908021.963955426122993 ], [ 4957869.322328619658947, 3908005.97081849258393 ], [ 4957890.303193573839962, 3908033.309313724283129 ], [ 4957876.757103559561074, 3908043.486538222059608 ], [ 4957867.847498719580472, 3908031.822173512540758 ], [ 4957860.354162839241326, 3908037.273941017687321 ], [ 4957848.282399035990238, 3908021.963955426122993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957807.226609446108341, 3906243.124704058282077 ], [ 4957850.343927959911525, 3906297.074862185399979 ], [ 4957828.148942003026605, 3906314.522952637635171 ], [ 4957814.925623958930373, 3906298.48316878080368 ], [ 4957809.160927680321038, 3906302.844903170131147 ], [ 4957796.22503499314189, 3906287.169651215430349 ], [ 4957789.307103338651359, 3906292.622215896844864 ], [ 4957772.060045915655792, 3906271.115009532310069 ], [ 4957807.226609446108341, 3906243.124704058282077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957798.560456417500973, 3905416.898746996186674 ], [ 4957769.456529301591218, 3905432.516824767924845 ], [ 4957757.104991678148508, 3905410.28803109144792 ], [ 4957786.209430729039013, 3905394.305809513200074 ], [ 4957798.560456417500973, 3905416.898746996186674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957754.899115931242704, 3906822.022754163481295 ], [ 4957794.386897289194167, 3906791.853504628874362 ], [ 4957798.985889034345746, 3906797.685865786857903 ], [ 4957830.691149951890111, 3906773.696322842501104 ], [ 4957822.643413522280753, 3906763.12555104540661 ], [ 4957847.719337656162679, 3906744.224848988000304 ], [ 4957873.58762857504189, 3906777.760203316342086 ], [ 4957849.952370518818498, 3906795.934580639470369 ], [ 4957848.802625460550189, 3906794.476488093379885 ], [ 4957776.16846165433526, 3906849.725662480574101 ], [ 4957754.899115931242704, 3906822.022754163481295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957726.727417195215821, 3900211.552215924486518 ], [ 4957767.604023229330778, 3900226.172930665314198 ], [ 4957762.978172640316188, 3900239.275332133285701 ], [ 4957771.326286504976451, 3900242.199715979397297 ], [ 4957762.364077859558165, 3900267.312521513085812 ], [ 4957768.409155318513513, 3900269.505515559576452 ], [ 4957759.736444239504635, 3900293.526325159706175 ], [ 4957731.81360405869782, 3900283.656893988605589 ], [ 4957735.2824801877141, 3900274.194218023680151 ], [ 4957707.935615396127105, 3900264.325593708548695 ], [ 4957726.727417195215821, 3900211.552215924486518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959298.57424268964678, 3900468.258483878802508 ], [ 4959299.762843683362007, 3900442.406918844673783 ], [ 4959322.225836507044733, 3900443.166990003082901 ], [ 4959322.533437711186707, 3900429.330476386472583 ], [ 4959345.860442188568413, 3900430.091791219078004 ], [ 4959345.263796442188323, 3900444.656155388336629 ], [ 4959359.950778556056321, 3900445.405237406492233 ], [ 4959358.456565550528467, 3900483.63679526373744 ], [ 4959319.866645812988281, 3900482.125585122499615 ], [ 4959320.173213849775493, 3900469.017330199945718 ], [ 4959298.57424268964678, 3900468.258483878802508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957446.006008842028677, 3907206.127920887898654 ], [ 4957464.686964342370629, 3907231.642312212847173 ], [ 4957443.647651925683022, 3907246.907496238127351 ], [ 4957424.678759452886879, 3907221.39273165166378 ], [ 4957446.006008842028677, 3907206.127920887898654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958908.074850844219327, 3905379.468667131848633 ], [ 4958843.229119569994509, 3905420.524711013771594 ], [ 4958825.415613809600472, 3905392.461683264467865 ], [ 4958890.261385407298803, 3905351.405597094912082 ], [ 4958908.074850844219327, 3905379.468667131848633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957150.707066231407225, 3894183.340955595951527 ], [ 4957184.998766550794244, 3894174.647679718211293 ], [ 4957190.155746221542358, 3894195.774047316517681 ], [ 4957195.342904238961637, 3894194.324467184022069 ], [ 4957209.383678523823619, 3894250.054961152840406 ], [ 4957172.498494081199169, 3894259.472998226527125 ], [ 4957162.754333896562457, 3894221.954705882817507 ], [ 4957146.041101326234639, 3894225.937801412772387 ], [ 4957140.023294293321669, 3894202.26139065483585 ], [ 4957154.719583787955344, 3894198.639726389665157 ], [ 4957150.707066231407225, 3894183.340955595951527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957090.067351348698139, 3900125.125110488384962 ], [ 4957102.819660763256252, 3900065.060646988917142 ], [ 4957138.23398616630584, 3900072.754644188098609 ], [ 4957125.482087233103812, 3900132.454961674287915 ], [ 4957090.067351348698139, 3900125.125110488384962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958704.741133871488273, 3903550.517987569794059 ], [ 4958732.140661022625864, 3903519.969192376360297 ], [ 4958782.473409318365157, 3903564.099282770417631 ], [ 4958754.785395013168454, 3903595.01175579521805 ], [ 4958704.741133871488273, 3903550.517987569794059 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956766.478237692266703, 3900464.429003774188459 ], [ 4956774.888958192430437, 3900420.016235044691712 ], [ 4956807.712831648997962, 3900426.249854194466025 ], [ 4956799.302540447562933, 3900470.298483238555491 ], [ 4956766.478237692266703, 3900464.429003774188459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958573.284901045262814, 3905726.747027852106839 ], [ 4958595.483892496675253, 3905707.114775025751442 ], [ 4958613.596511077135801, 3905727.167180766351521 ], [ 4958591.397522892802954, 3905746.799418877344579 ], [ 4958573.284901045262814, 3905726.747027852106839 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956471.284072730690241, 3905952.584155165590346 ], [ 4956512.204225780442357, 3905927.876886365935206 ], [ 4956512.491689473390579, 3905928.241395004559308 ], [ 4956534.104516997002065, 3905915.161035118624568 ], [ 4956550.482272113673389, 3905941.764138350728899 ], [ 4956487.948853040114045, 3905979.915859908331186 ], [ 4956471.284072730690241, 3905952.584155165590346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956419.842154839076102, 3893110.379884320311248 ], [ 4956380.070139831863344, 3893123.43651377549395 ], [ 4956367.731745822355151, 3893085.915146664716303 ], [ 4956434.018541401252151, 3893064.154100384097546 ], [ 4956442.339000475592911, 3893090.01812202623114 ], [ 4956415.824768424034119, 3893098.358384832274169 ], [ 4956419.842154839076102, 3893110.379884320311248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956302.638483088463545, 3897494.340938473585993 ], [ 4956290.217035634443164, 3897521.998589136172086 ], [ 4956270.930303931236267, 3897513.234344512224197 ], [ 4956283.351735554635525, 3897485.576685087289661 ], [ 4956302.638483088463545, 3897494.340938473585993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956215.978933747857809, 3899014.833757246844471 ], [ 4956228.586226360872388, 3899065.100085359532386 ], [ 4956193.725041002966464, 3899073.793857605196536 ], [ 4956187.42089678067714, 3899049.02482994645834 ], [ 4956182.522744634188712, 3899050.474983075167984 ], [ 4956176.219530888833106, 3899024.977699855342507 ], [ 4956215.978933747857809, 3899014.833757246844471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958011.112559790723026, 3900751.21655495557934 ], [ 4958029.316665085032582, 3900707.181695853359997 ], [ 4958062.705419795587659, 3900721.064358619041741 ], [ 4958052.014117647893727, 3900746.902967224363238 ], [ 4958062.952020522207022, 3900751.287510309834033 ], [ 4958046.481851334683597, 3900790.955158113967627 ], [ 4958010.214702039957047, 3900775.976186832878739 ], [ 4958019.171992462128401, 3900754.504752372857183 ], [ 4958011.112559790723026, 3900751.21655495557934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957954.647787005640566, 3906878.007008424028754 ], [ 4957962.695437030866742, 3906888.577820499893278 ], [ 4957965.865665981546044, 3906886.397362269461155 ], [ 4958008.978143605403602, 3906942.896713103167713 ], [ 4957982.172717017121613, 3906963.251429221127182 ], [ 4957930.724630861543119, 3906896.180922503583133 ], [ 4957954.647787005640566, 3906878.007008424028754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957923.887727541849017, 3901778.309254255145788 ], [ 4957848.427957783453166, 3901783.668345931451768 ], [ 4957845.608589406125247, 3901739.240584583953023 ], [ 4957905.515723758377135, 3901734.952659611590207 ], [ 4957905.795267280191183, 3901741.143259471748024 ], [ 4957921.348023260943592, 3901740.07208515657112 ], [ 4957923.887727541849017, 3901778.309254255145788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957862.578342040069401, 3907672.780975332949311 ], [ 4957896.877910327166319, 3907645.881979457568377 ], [ 4957901.76415952667594, 3907652.078885110095143 ], [ 4957923.958090954460204, 3907634.630841075442731 ], [ 4957943.216129024513066, 3907658.689833223819733 ], [ 4957926.498702515847981, 3907671.775754527188838 ], [ 4957932.247217167168856, 3907679.066238312982023 ], [ 4957908.035871765576303, 3907697.968050817493349 ], [ 4957895.963485511019826, 3907683.022178166545928 ], [ 4957880.111354143358767, 3907695.016913146246225 ], [ 4957862.578342040069401, 3907672.780975332949311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956960.135657986626029, 3905141.216493956744671 ], [ 4956949.759300516918302, 3905148.849462895188481 ], [ 4956961.830935344099998, 3905165.615540202707052 ], [ 4956944.249074800871313, 3905178.336773938499391 ], [ 4956933.901748450472951, 3905164.121912825386971 ], [ 4956921.219876716844738, 3905173.208356399554759 ], [ 4956902.249985638074577, 3905146.965731870383024 ], [ 4956942.88961439859122, 3905117.889181983657181 ], [ 4956960.135657986626029, 3905141.216493956744671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954809.377246734686196, 3905186.509740523528308 ], [ 4954831.247755613178015, 3905197.460999217350036 ], [ 4954819.701577987521887, 3905220.022708267439157 ], [ 4954797.54313356988132, 3905209.071099340450019 ], [ 4954809.377246734686196, 3905186.509740523528308 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956540.15906411036849, 3899988.212778752669692 ], [ 4956499.824967038817704, 3899998.355492290575057 ], [ 4956487.790338491089642, 3899951.366929249372333 ], [ 4956528.124501468613744, 3899941.22419794369489 ], [ 4956540.15906411036849, 3899988.212778752669692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956504.761878316290677, 3891181.702919584233314 ], [ 4956503.851266146637499, 3891217.022161958739161 ], [ 4956452.28342180326581, 3891215.498080688063055 ], [ 4956453.193966271355748, 3891180.178836603183299 ], [ 4956504.761878316290677, 3891181.702919584233314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956461.155784893780947, 3898517.752480996772647 ], [ 4956484.453499807044864, 3898542.17970648733899 ], [ 4956425.912869039922953, 3898597.450758267194033 ], [ 4956402.61514903139323, 3898573.023582702502608 ], [ 4956461.155784893780947, 3898517.752480996772647 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954580.235555769875646, 3893984.858085436746478 ], [ 4954611.88705123309046, 3894014.027648043818772 ], [ 4954592.849193144589663, 3894034.39524033293128 ], [ 4954561.197701087221503, 3894005.22569980006665 ], [ 4954580.235555769875646, 3893984.858085436746478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954559.853872361592948, 3896019.585596341639757 ], [ 4954591.8389105880633, 3896010.157890555914491 ], [ 4954600.44375204667449, 3896039.663030585739762 ], [ 4954596.697779522277415, 3896040.750770963262767 ], [ 4954609.318094491958618, 3896084.097806248813868 ], [ 4954580.791506989859045, 3896092.073262716177851 ], [ 4954559.853872361592948, 3896019.585596341639757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956017.795017833821476, 3906160.276749063283205 ], [ 4956040.857957064174116, 3906138.822844137903303 ], [ 4956064.436424992978573, 3906163.978452530689538 ], [ 4956041.085549678653479, 3906185.431964745279402 ], [ 4956017.795017833821476, 3906160.276749063283205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954111.525355245918036, 3893530.212550291325897 ], [ 4954137.174220463261008, 3893521.868955552577972 ], [ 4954147.506135515868664, 3893553.56079072272405 ], [ 4954121.856852046214044, 3893562.268503888975829 ], [ 4954111.525355245918036, 3893530.212550291325897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955650.610971985384822, 3905083.431967526674271 ], [ 4955674.184202902019024, 3905113.685045863967389 ], [ 4955620.571894587017596, 3905155.491509464103729 ], [ 4955587.511640409938991, 3905113.210023038554937 ], [ 4955608.552960591390729, 3905096.851013845298439 ], [ 4955618.04042244143784, 3905108.515344891231507 ], [ 4955650.610971985384822, 3905083.431967526674271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955324.550673654302955, 3901073.936913454439491 ], [ 4955333.819110508076847, 3901032.437810665462166 ], [ 4955366.929174792021513, 3901039.762426895555109 ], [ 4955357.660689288750291, 3901081.261518444865942 ], [ 4955324.550673654302955, 3901073.936913454439491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954976.778756115585566, 3900974.454802621155977 ], [ 4955030.303190493956208, 3901008.386140689719468 ], [ 4955003.467592172324657, 3901049.863278733566403 ], [ 4954970.950333721935749, 3901029.067033021245152 ], [ 4954964.602132016792893, 3901038.890586863737553 ], [ 4954943.883003665134311, 3901025.755913041997701 ], [ 4954976.778756115585566, 3900974.454802621155977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952954.083316130563617, 3893249.900130020920187 ], [ 4952950.877109432592988, 3893281.575536397285759 ], [ 4952964.991166441701353, 3893283.048697503749281 ], [ 4952962.368835663422942, 3893308.17047715652734 ], [ 4952912.825636656023562, 3893303.014280796051025 ], [ 4952916.904176825657487, 3893264.421453871764243 ], [ 4952911.719215525314212, 3893264.051218332257122 ], [ 4952913.757199644111097, 3893245.84718928206712 ], [ 4952954.083316130563617, 3893249.900130020920187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954228.465913098305464, 3900587.91224869620055 ], [ 4954247.471595585346222, 3900589.7562270401977 ], [ 4954244.558975838124752, 3900616.334155336022377 ], [ 4954225.553311954252422, 3900614.490179012995213 ], [ 4954228.465913098305464, 3900587.91224869620055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954127.278642926365137, 3898785.70895307790488 ], [ 4954135.99804132245481, 3898721.268647518474609 ], [ 4954175.738384932279587, 3898726.415116626769304 ], [ 4954167.018446948379278, 3898791.219538741279393 ], [ 4954127.278642926365137, 3898785.70895307790488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952071.447217632085085, 3895481.347461515571922 ], [ 4952096.519569291733205, 3895471.180606887675822 ], [ 4952103.413212615996599, 3895488.302583490964025 ], [ 4952106.006947104819119, 3895487.21317342761904 ], [ 4952124.7241455828771, 3895492.696600228082389 ], [ 4952129.062095212750137, 3895477.772291837260127 ], [ 4952140.877728911116719, 3895473.052189492154866 ], [ 4952156.389919297769666, 3895510.211183058097959 ], [ 4952150.605834685266018, 3895530.231631792616099 ], [ 4952129.297027099877596, 3895524.016951543278992 ], [ 4952123.512965614907444, 3895544.037406271789223 ], [ 4952114.867618762888014, 3895547.304640029091388 ], [ 4952099.893471546471119, 3895543.282031484413892 ], [ 4952092.138187848962843, 3895523.974292248953134 ], [ 4952094.740692500025034, 3895515.238180950284004 ], [ 4952084.086486397311091, 3895511.948796591721475 ], [ 4952071.447217632085085, 3895481.347461515571922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953610.7751135379076, 3892157.568888464011252 ], [ 4953588.274381252937019, 3892182.302543196361512 ], [ 4953528.991911956109107, 3892129.0685601872392 ], [ 4953563.031975734047592, 3892091.240102604031563 ], [ 4953584.615500167943537, 3892110.564855138771236 ], [ 4953572.788066802546382, 3892123.659253649879247 ], [ 4953610.7751135379076, 3892157.568888464011252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953584.227661530487239, 3898180.594848689157516 ], [ 4953615.42638825904578, 3898104.165171755943447 ], [ 4953647.669868416152894, 3898116.948553417809308 ], [ 4953637.559588742442429, 3898141.333055401686579 ], [ 4953644.756702199578285, 3898144.254765651188791 ], [ 4953635.512703051790595, 3898166.819664587732404 ], [ 4953628.891205456107855, 3898164.262779810931534 ], [ 4953616.758650646544993, 3898193.742669469676912 ], [ 4953584.227661530487239, 3898180.594848689157516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951870.695315203629434, 3890656.779123104177415 ], [ 4951904.117590986192226, 3890654.996568072587252 ], [ 4951904.961978611536324, 3890672.475675886496902 ], [ 4951918.50374451931566, 3890671.762863101903349 ], [ 4951919.913116933777928, 3890699.07407280895859 ], [ 4951908.676617652177811, 3890699.425385458860546 ], [ 4951910.65307201910764, 3890734.748058566823602 ], [ 4951878.959520828910172, 3890736.532574754208326 ], [ 4951878.111385181546211, 3890722.330615167506039 ], [ 4951874.077922599390149, 3890722.326020673383027 ], [ 4951870.695315203629434, 3890656.779123104177415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951835.72321620490402, 3893033.768668869044632 ], [ 4951841.23982180096209, 3892995.905579681508243 ], [ 4951899.422870649956167, 3893003.982676133979112 ], [ 4951899.422040396369994, 3893004.710932225454599 ], [ 4951931.682015081867576, 3893009.117272055707872 ], [ 4951927.03575596306473, 3893041.519408352673054 ], [ 4951889.879295093938708, 3893036.379235925618559 ], [ 4951889.009246258065104, 3893041.476043686270714 ], [ 4951835.72321620490402, 3893033.768668869044632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953262.096494894474745, 3891991.473057720810175 ], [ 4953288.911076283082366, 3891972.934454791247845 ], [ 4953317.958326985128224, 3892014.843843402341008 ], [ 4953291.143767266534269, 3892033.382417808286846 ], [ 4953262.096494894474745, 3891991.473057720810175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953189.41481289640069, 3893515.992577329277992 ], [ 4953186.796187730506063, 3893537.837185266893357 ], [ 4953166.921654813922942, 3893535.628810402005911 ], [ 4953169.539831703528762, 3893514.148328684270382 ], [ 4953189.41481289640069, 3893515.992577329277992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951589.420071265660226, 3896857.571573697030544 ], [ 4951588.215722823515534, 3896903.81464088940993 ], [ 4951542.707323580048978, 3896902.306799136567861 ], [ 4951543.911183416843414, 3896856.427858828101307 ], [ 4951589.420071265660226, 3896857.571573697030544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951545.205474755726755, 3890850.854767255485058 ], [ 4951571.712601927109063, 3890849.428136126603931 ], [ 4951572.556788576766849, 3890867.271363056264818 ], [ 4951546.050089258700609, 3890868.333865770604461 ], [ 4951545.205474755726755, 3890850.854767255485058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951493.554650031961501, 3894251.391888761427253 ], [ 4951461.576386882923543, 3894253.904833246022463 ], [ 4951461.008847006596625, 3894246.257491134572774 ], [ 4951422.116163092665374, 3894249.490970535669476 ], [ 4951419.273908753879368, 3894215.259676126763225 ], [ 4951469.978619933128357, 3894210.94708204548806 ], [ 4951471.400125325657427, 3894227.698603450786322 ], [ 4951491.278380445204675, 3894226.264442617073655 ], [ 4951493.554650031961501, 3894251.391888761427253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951296.028957621194422, 3893656.912339913193136 ], [ 4951337.80402896553278, 3893652.953646787907928 ], [ 4951340.364488884806633, 3893681.722675910685211 ], [ 4951298.877534572035074, 3893685.681687115691602 ], [ 4951296.028957621194422, 3893656.912339913193136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952786.555417620576918, 3891417.044905703980476 ], [ 4952813.373662356287241, 3891395.592813160270452 ], [ 4952861.704215181060135, 3891455.002492147497833 ], [ 4952834.597466821782291, 3891476.818326476030052 ], [ 4952786.555417620576918, 3891417.044905703980476 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951039.54300147946924, 3896347.175573769025505 ], [ 4951033.158825990743935, 3896389.771618701051921 ], [ 4950935.815724596381187, 3896375.462901370599866 ], [ 4950942.200151367112994, 3896332.502704904414713 ], [ 4951039.54300147946924, 3896347.175573769025505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952589.684229168109596, 3894963.062821360304952 ], [ 4952595.227831307798624, 3894902.623880835715681 ], [ 4952634.975815334357321, 3894906.311546601820737 ], [ 4952629.43212456535548, 3894966.75047906069085 ], [ 4952589.684229168109596, 3894963.062821360304952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952295.746060624718666, 3891073.464954209979624 ], [ 4952266.920867159962654, 3891086.540296875406057 ], [ 4952258.012427046895027, 3891066.867102962452918 ], [ 4952248.78858402185142, 3891070.861875804141164 ], [ 4952242.179476391524076, 3891055.925003923941404 ], [ 4952249.961979171261191, 3891052.656823142897338 ], [ 4952232.719143152236938, 3891015.131752581801265 ], [ 4952262.697642343118787, 3891001.329447820317 ], [ 4952295.746060624718666, 3891073.464954209979624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950624.719998936168849, 3892428.32911508763209 ], [ 4950657.924791527912021, 3892359.909282377455384 ], [ 4950699.099284116178751, 3892379.98141279630363 ], [ 4950665.89441136084497, 3892448.401195455342531 ], [ 4950624.719998936168849, 3892428.32911508763209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950546.211970980279148, 3890978.284871825017035 ], [ 4950596.609503242187202, 3890996.910365919116884 ], [ 4950582.740108964033425, 3891034.036294666584581 ], [ 4950532.630738098174334, 3891015.411139942705631 ], [ 4950546.211970980279148, 3890978.284871825017035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952157.014670672826469, 3889453.6640295824036 ], [ 4952123.010049394331872, 3889459.451007535681129 ], [ 4952118.431514138355851, 3889432.136167996563017 ], [ 4952152.436168956570327, 3889426.34918434266001 ], [ 4952157.014670672826469, 3889453.6640295824036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952021.61058758571744, 3891205.692440073005855 ], [ 4951992.494239364750683, 3891221.680769548751414 ], [ 4951970.931324581615627, 3891182.694411550182849 ], [ 4952000.047702116891742, 3891166.706059084273875 ], [ 4952021.61058758571744, 3891205.692440073005855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950291.298502104356885, 3894925.889328410848975 ], [ 4950343.150775133632123, 3894924.488879777025431 ], [ 4950345.656211294233799, 3895004.964081055019051 ], [ 4950293.515641378238797, 3895006.728342188056558 ], [ 4950291.298502104356885, 3894925.889328410848975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949765.30093564838171, 3895740.975151656661183 ], [ 4949775.694331114180386, 3895718.774305637925863 ], [ 4949808.515889559872448, 3895734.102575778961182 ], [ 4949798.12247287388891, 3895756.303409312851727 ], [ 4949765.30093564838171, 3895740.975151656661183 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949431.094338847324252, 3895530.520250204950571 ], [ 4949448.943308299407363, 3895540.370451567228884 ], [ 4949460.198768181726336, 3895519.991035799961537 ], [ 4949493.88146452140063, 3895538.59698446886614 ], [ 4949472.236594936810434, 3895577.536057283636183 ], [ 4949420.704589990898967, 3895549.444069355726242 ], [ 4949431.094338847324252, 3895530.520250204950571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949295.185707991942763, 3893547.332634134218097 ], [ 4949315.970006474293768, 3893506.207793799228966 ], [ 4949346.201860363595188, 3893521.532773022539914 ], [ 4949325.417527409270406, 3893562.65759035339579 ], [ 4949295.185707991942763, 3893547.332634134218097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948744.425409040413797, 3899142.336938093882054 ], [ 4948712.744214169681072, 3899141.940419127233326 ], [ 4948713.056784109212458, 3899117.90817245002836 ], [ 4948744.737634819000959, 3899118.668821190483868 ], [ 4948744.425409040413797, 3899142.336938093882054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950322.226595291867852, 3892697.09119419567287 ], [ 4950326.939109865576029, 3892601.694644926581532 ], [ 4950386.281325125135481, 3892604.671919323969632 ], [ 4950381.568600471131504, 3892700.068458366207778 ], [ 4950322.226595291867852, 3892697.09119419567287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950134.100838601589203, 3892167.44576725596562 ], [ 4950148.828603166155517, 3892134.690046276897192 ], [ 4950130.111401620320976, 3892126.659110807348043 ], [ 4950142.240897208452225, 3892098.998392203822732 ], [ 4950186.873247995972633, 3892119.073450502939522 ], [ 4950159.728228592313826, 3892179.125418623909354 ], [ 4950134.100838601589203, 3892167.44576725596562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950081.559741684235632, 3896566.429179669823498 ], [ 4950056.203474406152964, 3896574.412838522344828 ], [ 4950054.768338137306273, 3896569.677620307542384 ], [ 4950014.716888348571956, 3896582.379255482461303 ], [ 4950002.659255303442478, 3896544.861042522359639 ], [ 4950040.117595317773521, 3896532.884870659559965 ], [ 4950036.385914827696979, 3896520.864609106909484 ], [ 4950064.04734668508172, 3896512.155144153162837 ], [ 4950081.559741684235632, 3896566.429179669823498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947937.719655296765268, 3900279.429787727538496 ], [ 4947967.971092877909541, 3900268.171812490094453 ], [ 4947978.310926167294383, 3900296.584235550835729 ], [ 4947981.768397338688374, 3900295.131154007744044 ], [ 4947992.68275954015553, 3900325.000674676615745 ], [ 4947958.974272510968149, 3900337.347576861269772 ], [ 4947937.719655296765268, 3900279.429787727538496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949815.285231309011579, 3889633.502219605725259 ], [ 4949842.377828661352396, 3889624.427822125144303 ], [ 4949844.388059163466096, 3889630.620132066309452 ], [ 4949877.53382470458746, 3889619.003313711844385 ], [ 4949891.0341756362468, 3889657.615235563833266 ], [ 4949883.252332495525479, 3889660.155841789208353 ], [ 4949889.284148475155234, 3889677.640399552416056 ], [ 4949850.086087116971612, 3889691.071404174901545 ], [ 4949837.447719207033515, 3889654.645185332279652 ], [ 4949824.189743637107313, 3889659.000625730492175 ], [ 4949815.285231309011579, 3889633.502219605725259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949653.691267506219447, 3890959.849012073595077 ], [ 4949662.595491077750921, 3890985.347384192049503 ], [ 4949638.386109407059848, 3890993.696756513323635 ], [ 4949629.769967498257756, 3890968.198696402832866 ], [ 4949653.691267506219447, 3890959.849012073595077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949425.886346722021699, 3893353.752897591330111 ], [ 4949405.680202437564731, 3893392.693483702838421 ], [ 4949390.995956948027015, 3893385.395537441130728 ], [ 4949387.821023836731911, 3893391.2182712033391 ], [ 4949366.226758131757379, 3893380.271821388974786 ], [ 4949381.814868283458054, 3893349.701329864095896 ], [ 4949391.316050453111529, 3893354.809073581825942 ], [ 4949398.82166504394263, 3893339.887660644482821 ], [ 4949425.886346722021699, 3893353.752897591330111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949357.762955923564732, 3889075.90464257914573 ], [ 4949382.836818440817297, 3889069.012440206948668 ], [ 4949396.328628148883581, 3889116.727283000480384 ], [ 4949371.254806622862816, 3889123.619472980964929 ], [ 4949357.762955923564732, 3889075.90464257914573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948806.376835610717535, 3898552.874351437203586 ], [ 4948819.081859909929335, 3898521.572228993289173 ], [ 4948842.401833714917302, 3898531.063529325183481 ], [ 4948836.338448302820325, 3898545.622492047958076 ], [ 4948841.232930244877934, 3898547.448164189700037 ], [ 4948834.591266047209501, 3898564.191311849281192 ], [ 4948806.376835610717535, 3898552.874351437203586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946839.328970344737172, 3891451.509008418768644 ], [ 4946797.845127803273499, 3891449.284788043238223 ], [ 4946799.31052528321743, 3891423.068956342991441 ], [ 4946840.794408155605197, 3891425.29317895276472 ], [ 4946839.328970344737172, 3891451.509008418768644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947356.436517697758973, 3890291.894340823404491 ], [ 4947373.661856415681541, 3890354.905196204315871 ], [ 4947338.5034444257617, 3890364.338383851572871 ], [ 4947320.989920438267291, 3890301.327271282672882 ], [ 4947356.436517697758973, 3890291.894340823404491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944710.002054234966636, 3891454.664462202694267 ], [ 4944709.125373254530132, 3891468.864692907780409 ], [ 4944721.800982181914151, 3891469.604012222029269 ], [ 4944720.922706034965813, 3891485.624881781637669 ], [ 4944711.704260228201747, 3891484.888579530641437 ], [ 4944710.529315470717847, 3891510.740649471525103 ], [ 4944657.23377047944814, 3891508.145299526397139 ], [ 4944658.700881922617555, 3891477.559816452208906 ], [ 4944668.783620786853135, 3891478.296853358391672 ], [ 4944670.246623412705958, 3891452.445033040363342 ], [ 4944710.002054234966636, 3891454.664462202694267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946451.352810008451343, 3890740.364607985597104 ], [ 4946494.282398592680693, 3890738.22011363087222 ], [ 4946497.684940490871668, 3890796.483783673495054 ], [ 4946462.822688389569521, 3890798.271708602551371 ], [ 4946462.258090571500361, 3890785.890828034840524 ], [ 4946453.614294215105474, 3890786.610979766584933 ], [ 4946451.352810008451343, 3890740.364607985597104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944475.72188943810761, 3891854.637870833277702 ], [ 4944473.675676602870226, 3891888.86415196210146 ], [ 4944490.384381342679262, 3891889.606846642680466 ], [ 4944488.922204208560288, 3891914.730427479371428 ], [ 4944431.883188653737307, 3891911.039902906864882 ], [ 4944433.636230629868805, 3891882.639416269492358 ], [ 4944422.977452965453267, 3891881.901970753446221 ], [ 4944424.145828300155699, 3891863.332440766040236 ], [ 4944436.821258947253227, 3891864.071625887881964 ], [ 4944437.695899283513427, 3891852.056150461547077 ], [ 4944475.72188943810761, 3891854.637870833277702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943530.240321076475084, 3893546.670376286841929 ], [ 4943535.213647390715778, 3893454.914113166742027 ], [ 4943562.003431119956076, 3893456.392847957555205 ], [ 4943559.959104344248772, 3893489.89097403595224 ], [ 4943572.057944193482399, 3893490.26514577306807 ], [ 4943569.716765870340168, 3893534.322752374224365 ], [ 4943561.074837925843894, 3893533.951450394466519 ], [ 4943560.198829720728099, 3893548.151735750958323 ], [ 4943530.240321076475084, 3893546.670376286841929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943249.517183819785714, 3891603.814635064918548 ], [ 4943292.44304392952472, 3891604.213922278489918 ], [ 4943291.224392456933856, 3891685.04936510277912 ], [ 4943248.298959330655634, 3891684.285951934754848 ], [ 4943249.517183819785714, 3891603.814635064918548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942985.147293047979474, 3889696.297649336513132 ], [ 4942994.072394046001136, 3889704.315675161313266 ], [ 4942977.924102844670415, 3889721.416622961871326 ], [ 4942937.905755561776459, 3889684.607415413949639 ], [ 4942972.509632784873247, 3889647.494324768893421 ], [ 4943003.602591301314533, 3889676.649678631685674 ], [ 4942985.147293047979474, 3889696.297649336513132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944015.071399441920221, 3892523.875702007673681 ], [ 4944016.825504028238356, 3892493.654537840280682 ], [ 4944007.607076596468687, 3892493.282604625914246 ], [ 4944009.06815689522773, 3892468.887245237827301 ], [ 4944022.319484752602875, 3892469.626722962595522 ], [ 4944023.783047252334654, 3892442.318340447265655 ], [ 4944055.470967188477516, 3892444.165843201801181 ], [ 4944052.549957742914557, 3892491.500044487882406 ], [ 4944047.940898323431611, 3892491.132007336709648 ], [ 4944046.774044427089393, 3892508.245048265438527 ], [ 4944053.687783563509583, 3892508.615039964672178 ], [ 4944052.80870305467397, 3892526.092453225515783 ], [ 4944015.071399441920221, 3892523.875702007673681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943189.561008331365883, 3889878.163404329214245 ], [ 4943246.022022931836545, 3889889.497495065443218 ], [ 4943241.103843392804265, 3889914.254158977884799 ], [ 4943228.428949240595102, 3889911.694900862406939 ], [ 4943222.643475538119674, 3889940.092137078754604 ], [ 4943187.787465252913535, 3889933.145247370470315 ], [ 4943195.019116510637105, 3889897.830756886396557 ], [ 4943186.089089423418045, 3889896.00283104646951 ], [ 4943189.561008331365883, 3889878.163404329214245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942833.549922091886401, 3892627.770139376167208 ], [ 4942842.777385456487536, 3892616.853699448518455 ], [ 4942835.004082854837179, 3892610.657275903504342 ], [ 4942858.649818516336381, 3892582.274262524209917 ], [ 4942871.892921831458807, 3892593.208759401459247 ], [ 4942867.567263611592352, 3892598.667205536738038 ], [ 4942909.599711396731436, 3892633.293226533103734 ], [ 4942880.475103182718158, 3892668.226097155362368 ], [ 4942856.292174385860562, 3892648.179593131877482 ], [ 4942856.869219994172454, 3892647.087671922054142 ], [ 4942833.549922091886401, 3892627.770139376167208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992121.718996831215918, 3910866.65802063792944 ], [ 4992182.786953476257622, 3910853.346246208529919 ], [ 4992187.908379296772182, 3910876.3001764183864 ], [ 4992211.529663546010852, 3910870.900554812513292 ], [ 4992225.472668779082596, 3910932.840075981337577 ], [ 4992141.071550319902599, 3910951.552176993805915 ], [ 4992121.718996831215918, 3910866.65802063792944 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988989.341429491527379, 3907834.452952759806067 ], [ 4988940.688267, 3907832.145542658865452 ], [ 4988942.805542639456689, 3907791.732151594478637 ], [ 4988955.761095326393843, 3907792.12892677821219 ], [ 4988955.456658070906997, 3907798.682547447271645 ], [ 4988990.867328761145473, 3907800.228329518809915 ], [ 4988989.341429491527379, 3907834.452952759806067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988607.755448437295854, 3908673.547903418075293 ], [ 4988630.794809526763856, 3908671.056741920299828 ], [ 4988633.614572380669415, 3908694.732448388356715 ], [ 4988610.575231314636767, 3908697.223607502877712 ], [ 4988607.755448437295854, 3908673.547903418075293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988267.616267953999341, 3906179.117644616868347 ], [ 4988237.384505104273558, 3906178.313997301273048 ], [ 4988238.321850508451462, 3906148.821620534174144 ], [ 4988268.552738344296813, 3906149.989398902282119 ], [ 4988267.616267953999341, 3906179.117644616868347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988221.680532960221171, 3908550.962446693331003 ], [ 4988227.080087853595614, 3908579.378264741972089 ], [ 4988162.844629705883563, 3908591.598732561338693 ], [ 4988156.875530042685568, 3908560.632579488214105 ], [ 4988200.082489410415292, 3908552.72928474843502 ], [ 4988200.652872208505869, 3908554.91550282202661 ], [ 4988221.680532960221171, 3908550.962446693331003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988142.449749526567757, 3907763.146024239249527 ], [ 4988138.188935039564967, 3907739.830929504707456 ], [ 4988191.190191092900932, 3907730.495474372524768 ], [ 4988193.745202476158738, 3907745.06714462954551 ], [ 4988196.914159661158919, 3907744.346774883102626 ], [ 4988204.016939116641879, 3907782.598398345056921 ], [ 4988173.48273219447583, 3907788.348451356869191 ], [ 4988167.798663028515875, 3907758.47541943192482 ], [ 4988142.449749526567757, 3907763.146024239249527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987999.068159244023263, 3906950.045655871741474 ], [ 4987965.938060482032597, 3906957.246025296859443 ], [ 4987963.946956927888095, 3906947.409505951683968 ], [ 4987954.151892601512372, 3906949.569982863031328 ], [ 4987951.307838894426823, 3906935.361757968552411 ], [ 4987960.814073375426233, 3906933.564695372246206 ], [ 4987951.992169442586601, 3906891.667565849144012 ], [ 4987985.121440834365785, 3906884.831309694331139 ], [ 4987999.068159244023263, 3906950.045655871741474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987974.698802693746984, 3903660.780179922934622 ], [ 4987958.479615961201489, 3903698.245479279663414 ], [ 4987899.796982394531369, 3903672.974786464124918 ], [ 4987916.016102300025523, 3903635.509452268946916 ], [ 4987974.698802693746984, 3903660.780179922934622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987678.010278428904712, 3908352.981120687909424 ], [ 4987702.208692929707468, 3908347.578966645058244 ], [ 4987705.909266443923116, 3908364.702358012553304 ], [ 4987739.901307775638998, 3908357.503799073398113 ], [ 4987743.600954747758806, 3908374.991326251067221 ], [ 4987728.909165455959737, 3908378.232166330330074 ], [ 4987733.463551932945848, 3908399.36313463980332 ], [ 4987690.25288363546133, 3908408.723701090086251 ], [ 4987678.010278428904712, 3908352.981120687909424 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986882.780821344815195, 3901043.992069793865085 ], [ 4986976.333412730135024, 3901062.791378962807357 ], [ 4986969.919196419417858, 3901094.819230163004249 ], [ 4986977.979447388090193, 3901096.295465529430658 ], [ 4986972.730565433390439, 3901122.864200038369745 ], [ 4986925.234851508401334, 3901113.280686800833791 ], [ 4986929.024144545197487, 3901094.719260514248163 ], [ 4986874.620079660788178, 3901083.662431067787111 ], [ 4986882.780821344815195, 3901043.992069793865085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986631.589743740856647, 3913729.39172607799992 ], [ 4986643.316574648953974, 3913760.371654286980629 ], [ 4986619.690099048428237, 3913769.41749920649454 ], [ 4986621.693582131527364, 3913774.156115783378482 ], [ 4986596.62606762163341, 3913783.926742176059633 ], [ 4986582.896587749943137, 3913747.844088337849826 ], [ 4986631.589743740856647, 3913729.39172607799992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986607.343996183015406, 3907484.083958651870489 ], [ 4986579.346229349263012, 3907512.418207548558712 ], [ 4986565.271561421453953, 3907498.546955352649093 ], [ 4986568.446699768304825, 3907495.27748116850853 ], [ 4986531.967841818928719, 3907459.139710000250489 ], [ 4986576.128390184603631, 3907414.822873411234468 ], [ 4986596.809441834688187, 3907435.264581278432161 ], [ 4986577.471520356833935, 3907454.516580945346504 ], [ 4986607.343996183015406, 3907484.083958651870489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986387.66189388372004, 3909144.359692657366395 ], [ 4986400.003047798760235, 3909160.411461530253291 ], [ 4986389.04228128772229, 3909168.759942060336471 ], [ 4986399.374257289804518, 3909182.25790971936658 ], [ 4986371.106450746767223, 3909204.037353852763772 ], [ 4986349.005590057000518, 3909175.945563849061728 ], [ 4986342.370502715930343, 3909181.391481546219438 ], [ 4986326.584143567830324, 3909161.32593251299113 ], [ 4986362.063755634240806, 3909133.737792336847633 ], [ 4986376.989031669683754, 3909152.708876013755798 ], [ 4986387.66189388372004, 3909144.359692657366395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986311.134180312976241, 3910547.9071064889431 ], [ 4986251.221804186701775, 3910560.506748616229743 ], [ 4986240.691359980031848, 3910510.230893610045314 ], [ 4986268.918917664326727, 3910504.47306048264727 ], [ 4986270.056387840770185, 3910510.301944151055068 ], [ 4986301.740425049327314, 3910503.824244410730898 ], [ 4986311.134180312976241, 3910547.9071064889431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986037.194114178419113, 3909895.082722726278007 ], [ 4986041.401078380644321, 3909941.337763629853725 ], [ 4986021.53169078938663, 3909943.110520212911069 ], [ 4986022.653437393717468, 3909955.493748099543154 ], [ 4986003.359858248382807, 3909957.267906310968101 ], [ 4986002.522490948438644, 3909946.341896784957498 ], [ 4985988.987753082998097, 3909947.7658122908324 ], [ 4985985.623339894227684, 3909910.252002545166761 ], [ 4985996.854027954861522, 3909909.18666577572003 ], [ 4985996.015778917819262, 3909898.624787705950439 ], [ 4986037.194114178419113, 3909895.082722726278007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985943.01829459797591, 3909430.222113662399352 ], [ 4985998.868161012418568, 3909431.81318096537143 ], [ 4985997.917575160972774, 3909467.860050367657095 ], [ 4985966.537836884148419, 3909467.056181203573942 ], [ 4985965.906773567199707, 3909489.995036190375686 ], [ 4985941.148837824352086, 3909489.20714733377099 ], [ 4985943.01829459797591, 3909430.222113662399352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985788.108471651561558, 3910276.094691496342421 ], [ 4985750.961282477714121, 3910279.646815161220729 ], [ 4985749.277621599845588, 3910261.436117660719901 ], [ 4985738.334985866211355, 3910262.502249191049486 ], [ 4985735.804235217161477, 3910237.37099055852741 ], [ 4985783.894129580818117, 3910232.752728621475399 ], [ 4985788.108471651561558, 3910276.094691496342421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985755.437749760225415, 3910933.27663135714829 ], [ 4985801.258294844068587, 3910914.08762247255072 ], [ 4985817.57427894603461, 3910953.089088863693178 ], [ 4985771.753788524307311, 3910972.278070386499166 ], [ 4985755.437749760225415, 3910933.27663135714829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985654.182672057300806, 3903571.368429723661393 ], [ 4985700.857743289321661, 3903561.284645258914679 ], [ 4985717.088417932391167, 3903637.791214999277145 ], [ 4985682.514155132696033, 3903645.355060592293739 ], [ 4985676.532341695390642, 3903618.030847681220621 ], [ 4985664.719614377245307, 3903620.551451719831675 ], [ 4985654.182672057300806, 3903571.368429723661393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985418.563180812634528, 3905647.084465822670609 ], [ 4985377.23156404774636, 3905712.165437926538289 ], [ 4985338.130255561321974, 3905687.311172392684966 ], [ 4985349.113824393600225, 3905669.859031337313354 ], [ 4985357.164102861657739, 3905674.976084561087191 ], [ 4985375.084423821419477, 3905646.616542370524257 ], [ 4985351.220639949664474, 3905631.630191002506763 ], [ 4985341.971669349819422, 3905646.173411569092423 ], [ 4985314.082717555575073, 3905628.62856861948967 ], [ 4985335.75933541264385, 3905594.815975982695818 ], [ 4985418.563180812634528, 3905647.084465822670609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985217.670205137692392, 3915039.419114041142166 ], [ 4985166.744362436234951, 3915029.830401829443872 ], [ 4985172.574029260315001, 3914999.257002934813499 ], [ 4985223.499927926808596, 3915008.845726009458303 ], [ 4985217.670205137692392, 3915039.419114041142166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984928.139362269081175, 3906397.850658667273819 ], [ 4984897.235282256267965, 3906437.831983534153551 ], [ 4984881.139317615889013, 3906425.777499443851411 ], [ 4984875.940946287475526, 3906432.319569816812873 ], [ 4984853.521575920283794, 3906415.516411387827247 ], [ 4984860.454459265805781, 3906406.065385084133595 ], [ 4984840.910114488564432, 3906391.089704697951674 ], [ 4984869.792570123448968, 3906353.652455136645585 ], [ 4984928.139362269081175, 3906397.850658667273819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984791.904713747091591, 3904588.156224994454533 ], [ 4984851.223626766353846, 3904588.296554192434996 ], [ 4984851.128827206790447, 3904628.350828851107508 ], [ 4984870.709798366762698, 3904628.397179789375514 ], [ 4984870.930511314421892, 3904656.799984104931355 ], [ 4984824.857686644420028, 3904656.690945406910032 ], [ 4984824.871469991281629, 3904650.86486890912056 ], [ 4984792.044575174339116, 3904650.787227011285722 ], [ 4984791.904713747091591, 3904588.156224994454533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984683.622981728054583, 3905446.1592798945494 ], [ 4984666.528427776880562, 3905490.90716703562066 ], [ 4984673.720207661390305, 3905493.837196487933397 ], [ 4984665.318208795972168, 3905515.665287154726684 ], [ 4984604.615698736160994, 3905492.581785308662802 ], [ 4984614.755637623369694, 3905466.388190255966038 ], [ 4984630.578952274285257, 3905472.251619067508727 ], [ 4984645.93546793423593, 3905431.869193049147725 ], [ 4984683.622981728054583, 3905446.1592798945494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984644.501377763226628, 3915800.193312878254801 ], [ 4984636.429087873548269, 3915805.636278061661869 ], [ 4984649.336143242195249, 3915824.96585918078199 ], [ 4984620.796618779189885, 3915843.469365693163127 ], [ 4984594.409371021203697, 3915803.716482379008085 ], [ 4984630.73423583433032, 3915779.405167642980814 ], [ 4984644.501377763226628, 3915800.193312878254801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984458.227810209617019, 3916063.023487372323871 ], [ 4984481.569707073271275, 3916051.426123991142958 ], [ 4984497.04067135322839, 3916082.049837050028145 ], [ 4984473.410961722023785, 3916093.6465097325854 ], [ 4984458.227810209617019, 3916063.023487372323871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984396.112385172396898, 3915549.083843955304474 ], [ 4984419.061535403132439, 3915582.274022198747844 ], [ 4984396.574212696403265, 3915597.514789131470025 ], [ 4984391.698086987249553, 3915590.220640925690532 ], [ 4984353.064494428224862, 3915617.075792336370796 ], [ 4984334.992291464470327, 3915590.815674459096044 ], [ 4984396.112385172396898, 3915549.083843955304474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984355.709964797832072, 3909221.076089411042631 ], [ 4984363.983973950147629, 3909253.139213384594768 ], [ 4984339.208675951696932, 3909259.63541733333841 ], [ 4984342.062082269228995, 3909270.566102777607739 ], [ 4984323.337098268792033, 3909275.255865451414138 ], [ 4984312.209627316333354, 3909232.262071162927896 ], [ 4984355.709964797832072, 3909221.076089411042631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983969.392571633681655, 3905003.518994488287717 ], [ 4983970.066900424659252, 3905084.721977329812944 ], [ 4983948.469758195802569, 3905085.035709503106773 ], [ 4983948.233632843010128, 3905062.823113615158945 ], [ 4983928.940079705789685, 3905063.142236390616745 ], [ 4983928.740459057502449, 3905025.272055519279093 ], [ 4983921.541678925976157, 3905025.255265420302749 ], [ 4983921.303832110948861, 3905003.770930349361151 ], [ 4983969.392571633681655, 3905003.518994488287717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983681.021502152085304, 3909892.417457517702132 ], [ 4983639.540362949483097, 3909902.516823083627969 ], [ 4983636.118550873361528, 3909888.307691993191838 ], [ 4983610.481163498014212, 3909894.438434002455324 ], [ 4983601.071760151535273, 3909855.090236988384277 ], [ 4983632.470555057749152, 3909847.516330953221768 ], [ 4983632.185191917233169, 3909846.423269535414875 ], [ 4983662.142815938219428, 3909839.574317889753729 ], [ 4983671.268466208130121, 3909877.101212091278285 ], [ 4983677.028988722711802, 3909876.022197406738997 ], [ 4983681.021502152085304, 3909892.417457517702132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983587.439015238545835, 3916845.698261558078229 ], [ 4983557.754232121631503, 3916862.379574738908559 ], [ 4983518.767130388878286, 3916794.560139004141092 ], [ 4983548.451963941566646, 3916777.878783466760069 ], [ 4983587.439015238545835, 3916845.698261558078229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983477.473599883727729, 3909271.826948318630457 ], [ 4983517.517808951437473, 3909260.995738599449396 ], [ 4983526.082398727536201, 3909292.331010872498155 ], [ 4983486.038232818245888, 3909303.162208036519587 ], [ 4983477.473599883727729, 3909271.826948318630457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983413.745114894583821, 3909439.908791834488511 ], [ 4983420.866036849096417, 3909473.061357992235571 ], [ 4983379.963524664752185, 3909481.705930436961353 ], [ 4983372.842554602771997, 3909448.553374938201159 ], [ 4983413.745114894583821, 3909439.908791834488511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983302.477128638885915, 3909499.005235916934907 ], [ 4983260.706782805733383, 3909509.468649871181697 ], [ 4983252.147836236283183, 3909475.584541577380151 ], [ 4983293.918231326155365, 3909465.121114539913833 ], [ 4983302.477128638885915, 3909499.005235916934907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983282.190139407292008, 3909806.286550278775394 ], [ 4983272.307394586503506, 3909847.046622732188553 ], [ 4983219.363275094889104, 3909834.179802149068564 ], [ 4983229.245944196358323, 3909793.419710551854223 ], [ 4983282.190139407292008, 3909806.286550278775394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983253.489470164291561, 3917500.003482104744762 ], [ 4983271.89045313373208, 3917508.421063785906881 ], [ 4983274.782922224141657, 3917502.237453164532781 ], [ 4983291.171698360703886, 3917509.557997440453619 ], [ 4983287.121228571049869, 3917518.652009285055101 ], [ 4983299.771731859073043, 3917524.507386138197035 ], [ 4983282.416075925342739, 3917561.973172076977789 ], [ 4983234.976712389849126, 3917540.01556984288618 ], [ 4983253.489470164291561, 3917500.003482104744762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982884.171630623750389, 3908109.604448683559895 ], [ 4982819.935009116306901, 3908122.930078092962503 ], [ 4982782.623854013159871, 3907945.512072882149369 ], [ 4982846.86088056396693, 3907932.186355743091553 ], [ 4982884.171630623750389, 3908109.604448683559895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982782.730708062648773, 3916571.106006116606295 ], [ 4982748.464230788871646, 3916577.581949812825769 ], [ 4982743.916513114236295, 3916552.446260184515268 ], [ 4982778.182187210768461, 3916546.334443335887045 ], [ 4982782.730708062648773, 3916571.106006116606295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982405.087989227846265, 3916070.28702507680282 ], [ 4982416.207335255108774, 3916116.921538741793483 ], [ 4982402.096089132130146, 3916120.166618277318776 ], [ 4982409.509256606921554, 3916151.134916067589074 ], [ 4982380.998144713230431, 3916157.988567140419036 ], [ 4982362.754191787913442, 3916080.022303164470941 ], [ 4982405.087989227846265, 3916070.28702507680282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982238.738229454495013, 3906931.619937726296484 ], [ 4982349.169513749890029, 3906990.860242578200996 ], [ 4982315.628936464898288, 3907052.686482352204621 ], [ 4982294.060697137378156, 3907040.985241605434567 ], [ 4982295.794892886653543, 3907038.076123272068799 ], [ 4982240.291420266032219, 3907008.455369110219181 ], [ 4982244.049387783743441, 3907001.909518542699516 ], [ 4982231.97120192181319, 3906995.327723529655486 ], [ 4982228.211583742871881, 3907002.601836531888694 ], [ 4982206.643266208469868, 3906990.900666308123618 ], [ 4982238.738229454495013, 3906931.619937726296484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981853.461871062405407, 3902728.30349506996572 ], [ 4981853.116415990516543, 3902753.791907299309969 ], [ 4981833.82287529297173, 3902753.384274905081838 ], [ 4981834.167491194792092, 3902728.259991888422519 ], [ 4981853.461871062405407, 3902728.30349506996572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981730.577586758881807, 3895524.068661891855299 ], [ 4981719.850001327693462, 3895554.995555398520082 ], [ 4981679.266496223397553, 3895540.703234076034278 ], [ 4981689.994040557183325, 3895509.77632463676855 ], [ 4981730.577586758881807, 3895524.068661891855299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981279.126094698905945, 3906257.635182899888605 ], [ 4981314.882499195635319, 3906234.410633877385408 ], [ 4981336.118276844732463, 3906266.501732917502522 ], [ 4981300.36189651209861, 3906289.726254141423851 ], [ 4981279.126094698905945, 3906257.635182899888605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981078.741396211087704, 3905342.852923081256449 ], [ 4980969.506405152380466, 3905388.854684366378933 ], [ 4980940.860502667725086, 3905321.790775636211038 ], [ 4981012.338828257285058, 3905291.726703813299537 ], [ 4981022.937029797583818, 3905316.87537354324013 ], [ 4981043.977495839819312, 3905307.818887459114194 ], [ 4981029.655421801842749, 3905273.922760867513716 ], [ 4981046.65978105738759, 3905267.042089584283531 ], [ 4981078.741396211087704, 3905342.852923081256449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980873.516586998477578, 3901411.59815374808386 ], [ 4980915.53967316634953, 3901422.25121310306713 ], [ 4980902.173335062339902, 3901475.748798029962927 ], [ 4980878.571143528446555, 3901469.870325856842101 ], [ 4980881.186477045528591, 3901459.316329778637737 ], [ 4980862.765654128044844, 3901454.541761382948607 ], [ 4980873.516586998477578, 3901411.59815374808386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980859.32993832603097, 3905859.432618860155344 ], [ 4980912.642107184976339, 3905840.251941726543009 ], [ 4980921.513338688760996, 3905865.032613827381283 ], [ 4980932.464038824662566, 3905861.051482050213963 ], [ 4980959.367168006487191, 3905934.66590831708163 ], [ 4980900.579418811015785, 3905956.019129796884954 ], [ 4980887.986779076047242, 3905921.398640105035156 ], [ 4980878.476625951938331, 3905925.01885471958667 ], [ 4980866.743729540146887, 3905892.220943436492234 ], [ 4980870.778148028068244, 3905890.773366643581539 ], [ 4980859.32993832603097, 3905859.432618860155344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980871.530775223858654, 3895554.921300209593028 ], [ 4980847.312552879564464, 3895564.699098830576986 ], [ 4980836.137422892265022, 3895538.092856752686203 ], [ 4980860.068419561721385, 3895527.950281539000571 ], [ 4980871.530775223858654, 3895554.921300209593028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980678.643123049288988, 3905795.309310934972018 ], [ 4980623.268054238520563, 3905705.610444337595254 ], [ 4980663.058255930431187, 3905681.30155281117186 ], [ 4980740.813003961928189, 3905807.099100380204618 ], [ 4980715.150636781938374, 3905823.064104133285582 ], [ 4980692.771659844554961, 3905786.601394678466022 ], [ 4980678.643123049288988, 3905795.309310934972018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980613.989829220809042, 3903518.615068333689123 ], [ 4980632.397210355848074, 3903528.851417060010135 ], [ 4980621.98775250185281, 3903548.12738382210955 ], [ 4980603.29160928633064, 3903538.254535769578069 ], [ 4980613.989829220809042, 3903518.615068333689123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980471.905259773135185, 3899258.333412578329444 ], [ 4980484.220805591903627, 3899289.675774406641722 ], [ 4980440.116377280093729, 3899307.056876054499298 ], [ 4980438.969940430484712, 3899304.505437835585326 ], [ 4980422.827612012624741, 3899310.660113463178277 ], [ 4980411.657643523998559, 3899282.233345062471926 ], [ 4980471.905259773135185, 3899258.333412578329444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980435.638421434909105, 3908008.332543435040861 ], [ 4980450.07850887067616, 3907988.337071262765676 ], [ 4980484.287139927968383, 3908012.809337290003896 ], [ 4980469.847040064632893, 3908032.804791383445263 ], [ 4980435.638421434909105, 3908008.332543435040861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980308.066397829912603, 3904874.69528774311766 ], [ 4980354.46444340609014, 3904857.683107218239456 ], [ 4980369.064329892396927, 3904896.677318498957902 ], [ 4980364.453083426691592, 3904898.487832790240645 ], [ 4980368.174036577343941, 3904908.691707225516438 ], [ 4980326.387309116311371, 3904923.893342958763242 ], [ 4980308.066397829912603, 3904874.69528774311766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980159.491283675655723, 3916162.128008851315826 ], [ 4980168.015219398774207, 3916212.761371474247426 ], [ 4980088.256430177949369, 3916226.059512013103813 ], [ 4980082.576371164061129, 3916191.090177881065756 ], [ 4980139.588573856279254, 3916181.383484461344779 ], [ 4980136.744583363644779, 3916165.719474914949387 ], [ 4980159.491283675655723, 3916162.128008851315826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979862.075921480543911, 3903267.170469318050891 ], [ 4979876.532412381842732, 3903240.620413803029805 ], [ 4979898.680698369629681, 3903252.320943884551525 ], [ 4979884.224191812798381, 3903278.870987667236477 ], [ 4979862.075921480543911, 3903267.170469318050891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979830.146630073897541, 3908402.08934472873807 ], [ 4979811.372630848549306, 3908429.358357631601393 ], [ 4979765.949510558508337, 3908398.308131326921284 ], [ 4979784.723485176451504, 3908371.039087190758437 ], [ 4979830.146630073897541, 3908402.08934472873807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979795.438340161927044, 3899618.797151152510196 ], [ 4979785.123143333941698, 3899594.37793701980263 ], [ 4979820.004020364955068, 3899579.888702875934541 ], [ 4979837.195696632377803, 3899620.708793728146702 ], [ 4979811.25186812505126, 3899631.212040421087295 ], [ 4979804.663358720950782, 3899614.811810859013349 ], [ 4979795.438340161927044, 3899618.797151152510196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979699.117091289721429, 3901133.371311104856431 ], [ 4979741.778873139061034, 3901115.621711302548647 ], [ 4979759.25529008358717, 3901157.534804158844054 ], [ 4979751.472355041652918, 3901160.795039774850011 ], [ 4979758.635705934837461, 3901177.560654581524432 ], [ 4979723.756931776180863, 3901192.049982331693172 ], [ 4979699.117091289721429, 3901133.371311104856431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979639.642365326173604, 3909417.604671825654805 ], [ 4979649.124206629581749, 3909426.364465279038996 ], [ 4979664.706650638021529, 3909410.012366670183837 ], [ 4979685.105876508168876, 3909429.355760436505079 ], [ 4979639.800488942302763, 3909477.322784300893545 ], [ 4979609.631523533724248, 3909449.219015846494585 ], [ 4979639.642365326173604, 3909417.604671825654805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979372.580351323820651, 3909497.863078077323735 ], [ 4979361.036655306816101, 3909510.582754063885659 ], [ 4979367.932940475642681, 3909516.787927362602204 ], [ 4979343.114226506091654, 3909544.044208839070052 ], [ 4979313.231355962343514, 3909516.669656636193395 ], [ 4979331.411756750196218, 3909497.04578422755003 ], [ 4979323.941225498914719, 3909490.111113709863275 ], [ 4979342.410342903807759, 3909470.123740349896252 ], [ 4979372.580351323820651, 3909497.863078077323735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979343.70418294146657, 3901945.705163639504462 ], [ 4979333.61293120868504, 3901951.145317952614278 ], [ 4979323.573614629916847, 3901932.552938756067306 ], [ 4979371.722911769524217, 3901906.803721495904028 ], [ 4979381.47422034945339, 3901925.395495478529483 ], [ 4979387.528982521034777, 3901922.131413261406124 ], [ 4979399.288285777904093, 3901944.368848326150328 ], [ 4979355.752283257432282, 3901967.579073136206716 ], [ 4979343.70418294146657, 3901945.705163639504462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979270.29768133815378, 3899930.810697564389557 ], [ 4979248.937320824712515, 3899952.976562349591404 ], [ 4979215.596998158842325, 3899921.225273864343762 ], [ 4979236.957356238737702, 3899899.059383003041148 ], [ 4979270.29768133815378, 3899930.810697564389557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979226.099694892764091, 3906533.144711648114026 ], [ 4979211.775989851914346, 3906499.249528512358665 ], [ 4979288.436806728132069, 3906467.007247421424836 ], [ 4979302.759645832702518, 3906501.266601118724793 ], [ 4979226.099694892764091, 3906533.144711648114026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979220.792314699850976, 3908592.665549316909164 ], [ 4979244.67966031935066, 3908597.086689074989408 ], [ 4979239.733271276578307, 3908621.108760287985206 ], [ 4979215.846731803379953, 3908616.323494026903063 ], [ 4979220.792314699850976, 3908592.665549316909164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979194.89465990755707, 3907250.781866228673607 ], [ 4979204.174306731671095, 3907220.214772457722574 ], [ 4979226.905665868893266, 3907227.182322373148054 ], [ 4979234.737073817290366, 3907200.617569101508707 ], [ 4979324.799478989094496, 3907228.121989953797311 ], [ 4979314.651194492354989, 3907260.87195880850777 ], [ 4979306.882666125893593, 3907258.306246804539114 ], [ 4979299.343850356526673, 3907282.686818791553378 ], [ 4979194.89465990755707, 3907250.781866228673607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979154.599544231779873, 3904437.775970047339797 ], [ 4979097.256025495938957, 3904456.223180271219462 ], [ 4979087.531308843754232, 3904425.615193867124617 ], [ 4979100.786766530945897, 3904421.274147480260581 ], [ 4979097.924434469081461, 3904413.257090618833899 ], [ 4979127.317301006056368, 3904403.488826762884855 ], [ 4979129.320457668974996, 3904409.319246624130756 ], [ 4979144.016503916122019, 3904404.617192809469998 ], [ 4979154.599544231779873, 3904437.775970047339797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979157.910301887430251, 3901564.78728847252205 ], [ 4979185.472402388229966, 3901604.172834683675319 ], [ 4979164.705889225937426, 3901618.693315371405333 ], [ 4979159.825005690567195, 3901611.764309306163341 ], [ 4979133.290133007802069, 3901630.277826325036585 ], [ 4979119.796271902509034, 3901610.949825410731137 ], [ 4979131.909796392545104, 3901602.600899260956794 ], [ 4979122.722411886788905, 3901589.472398934885859 ], [ 4979157.910301887430251, 3901564.78728847252205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979148.062158445827663, 3899719.351364167407155 ], [ 4979103.675997715443373, 3899734.549269664101303 ], [ 4979093.942503444850445, 3899707.218528006225824 ], [ 4979138.32948796171695, 3899691.656477830372751 ], [ 4979148.062158445827663, 3899719.351364167407155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978937.596246510744095, 3905187.784638322889805 ], [ 4978910.225420815870166, 3905195.008528787177056 ], [ 4978903.652584323659539, 3905171.68999342340976 ], [ 4978889.823191243223846, 3905175.301643594168127 ], [ 4978887.252732356078923, 3905165.464572738390416 ], [ 4978860.457796841859818, 3905172.689749047160149 ], [ 4978851.029609218239784, 3905138.077021377626806 ], [ 4978862.553854532539845, 3905135.188672522082925 ], [ 4978860.268209293484688, 3905126.808742128312588 ], [ 4978891.961468078196049, 3905118.137545511126518 ], [ 4978893.389502625912428, 3905123.602584931533784 ], [ 4978907.795604443177581, 3905119.628042313735932 ], [ 4978917.795718058943748, 3905156.062675776425749 ], [ 4978928.16738199070096, 3905153.536013348493725 ], [ 4978937.596246510744095, 3905187.784638322889805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978936.69510624371469, 3901180.517566519323736 ], [ 4978981.365998001769185, 3901165.684119823854417 ], [ 4978994.528379243798554, 3901205.402662404347211 ], [ 4978972.914109733887017, 3901212.274718235246837 ], [ 4978976.061687706038356, 3901221.748881636187434 ], [ 4978953.005131249316037, 3901229.710248348303139 ], [ 4978936.69510624371469, 3901180.517566519323736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978820.340383226983249, 3899838.446353868581355 ], [ 4978849.468866282142699, 3899819.938102676533163 ], [ 4978865.256952648051083, 3899844.368690760806203 ], [ 4978836.128485089167953, 3899862.87692511966452 ], [ 4978820.340383226983249, 3899838.446353868581355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978715.535669227130711, 3895647.812647523824126 ], [ 4978729.004803771153092, 3895680.248985194601119 ], [ 4978684.317946021445096, 3895698.359954720363021 ], [ 4978671.136040467768908, 3895666.288382407743484 ], [ 4978715.535669227130711, 3895647.812647523824126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978578.728087692521513, 3905225.978727440349758 ], [ 4978586.165815838612616, 3905248.934897176921368 ], [ 4978580.690904142335057, 3905250.743874786887318 ], [ 4978589.559042533859611, 3905278.072678870055825 ], [ 4978545.75981524027884, 3905292.544525797478855 ], [ 4978533.742831735871732, 3905256.469860944896936 ], [ 4978559.964803994633257, 3905247.786609824281186 ], [ 4978555.387907262891531, 3905233.57571030780673 ], [ 4978578.728087692521513, 3905225.978727440349758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978449.562279270961881, 3903409.051155723631382 ], [ 4978481.142659219913185, 3903454.270680222660303 ], [ 4978432.691971209831536, 3903488.031758347526193 ], [ 4978401.112324154935777, 3903442.448160142637789 ], [ 4978449.562279270961881, 3903409.051155723631382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978383.114077386446297, 3907708.578429444227368 ], [ 4978397.741586820222437, 3907735.191195087973028 ], [ 4978358.827206107787788, 3907756.228131600655615 ], [ 4978344.198895982466638, 3907729.979517458472401 ], [ 4978383.114077386446297, 3907708.578429444227368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978077.363678036257625, 3903884.545386100187898 ], [ 4978059.852562423795462, 3903858.655029496643692 ], [ 4978101.377881158143282, 3903831.068856562487781 ], [ 4978117.453009030781686, 3903855.13554383860901 ], [ 4978110.531863258220255, 3903859.854607375338674 ], [ 4978122.875000300817192, 3903878.451430470217019 ], [ 4978100.382264674641192, 3903893.333226923365146 ], [ 4978089.475085789337754, 3903876.560108388774097 ], [ 4978077.363678036257625, 3903884.545386100187898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978039.412132272496819, 3904810.087553878780454 ], [ 4978045.702472425065935, 3904831.220483928453177 ], [ 4978027.549875095486641, 3904836.64409858500585 ], [ 4978021.260291238315403, 3904815.147042662836611 ], [ 4978039.412132272496819, 3904810.087553878780454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978049.913593048229814, 3895615.446941348258406 ], [ 4978050.171638570725918, 3895629.648542686365545 ], [ 4978021.076860114000738, 3895630.315340827219188 ], [ 4978020.530747200362384, 3895616.113131430465728 ], [ 4978049.913593048229814, 3895615.446941348258406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977856.479368599131703, 3892540.33104021474719 ], [ 4977878.108752098865807, 3892529.45272105326876 ], [ 4977886.714484740048647, 3892546.949040135834366 ], [ 4977865.085878595709801, 3892557.463225127197802 ], [ 4977856.479368599131703, 3892540.33104021474719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977783.09535691794008, 3904553.926706023048609 ], [ 4977824.28996657859534, 3904546.002505851443857 ], [ 4977830.273415426723659, 3904576.238025311846286 ], [ 4977789.078084173612297, 3904584.52634643483907 ], [ 4977783.09535691794008, 3904553.926706023048609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977654.040327405557036, 3904714.965815578121692 ], [ 4977662.022027458995581, 3904753.58052211208269 ], [ 4977638.111902724020183, 3904758.264050334692001 ], [ 4977630.418124228715897, 3904719.64995493972674 ], [ 4977654.040327405557036, 3904714.965815578121692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977553.312534613534808, 3909497.26624876819551 ], [ 4977571.774984069168568, 3909479.826575756072998 ], [ 4977600.214040343649685, 3909510.109219997189939 ], [ 4977581.752356570214033, 3909527.184742706827819 ], [ 4977553.312534613534808, 3909497.26624876819551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977513.833515842445195, 3909377.01976372487843 ], [ 4977533.076592027209699, 3909399.272160125430673 ], [ 4977510.578879619948566, 3909418.888204843271524 ], [ 4977491.047132368199527, 3909396.999352685641497 ], [ 4977513.833515842445195, 3909377.01976372487843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977470.364112708717585, 3905384.219088717363775 ], [ 4977446.174250049516559, 3905385.260885407216847 ], [ 4977444.831220969557762, 3905339.01334364945069 ], [ 4977471.89984189812094, 3905338.341700308024883 ], [ 4977471.634749265387654, 3905327.41719314083457 ], [ 4977492.944423099979758, 3905326.733522617258132 ], [ 4977494.28965653385967, 3905371.888675939757377 ], [ 4977470.099781802855432, 3905372.930451088119298 ], [ 4977470.364112708717585, 3905384.219088717363775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977272.935902844183147, 3908924.627818802837282 ], [ 4977249.869755810126662, 3908940.601565682794899 ], [ 4977218.00512526370585, 3908895.746867335401475 ], [ 4977241.071291692554951, 3908879.773093548137695 ], [ 4977272.935902844183147, 3908924.627818802837282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977255.410814241506159, 3913325.867465533781797 ], [ 4977249.584494397044182, 3913358.991473140195012 ], [ 4977206.133274732157588, 3913351.254126012790948 ], [ 4977211.959542621858418, 3913318.13010914158076 ], [ 4977255.410814241506159, 3913325.867465533781797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977203.355962499044836, 3916480.979365616571158 ], [ 4977205.217954858206213, 3916416.167343923356384 ], [ 4977237.452542044222355, 3916417.326916044577956 ], [ 4977235.591230933554471, 3916481.774802857078612 ], [ 4977203.355962499044836, 3916480.979365616571158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977022.782455927692354, 3907656.562497518025339 ], [ 4977038.276619890704751, 3907682.448053786531091 ], [ 4976978.025246777571738, 3907718.736249647568911 ], [ 4976962.243123289197683, 3907692.85013054870069 ], [ 4977022.782455927692354, 3907656.562497518025339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976995.46202742587775, 3913745.901084511075169 ], [ 4976989.97913003526628, 3913752.444112802390009 ], [ 4977014.117602276615798, 3913772.521560247521847 ], [ 4976986.127432026900351, 3913805.235500195063651 ], [ 4976977.219724274240434, 3913797.570213144179434 ], [ 4976970.29377971123904, 3913805.930920392274857 ], [ 4976955.064535584300756, 3913792.790524419862777 ], [ 4976962.567703825421631, 3913783.702743137720972 ], [ 4976943.601580348797143, 3913768.005668591242284 ], [ 4976975.921691210009158, 3913729.474528686609119 ], [ 4976995.46202742587775, 3913745.901084511075169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976964.749473725445569, 3902178.445622154511511 ], [ 4976951.464579901657999, 3902196.624636347405612 ], [ 4976933.636132017709315, 3902183.843104233499616 ], [ 4976946.633038200438023, 3902165.663484538905323 ], [ 4976964.749473725445569, 3902178.445622154511511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976878.697622857056558, 3909801.732476965058595 ], [ 4976889.000943669117987, 3909831.248564107809216 ], [ 4976854.716009479016066, 3909843.193966441322118 ], [ 4976844.412655660882592, 3909813.677892228588462 ], [ 4976878.697622857056558, 3909801.732476965058595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976866.415636614896357, 3900572.060724129900336 ], [ 4976887.453126261010766, 3900565.549913604743779 ], [ 4976894.034885928034782, 3900585.954857752192765 ], [ 4976872.996657034382224, 3900592.829792332369834 ], [ 4976866.415636614896357, 3900572.060724129900336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976837.566791771911085, 3900595.66953631490469 ], [ 4976865.228980461135507, 3900588.80828009173274 ], [ 4976876.368233721703291, 3900633.619407856836915 ], [ 4976848.706088242121041, 3900640.480652811937034 ], [ 4976837.566791771911085, 3900595.66953631490469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976794.982249296270311, 3908378.165036682970822 ], [ 4976822.937144041061401, 3908365.114074737299234 ], [ 4976846.155069737695158, 3908415.048248127102852 ], [ 4976818.488883334212005, 3908427.735650897491723 ], [ 4976794.982249296270311, 3908378.165036682970822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976743.444587746635079, 3911723.710637013893574 ], [ 4976782.082150520756841, 3911693.931555136106908 ], [ 4976799.596134244464338, 3911716.544019612018019 ], [ 4976760.958584417589009, 3911746.323076733853668 ], [ 4976743.444587746635079, 3911723.710637013893574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976652.536768228746951, 3900521.004825478419662 ], [ 4976623.724067417904735, 3900527.13566862186417 ], [ 4976614.028098104521632, 3900480.506969121284783 ], [ 4976642.840096152387559, 3900474.740244870539755 ], [ 4976652.536768228746951, 3900521.004825478419662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976530.63282152172178, 3913295.599680935963988 ], [ 4976498.060914845205843, 3913316.652418414596468 ], [ 4976467.641810931265354, 3913270.709051664918661 ], [ 4976500.501612325198948, 3913249.656869963742793 ], [ 4976530.63282152172178, 3913295.599680935963988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976508.102152670733631, 3908574.205020122230053 ], [ 4976566.045417992398143, 3908539.003401874098927 ], [ 4976582.68741269595921, 3908566.711735078599304 ], [ 4976524.744934202171862, 3908601.549187129363418 ], [ 4976508.102152670733631, 3908574.205020122230053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976523.003209693357348, 3900348.50432656519115 ], [ 4976528.98832755163312, 3900379.103608639910817 ], [ 4976481.448708445765078, 3900388.47326941601932 ], [ 4976474.609261421486735, 3900353.138544304762036 ], [ 4976494.489582089707255, 3900349.173963610082865 ], [ 4976495.631857172586024, 3900353.910009673330933 ], [ 4976523.003209693357348, 3900348.50432656519115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976433.343079551123083, 3902076.120788404718041 ], [ 4976404.364702173508704, 3902163.816875249147415 ], [ 4976372.132391675375402, 3902153.190945921931416 ], [ 4976380.825632879510522, 3902126.991344692651182 ], [ 4976351.470852953381836, 3902117.463736594188958 ], [ 4976345.67537400778383, 3902134.930143290199339 ], [ 4976314.594934917986393, 3902124.306644722819328 ], [ 4976322.709179354831576, 3902099.562362945638597 ], [ 4976309.470933782868087, 3902095.165666122920811 ], [ 4976321.930294951424003, 3902058.049832966644317 ], [ 4976338.622113066725433, 3902063.546007724944502 ], [ 4976344.128126558847725, 3902046.807268819306046 ], [ 4976433.343079551123083, 3902076.120788404718041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976374.660484552383423, 3905553.455076098907739 ], [ 4976421.879815799184144, 3905555.372642890084535 ], [ 4976420.672710821032524, 3905582.315915858838707 ], [ 4976418.369896505028009, 3905581.947056198492646 ], [ 4976417.46195453684777, 3905603.428967196960002 ], [ 4976372.546267688274384, 3905601.516133404802531 ], [ 4976374.660484552383423, 3905553.455076098907739 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976316.596555103547871, 3909297.343182204291224 ], [ 4976336.750681574456394, 3909297.0203638356179 ], [ 4976337.277964602224529, 3909320.690064739435911 ], [ 4976317.123855879530311, 3909321.012882717885077 ], [ 4976316.596555103547871, 3909297.343182204291224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976267.91113599203527, 3905655.55733072431758 ], [ 4976291.542719160206616, 3905645.774167283903807 ], [ 4976300.424241632223129, 3905667.640268499962986 ], [ 4976276.792674412019551, 3905677.423424263484776 ], [ 4976267.91113599203527, 3905655.55733072431758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976253.379513458348811, 3911346.91744656348601 ], [ 4976278.557388833723962, 3911282.517453387379646 ], [ 4976291.789615652523935, 3911287.642422727309167 ], [ 4976266.323829878121614, 3911352.041814168449491 ], [ 4976253.379513458348811, 3911346.91744656348601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976076.937047543935478, 3910485.382313818670809 ], [ 4976093.86771119851619, 3910512.362702524289489 ], [ 4976035.927826440893114, 3910548.293645099271089 ], [ 4976018.997127466835082, 3910521.313292305916548 ], [ 4976076.937047543935478, 3910485.382313818670809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976064.609381849877536, 3904108.67489240784198 ], [ 4976003.218039746396244, 3904135.859596635214984 ], [ 4975982.579053523950279, 3904089.572860184125602 ], [ 4975994.97251342702657, 3904084.136133449617773 ], [ 4975995.832688258029521, 3904085.958542955573648 ], [ 4976044.829909948632121, 3904064.574650543741882 ], [ 4976064.609381849877536, 3904108.67489240784198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975846.212634044699371, 3903459.712344709783792 ], [ 4975900.406151621602476, 3903432.512651724275202 ], [ 4975916.468673408031464, 3903463.86061229929328 ], [ 4975888.794878183864057, 3903478.005452842917293 ], [ 4975896.825396385975182, 3903494.043558618519455 ], [ 4975870.592960057780147, 3903507.463086486794055 ], [ 4975846.212634044699371, 3903459.712344709783792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975752.878625986166298, 3909153.817895854823291 ], [ 4975723.763847572728992, 3909171.601346491836011 ], [ 4975709.128576224669814, 3909147.903061458375305 ], [ 4975738.24337053578347, 3909130.119595224037766 ], [ 4975752.878625986166298, 3909153.817895854823291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975681.384877624921501, 3906214.761744808405638 ], [ 4975677.371440438553691, 3906206.014449674636126 ], [ 4975698.699552860110998, 3906195.861965459771454 ], [ 4975718.481699779629707, 3906238.141357916872948 ], [ 4975674.097177594900131, 3906258.806943703908473 ], [ 4975658.616357697173953, 3906225.275458141230047 ], [ 4975681.384877624921501, 3906214.761744808405638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975538.849742786958814, 3898233.814005211461335 ], [ 4975580.070292352698743, 3898217.511436299420893 ], [ 4975590.672710589133203, 3898244.478499237913638 ], [ 4975574.818886979483068, 3898250.636664812453091 ], [ 4975584.850402801297605, 3898275.053661126643419 ], [ 4975559.483730878680944, 3898285.198039146605879 ], [ 4975538.849742786958814, 3898233.814005211461335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975415.454270392656326, 3907580.811938157770783 ], [ 4975384.625146441161633, 3907591.309642059728503 ], [ 4975375.179409623146057, 3907563.616566254757345 ], [ 4975406.296485706232488, 3907553.119432013016194 ], [ 4975415.454270392656326, 3907580.811938157770783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974935.35509180277586, 3909662.321716367267072 ], [ 4974952.0024324785918, 3909687.844271597452462 ], [ 4974894.348025963641703, 3909724.87062669172883 ], [ 4974877.987827975302935, 3909699.712812459096313 ], [ 4974935.35509180277586, 3909662.321716367267072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974778.614815166220069, 3900616.250837839208543 ], [ 4974751.767171869054437, 3900648.240876293741167 ], [ 4974729.340271584689617, 3900629.62557873968035 ], [ 4974756.475905301980674, 3900597.63609159225598 ], [ 4974778.614815166220069, 3900616.250837839208543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974782.758130639791489, 3897812.819672691635787 ], [ 4974758.840167855843902, 3897818.598128738347441 ], [ 4974747.984953601844609, 3897773.424398648086935 ], [ 4974800.431606009602547, 3897760.784283975604922 ], [ 4974809.573802754282951, 3897798.307891142554581 ], [ 4974780.757159798406065, 3897805.168957099784166 ], [ 4974782.758130639791489, 3897812.819672691635787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974711.31722404807806, 3899844.888383032288402 ], [ 4974711.655931079760194, 3899819.399924315977842 ], [ 4974765.799794938415289, 3899820.235937517601997 ], [ 4974765.158529542386532, 3899853.006402598228306 ], [ 4974723.111010485328734, 3899852.19445389509201 ], [ 4974723.413506127893925, 3899844.91244638338685 ], [ 4974711.31722404807806, 3899844.888383032288402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974663.869291480630636, 3896764.253146320115775 ], [ 4974671.883747049607337, 3896789.758159000426531 ], [ 4974646.232322551310062, 3896797.71804727287963 ], [ 4974638.217845065519214, 3896772.213042115326971 ], [ 4974663.869291480630636, 3896764.253146320115775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974615.083777606487274, 3912623.17721951007843 ], [ 4974726.287154457531869, 3912724.991550775710493 ], [ 4974588.677362667396665, 3912874.012654280290008 ], [ 4974477.474084543064237, 3912772.198883097618818 ], [ 4974615.083777606487274, 3912623.17721951007843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974566.126137862913311, 3898991.442521636374295 ], [ 4974579.026164015755057, 3899022.055057101417333 ], [ 4974535.499724263325334, 3899040.175245319027454 ], [ 4974522.31164169497788, 3899009.562159564811736 ], [ 4974566.126137862913311, 3898991.442521636374295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974416.709062159061432, 3896046.791746253613383 ], [ 4974427.829097027890384, 3896104.34622578881681 ], [ 4974373.079336713068187, 3896114.797731540631503 ], [ 4974370.797269923612475, 3896103.505202657543123 ], [ 4974361.864221638068557, 3896105.308199352119118 ], [ 4974353.026845348998904, 3896058.682145665865391 ], [ 4974416.709062159061432, 3896046.791746253613383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974372.321215799078345, 3911648.275629611220211 ], [ 4974331.943158007226884, 3911686.065660289488733 ], [ 4974293.734224972315133, 3911645.935552184004337 ], [ 4974333.824408324435353, 3911608.144896199461073 ], [ 4974372.321215799078345, 3911648.275629611220211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974399.601627837866545, 3897269.141542789526284 ], [ 4974382.882681633345783, 3897275.66282771108672 ], [ 4974389.474355914629996, 3897292.425833647605032 ], [ 4974378.520424839109182, 3897296.773739554453641 ], [ 4974382.820061917416751, 3897307.342005491256714 ], [ 4974364.947569125331938, 3897314.589281305670738 ], [ 4974362.940685786306858, 3897309.85162694612518 ], [ 4974348.239449077285826, 3897315.648660648148507 ], [ 4974328.750218884088099, 3897266.452632036525756 ], [ 4974362.47685843706131, 3897253.046446012798697 ], [ 4974358.749676606617868, 3897244.299964201636612 ], [ 4974385.55776708573103, 3897233.793177701067179 ], [ 4974399.601627837866545, 3897269.141542789526284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974367.305524612776935, 3900639.467420969158411 ], [ 4974371.683074107393622, 3900610.345622688531876 ], [ 4974414.582607738673687, 3900616.620669031981379 ], [ 4974410.205012738704681, 3900645.742460422683507 ], [ 4974367.305524612776935, 3900639.467420969158411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974336.101031593978405, 3903751.997314867097884 ], [ 4974365.21498916298151, 3903737.125459020491689 ], [ 4974370.664731004275382, 3903748.060170417651534 ], [ 4974341.838746959343553, 3903762.932589363772422 ], [ 4974336.101031593978405, 3903751.997314867097884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974233.546852184459567, 3900265.605418206658214 ], [ 4974274.18533521797508, 3900250.392078606877476 ], [ 4974286.216047747060657, 3900283.551695976871997 ], [ 4974245.578325919806957, 3900298.400888554751873 ], [ 4974233.546852184459567, 3900265.605418206658214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974237.180666838772595, 3895499.878777492325753 ], [ 4974237.248134860768914, 3895465.650736561045051 ], [ 4974275.559269279241562, 3895465.726280205883086 ], [ 4974275.547777057625353, 3895471.552329660858959 ], [ 4974298.015956233255565, 3895471.596658845432103 ], [ 4974298.273829784244299, 3895486.890607173088938 ], [ 4974310.660126619972289, 3895486.91505320277065 ], [ 4974310.535065876320004, 3895550.27334272954613 ], [ 4974262.43025890737772, 3895550.178433349821717 ], [ 4974262.241301819682121, 3895499.928187022916973 ], [ 4974237.180666838772595, 3895499.878777492325753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974160.592019101604819, 3908793.785220466088504 ], [ 4974132.088130889460444, 3908794.093236519489437 ], [ 4974131.075520806014538, 3908723.449552266858518 ], [ 4974159.579483937472105, 3908723.141535158269107 ], [ 4974160.592019101604819, 3908793.785220466088504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974042.96184753254056, 3899641.83901626477018 ], [ 4974017.898639915511012, 3899645.066972171887755 ], [ 4974015.060012499801815, 3899623.941835994832218 ], [ 4973992.3008639998734, 3899627.174339113291353 ], [ 4973987.75702212844044, 3899594.393687371630222 ], [ 4974035.578739654272795, 3899588.297346764244139 ], [ 4974042.96184753254056, 3899641.83901626477018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974025.570622137747705, 3899551.500524172093719 ], [ 4973984.93622646573931, 3899564.165330391842872 ], [ 4973978.926597476936877, 3899544.49049918865785 ], [ 4973972.298797632567585, 3899546.298149354290217 ], [ 4973964.571092834696174, 3899521.522126249503344 ], [ 4974011.54534419439733, 3899507.049082186073065 ], [ 4974025.570622137747705, 3899551.500524172093719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973971.164355292916298, 3909518.036560421343893 ], [ 4974013.831216273829341, 3909488.989710241090506 ], [ 4974028.472085815854371, 3909510.502289690542966 ], [ 4973985.80524303112179, 3909539.549117006361485 ], [ 4973971.164355292916298, 3909518.036560421343893 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973926.169280344620347, 3899276.751242752186954 ], [ 4973970.265951258130372, 3899261.180097486358136 ], [ 4973980.577268502674997, 3899290.330750713124871 ], [ 4973936.480639337562025, 3899305.90187933947891 ], [ 4973926.169280344620347, 3899276.751242752186954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973833.190007541328669, 3899546.025637065060437 ], [ 4973791.9597441945225, 3899568.88521974068135 ], [ 4973775.885996043682098, 3899540.815763384103775 ], [ 4973817.117000794969499, 3899517.592027465347201 ], [ 4973833.190007541328669, 3899546.025637065060437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973617.469778798520565, 3910332.637917090207338 ], [ 4973595.854291724041104, 3910344.612175344955176 ], [ 4973576.345568064600229, 3910309.617426688317209 ], [ 4973597.960365019738674, 3910298.00728438096121 ], [ 4973617.469778798520565, 3910332.637917090207338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973472.819075091741979, 3898543.964810506440699 ], [ 4973511.733015642501414, 3898528.018718709237874 ], [ 4973516.320815088227391, 3898538.587413793895394 ], [ 4973535.057744439691305, 3898530.612991670612246 ], [ 4973545.665630295872688, 3898555.758609076030552 ], [ 4973487.726089354604483, 3898580.042663084808737 ], [ 4973472.819075091741979, 3898543.964810506440699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973370.998130439780653, 3911685.276564289815724 ], [ 4973352.535686223767698, 3911704.903938094154 ], [ 4973323.224898806773126, 3911677.537128425668925 ], [ 4973315.724495536647737, 3911685.533519001677632 ], [ 4973302.218836136162281, 3911672.76269068242982 ], [ 4973310.007118985056877, 3911664.766854252200574 ], [ 4973301.099063566885889, 3911656.374533117748797 ], [ 4973327.350507617928088, 3911628.387161652557552 ], [ 4973358.38580050226301, 3911657.213851952925324 ], [ 4973350.308208668604493, 3911665.937379424460232 ], [ 4973370.998130439780653, 3911685.276564289815724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973356.574458627961576, 3898186.891701512038708 ], [ 4973380.368202951736748, 3898244.834520065225661 ], [ 4973347.219345544464886, 3898258.243062808178365 ], [ 4973341.773005398921669, 3898244.75969403097406 ], [ 4973328.802054378204048, 3898249.83238033298403 ], [ 4973320.775479584001005, 3898230.153805371839553 ], [ 4973314.434013929218054, 3898232.69043173128739 ], [ 4973302.106099486351013, 3898203.172019246499985 ], [ 4973325.743140460923314, 3898193.38629184383899 ], [ 4973327.748728879727423, 3898198.852128654252738 ], [ 4973356.574458627961576, 3898186.891701512038708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973194.262343742884696, 3903332.835694583132863 ], [ 4973175.604843840003014, 3903301.484355763997883 ], [ 4973239.319403489120305, 3903263.737897757906467 ], [ 4973257.976855524815619, 3903295.089280090294778 ], [ 4973194.262343742884696, 3903332.835694583132863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973195.843747355975211, 3899534.590640138834715 ], [ 4973140.789540253579617, 3899557.424506742972881 ], [ 4973121.866628417745233, 3899512.964076543692499 ], [ 4973177.20892080757767, 3899490.130728221032768 ], [ 4973195.843747355975211, 3899534.590640138834715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973146.292103603482246, 3903717.629730014130473 ], [ 4973169.250529116019607, 3903758.456779350526631 ], [ 4973146.764664454385638, 3903771.157941124867648 ], [ 4973141.886140582151711, 3903762.409369444008917 ], [ 4973116.229870463721454, 3903776.560960120987147 ], [ 4973098.149924617260695, 3903744.482518339995295 ], [ 4973146.292103603482246, 3903717.629730014130473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973080.30857577547431, 3902991.424785648006946 ], [ 4973059.260573252104223, 3903004.857051243074238 ], [ 4973055.240184217691422, 3902999.023202975746244 ], [ 4973031.308964400552213, 3903014.270588252227753 ], [ 4973036.477037013508379, 3903022.291431274265051 ], [ 4973019.465606068260968, 3903033.182589146774262 ], [ 4972995.347426169551909, 3902995.994765392038971 ], [ 4973057.626799429766834, 3902956.060332720167935 ], [ 4973080.30857577547431, 3902991.424785648006946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973034.590395658276975, 3904897.928263741545379 ], [ 4973040.965354232117534, 3904877.185052076820284 ], [ 4973028.878353223204613, 3904873.52044414402917 ], [ 4973033.515069456771016, 3904858.235854639206082 ], [ 4973042.723950788378716, 3904861.166654192376882 ], [ 4973048.807461594231427, 3904842.243540725670755 ], [ 4973090.82403755094856, 3904855.069167941343039 ], [ 4973074.016723775304854, 3904910.020610712468624 ], [ 4973034.590395658276975, 3904897.928263741545379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972094.969707935117185, 3898823.888069918379188 ], [ 4972109.871523253619671, 3898863.606453164014965 ], [ 4972081.91456990595907, 3898873.749211809132248 ], [ 4972067.012718984857202, 3898834.030843826942146 ], [ 4972094.969707935117185, 3898823.888069918379188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972064.937422249466181, 3902673.419933290686458 ], [ 4972110.783557583577931, 3902642.919654288794845 ], [ 4972129.736939330585301, 3902670.993619134183973 ], [ 4972083.890830188989639, 3902701.493866322096437 ], [ 4972064.937422249466181, 3902673.419933290686458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971535.783628894016147, 3911978.91136335907504 ], [ 4971532.609488393180072, 3911982.910886265803128 ], [ 4971507.601685581728816, 3911962.836771505884826 ], [ 4971534.725496106781065, 3911929.023149715270847 ], [ 4971585.604035185649991, 3911969.537202350795269 ], [ 4971561.654343190602958, 3911999.351253738161176 ], [ 4971535.783628894016147, 3911978.91136335907504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971201.703818059526384, 3895633.528412144165486 ], [ 4971264.213100446388125, 3895632.552252548281103 ], [ 4971264.98037501424551, 3895684.624194547533989 ], [ 4971202.471890323795378, 3895685.236224174965173 ], [ 4971201.703818059526384, 3895633.528412144165486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971031.382833144627512, 3900654.201065871864557 ], [ 4970993.653741444461048, 3900654.859470436349511 ], [ 4970993.16198698990047, 3900609.342242408078164 ], [ 4971030.890468121506274, 3900609.047966475598514 ], [ 4971031.382833144627512, 3900654.201065871864557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970968.725501001812518, 3892643.596263943240047 ], [ 4970987.097525549121201, 3892678.950742531567812 ], [ 4970916.161714519374073, 3892715.23248545685783 ], [ 4970902.383490112610161, 3892688.261501583270729 ], [ 4970920.549563248641789, 3892679.191837659105659 ], [ 4970919.115200291387737, 3892675.912028182763606 ], [ 4970950.545924481004477, 3892659.948446698486805 ], [ 4970947.675184119492769, 3892654.48120744060725 ], [ 4970968.725501001812518, 3892643.596263943240047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970917.396319800056517, 3903114.422101886942983 ], [ 4970948.521503431722522, 3903101.370925127528608 ], [ 4970961.997577992267907, 3903133.075254756491631 ], [ 4970930.584453104063869, 3903146.125883805099875 ], [ 4970917.396319800056517, 3903114.422101886942983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970876.973522488027811, 3903951.849135215394199 ], [ 4970855.305743527598679, 3903990.042913645505905 ], [ 4970826.53907114546746, 3903973.96805218886584 ], [ 4970847.918859172612429, 3903935.77371945977211 ], [ 4970855.110537551343441, 3903939.792437553871423 ], [ 4970863.200387238524854, 3903925.242121149320155 ], [ 4970896.569786190055311, 3903943.874443079344928 ], [ 4970888.480596588924527, 3903958.060619575437158 ], [ 4970876.973522488027811, 3903951.849135215394199 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970868.1346395611763, 3893918.954149613156915 ], [ 4970895.340596998110414, 3894006.031232070643455 ], [ 4970855.564191190525889, 3894018.338195592164993 ], [ 4970828.358117592521012, 3893931.261152759660035 ], [ 4970868.1346395611763, 3893918.954149613156915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970831.141434815712273, 3898044.473481464665383 ], [ 4970851.78724979236722, 3898094.397380156908184 ], [ 4970811.14544474799186, 3898110.708260990679264 ], [ 4970801.1108766971156, 3898085.564791447483003 ], [ 4970786.410164535976946, 3898091.727904601953924 ], [ 4970776.087540432810783, 3898066.583913860842586 ], [ 4970831.141434815712273, 3898044.473481464665383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970728.612076268531382, 3910708.045245544053614 ], [ 4970742.732117407955229, 3910700.788597831502557 ], [ 4970754.206804862245917, 3910723.021838664077222 ], [ 4970701.472639420069754, 3910750.23468121048063 ], [ 4970677.66085050534457, 3910705.03839699132368 ], [ 4970716.563591442070901, 3910684.718561083544046 ], [ 4970728.612076268531382, 3910708.045245544053614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970710.53664640057832, 3898471.375796150881797 ], [ 4970752.301766172982752, 3898470.360292261000723 ], [ 4970753.369352436624467, 3898516.24264738894999 ], [ 4970711.316953028552234, 3898516.893490799702704 ], [ 4970710.53664640057832, 3898471.375796150881797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970389.851759085431695, 3899322.488022624514997 ], [ 4970399.866935472935438, 3899358.191099101677537 ], [ 4970367.30428618285805, 3899367.598959754221141 ], [ 4970369.593740846961737, 3899375.614009233191609 ], [ 4970349.998299170285463, 3899381.404289348050952 ], [ 4970337.405587115325034, 3899337.685658132191747 ], [ 4970389.851759085431695, 3899322.488022624514997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970316.255498440004885, 3905242.393577883951366 ], [ 4970386.544987029395998, 3905226.136094397865236 ], [ 4970395.690763307735324, 3905263.658368790522218 ], [ 4970325.112753723748028, 3905280.279433189425617 ], [ 4970316.255498440004885, 3905242.393577883951366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969866.69245520606637, 3897481.951727436855435 ], [ 4969843.893819184973836, 3897506.307200364302844 ], [ 4969850.507357647642493, 3897512.509364577010274 ], [ 4969834.345990413799882, 3897529.958380559459329 ], [ 4969791.500311638228595, 3897490.554949730169028 ], [ 4969830.748338194563985, 3897448.750925806351006 ], [ 4969866.69245520606637, 3897481.951727436855435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969758.522365280427039, 3893578.653178076725453 ], [ 4969759.606327860616148, 3893616.524549382738769 ], [ 4969734.830697103403509, 3893617.208112661726773 ], [ 4969734.034773503430188, 3893579.337261865846813 ], [ 4969758.522365280427039, 3893578.653178076725453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969747.95923722255975, 3893685.323917408939451 ], [ 4969747.018164217472076, 3893727.925314711872488 ], [ 4969698.047191779129207, 3893727.108758662827313 ], [ 4969698.988843428902328, 3893684.143231831956655 ], [ 4969747.95923722255975, 3893685.323917408939451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969614.747127808630466, 3910395.775901428889483 ], [ 4969593.181967049837112, 3910380.807648977730423 ], [ 4969632.147303986363113, 3910325.52962343627587 ], [ 4969693.103444402106106, 3910368.607119406107813 ], [ 4969663.952008672989905, 3910409.701566078234464 ], [ 4969624.560426197014749, 3910381.95652685360983 ], [ 4969614.747127808630466, 3910395.775901428889483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969403.694794258102775, 3897392.998884930275381 ], [ 4969360.178350439295173, 3897406.029635317157954 ], [ 4969353.018582030199468, 3897383.076644134242088 ], [ 4969360.512004664167762, 3897380.541146580129862 ], [ 4969354.497846627607942, 3897361.231503763236105 ], [ 4969390.521577060222626, 3897350.372102955821902 ], [ 4969403.694794258102775, 3897392.998884930275381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969382.186081909574568, 3906023.951351866591722 ], [ 4969428.006487876176834, 3906002.913827405776829 ], [ 4969449.806379104033113, 3906049.561779332812876 ], [ 4969404.273322879336774, 3906070.963913761544973 ], [ 4969382.186081909574568, 3906023.951351866591722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969132.663583897054195, 3912578.617532033007592 ], [ 4969162.846450016833842, 3912603.068269005045295 ], [ 4969087.261109945364296, 3912694.69513200270012 ], [ 4969057.078278423286974, 3912670.244478540029377 ], [ 4969132.663583897054195, 3912578.617532033007592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968932.706104418262839, 3892713.462062430568039 ], [ 4968925.494340161792934, 3892718.911204264033586 ], [ 4968935.842079645954072, 3892732.03819285472855 ], [ 4968909.301010098308325, 3892753.110598952509463 ], [ 4968866.759573956020176, 3892699.508285338524729 ], [ 4968900.512431402690709, 3892672.98668757500127 ], [ 4968932.706104418262839, 3892713.462062430568039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968612.36870376393199, 3899082.612462632823735 ], [ 4968626.941289938054979, 3899148.545703345909715 ], [ 4968588.331998425535858, 3899157.216799517162144 ], [ 4968573.759322358295321, 3899091.283579392824322 ], [ 4968612.36870376393199, 3899082.612462632823735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968548.030225214548409, 3906835.94050371972844 ], [ 4968576.742595753632486, 3906881.871674505528063 ], [ 4968551.088505104184151, 3906897.84830425074324 ], [ 4968522.37610793299973, 3906851.917160423006862 ], [ 4968548.030225214548409, 3906835.94050371972844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968469.652289755642414, 3897855.607350846752524 ], [ 4968459.529098917730153, 3897879.622141095809639 ], [ 4968444.563162674196064, 3897873.041521835606545 ], [ 4968432.706082647666335, 3897900.330447049811482 ], [ 4968392.69962989166379, 3897883.510276344139129 ], [ 4968414.679827054031193, 3897832.20652313856408 ], [ 4968469.652289755642414, 3897855.607350846752524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968216.677885371260345, 3902189.407614041119814 ], [ 4968192.172100937925279, 3902205.022424042690545 ], [ 4968164.025562388822436, 3902161.641708340030164 ], [ 4968185.936351683922112, 3902147.842994919978082 ], [ 4968190.531980312429368, 3902154.769506760407239 ], [ 4968215.903028594329953, 3902138.427946142386645 ], [ 4968245.486232591792941, 3902183.63188197510317 ], [ 4968222.709587919525802, 3902198.521426227409393 ], [ 4968216.677885371260345, 3902189.407614041119814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967963.361547731794417, 3895166.718171845655888 ], [ 4967941.16852150298655, 3895173.962201389484107 ], [ 4967932.000658913515508, 3895145.180065819062293 ], [ 4967954.481763548217714, 3895137.936529293190688 ], [ 4967963.361547731794417, 3895166.718171845655888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967849.793058917857707, 3897701.591034840326756 ], [ 4967805.703074235469103, 3897713.895048049278557 ], [ 4967796.257370811887085, 3897679.650485716294497 ], [ 4967840.347407259978354, 3897667.346457262523472 ], [ 4967849.793058917857707, 3897701.591034840326756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967254.687120212242007, 3903610.767415227834135 ], [ 4967241.357785312458873, 3903659.174038326833397 ], [ 4967190.411485261283815, 3903645.249914322514087 ], [ 4967203.452768655493855, 3903596.842773933429271 ], [ 4967254.687120212242007, 3903610.767415227834135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966975.278974117711186, 3895701.01767703704536 ], [ 4967002.933121179230511, 3895700.336472256109118 ], [ 4967003.754510489292443, 3895725.46279765246436 ], [ 4966976.09976985771209, 3895726.508129935711622 ], [ 4966975.278974117711186, 3895701.01767703704536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966606.433244306594133, 3905681.572726727463305 ], [ 4966628.825863160192966, 3905721.300872783642262 ], [ 4966581.846189418807626, 3905747.803181623108685 ], [ 4966559.45290941093117, 3905708.439204588998109 ], [ 4966606.433244306594133, 3905681.572726727463305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966382.271006376482546, 3905422.661916486918926 ], [ 4966411.380574624985456, 3905406.689037571661174 ], [ 4966420.854673022404313, 3905423.455010339152068 ], [ 4966429.213092977181077, 3905418.735352595802397 ], [ 4966440.982789637520909, 3905440.238901736680418 ], [ 4966405.532908068969846, 3905459.478277277667075 ], [ 4966397.494264087639749, 3905445.263641730416566 ], [ 4966386.253944896161556, 3905451.434994497802109 ], [ 4966377.928564545698464, 3905436.491620267275721 ], [ 4966387.150813438929617, 3905431.773400153033435 ], [ 4966382.271006376482546, 3905422.661916486918926 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966336.348642928525805, 3901729.203263691160828 ], [ 4966391.956953395158052, 3901713.274860606063157 ], [ 4966401.405456918291748, 3901746.062493507284671 ], [ 4966345.796597595326602, 3901762.355007024016231 ], [ 4966336.348642928525805, 3901729.203263691160828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966167.724640214815736, 3908021.475065330043435 ], [ 4966173.187797475606203, 3908025.853783638682216 ], [ 4966149.530973616056144, 3908054.216543232090771 ], [ 4966121.353854627348483, 3908030.865019897464663 ], [ 4966172.418402759358287, 3907969.412027264945209 ], [ 4966195.420301984995604, 3907988.385361099615693 ], [ 4966167.724640214815736, 3908021.475065330043435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966172.051741377450526, 3897162.735789404716343 ], [ 4966179.182634926401079, 3897204.622620811220258 ], [ 4966162.183702188543975, 3897207.507250294089317 ], [ 4966161.328723139129579, 3897202.043876498006284 ], [ 4966132.229280495084822, 3897206.728958320338279 ], [ 4966133.940465816296637, 3897216.927446794696152 ], [ 4966105.417113751173019, 3897221.613519623409957 ], [ 4966099.428530145436525, 3897185.554688334930688 ], [ 4966104.614986842498183, 3897184.470953452400863 ], [ 4966101.193196003325284, 3897163.709852165542543 ], [ 4966130.580715221352875, 3897159.025217770598829 ], [ 4966132.291296268813312, 3897169.587834503967315 ], [ 4966172.051741377450526, 3897162.735789404716343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966177.735025226138532, 3892210.58892417838797 ], [ 4966149.761856819503009, 3892227.656237365212291 ], [ 4966134.533905042335391, 3892203.234192518983036 ], [ 4966149.818412058055401, 3892193.792370526120067 ], [ 4966154.701931699179113, 3892202.17548493295908 ], [ 4966167.67930325306952, 3892194.186334130354226 ], [ 4966177.735025226138532, 3892210.58892417838797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965967.108814249746501, 3902964.810432035941631 ], [ 4965965.918750843964517, 3902987.74870111932978 ], [ 4965940.578940033912659, 3902986.614157218951732 ], [ 4965941.481008553877473, 3902963.675408137496561 ], [ 4965967.108814249746501, 3902964.810432035941631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965836.4312560306862, 3894245.500864207744598 ], [ 4965784.540640695951879, 3894268.719110049307346 ], [ 4965760.430476821959019, 3894215.880468846298754 ], [ 4965795.88927046302706, 3894199.917524529621005 ], [ 4965809.092681278474629, 3894228.705600005108863 ], [ 4965825.524569912813604, 3894221.450260607991368 ], [ 4965836.4312560306862, 3894245.500864207744598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965554.682762742042542, 3893907.123336385004222 ], [ 4965529.606248625554144, 3893915.821115984581411 ], [ 4965522.724344928748906, 3893896.510946593247354 ], [ 4965547.801474802196026, 3893887.449032703414559 ], [ 4965554.682762742042542, 3893907.123336385004222 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965135.894434222951531, 3898453.320753773208708 ], [ 4965149.868151413276792, 3898362.311092251911759 ], [ 4965181.542900831438601, 3898367.096532813739032 ], [ 4965167.857100374996662, 3898458.106648732442409 ], [ 4965135.894434222951531, 3898453.320753773208708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964954.700581543147564, 3900241.63268404873088 ], [ 4964938.536929746158421, 3900263.454224219080061 ], [ 4964946.591520133428276, 3900269.293403405696154 ], [ 4964933.603014726191759, 3900286.750545316841453 ], [ 4964896.207697585225105, 3900259.015887122601271 ], [ 4964912.082723576575518, 3900237.557983044534922 ], [ 4964904.028116171248257, 3900231.718814303632826 ], [ 4964917.305223193950951, 3900213.897997251246125 ], [ 4964954.700581543147564, 3900241.63268404873088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964784.727457494474947, 3899917.645008906256407 ], [ 4964778.623898916877806, 3899951.863366461824626 ], [ 4964752.711059421300888, 3899947.087718804832548 ], [ 4964749.804483260028064, 3899963.468875719234347 ], [ 4964727.921959733590484, 3899959.792165917344391 ], [ 4964737.22061771992594, 3899908.828975131269544 ], [ 4964784.727457494474947, 3899917.645008906256407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964678.349672628566623, 3897664.236498917918652 ], [ 4964673.40786621812731, 3897692.266506092622876 ], [ 4964599.98199968971312, 3897678.675186678301543 ], [ 4964605.211174873635173, 3897651.009759599342942 ], [ 4964678.349672628566623, 3897664.236498917918652 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964638.607962037436664, 3906935.669867322314531 ], [ 4964561.678218294866383, 3906967.953484755475074 ], [ 4964548.484468505717814, 3906936.252755022142082 ], [ 4964625.413699174299836, 3906904.333231288474053 ], [ 4964638.607962037436664, 3906935.669867322314531 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964543.345082706771791, 3900474.374466942157596 ], [ 4964507.309922776184976, 3900496.164266671985388 ], [ 4964489.500804386101663, 3900467.005180360283703 ], [ 4964525.535988860763609, 3900445.215357138309628 ], [ 4964543.345082706771791, 3900474.374466942157596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964244.519004135392606, 3897879.468022212851793 ], [ 4964240.704173840582371, 3897923.521625473629683 ], [ 4964213.345071958377957, 3897921.293102292343974 ], [ 4964217.15985771548003, 3897877.239495211746544 ], [ 4964244.519004135392606, 3897879.468022212851793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964182.027969107031822, 3898593.790931915864348 ], [ 4964192.767322749830782, 3898542.101636617444456 ], [ 4964225.303179650567472, 3898548.707976330537349 ], [ 4964214.563766018487513, 3898600.397258823737502 ], [ 4964182.027969107031822, 3898593.790931915864348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963480.308548998087645, 3900490.889647754840553 ], [ 4963523.176991079933941, 3900518.630945911630988 ], [ 4963496.039217052049935, 3900560.46326603135094 ], [ 4963459.50050899758935, 3900536.737384330946952 ], [ 4963473.935369708575308, 3900514.548106855712831 ], [ 4963467.605671523138881, 3900510.532729642931372 ], [ 4963480.308548998087645, 3900490.889647754840553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963375.855858447030187, 3892712.919686543755233 ], [ 4963358.560033825226128, 3892719.811035396996886 ], [ 4963355.116723768413067, 3892711.066554520279169 ], [ 4963337.820903288200498, 3892717.957916709128767 ], [ 4963326.342601204290986, 3892689.173785627819598 ], [ 4963361.22179530467838, 3892675.755636866670102 ], [ 4963375.855858447030187, 3892712.919686543755233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963302.109422289766371, 3892710.983589087147266 ], [ 4963316.463441618718207, 3892743.049367702100426 ], [ 4963278.69840719178319, 3892759.740221288055182 ], [ 4963264.633003864437342, 3892727.310784950852394 ], [ 4963302.109422289766371, 3892710.983589087147266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963259.594740231521428, 3904242.911115951836109 ], [ 4963221.829948497004807, 3904269.797811994329095 ], [ 4963194.532923656515777, 3904231.885550512000918 ], [ 4963232.009781187400222, 3904204.998366852290928 ], [ 4963259.594740231521428, 3904242.911115951836109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963141.96936908736825, 3898049.232184300199151 ], [ 4963151.505445738323033, 3898029.219909311272204 ], [ 4963184.891485752537847, 3898045.293686451856047 ], [ 4963175.35538989212364, 3898065.305949783418328 ], [ 4963141.96936908736825, 3898049.232184300199151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963085.310138411819935, 3896145.838544519618154 ], [ 4963079.164839898236096, 3896207.730978581123054 ], [ 4963048.636526285670698, 3896204.770455782767385 ], [ 4963054.781755153089762, 3896142.878014849498868 ], [ 4963085.310138411819935, 3896145.838544519618154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962932.678001704625785, 3901139.279256661888212 ], [ 4962968.078512979671359, 3901153.899402593728155 ], [ 4962946.977650656364858, 3901203.75253293197602 ], [ 4962911.865186009556055, 3901189.132860790472478 ], [ 4962932.678001704625785, 3901139.279256661888212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961773.933851189911366, 3897988.874101537745446 ], [ 4961800.422960137017071, 3897995.104256527498364 ], [ 4961790.56415375508368, 3898038.784957202151418 ], [ 4961764.074536769650877, 3898032.918940716888756 ], [ 4961773.933851189911366, 3897988.874101537745446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961544.425564058125019, 3893920.476324984338135 ], [ 4961545.595310367643833, 3893908.825954114086926 ], [ 4961526.297326256521046, 3893906.976390608586371 ], [ 4961528.641169820912182, 3893880.762623181566596 ], [ 4961583.942535134963691, 3893886.307470263913274 ], [ 4961580.727871973067522, 3893916.889473180752248 ], [ 4961569.206700773909688, 3893915.779804694466293 ], [ 4961568.620184201747179, 3893922.697373803239316 ], [ 4961544.425564058125019, 3893920.476324984338135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961363.770427407696843, 3894329.851190347224474 ], [ 4961315.376998743973672, 3894328.686635551974177 ], [ 4961316.597642620094121, 3894282.808205880690366 ], [ 4961364.990610470063984, 3894284.336890984792262 ], [ 4961363.770427407696843, 3894329.851190347224474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961268.318553076125681, 3893817.743682568892837 ], [ 4961330.820796220563352, 3893824.026986368466169 ], [ 4961325.850847384892404, 3893872.812844573985785 ], [ 4961288.119007305242121, 3893869.115334060974419 ], [ 4961286.660758010111749, 3893881.129414897412062 ], [ 4961261.890478194691241, 3893878.543634319212288 ], [ 4961268.318553076125681, 3893817.743682568892837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961090.568508120253682, 3905287.94169531436637 ], [ 4961102.906546175479889, 3905317.45463044475764 ], [ 4961070.636936343275011, 3905330.515520409215242 ], [ 4961058.586817160248756, 3905301.003026433754712 ], [ 4961090.568508120253682, 3905287.94169531436637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961002.57033940218389, 3893526.774607384111732 ], [ 4961000.20813494361937, 3893565.732895193621516 ], [ 4960967.082314516417682, 3893563.863291499670595 ], [ 4960965.897204178385437, 3893586.073397279717028 ], [ 4960933.635090403258801, 3893584.569239540025592 ], [ 4960934.821786699816585, 3893561.266748358495533 ], [ 4960926.468176672235131, 3893560.890289458911866 ], [ 4960927.654330315999687, 3893537.951926262583584 ], [ 4960943.785415787249804, 3893538.703996694646776 ], [ 4960944.672219951637089, 3893523.411897022277117 ], [ 4961002.57033940218389, 3893526.774607384111732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960488.8107108194381, 3908601.747211201582104 ], [ 4960495.782848994247615, 3908559.153941184282303 ], [ 4960554.503320368938148, 3908568.707209947053343 ], [ 4960545.499193108640611, 3908622.585587910376489 ], [ 4960519.593440246768296, 3908618.178127828519791 ], [ 4960521.624795879237354, 3908607.257134276907891 ], [ 4960488.8107108194381, 3908601.747211201582104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960460.691978307440877, 3902023.309270152822137 ], [ 4960455.459938855841756, 3902056.43752349819988 ], [ 4960424.364142151549459, 3902052.022611282765865 ], [ 4960429.308691524900496, 3902018.529802300501615 ], [ 4960460.691978307440877, 3902023.309270152822137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960169.510516433045268, 3892893.064115583430976 ], [ 4960178.538576830178499, 3892825.713390326593071 ], [ 4960198.412537376396358, 3892828.291075633373111 ], [ 4960197.248076972551644, 3892836.664347003679723 ], [ 4960235.843647502362728, 3892841.818088931031525 ], [ 4960228.560829044319689, 3892897.519209609366953 ], [ 4960195.149744067341089, 3892893.10124501818791 ], [ 4960194.568834353238344, 3892896.377561234403402 ], [ 4960169.510516433045268, 3892893.064115583430976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959962.751022778451443, 3898835.719378645531833 ], [ 4959995.87093910574913, 3898837.223621316254139 ], [ 4959995.877237954176962, 3898832.854071481153369 ], [ 4960020.64517246093601, 3898833.982176404446363 ], [ 4960017.977910278365016, 3898886.048907060176134 ], [ 4960004.154144745320082, 3898885.300711955409497 ], [ 4960003.561310444027185, 3898896.952014696784317 ], [ 4959987.14539818931371, 3898896.200091036036611 ], [ 4959987.740324566140771, 3898883.09227128745988 ], [ 4959960.380805098451674, 3898881.596334111876786 ], [ 4959962.751022778451443, 3898835.719378645531833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959663.258327337913215, 3892756.151893796864897 ], [ 4959692.423406433314085, 3892708.128607400227338 ], [ 4959733.008214432746172, 3892732.583286551758647 ], [ 4959707.597015520557761, 3892774.421713029965758 ], [ 4959684.282115960493684, 3892760.551484710071236 ], [ 4959680.52819306589663, 3892766.736304492224008 ], [ 4959663.258327337913215, 3892756.151893796864897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959434.848055857233703, 3892525.333119583316147 ], [ 4959395.347324932925403, 3892548.581271618138999 ], [ 4959373.217454773373902, 3892511.408770074602216 ], [ 4959399.166832937858999, 3892496.152181039564312 ], [ 4959392.555848892778158, 3892485.58307332964614 ], [ 4959402.935714324004948, 3892479.407616687938571 ], [ 4959409.833747666329145, 3892490.705391423776746 ], [ 4959402.914010941982269, 3892494.700984389986843 ], [ 4959411.248332255519927, 3892508.913826243951917 ], [ 4959421.62767600081861, 3892503.102504539303482 ], [ 4959434.848055857233703, 3892525.333119583316147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959410.416282504796982, 3899385.12989293364808 ], [ 4959437.775319145061076, 3899386.625270741991699 ], [ 4959437.181706115603447, 3899399.004848044831306 ], [ 4959467.708853445015848, 3899400.504757717717439 ], [ 4959465.927457715384662, 3899438.007617538794875 ], [ 4959408.040849955752492, 3899435.376463707536459 ], [ 4959410.416282504796982, 3899385.12989293364808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959341.65653126873076, 3909083.299708487465978 ], [ 4959344.283323821611702, 3909058.178313251584768 ], [ 4959405.886325589381158, 3909064.820105405058712 ], [ 4959401.511348051950336, 3909104.504299306776375 ], [ 4959398.056975134648383, 3909104.135262274183333 ], [ 4959396.596758188679814, 3909118.698476097546518 ], [ 4959359.750299789011478, 3909114.64073355961591 ], [ 4959362.958603421226144, 3909085.514710598159581 ], [ 4959341.65653126873076, 3909083.299708487465978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959218.279039898887277, 3901243.378416875377297 ], [ 4959213.600191338919103, 3901293.621806154027581 ], [ 4959175.301987249404192, 3901290.290561160072684 ], [ 4959179.981278662569821, 3901239.683035611175001 ], [ 4959218.279039898887277, 3901243.378416875377297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959200.963662909343839, 3898821.160165397450328 ], [ 4959165.538514779880643, 3898820.381910163443536 ], [ 4959167.060277489945292, 3898762.487405235879123 ], [ 4959202.773006032221019, 3898763.630198283586651 ], [ 4959200.963662909343839, 3898821.160165397450328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959189.641344228759408, 3892557.757533142808825 ], [ 4959210.377794447354972, 3892561.792218595277518 ], [ 4959208.636947074905038, 3892570.528845781926066 ], [ 4959233.117455809377134, 3892575.297092470806092 ], [ 4959224.124599058181047, 3892619.343943869229406 ], [ 4959178.908231499604881, 3892610.176900116726756 ], [ 4959189.641344228759408, 3892557.757533142808825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959040.349304525181651, 3906122.846580228302628 ], [ 4959060.463563346303999, 3906152.369527338072658 ], [ 4959045.476387928240001, 3906162.544125020969659 ], [ 4959052.660007611848414, 3906173.114043883979321 ], [ 4959024.991766105405986, 3906191.645840820390731 ], [ 4958997.69385646097362, 3906151.553013520315289 ], [ 4959040.349304525181651, 3906122.846580228302628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958574.919789764098823, 3906208.131081512197852 ], [ 4958498.253436557948589, 3906261.916161589790136 ], [ 4958478.137129527516663, 3906233.486025763209909 ], [ 4958554.803523343987763, 3906179.70088923163712 ], [ 4958574.919789764098823, 3906208.131081512197852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958354.707938143983483, 3906997.627523240167648 ], [ 4958395.351885210722685, 3906964.547696210443974 ], [ 4958410.873941630125046, 3906983.504005640745163 ], [ 4958398.767279907129705, 3906993.318820416927338 ], [ 4958410.839697735384107, 3907008.264912615995854 ], [ 4958404.7866230905056, 3907012.990253913681954 ], [ 4958420.021218787878752, 3907031.582040045410395 ], [ 4958397.825964245945215, 3907049.393798833247274 ], [ 4958387.477612887509167, 3907036.999016713351011 ], [ 4958371.335442698560655, 3907050.085452129133046 ], [ 4958356.100321034900844, 3907031.857824373990297 ], [ 4958371.954564872197807, 3907018.770982170011848 ], [ 4958354.707938143983483, 3906997.627523240167648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957259.887503674253821, 3897406.758682671003044 ], [ 4957258.356609979644418, 3897474.484729365445673 ], [ 4957232.146174774505198, 3897474.08550066454336 ], [ 4957233.064865490421653, 3897433.304219860583544 ], [ 4957212.903073598630726, 3897432.913107823580503 ], [ 4957213.51519035268575, 3897405.968339999206364 ], [ 4957259.887503674253821, 3897406.758682671003044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957203.928846201859415, 3904570.948014648631215 ], [ 4957184.328356347978115, 3904585.487042228225619 ], [ 4957163.058549002744257, 3904556.328118903562427 ], [ 4957182.658561651594937, 3904542.15320653654635 ], [ 4957203.928846201859415, 3904570.948014648631215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957045.829581558704376, 3900471.353951992932707 ], [ 4957042.927759679034352, 3900487.735946953296661 ], [ 4957053.293328130617738, 3900489.57040438381955 ], [ 4957046.617924603633583, 3900528.159316005185246 ], [ 4957034.524858924560249, 3900525.958430747035891 ], [ 4957029.880511661060154, 3900553.26201447378844 ], [ 4956996.480361887253821, 3900547.391487005632371 ], [ 4957010.989817569032311, 3900465.117359382566065 ], [ 4957045.829581558704376, 3900471.353951992932707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956231.446150037460029, 3893547.088471353519708 ], [ 4956256.860216472297907, 3893498.328307098709047 ], [ 4956280.754286251962185, 3893510.73980736779049 ], [ 4956283.064102591015399, 3893506.737401627935469 ], [ 4956307.245752488262951, 3893519.513428986538202 ], [ 4956279.810352041386068, 3893571.912199468817562 ], [ 4956231.446150037460029, 3893547.088471353519708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955896.128632420673966, 3900697.064559190534055 ], [ 4955897.624011433683336, 3900654.099118996411562 ], [ 4955926.71040453761816, 3900655.229022026993334 ], [ 4955927.608225804753602, 3900629.012803878635168 ], [ 4955955.542651637457311, 3900630.141251744236797 ], [ 4955953.149333100765944, 3900699.322906048968434 ], [ 4955896.128632420673966, 3900697.064559190534055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955660.303757201880217, 3894811.699033514130861 ], [ 4955677.307729455642402, 3894805.166483270935714 ], [ 4955686.493487251922488, 3894830.303147349972278 ], [ 4955669.778055250644684, 3894836.471932331100106 ], [ 4955660.303757201880217, 3894811.699033514130861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955068.997252908535302, 3892684.801009218208492 ], [ 4955030.371652841567993, 3892702.594744796864688 ], [ 4955008.823478017933667, 3892656.323358790948987 ], [ 4955027.847985117696226, 3892647.608170801773667 ], [ 4955030.433419216424227, 3892653.437475170940161 ], [ 4955050.32264478970319, 3892644.359261136036366 ], [ 4955068.997252908535302, 3892684.801009218208492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954594.309500391595066, 3894947.268145945388824 ], [ 4954571.00423742365092, 3894925.02738117845729 ], [ 4954610.519442457705736, 3894883.929817038588226 ], [ 4954633.53710104804486, 3894905.806129393633455 ], [ 4954594.309500391595066, 3894947.268145945388824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954372.961518454365432, 3894341.812257766257972 ], [ 4954392.863639260642231, 3894321.081443227361888 ], [ 4954437.750224784016609, 3894363.011636759154499 ], [ 4954418.136165517382324, 3894383.742773996666074 ], [ 4954372.961518454365432, 3894341.812257766257972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954300.18655825778842, 3900580.7177444989793 ], [ 4954310.838483770377934, 3900584.008017048705369 ], [ 4954314.887937792576849, 3900569.811921251006424 ], [ 4954360.375173832289875, 3900583.34073749743402 ], [ 4954351.988675991073251, 3900611.368432005867362 ], [ 4954343.063860872760415, 3900608.808530003298074 ], [ 4954334.676940731704235, 3900637.20035998756066 ], [ 4954287.462240410037339, 3900623.305332983843982 ], [ 4954300.18655825778842, 3900580.7177444989793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954014.607036469504237, 3895287.380085139535367 ], [ 4953954.100751442834735, 3895299.322664025705308 ], [ 4953954.099865452386439, 3895300.05092102335766 ], [ 4953941.422327329404652, 3895302.58440392324701 ], [ 4953931.974935130216181, 3895254.507883874233812 ], [ 4953937.161269718781114, 3895253.421802643220872 ], [ 4953931.435123631730676, 3895224.648647441994399 ], [ 4953919.334107032045722, 3895226.818712580017745 ], [ 4953913.607051243074238, 3895198.773818580433726 ], [ 4953948.182246848009527, 3895191.897401077672839 ], [ 4953946.465422520413995, 3895182.427958447020501 ], [ 4953962.312527717091143, 3895179.170076832175255 ], [ 4953969.470511759631336, 3895214.863431995268911 ], [ 4953964.860724200494587, 3895215.586079600267112 ], [ 4953974.881523411720991, 3895265.848082396201789 ], [ 4954009.168148962780833, 3895259.335520882159472 ], [ 4954014.607036469504237, 3895287.380085139535367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953870.74929097853601, 3895621.839747094549239 ], [ 4953882.882394446991384, 3895593.088274149224162 ], [ 4953875.972675330005586, 3895590.166854151058942 ], [ 4953897.639837928116322, 3895538.122699610423297 ], [ 4953943.416772298514843, 3895557.477176583837718 ], [ 4953926.949966471642256, 3895596.783097275998443 ], [ 4953915.433629159815609, 3895592.035422233399004 ], [ 4953898.100518511608243, 3895633.160954192280769 ], [ 4953870.74929097853601, 3895621.839747094549239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952570.16535228677094, 3891689.159862363710999 ], [ 4952545.668451865203679, 3891696.77802907070145 ], [ 4952537.918304610997438, 3891672.372416126541793 ], [ 4952562.415225045755506, 3891664.754242454655468 ], [ 4952570.16535228677094, 3891689.159862363710999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952435.794530236162245, 3902715.20690418407321 ], [ 4952496.566348291002214, 3902707.630751062650234 ], [ 4952511.401746748946607, 3902827.446985017508268 ], [ 4952450.630618090741336, 3902834.658974965568632 ], [ 4952435.794530236162245, 3902715.20690418407321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951805.872884714044631, 3892176.576397917233407 ], [ 4951803.530516357161105, 3892209.70941510470584 ], [ 4951761.473309845663607, 3892206.384496639948338 ], [ 4951764.103715571574867, 3892173.251802829559892 ], [ 4951805.872884714044631, 3892176.576397917233407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951420.55698052700609, 3893842.029169677291065 ], [ 4951388.576604549773037, 3893845.998713298235089 ], [ 4951382.580987957306206, 3893797.927006101701409 ], [ 4951414.561420216225088, 3893793.957455459982157 ], [ 4951420.55698052700609, 3893842.029169677291065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951355.363517494872212, 3890062.668596554547548 ], [ 4951331.428260730579495, 3890082.304712960962206 ], [ 4951308.69799682777375, 3890054.969700107816607 ], [ 4951332.633261254988611, 3890035.333563773427159 ], [ 4951355.363517494872212, 3890062.668596554547548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951158.654220785014331, 3893883.247187444008887 ], [ 4951157.246274823322892, 3893854.115325868595392 ], [ 4951203.052389631047845, 3893851.617422790266573 ], [ 4951205.029529836028814, 3893886.940108797047287 ], [ 4951185.15144482254982, 3893888.010352759622037 ], [ 4951184.870267136953771, 3893881.819851863663644 ], [ 4951158.654220785014331, 3893883.247187444008887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950585.246666271239519, 3894809.323117869440466 ], [ 4950521.559088384732604, 3894833.286200697068125 ], [ 4950501.741164276376367, 3894779.737683170940727 ], [ 4950538.33958890568465, 3894766.304763983469456 ], [ 4950548.105094250291586, 3894792.532684343401343 ], [ 4950575.193936766125262, 3894782.366612627636641 ], [ 4950585.246666271239519, 3894809.323117869440466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950523.831859451718628, 3891952.303352168761194 ], [ 4950552.364406308159232, 3891941.774715002160519 ], [ 4950569.312559125013649, 3891986.945098653435707 ], [ 4950540.78005351126194, 3891997.473718103487045 ], [ 4950523.831859451718628, 3891952.303352168761194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950417.634057485498488, 3890259.3564213225618 ], [ 4950416.225505075417459, 3890229.860532435122877 ], [ 4950447.631049220450222, 3890228.438107132911682 ], [ 4950447.070250853896141, 3890214.236509730573744 ], [ 4950464.069527116604149, 3890213.526719203218818 ], [ 4950464.632690430618823, 3890225.543552066199481 ], [ 4950489.987540254369378, 3890224.478730282280594 ], [ 4950491.107902553863823, 3890253.974309602752328 ], [ 4950467.193627887405455, 3890255.040695723611861 ], [ 4950467.473427843302488, 3890262.687686008401215 ], [ 4950445.288213582709432, 3890263.391842684242874 ], [ 4950445.006035003811121, 3890257.929617543704808 ], [ 4950417.634057485498488, 3890259.3564213225618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949678.71087162848562, 3896723.303951865527779 ], [ 4949650.183738378807902, 3896733.833545831032097 ], [ 4949634.012354055419564, 3896772.778298635501415 ], [ 4949606.372456830926239, 3896761.461118792183697 ], [ 4949618.50125393923372, 3896731.979444258380681 ], [ 4949613.618020447902381, 3896719.229766311123967 ], [ 4949619.682236980646849, 3896704.670994737185538 ], [ 4949634.378063167445362, 3896699.224569665268064 ], [ 4949646.182719943113625, 3896703.970717982854694 ], [ 4949668.082642353139818, 3896695.618888444732875 ], [ 4949678.71087162848562, 3896723.303951865527779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949661.789059224538505, 3901014.190982598345727 ], [ 4949728.305298599414527, 3901024.092897747643292 ], [ 4949724.535142037086189, 3901048.849757990334183 ], [ 4949701.787099939770997, 3901045.548494610004127 ], [ 4949699.468116681091487, 3901059.747118426021188 ], [ 4949655.700001876801252, 3901053.146479560993612 ], [ 4949661.789059224538505, 3901014.190982598345727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949053.511772163212299, 3900489.207419425714761 ], [ 4949083.45394816249609, 3900498.705793296918273 ], [ 4949075.363567374646664, 3900524.186522749252617 ], [ 4949045.42104034870863, 3900515.052287452854216 ], [ 4949053.511772163212299, 3900489.207419425714761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948264.646310579031706, 3899949.126365281641483 ], [ 4948266.337376559153199, 3899985.905191521625966 ], [ 4948190.876727735623717, 3899989.106615598779172 ], [ 4948189.185558709315956, 3899952.327794023789465 ], [ 4948264.646310579031706, 3899949.126365281641483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948173.114324759691954, 3898745.221307339146733 ], [ 4948143.447326245717704, 3898746.283996385056525 ], [ 4948142.044393884018064, 3898709.141363970469683 ], [ 4948195.042059157043695, 3898707.009662694763392 ], [ 4948196.163470759056509, 3898737.597681119572371 ], [ 4948172.83323616720736, 3898738.302561544813216 ], [ 4948173.114324759691954, 3898745.221307339146733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947823.179764933884144, 3898736.862214559223503 ], [ 4947876.183121040463448, 3898728.903815193567425 ], [ 4947881.335347478277981, 3898761.31646231841296 ], [ 4947862.035235355608165, 3898764.210384064354002 ], [ 4947863.467034384608269, 3898772.586784787476063 ], [ 4947825.442870649509132, 3898778.375237382948399 ], [ 4947824.586016508750618, 3898771.091796214226633 ], [ 4947802.693394105881453, 3898774.347327183466405 ], [ 4947795.824472157284617, 3898730.280849349219352 ], [ 4947821.46209257747978, 3898726.300755432806909 ], [ 4947823.179764933884144, 3898736.862214559223503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947338.50736715644598, 3889172.548195953015238 ], [ 4947308.52724769897759, 3889188.540740338154137 ], [ 4947293.571412544697523, 3889161.216676586773247 ], [ 4947323.551553528755903, 3889145.224115785676986 ], [ 4947338.50736715644598, 3889172.548195953015238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946730.029662941582501, 3890960.196441963780671 ], [ 4946708.998912265524268, 3890959.448263288009912 ], [ 4946710.472179733216763, 3890924.857497557066381 ], [ 4946731.502957426011562, 3890925.605677366256714 ], [ 4946730.029662941582501, 3890960.196441963780671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946616.729355664923787, 3898977.842789612244815 ], [ 4946642.954292728565633, 3898961.481714993715286 ], [ 4946661.934098097495735, 3898992.450679679401219 ], [ 4946635.709523558616638, 3899008.447606672067195 ], [ 4946616.729355664923787, 3898977.842789612244815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945224.544151809997857, 3891130.316134124528617 ], [ 4945208.668793984688818, 3891163.801761645823717 ], [ 4945188.510241644456983, 3891154.316476519685239 ], [ 4945204.097479739226401, 3891120.830580584239215 ], [ 4945224.544151809997857, 3891130.316134124528617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944974.864278737455606, 3889707.447033166885376 ], [ 4944977.477560862898827, 3889684.509292483329773 ], [ 4944997.931838170625269, 3889686.712117007467896 ], [ 4944995.606654128059745, 3889709.650110181886703 ], [ 4944974.864278737455606, 3889707.447033166885376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944408.056106894277036, 3892147.338577139656991 ], [ 4944411.24798777140677, 3892120.759965746663511 ], [ 4944400.589617469348013, 3892119.65840103989467 ], [ 4944402.620668496005237, 3892102.910251563880593 ], [ 4944412.414776365272701, 3892104.01107245311141 ], [ 4944414.155549952760339, 3892089.81157147185877 ], [ 4944450.163006389513612, 3892094.212158359587193 ], [ 4944446.102417143061757, 3892125.887810470536351 ], [ 4944465.114118573255837, 3892128.453117943368852 ], [ 4944461.922814096324146, 3892154.303467135410756 ], [ 4944408.056106894277036, 3892147.338577139656991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943988.886933366768062, 3892146.252525850664824 ], [ 4944009.052561708725989, 3892146.997845660429448 ], [ 4944007.878628682345152, 3892172.485828272998333 ], [ 4943987.713019420392811, 3892171.74050933169201 ], [ 4943988.886933366768062, 3892146.252525850664824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943265.134591713547707, 3889419.060152293182909 ], [ 4943246.391999024897814, 3889437.251195219345391 ], [ 4943202.635188175365329, 3889391.69947819551453 ], [ 4943234.92949522100389, 3889361.13914281129837 ], [ 4943272.353061008267105, 3889400.131425995379686 ], [ 4943259.089469629339874, 3889412.500905675347894 ], [ 4943265.134591713547707, 3889419.060152293182909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990025.342116055078804, 3908938.222421710845083 ], [ 4990002.764061992056668, 3908985.501921345479786 ], [ 4989960.204779899679124, 3908965.365737583953887 ], [ 4989971.492836577817798, 3908942.090098197571933 ], [ 4989965.742102055810392, 3908939.162326393183321 ], [ 4989977.319015366956592, 3908915.52329561393708 ], [ 4990025.342116055078804, 3908938.222421710845083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989490.316165598109365, 3899787.315739600453526 ], [ 4989488.763341465033591, 3899831.735767418518662 ], [ 4989451.901235635392368, 3899830.549810633994639 ], [ 4989453.454922903329134, 3899785.765652158297598 ], [ 4989490.316165598109365, 3899787.315739600453526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989038.543747772462666, 3913438.224418772384524 ], [ 4989080.342443983070552, 3913415.025355275254697 ], [ 4989097.535951028577983, 3913446.020159079227597 ], [ 4989055.737287996336818, 3913469.219196273013949 ], [ 4989038.543747772462666, 3913438.224418772384524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988883.682489431463182, 3908631.637512453366071 ], [ 4988875.796122064813972, 3908676.406002000439912 ], [ 4988829.462425878271461, 3908668.278500792104751 ], [ 4988837.348718319088221, 3908623.509997872635722 ], [ 4988883.682489431463182, 3908631.637512453366071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988364.31486580427736, 3907236.435323577839881 ], [ 4988400.040626935660839, 3907227.42126879747957 ], [ 4988410.306816358119249, 3907267.137370865792036 ], [ 4988374.293177398853004, 3907276.150692943483591 ], [ 4988364.31486580427736, 3907236.435323577839881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988186.040873060002923, 3905752.151353165507317 ], [ 4988184.533129328861833, 3905779.457510566338897 ], [ 4988140.195326724089682, 3905777.162311748601496 ], [ 4988141.991875397972763, 3905749.492738769389689 ], [ 4988186.040873060002923, 3905752.151353165507317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988125.064776916056871, 3907807.162796830292791 ], [ 4988099.424371735192835, 3907813.289247255306691 ], [ 4988090.0180778587237, 3907775.031920743174851 ], [ 4988115.658517337404191, 3907768.905461485031992 ], [ 4988125.064776916056871, 3907807.162796830292791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987829.972981061786413, 3913603.795865411870182 ], [ 4987855.602388182654977, 3913599.853925684001297 ], [ 4987853.901413690298796, 3913589.289824163541198 ], [ 4987877.514015601016581, 3913586.07117292098701 ], [ 4987878.362240627408028, 3913592.263553641736507 ], [ 4987896.792469619773328, 3913589.396200167480856 ], [ 4987901.608382783830166, 3913620.723667518701404 ], [ 4987833.936223092488945, 3913630.751600100658834 ], [ 4987829.972981061786413, 3913603.795865411870182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987159.037357960827649, 3897022.480871067382395 ], [ 4987164.142555114813149, 3897054.900979419238865 ], [ 4987152.32859028223902, 3897056.692663420457393 ], [ 4987155.163424471393228, 3897075.270255593117326 ], [ 4987121.449781413190067, 3897080.649570165667683 ], [ 4987112.093578705564141, 3897019.816895904019475 ], [ 4987142.637103370390832, 3897015.158058772329241 ], [ 4987144.053187629207969, 3897024.993046095594764 ], [ 4987159.037357960827649, 3897022.480871067382395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986789.179066413082182, 3908837.643855353351682 ], [ 4986806.941550903953612, 3908873.736338408663869 ], [ 4986799.73580648843199, 3908876.995953207835555 ], [ 4986816.638964861631393, 3908911.265683005563915 ], [ 4986784.641924218274653, 3908927.209464231971651 ], [ 4986766.593311555683613, 3908890.38803133694455 ], [ 4986773.799048341810703, 3908887.128407622687519 ], [ 4986757.182842465117574, 3908853.22353789024055 ], [ 4986789.179066413082182, 3908837.643855353351682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986340.183118717744946, 3896054.4484086134471 ], [ 4986345.402359962463379, 3896040.25997764384374 ], [ 4986327.847331019118428, 3896033.663132252171636 ], [ 4986340.023799792863429, 3896001.285045585595071 ], [ 4986362.471250066533685, 3896009.714398830197752 ], [ 4986369.141336631029844, 3895991.15992743615061 ], [ 4986390.149429076351225, 3895999.221686974167824 ], [ 4986365.796397982165217, 3896063.977820958010852 ], [ 4986340.183118717744946, 3896054.4484086134471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986048.065020252019167, 3901923.528141267597675 ], [ 4986094.497286798432469, 3901895.966157927643508 ], [ 4986110.559401653707027, 3901922.950630132108927 ], [ 4986064.127165053039789, 3901950.512586175464094 ], [ 4986048.065020252019167, 3901923.528141267597675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985774.831549875438213, 3910529.863600460812449 ], [ 4985820.333397969603539, 3910523.782655915711075 ], [ 4985825.987092446535826, 3910567.128092197235674 ], [ 4985780.486191020347178, 3910572.844896253198385 ], [ 4985774.831549875438213, 3910529.863600460812449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985751.813882384449244, 3910404.182391088921577 ], [ 4985797.319437191821635, 3910396.644883895758539 ], [ 4985805.554610849358141, 3910444.001979089807719 ], [ 4985760.91281302459538, 3910451.54154636990279 ], [ 4985756.934766989201307, 3910429.6840058574453 ], [ 4985756.358980403281748, 3910429.682623395696282 ], [ 4985751.813882384449244, 3910404.182391088921577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985743.766213764436543, 3910158.737354014534503 ], [ 4985712.956952280364931, 3910160.484079795423895 ], [ 4985710.19156317319721, 3910113.1401446913369 ], [ 4985741.001752794720232, 3910111.029284824617207 ], [ 4985743.766213764436543, 3910158.737354014534503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985651.022892586886883, 3903688.247106573544443 ], [ 4985693.355572144500911, 3903687.62032523099333 ], [ 4985694.125162387266755, 3903726.948387458920479 ], [ 4985704.78074508253485, 3903726.609810737427324 ], [ 4985705.032029271125793, 3903741.903942422941327 ], [ 4985693.512557774782181, 3903742.240447376854718 ], [ 4985693.767341, 3903756.078060883563012 ], [ 4985647.403262081556022, 3903756.695180488750339 ], [ 4985646.882304222323, 3903733.753638580907136 ], [ 4985651.777709981426597, 3903733.765369939152151 ], [ 4985651.022892586886883, 3903688.247106573544443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985533.488822116516531, 3909964.878755983896554 ], [ 4985566.898097203113139, 3909959.496717798057944 ], [ 4985573.98832577560097, 3910004.302055676002055 ], [ 4985540.579104916192591, 3910009.68408519634977 ], [ 4985533.488822116516531, 3909964.878755983896554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985515.59428053535521, 3903482.552674168720841 ], [ 4985537.974753101356328, 3903516.470441626384854 ], [ 4985476.541974613443017, 3903556.378025072161108 ], [ 4985454.449425419792533, 3903522.46099593443796 ], [ 4985515.59428053535521, 3903482.552674168720841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985453.064266207627952, 3910006.92588103748858 ], [ 4985484.985230778343976, 3910021.931634869426489 ], [ 4985468.781147597357631, 3910056.12140482943505 ], [ 4985436.860214739106596, 3910041.115669913589954 ], [ 4985453.064266207627952, 3910006.92588103748858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985005.287093328312039, 3909318.37657356960699 ], [ 4985002.694218466058373, 3909319.098686716519296 ], [ 4984994.998530649580061, 3909286.308469287585467 ], [ 4985026.686291862279177, 3909278.736878423020244 ], [ 4985036.946291660889983, 3909322.821311697363853 ], [ 4985007.851453304290771, 3909329.670777746941894 ], [ 4985005.287093328312039, 3909318.37657356960699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984791.026015651412308, 3907516.868865141645074 ], [ 4984802.702593568712473, 3907571.152217496652156 ], [ 4984754.018492987379432, 3907581.596953897271305 ], [ 4984745.76077391859144, 3907542.61526481481269 ], [ 4984760.740580041892827, 3907539.373475802130997 ], [ 4984757.609560057520866, 3907524.072511982638389 ], [ 4984791.026015651412308, 3907516.868865141645074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984719.010887702926993, 3914842.696228753775358 ], [ 4984725.148581159301102, 3914803.384246508125216 ], [ 4984758.238867742940784, 3914808.560336337424815 ], [ 4984752.101126992143691, 3914847.872311144601554 ], [ 4984719.010887702926993, 3914842.696228753775358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984615.113716153427958, 3906779.813661939930171 ], [ 4984659.212915911339223, 3906760.618680995423347 ], [ 4984671.242486449889839, 3906787.592860577162355 ], [ 4984681.619224628433585, 3906782.883634742349386 ], [ 4984691.643554738722742, 3906805.483502752147615 ], [ 4984680.402167692780495, 3906810.554815930314362 ], [ 4984690.713560505770147, 3906833.519493941217661 ], [ 4984700.513560818508267, 3906829.173045940697193 ], [ 4984710.824929246678948, 3906852.137731928844005 ], [ 4984699.583558036014438, 3906857.209037227090448 ], [ 4984709.608704994432628, 3906879.444782674312592 ], [ 4984719.984554430469871, 3906875.09970168210566 ], [ 4984730.295888423919678, 3906898.064395792316645 ], [ 4984719.342463776469231, 3906903.136373208835721 ], [ 4984729.367577084340155, 3906925.37212665611878 ], [ 4984738.878758990205824, 3906921.389142468571663 ], [ 4984748.617639622651041, 3906942.89596244180575 ], [ 4984704.80574472527951, 3906962.455609074328095 ], [ 4984695.067696006037295, 3906940.584674422629178 ], [ 4984684.11515496019274, 3906945.292536036577076 ], [ 4984671.798597224056721, 3906917.953538187779486 ], [ 4984683.328728398308158, 3906912.518770502880216 ], [ 4984675.595848325639963, 3906895.022165169008076 ], [ 4984665.220013781450689, 3906899.367263357155025 ], [ 4984652.61806174647063, 3906870.93520469404757 ], [ 4984664.435281278565526, 3906865.865238744299859 ], [ 4984656.702375344932079, 3906848.368639352731407 ], [ 4984646.325666790828109, 3906853.077874991577119 ], [ 4984633.723672835156322, 3906824.645825993269682 ], [ 4984645.25297712162137, 3906819.57517255935818 ], [ 4984637.519186256453395, 3906802.442709452006966 ], [ 4984627.143322231248021, 3906806.787822094745934 ], [ 4984615.113716153427958, 3906779.813661939930171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984538.084701227024198, 3909288.505502539686859 ], [ 4984585.299490006640553, 3909289.345025900751352 ], [ 4984584.645568607375026, 3909322.479574137832969 ], [ 4984537.431695763021708, 3909321.275921082124114 ], [ 4984538.084701227024198, 3909288.505502539686859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984523.466482173651457, 3907304.67653488041833 ], [ 4984566.391597497276962, 3907294.581942797638476 ], [ 4984562.398372526280582, 3907278.550707865972072 ], [ 4984588.326399652287364, 3907272.421562945935875 ], [ 4984592.033399914391339, 3907287.723862164188176 ], [ 4984610.758956121280789, 3907283.398422945290804 ], [ 4984617.600505354814231, 3907312.545148851815611 ], [ 4984530.309835622087121, 3907333.094978169072419 ], [ 4984523.466482173651457, 3907304.67653488041833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984321.964937940239906, 3909369.198919451329857 ], [ 4984339.753463861532509, 3909395.458250091411173 ], [ 4984302.266077700071037, 3909420.859550479799509 ], [ 4984284.477532133460045, 3909394.600244247354567 ], [ 4984321.964937940239906, 3909369.198919451329857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984281.512246461585164, 3909676.796282337512821 ], [ 4984301.38940376136452, 3909671.745060928165913 ], [ 4984302.816092621535063, 3909677.210402997210622 ], [ 4984322.404497432522476, 3909672.522652398329228 ], [ 4984328.678485467098653, 3909698.026686826255172 ], [ 4984289.212962246499956, 3909707.765648728702217 ], [ 4984281.512246461585164, 3909676.796282337512821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983990.525539562106133, 3915434.523566127289087 ], [ 4983950.731419160030782, 3915465.382059182040393 ], [ 4983935.233981749974191, 3915445.682640358805656 ], [ 4983975.315953251905739, 3915414.824796877801418 ], [ 4983990.525539562106133, 3915434.523566127289087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983175.985234159044921, 3909668.035178208258003 ], [ 4983185.289575369097292, 3909628.366140350233763 ], [ 4983238.810760661028326, 3909640.870089688338339 ], [ 4983229.506344634108245, 3909680.539109327830374 ], [ 4983175.985234159044921, 3909668.035178208258003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982116.167834243737161, 3906638.215582703705877 ], [ 4982134.091517535038292, 3906606.576689698267728 ], [ 4982224.676781438291073, 3906657.032334496732801 ], [ 4982206.752198684029281, 3906689.035298373550177 ], [ 4982116.167834243737161, 3906638.215582703705877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981930.846931571140885, 3906589.730992164928466 ], [ 4981863.645675419829786, 3906639.465424161870033 ], [ 4981844.986630177125335, 3906614.298220532014966 ], [ 4981912.187914413399994, 3906564.563742637634277 ], [ 4981930.846931571140885, 3906589.730992164928466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981574.119060377590358, 3902473.87551906472072 ], [ 4981571.586916971020401, 3902447.288255381863564 ], [ 4981599.23860839754343, 3902444.801416716072708 ], [ 4981598.39429593551904, 3902436.060371241532266 ], [ 4981646.20862140879035, 3902431.798208526801318 ], [ 4981647.054555128328502, 3902439.810996691696346 ], [ 4981674.994240333326161, 3902437.324883182533085 ], [ 4981678.368111988529563, 3902473.745592748746276 ], [ 4981603.190174120478332, 3902480.495151570532471 ], [ 4981602.346681837923825, 3902471.389976386912167 ], [ 4981574.119060377590358, 3902473.87551906472072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981435.457218249328434, 3905109.512728267814964 ], [ 4981366.715719683095813, 3904945.499547062907368 ], [ 4981396.402492213062942, 3904933.185496481601149 ], [ 4981463.998567320406437, 3905094.283131564501673 ], [ 4981479.561766888014972, 3905088.127768820151687 ], [ 4981499.61135358735919, 3905135.873982658609748 ], [ 4981468.772141455672681, 3905148.549469597637653 ], [ 4981449.868600965477526, 3905103.35476859472692 ], [ 4981435.457218249328434, 3905109.512728267814964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981400.218372981064022, 3903228.329949873499572 ], [ 4981412.075702423229814, 3903205.780345549806952 ], [ 4981470.753184360451996, 3903236.498807292431593 ], [ 4981453.402361793443561, 3903268.867626990191638 ], [ 4981424.638788163661957, 3903253.873817867133766 ], [ 4981429.844267657026649, 3903244.053926354739815 ], [ 4981400.218372981064022, 3903228.329949873499572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981326.62511526234448, 3904588.196655206382275 ], [ 4981242.419245164841413, 3904642.992421772796661 ], [ 4981200.520743975415826, 3904578.811737652868032 ], [ 4981284.437958809547126, 3904524.379328496288508 ], [ 4981326.62511526234448, 3904588.196655206382275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981265.184705921448767, 3906311.495588423218578 ], [ 4981291.131618991494179, 3906296.98826959123835 ], [ 4981306.905519979074597, 3906325.061690210364759 ], [ 4981280.95862539857626, 3906339.568994062487036 ], [ 4981265.184705921448767, 3906311.495588423218578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981231.112499133683741, 3901193.551144994795322 ], [ 4981179.532653173431754, 3901206.54479356482625 ], [ 4981167.25777168571949, 3901157.723879073280841 ], [ 4981194.344511597417295, 3901150.865792204160243 ], [ 4981191.775316515937448, 3901140.664395848289132 ], [ 4981216.268518858589232, 3901134.528808679897338 ], [ 4981231.112499133683741, 3901193.551144994795322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981189.220327227376401, 3907062.894811423961073 ], [ 4981162.978970658034086, 3907080.678767455741763 ], [ 4981135.427850225940347, 3907040.198670924175531 ], [ 4981161.668416017666459, 3907022.778818855527788 ], [ 4981189.220327227376401, 3907062.894811423961073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981083.367000275291502, 3901325.037221003789455 ], [ 4981123.433421988040209, 3901309.104687931481749 ], [ 4981143.479998876340687, 3901359.763560079038143 ], [ 4981119.267708427272737, 3901369.177018512506038 ], [ 4981115.831290232017636, 3901360.430220164824277 ], [ 4981099.977218089625239, 3901366.949267399031669 ], [ 4981083.367000275291502, 3901325.037221003789455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981015.289325196295977, 3903835.570668876171112 ], [ 4981025.990159071050584, 3903814.83897277712822 ], [ 4981051.013871634379029, 3903828.003380990121514 ], [ 4981021.805588910356164, 3903883.650523078627884 ], [ 4980988.727837807498872, 3903866.462789536919445 ], [ 4981006.94808694254607, 3903831.182541274465621 ], [ 4981015.289325196295977, 3903835.570668876171112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980893.807247153483331, 3906023.368516550399363 ], [ 4980902.650142376311123, 3906060.89374279929325 ], [ 4980880.178693177178502, 3906066.30584661103785 ], [ 4980871.624516787938774, 3906028.417136310134083 ], [ 4980893.807247153483331, 3906023.368516550399363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980606.405582623556256, 3906300.200732097495347 ], [ 4980632.928829592652619, 3906285.329919595271349 ], [ 4980648.99055674765259, 3906313.76772043062374 ], [ 4980622.179391617886722, 3906328.637881124857813 ], [ 4980606.405582623556256, 3906300.200732097495347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980489.362766680307686, 3903359.214625525753945 ], [ 4980472.305187067016959, 3903389.764067700132728 ], [ 4980427.722955013625324, 3903365.633185067679733 ], [ 4980444.781301143579185, 3903334.719585402868688 ], [ 4980489.362766680307686, 3903359.214625525753945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980453.612578726373613, 3904685.302931404206902 ], [ 4980488.914632269181311, 3904738.179826317355037 ], [ 4980457.769839448854327, 3904758.866694319061935 ], [ 4980422.178995641879737, 3904706.353335507214069 ], [ 4980453.612578726373613, 3904685.302931404206902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980444.818047782406211, 3898872.295459161046892 ], [ 4980500.459135320968926, 3898848.021319353021681 ], [ 4980514.21412044018507, 3898879.730990461539477 ], [ 4980458.573085939511657, 3898904.005102274939418 ], [ 4980444.818047782406211, 3898872.295459161046892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980413.051175445318222, 3900088.42153992690146 ], [ 4980432.074680620804429, 3900081.544939309824258 ], [ 4980416.040231204591691, 3900038.906348204705864 ], [ 4980440.252668373286724, 3900029.856392706744373 ], [ 4980467.742271206341684, 3900102.01481968909502 ], [ 4980424.505600666627288, 3900118.30547238048166 ], [ 4980413.051175445318222, 3900088.42153992690146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980069.048278017900884, 3903303.307549548801035 ], [ 4980089.190209019929171, 3903310.634269574191421 ], [ 4980073.834567392244935, 3903353.204024941194803 ], [ 4980053.691867413930595, 3903346.241445883642882 ], [ 4980069.048278017900884, 3903303.307549548801035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980063.18361150380224, 3902956.641681818757206 ], [ 4980049.297153745777905, 3902985.741799408569932 ], [ 4980009.02232519723475, 3902966.718882462475449 ], [ 4980022.620775463990867, 3902937.618114606942981 ], [ 4980063.18361150380224, 3902956.641681818757206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980021.08444211166352, 3907063.227488658856601 ], [ 4980014.405525844544172, 3907089.066268280614167 ], [ 4979990.520943757146597, 3907082.823795902077109 ], [ 4979996.91111302562058, 3907057.348511401563883 ], [ 4980021.08444211166352, 3907063.227488658856601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979980.861964835785329, 3906364.369982712902129 ], [ 4980018.619122973643243, 3906347.338327941484749 ], [ 4980037.532946960069239, 3906388.52662304462865 ], [ 4979999.775038409046829, 3906405.922381997108459 ], [ 4979980.861964835785329, 3906364.369982712902129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979998.345898922532797, 3897969.729255346115679 ], [ 4980006.650918163359165, 3897991.595220983028412 ], [ 4979982.148768245242536, 3898000.644926676061004 ], [ 4979973.844527439214289, 3897978.414840018376708 ], [ 4979998.345898922532797, 3897969.729255346115679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979941.987285956740379, 3908474.795787861105055 ], [ 4979958.366572408936918, 3908489.396873002871871 ], [ 4979948.264123572036624, 3908501.027041848748922 ], [ 4979968.954139856621623, 3908519.278876844793558 ], [ 4979947.018601062707603, 3908543.991960199549794 ], [ 4979891.844908186234534, 3908495.441857300698757 ], [ 4979914.357854212634265, 3908470.001725318841636 ], [ 4979932.174343428574502, 3908485.698329995851964 ], [ 4979941.987285956740379, 3908474.795787861105055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979865.61966067366302, 3908638.852854903321713 ], [ 4979842.244753154926002, 3908663.562885144259781 ], [ 4979793.112525041215122, 3908617.210951932240278 ], [ 4979816.775340403430164, 3908592.501507228706032 ], [ 4979865.61966067366302, 3908638.852854903321713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979831.144063739106059, 3903321.722729326225817 ], [ 4979841.560979578644037, 3903298.805162501055747 ], [ 4979853.643796340562403, 3903304.293479302432388 ], [ 4979855.669906967319548, 3903299.564189925324172 ], [ 4979897.096221688203514, 3903318.589394609909505 ], [ 4979884.653947554528713, 3903345.872097693849355 ], [ 4979831.144063739106059, 3903321.722729326225817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979664.534515564329922, 3901806.574267668649554 ], [ 4979632.809418763034046, 3901827.989061624277383 ], [ 4979614.149671006016433, 3901800.638704850804061 ], [ 4979645.874785073101521, 3901779.223889233078808 ], [ 4979664.534515564329922, 3901806.574267668649554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979274.728450458496809, 3901747.10474147927016 ], [ 4979213.591316382400692, 3901785.934832160826772 ], [ 4979195.509440943598747, 3901757.493621036410332 ], [ 4979256.646613328717649, 3901718.663489875383675 ], [ 4979274.728450458496809, 3901747.10474147927016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979024.901530742645264, 3909714.500449658837169 ], [ 4979038.102682091295719, 3909734.192010552622378 ], [ 4979054.825211497955024, 3909722.93986740661785 ], [ 4979069.174804921261966, 3909744.090445758774877 ], [ 4979024.485998463816941, 3909773.853200264275074 ], [ 4978996.935223245061934, 3909733.011098011862487 ], [ 4979024.901530742645264, 3909714.500449658837169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979014.508090409450233, 3904638.475122345145792 ], [ 4978992.325356892310083, 3904643.161159238778055 ], [ 4978991.755705643445253, 3904640.246882080566138 ], [ 4978969.573759717866778, 3904644.56880778959021 ], [ 4978959.028108544647694, 3904593.931861552875489 ], [ 4978976.025324385613203, 3904590.327052390668541 ], [ 4978977.166196775622666, 3904595.427345977164805 ], [ 4979004.533737674355507, 3904590.024176102131605 ], [ 4979014.508090409450233, 3904638.475122345145792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978952.6207165280357, 3908381.98383468715474 ], [ 4978934.131601463072002, 3908411.074732581619173 ], [ 4978883.238611890934408, 3908379.285993514582515 ], [ 4978901.440559227950871, 3908349.83031261106953 ], [ 4978952.6207165280357, 3908381.98383468715474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978928.936119000427425, 3916864.057368396315724 ], [ 4978953.4027528334409, 3916863.381649719085544 ], [ 4978953.90095695015043, 3916899.432027798611671 ], [ 4978929.722179897129536, 3916900.108364118728787 ], [ 4978928.936119000427425, 3916864.057368396315724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978906.991418918594718, 3906165.413021328859031 ], [ 4978930.631336404010653, 3906151.990872806403786 ], [ 4978938.95030128583312, 3906166.57401051511988 ], [ 4978915.310392430983484, 3906179.996151834726334 ], [ 4978906.991418918594718, 3906165.413021328859031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978582.412378710694611, 3911865.214538021013141 ], [ 4978614.998564417473972, 3911839.066504894290119 ], [ 4978643.710925694555044, 3911874.448755163233727 ], [ 4978638.520568775013089, 3911878.443133063614368 ], [ 4978667.232856815680861, 3911913.825409343466163 ], [ 4978639.549177832901478, 3911935.978386573493481 ], [ 4978582.412378710694611, 3911865.214538021013141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978575.340429135598242, 3907488.687818274833262 ], [ 4978592.868095917627215, 3907505.475302942562848 ], [ 4978575.553775021806359, 3907523.64497123286128 ], [ 4978558.026885973289609, 3907506.493367064278573 ], [ 4978575.340429135598242, 3907488.687818274833262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978553.431216822937131, 3906691.191622410900891 ], [ 4978525.477620480582118, 3906702.420118153560907 ], [ 4978514.592030518688262, 3906676.179407195653766 ], [ 4978542.546425933949649, 3906664.586769885383546 ], [ 4978553.431216822937131, 3906691.191622410900891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978357.656823444180191, 3907223.136017303913832 ], [ 4978383.022329783067107, 3907210.08118053432554 ], [ 4978398.220546650700271, 3907239.244076611008495 ], [ 4978372.855060366913676, 3907252.298899269197136 ], [ 4978357.656823444180191, 3907223.136017303913832 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978029.665769644081593, 3904925.496695858426392 ], [ 4977979.545930866152048, 3904933.037606822326779 ], [ 4977973.578103645704687, 3904895.51944662258029 ], [ 4977998.92639073356986, 3904891.567517059855163 ], [ 4977996.939942199736834, 3904877.726318818051368 ], [ 4978021.999527434818447, 3904874.137933013960719 ], [ 4978029.665769644081593, 3904925.496695858426392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977878.986679290421307, 3907968.958226699847728 ], [ 4977882.221333805471659, 3907936.921397459227592 ], [ 4977926.551797535270452, 3907941.384457712527364 ], [ 4977923.317090671509504, 3907973.421281707473099 ], [ 4977878.986679290421307, 3907968.958226699847728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977823.717740439809859, 3903449.965592995751649 ], [ 4977857.83066850155592, 3903387.042707026004791 ], [ 4977898.963379005901515, 3903409.341393440030515 ], [ 4977890.291322669945657, 3903424.980761910788715 ], [ 4977922.794887395575643, 3903442.527592157013714 ], [ 4977929.442730844020844, 3903430.889409388415515 ], [ 4977966.836341201327741, 3903450.995526553597301 ], [ 4977928.6778708929196, 3903520.464108755346388 ], [ 4977887.545355423353612, 3903498.165375347714871 ], [ 4977895.928651452995837, 3903482.889528040774167 ], [ 4977864.288254842162132, 3903465.708679542411119 ], [ 4977858.506652656011283, 3903476.256309256423265 ], [ 4977832.619450718164444, 3903462.000668497756124 ], [ 4977835.798599052242935, 3903456.545392222702503 ], [ 4977823.717740439809859, 3903449.965592995751649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977794.79725705832243, 3911991.356023177504539 ], [ 4977814.26936152484268, 3912040.555005776230246 ], [ 4977730.139130339026451, 3912073.878262924961746 ], [ 4977710.378254869952798, 3912025.04286692943424 ], [ 4977794.79725705832243, 3911991.356023177504539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977575.433723472990096, 3904025.49993300717324 ], [ 4977614.355934043414891, 3904003.005390762351453 ], [ 4977629.274962713941932, 3904029.254151833709329 ], [ 4977590.353540947660804, 3904051.384542958345264 ], [ 4977575.433723472990096, 3904025.49993300717324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977467.915105940774083, 3907930.953503934200853 ], [ 4977477.427136125043035, 3907925.875554835423827 ], [ 4977469.968641040846705, 3907912.751184049528092 ], [ 4977498.217604700475931, 3907897.152615781407803 ], [ 4977521.452224253676832, 3907938.712351192254573 ], [ 4977483.690505428239703, 3907959.752969777677208 ], [ 4977467.915105940774083, 3907930.953503934200853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977383.613498312421143, 3906937.788692194502801 ], [ 4977364.659499723464251, 3906914.08051587222144 ], [ 4977401.287606845609844, 3906885.026465649716556 ], [ 4977420.240832587704062, 3906909.098797895945609 ], [ 4977383.613498312421143, 3906937.788692194502801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977372.590188449248672, 3908768.987067575566471 ], [ 4977396.807439678348601, 3908753.379965250845999 ], [ 4977413.740922904573381, 3908778.904632891062647 ], [ 4977424.984677374362946, 3908771.645488012116402 ], [ 4977440.483137465082109, 3908794.982377469073981 ], [ 4977405.309311849065125, 3908818.213322216179222 ], [ 4977372.590188449248672, 3908768.987067575566471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977235.955149495974183, 3905116.821130595635623 ], [ 4977288.102995161898434, 3905103.092823290731758 ], [ 4977296.958066673949361, 3905137.339670587796718 ], [ 4977245.098232691176236, 3905151.068561018444598 ], [ 4977235.955149495974183, 3905116.821130595635623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977139.240807966329157, 3911189.255424729082733 ], [ 4977158.867769001051784, 3911164.899346996098757 ], [ 4977188.757812573574483, 3911188.994347743224353 ], [ 4977169.1315998127684, 3911212.986272516194731 ], [ 4977139.240807966329157, 3911189.255424729082733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977114.479565907269716, 3901911.484283013734967 ], [ 4977120.64306060411036, 3901855.785055927466601 ], [ 4977135.902488553896546, 3901857.637437795754522 ], [ 4977134.436818957328796, 3901870.01484315469861 ], [ 4977183.958873933181167, 3901875.579829809255898 ], [ 4977178.67132980003953, 3901925.454770361538976 ], [ 4977163.411943268962204, 3901923.602364140562713 ], [ 4977164.002306063659489, 3901916.685103629250079 ], [ 4977114.479565907269716, 3901911.484283013734967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977021.482873653993011, 3906479.320634438656271 ], [ 4976996.987193205393851, 3906489.465499277692288 ], [ 4976986.387205257080495, 3906463.590138629078865 ], [ 4977010.882905230857432, 3906453.445264283567667 ], [ 4977021.482873653993011, 3906479.320634438656271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977014.875821775756776, 3901476.140959437470883 ], [ 4976987.231120551005006, 3901474.991220321040601 ], [ 4976989.024757562205195, 3901443.315553540363908 ], [ 4977016.380746165290475, 3901444.828826226294041 ], [ 4977014.875821775756776, 3901476.140959437470883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976913.751174083910882, 3901078.300447355024517 ], [ 4976911.132838227786124, 3901091.039602452889085 ], [ 4976888.966395148076117, 3901086.624134544283152 ], [ 4976897.402645012363791, 3901045.858951933216304 ], [ 4976941.158846448175609, 3901055.052855440881103 ], [ 4976935.341633100993931, 3901082.714742274489254 ], [ 4976913.751174083910882, 3901078.300447355024517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976895.453116880729795, 3909218.062499110586941 ], [ 4976910.953285838477314, 3909240.670827485155314 ], [ 4976888.75360493734479, 3909255.554283698089421 ], [ 4976873.253425971604884, 3909232.945967929903418 ], [ 4976895.453116880729795, 3909218.062499110586941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976784.448529351502657, 3909434.855875951703638 ], [ 4976836.629959943704307, 3909400.735314544290304 ], [ 4976852.414962115697563, 3909424.800731736235321 ], [ 4976826.468195433728397, 3909441.861282369121909 ], [ 4976845.410327058285475, 3909470.666951500345021 ], [ 4976821.481192172504961, 3909486.639284373261034 ], [ 4976803.112594978883862, 3909458.927215709816664 ], [ 4976801.094257616437972, 3909460.37957318732515 ], [ 4976784.448529351502657, 3909434.855875951703638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976756.789127093739808, 3913624.878633894957602 ], [ 4976747.306328024715185, 3913616.848102325573564 ], [ 4976732.877271785400808, 3913634.296710333321244 ], [ 4976696.668672643601894, 3913604.362995103001595 ], [ 4976728.990128631703556, 3913565.103297994937748 ], [ 4976774.969405696727335, 3913603.068188812118024 ], [ 4976756.789127093739808, 3913624.878633894957602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976744.734363477677107, 3903431.694026792421937 ], [ 4976736.936664937064052, 3903442.601864788681269 ], [ 4976721.984117599204183, 3903432.011187934316695 ], [ 4976729.492341256700456, 3903421.831010675989091 ], [ 4976714.827747900038958, 3903411.240932424087077 ], [ 4976728.113387860357761, 3903392.333528359886259 ], [ 4976721.787095879204571, 3903387.950893501751125 ], [ 4976735.361472942866385, 3903368.679957968182862 ], [ 4976792.009326442144811, 3903408.487288598436862 ], [ 4976765.43799102306366, 3903446.302040699869394 ], [ 4976744.734363477677107, 3903431.694026792421937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976715.943782804533839, 3907892.613325458951294 ], [ 4976777.068709447979927, 3907851.228492612484843 ], [ 4976794.005610952153802, 3907875.660363228991628 ], [ 4976732.880713566206396, 3907917.045158160384744 ], [ 4976715.943782804533839, 3907892.613325458951294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976699.791134662926197, 3903022.681847617495805 ], [ 4976685.054955049417913, 3903046.68410670151934 ], [ 4976662.333665605634451, 3903032.800261065363884 ], [ 4976636.329832927323878, 3903074.621746240183711 ], [ 4976652.723974700085819, 3903084.487082132603973 ], [ 4976639.432983065024018, 3903105.943427732214332 ], [ 4976583.924907206557691, 3903071.600742938462645 ], [ 4976601.260234203189611, 3903043.962469277437776 ], [ 4976612.476906668394804, 3903050.904067288152874 ], [ 4976634.725071493536234, 3903014.900918765924871 ], [ 4976627.821979297325015, 3903010.881249735597521 ], [ 4976642.55662614479661, 3902987.607219106983393 ], [ 4976699.791134662926197, 3903022.681847617495805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976650.351214975118637, 3903816.386125011835247 ], [ 4976671.107162911444902, 3903805.504980536643416 ], [ 4976678.277730011381209, 3903819.356762322597206 ], [ 4976714.311574164777994, 3903800.860408199485391 ], [ 4976732.66987144574523, 3903835.490786978043616 ], [ 4976676.167352615855634, 3903865.232965742703527 ], [ 4976650.351214975118637, 3903816.386125011835247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976005.158620167523623, 3908835.714876310434192 ], [ 4975981.816369077190757, 3908846.227159373927861 ], [ 4975965.190984883345664, 3908810.144180979114026 ], [ 4975988.533260729163885, 3908799.631883701775223 ], [ 4976005.158620167523623, 3908835.714876310434192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975845.51152069773525, 3908198.158268218394369 ], [ 4975824.181240750476718, 3908210.131302722264081 ], [ 4975802.952265076339245, 3908172.218428341206163 ], [ 4975824.282565556466579, 3908160.245377263054252 ], [ 4975845.51152069773525, 3908198.158268218394369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975692.751512276940048, 3908847.096406142693013 ], [ 4975653.830542102456093, 3908873.235108752269298 ], [ 4975637.181885208934546, 3908848.440393569413573 ], [ 4975676.390785475261509, 3908822.302250457927585 ], [ 4975692.751512276940048, 3908847.096406142693013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975643.075596098788083, 3905510.089100096840411 ], [ 4975607.895358006469905, 3905535.143001990858465 ], [ 4975586.932750768959522, 3905506.698329507838935 ], [ 4975622.113743171095848, 3905481.280270369257778 ], [ 4975643.075596098788083, 3905510.089100096840411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975254.626836768351495, 3909238.747071892954409 ], [ 4975303.761339738033712, 3909287.275510001927614 ], [ 4975282.12448769249022, 3909309.079943674150854 ], [ 4975232.989985752850771, 3909260.55154448049143 ], [ 4975254.626836768351495, 3909238.747071892954409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975154.623589862138033, 3898952.197862040717155 ], [ 4975162.936621480621397, 3898971.877570709213614 ], [ 4975140.452385932207108, 3898981.299868046306074 ], [ 4975132.13861083611846, 3898961.984295043628663 ], [ 4975154.623589862138033, 3898952.197862040717155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974879.538128308951855, 3899255.33225816860795 ], [ 4974837.182788861915469, 3899263.986907805781811 ], [ 4974828.05420268047601, 3899219.908938526175916 ], [ 4974873.867950047366321, 3899210.16878322372213 ], [ 4974878.43184778559953, 3899232.38983942149207 ], [ 4974874.686222183518112, 3899233.110626851674169 ], [ 4974879.538128308951855, 3899255.33225816860795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974840.762163409031928, 3898335.461927350144833 ], [ 4974843.914442296139896, 3898343.479075671173632 ], [ 4974867.839946944266558, 3898333.695277879945934 ], [ 4974882.458638587966561, 3898369.045067406259477 ], [ 4974836.049262348562479, 3898387.887272321153432 ], [ 4974818.278235551901162, 3898344.520361914299428 ], [ 4974840.762163409031928, 3898335.461927350144833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974633.471511296927929, 3909743.650048831477761 ], [ 4974650.983512521721423, 3909768.810003733728081 ], [ 4974621.57644369546324, 3909789.507133232429624 ], [ 4974603.776528114452958, 3909764.346625437960029 ], [ 4974633.471511296927929, 3909743.650048831477761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974634.545346199534833, 3898041.198570315726101 ], [ 4974647.1570057971403, 3898072.174677748698741 ], [ 4974583.451302825473249, 3898098.265562889631838 ], [ 4974570.839582233689725, 3898067.289484868757427 ], [ 4974634.545346199534833, 3898041.198570315726101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974317.46714367903769, 3909541.294550204649568 ], [ 4974373.681629588827491, 3909504.264115100260824 ], [ 4974388.895848433487117, 3909526.870423211716115 ], [ 4974373.617551805451512, 3909536.671790484338999 ], [ 4974374.477660459466279, 3909538.494154191110283 ], [ 4974333.542218646965921, 3909565.35905824135989 ], [ 4974317.46714367903769, 3909541.294550204649568 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974102.48401455860585, 3897639.968222104012966 ], [ 4974130.584908705204725, 3897704.110367228742689 ], [ 4974096.856802731752396, 3897718.609233562834561 ], [ 4974068.755127943120897, 3897654.831251712981611 ], [ 4974102.48401455860585, 3897639.968222104012966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973891.285499213263392, 3899294.161154288798571 ], [ 4973903.036237469874322, 3899323.678727741818875 ], [ 4973857.206646393984556, 3899341.79550409084186 ], [ 4973845.167853425256908, 3899312.277386764995754 ], [ 4973891.285499213263392, 3899294.161154288798571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973840.1952954987064, 3897143.144701254554093 ], [ 4973850.508287888020277, 3897171.931139397900552 ], [ 4973823.99051782861352, 3897181.34663709346205 ], [ 4973805.941833374090493, 3897131.425551360938698 ], [ 4973822.371268269605935, 3897125.631601718254387 ], [ 4973818.646029371768236, 3897115.792810098733753 ], [ 4973860.153140199370682, 3897100.580563123337924 ], [ 4973871.613281141966581, 3897131.918162874877453 ], [ 4973840.1952954987064, 3897143.144701254554093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973832.223010083660483, 3897979.171462814323604 ], [ 4973848.545050945132971, 3898027.996823519002646 ], [ 4973782.543643349781632, 3898050.079682047478855 ], [ 4973773.3801777549088, 3898022.752020858228207 ], [ 4973797.302016587927938, 3898014.787915291730314 ], [ 4973790.143352047540247, 3897993.290248943027109 ], [ 4973832.223010083660483, 3897979.171462814323604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973815.905943866819143, 3897338.63493454316631 ], [ 4973764.027888379059732, 3897354.919377566780895 ], [ 4973752.8642867365852, 3897319.212840094231069 ], [ 4973804.742404247634113, 3897302.928375863935798 ], [ 4973815.905943866819143, 3897338.63493454316631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973697.776889755390584, 3898242.174824025016278 ], [ 4973713.828047248534858, 3898282.260459419339895 ], [ 4973666.555984960868955, 3898300.738867377396673 ], [ 4973650.504058294929564, 3898261.017388488166034 ], [ 4973697.776889755390584, 3898242.174824025016278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973688.72647903021425, 3897566.331853520125151 ], [ 4973709.65183852147311, 3897618.079137490130961 ], [ 4973660.070819857530296, 3897638.373695385176688 ], [ 4973642.298106662929058, 3897594.643453212920576 ], [ 4973668.817535875365138, 3897584.135388255584985 ], [ 4973665.377495844848454, 3897575.753691149875522 ], [ 4973688.72647903021425, 3897566.331853520125151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973149.444939375855029, 3902830.612267924938351 ], [ 4973162.648870096541941, 3902852.849766622763127 ], [ 4973140.449523749761283, 3902865.915612688753754 ], [ 4973127.244878233410418, 3902844.042254443280399 ], [ 4973149.444939375855029, 3902830.612267924938351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973118.730683529749513, 3910983.104064338840544 ], [ 4973061.417924532666802, 3910995.009861180093139 ], [ 4973055.143385447561741, 3910964.41059744451195 ], [ 4973071.847887832671404, 3910960.801484427414834 ], [ 4973069.849530849605799, 3910952.058440291322768 ], [ 4973092.026017780415714, 3910947.367496140301228 ], [ 4973093.738588252104819, 3910955.017591728363186 ], [ 4973112.170427919365466, 3910951.411837090272456 ], [ 4973118.730683529749513, 3910983.104064338840544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973050.528172145597637, 3904248.348450182937086 ], [ 4973085.11913669295609, 3904229.844449644442648 ], [ 4973110.08309150673449, 3904275.773169952444732 ], [ 4973066.267649822868407, 3904299.357190157752484 ], [ 4973055.651073981076479, 3904279.673625655472279 ], [ 4973064.87559758592397, 3904274.593570790719241 ], [ 4973050.528172145597637, 3904248.348450182937086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972959.100698006339371, 3903724.551514217164367 ], [ 4972920.746723640710115, 3903752.879981232341379 ], [ 4972900.066443808376789, 3903725.166249253321439 ], [ 4972938.708401191048324, 3903696.83830706961453 ], [ 4972959.100698006339371, 3903724.551514217164367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972897.389743581414223, 3903319.883049220312387 ], [ 4972915.763786001130939, 3903349.048862550407648 ], [ 4972873.381955848075449, 3903375.184861056040972 ], [ 4972845.247692965902388, 3903329.978563607670367 ], [ 4972868.312519622966647, 3903315.821739851962775 ], [ 4972878.073403092101216, 3903331.498130870517343 ], [ 4972897.389743581414223, 3903319.883049220312387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972751.724403235130012, 3903445.228758147917688 ], [ 4972689.740857359021902, 3903481.887293933425099 ], [ 4972671.656022873707116, 3903451.993924053385854 ], [ 4972733.640310378745198, 3903414.971217358019203 ], [ 4972751.724403235130012, 3903445.228758147917688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972239.050927085801959, 3912746.73732036491856 ], [ 4972217.704446847550571, 3912770.001343312207609 ], [ 4972155.917660697363317, 3912714.535931647755206 ], [ 4972181.303272540681064, 3912686.54578524408862 ], [ 4972214.639443795196712, 3912716.467935485765338 ], [ 4972210.60030108038336, 3912721.194005736149848 ], [ 4972239.050927085801959, 3912746.73732036491856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972147.159655721858144, 3902594.923228801228106 ], [ 4972164.367235688492656, 3902632.461317238863558 ], [ 4972136.121373295783997, 3902645.152404980733991 ], [ 4972118.913072867318988, 3902607.978464038111269 ], [ 4972147.159655721858144, 3902594.923228801228106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972079.830233428627253, 3907283.717398657463491 ], [ 4972111.252185889519751, 3907263.749595836270601 ], [ 4972139.672154675237834, 3907308.591648070607334 ], [ 4972108.538159872405231, 3907328.559963186271489 ], [ 4972079.830233428627253, 3907283.717398657463491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971916.803769404068589, 3903802.675039737485349 ], [ 4971885.73244084790349, 3903787.322962922975421 ], [ 4971875.036597606725991, 3903809.150687242858112 ], [ 4971852.59595690574497, 3903798.184484085999429 ], [ 4971866.47105609998107, 3903770.172507659997791 ], [ 4971877.404109030030668, 3903775.290940116625279 ], [ 4971900.530496898107231, 3903727.997455722652376 ], [ 4971943.398145037703216, 3903748.833767544478178 ], [ 4971916.803769404068589, 3903802.675039737485349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971682.66036220267415, 3905658.576811102684587 ], [ 4971745.227095426991582, 3905614.634378273505718 ], [ 4971764.468064556829631, 3905641.980416583828628 ], [ 4971701.613419162109494, 3905685.922264716122299 ], [ 4971682.66036220267415, 3905658.576811102684587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971664.390891286544502, 3892214.491559948772192 ], [ 4971693.520621633157134, 3892197.068019865080714 ], [ 4971710.177823620848358, 3892224.773063373751938 ], [ 4971681.048112395219505, 3892242.196585688740015 ], [ 4971664.390891286544502, 3892214.491559948772192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971627.811962357722223, 3902199.590848066378385 ], [ 4971646.500031653791666, 3902216.011776661034673 ], [ 4971621.104442861862481, 3902244.366377080325037 ], [ 4971602.4163778712973, 3902227.945465858094394 ], [ 4971627.811962357722223, 3902199.590848066378385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971422.392538138665259, 3902400.935097597073764 ], [ 4971408.896927212364972, 3902379.790311520453542 ], [ 4971433.69240646623075, 3902364.17897094739601 ], [ 4971446.038808275945485, 3902383.865099045448005 ], [ 4971453.247138765640557, 3902379.144861387554556 ], [ 4971468.752446701750159, 3902403.570603574160486 ], [ 4971449.435388376936316, 3902415.550835319329053 ], [ 4971456.03918201290071, 3902426.122968883253634 ], [ 4971420.576291963458061, 3902448.268730040639639 ], [ 4971399.903650532476604, 3902415.094229238573462 ], [ 4971422.392538138665259, 3902400.935097597073764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971131.808290650136769, 3907061.276752370409667 ], [ 4971155.642857631668448, 3907095.549415363464504 ], [ 4971105.766952543519437, 3907130.049365376587957 ], [ 4971081.932352794334292, 3907095.7767458925955 ], [ 4971131.808290650136769, 3907061.276752370409667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971121.548366733826697, 3898779.825201556552202 ], [ 4971162.47466438356787, 3898764.971833912655711 ], [ 4971168.779282244853675, 3898782.097658869344741 ], [ 4971205.093926662579179, 3898769.056442329194397 ], [ 4971199.935312364250422, 3898755.209909870289266 ], [ 4971239.420243776403368, 3898741.082241166383028 ], [ 4971267.501731466501951, 3898818.694203977938741 ], [ 4971226.576134223490953, 3898833.183283283375204 ], [ 4971220.558229070156813, 3898816.786237503401935 ], [ 4971183.666929858736694, 3898830.190492276567966 ], [ 4971188.825537997297943, 3898844.037022222299129 ], [ 4971149.9174949452281, 3898857.80170662747696 ], [ 4971121.548366733826697, 3898779.825201556552202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970760.751767274923623, 3896071.852819855790585 ], [ 4970787.051290759816766, 3896024.56443180097267 ], [ 4970839.710943932645023, 3896053.427759713027626 ], [ 4970826.127724573016167, 3896077.799384758342057 ], [ 4970814.617255026474595, 3896071.587956327944994 ], [ 4970802.188940030522645, 3896094.505204962100834 ], [ 4970760.751767274923623, 3896071.852819855790585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970576.945447313599288, 3904406.096755694132298 ], [ 4970550.132634834386408, 3904423.88998895464465 ], [ 4970532.61463122908026, 3904398.004529545083642 ], [ 4970559.428125994279981, 3904379.847148951608688 ], [ 4970576.945447313599288, 3904406.096755694132298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970531.428595181554556, 3911637.678213866893202 ], [ 4970465.747182001359761, 3911661.954719993751496 ], [ 4970451.136652254499495, 3911622.965728447772563 ], [ 4970516.818147357553244, 3911598.689187194220722 ], [ 4970531.428595181554556, 3911637.678213866893202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970325.2487578028813, 3897477.687204262707382 ], [ 4970366.467952230013907, 3897461.01251889532432 ], [ 4970376.503161882050335, 3897486.155816869810224 ], [ 4970371.026561486534774, 3897488.330587183125317 ], [ 4970377.620683050714433, 3897505.092611295171082 ], [ 4970342.166836612857878, 3897519.228900018148124 ], [ 4970325.2487578028813, 3897477.687204262707382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970135.309394421987236, 3902613.764442323241383 ], [ 4970111.008100984618068, 3902674.894250542391092 ], [ 4970087.986532708629966, 3902665.749130120500922 ], [ 4970096.955499902367592, 3902642.825179809704423 ], [ 4970086.883592940866947, 3902638.801434421446174 ], [ 4970101.927885734476149, 3902600.595026917289943 ], [ 4970135.309394421987236, 3902613.764442323241383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970011.489934403449297, 3897210.209046385716647 ], [ 4970027.822026290930808, 3897257.575550072826445 ], [ 4970002.747179550118744, 3897266.269174237269908 ], [ 4970000.454791967757046, 3897259.710680409800261 ], [ 4969976.244719163514674, 3897268.041767916176468 ], [ 4969962.204943707212806, 3897227.233785484451801 ], [ 4970011.489934403449297, 3897210.209046385716647 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969696.213956096209586, 3907046.633695549331605 ], [ 4969723.589597184211016, 3907034.302581621799618 ], [ 4969738.790074067190289, 3907067.466013630852103 ], [ 4969750.892964517697692, 3907062.025877782143652 ], [ 4969760.643777106888592, 3907083.527264406438917 ], [ 4969755.744380256161094, 3907086.067343160975724 ], [ 4969761.479953453876078, 3907098.822315686848015 ], [ 4969730.070071672089398, 3907112.966772087384015 ], [ 4969724.907716916874051, 3907101.669368071015924 ], [ 4969713.957221924327314, 3907106.747462259605527 ], [ 4969707.648396524600685, 3907092.534938252996653 ], [ 4969715.428392006084323, 3907089.271782433148474 ], [ 4969696.213956096209586, 3907046.633695549331605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969685.497647701762617, 3902768.069778735749424 ], [ 4969714.793650890700519, 3902811.090051141567528 ], [ 4969692.016064169816673, 3902826.342485587112606 ], [ 4969688.282236819155514, 3902820.873790569603443 ], [ 4969655.125124223530293, 3902843.026039135176688 ], [ 4969629.850878589786589, 3902805.475035625509918 ], [ 4969685.497647701762617, 3902768.069778735749424 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969398.095758447423577, 3903251.119335726369172 ], [ 4969427.794552510604262, 3903230.052958972752094 ], [ 4969444.454392107203603, 3903253.751351026818156 ], [ 4969414.755611071363091, 3903274.817709681577981 ], [ 4969398.095758447423577, 3903251.119335726369172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969361.814331393688917, 3898423.047407033387572 ], [ 4969358.335257403552532, 3898435.785730650182813 ], [ 4969334.728542472235858, 3898429.553278509061784 ], [ 4969338.207606069743633, 3898416.814951880834997 ], [ 4969361.814331393688917, 3898423.047407033387572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969318.34471174608916, 3905978.320612094830722 ], [ 4969402.503740573301911, 3905933.683094832114875 ], [ 4969432.063121791929007, 3905988.719965019728988 ], [ 4969347.90421574190259, 3906033.357391216792166 ], [ 4969318.34471174608916, 3905978.320612094830722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969197.453347249887884, 3909987.199394769500941 ], [ 4969268.252835087478161, 3910000.434611082542688 ], [ 4969266.507226133719087, 3910010.627203796990216 ], [ 4969279.170172021724284, 3910013.198765984736383 ], [ 4969269.289884054102004, 3910064.523801394738257 ], [ 4969242.523899652063847, 3910059.742252198047936 ], [ 4969244.559345168992877, 3910048.457777595613152 ], [ 4969187.862402953207493, 3910037.796710215043277 ], [ 4969197.453347249887884, 3909987.199394769500941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969100.073256707750261, 3898059.178458291571587 ], [ 4969080.224095177836716, 3898045.306192591786385 ], [ 4969113.719403901137412, 3897998.028926318511367 ], [ 4969158.019671272486448, 3898029.42302235821262 ], [ 4969132.032450374215841, 3898065.789709975011647 ], [ 4969107.580730238929391, 3898048.632056016474962 ], [ 4969100.073256707750261, 3898059.178458291571587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968853.283411633223295, 3899332.467237467877567 ], [ 4968801.997267968021333, 3899343.664489770308137 ], [ 4968789.999944288283587, 3899287.567215654067695 ], [ 4968826.879748480394483, 3899279.621607644017786 ], [ 4968833.735970933921635, 3899311.313072155229747 ], [ 4968848.141751342453063, 3899308.425538025796413 ], [ 4968853.283411633223295, 3899332.467237467877567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968788.806968074291945, 3893935.952114507555962 ], [ 4968801.596695304848254, 3893871.159765764139593 ], [ 4968832.121880657039583, 3893877.03984118392691 ], [ 4968827.4721510251984, 3893899.971740897744894 ], [ 4968836.68718169350177, 3893901.808696293272078 ], [ 4968832.615526176989079, 3893923.649231590330601 ], [ 4968822.536292172037065, 3893921.810748248361051 ], [ 4968818.4678726606071, 3893941.83064642874524 ], [ 4968788.806968074291945, 3893935.952114507555962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968733.351863254792988, 3898258.071334527339786 ], [ 4968781.165732432156801, 3898257.063453722279519 ], [ 4968781.967343501746655, 3898292.385478929616511 ], [ 4968758.92483168374747, 3898292.708870828617364 ], [ 4968758.904236271046102, 3898304.360993816517293 ], [ 4968734.420975658111274, 3898305.045990152750164 ], [ 4968733.351863254792988, 3898258.071334527339786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968428.882199051789939, 3901391.240598106291145 ], [ 4968398.016149943694472, 3901420.316884099971503 ], [ 4968362.083804316818714, 3901382.384284528903663 ], [ 4968392.661867343820632, 3901353.307452767156065 ], [ 4968428.882199051789939, 3901391.240598106291145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968273.307407703250647, 3906033.276059510651976 ], [ 4968290.815676506608725, 3906065.350291511043906 ], [ 4968290.239158942364156, 3906065.713413928635418 ], [ 4968309.755311751738191, 3906102.160754297859967 ], [ 4968282.952066278085113, 3906116.314962418284267 ], [ 4968245.927595562301576, 3906047.793426764197648 ], [ 4968273.307407703250647, 3906033.276059510651976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968050.783724763430655, 3902860.211435792967677 ], [ 4968073.559080004692078, 3902845.685869703534991 ], [ 4968078.153983105905354, 3902852.97649510204792 ], [ 4968104.10088939126581, 3902836.271695758216083 ], [ 4968129.661398333497345, 3902876.006546549033374 ], [ 4968109.480344722047448, 3902889.080064946785569 ], [ 4968116.085968682542443, 3902899.287250920664519 ], [ 4968099.365068764425814, 3902909.817894651554525 ], [ 4968093.62145890109241, 3902900.704608180560172 ], [ 4968081.513226747512817, 3902908.330255823675543 ], [ 4968050.783724763430655, 3902860.211435792967677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967587.805160039104521, 3899636.853373296558857 ], [ 4967618.052381125278771, 3899633.264235306996852 ], [ 4967622.591417863965034, 3899673.326393644791096 ], [ 4967592.344869067892432, 3899676.55139745073393 ], [ 4967587.805160039104521, 3899636.853373296558857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966830.034288566559553, 3910172.427690385840833 ], [ 4966754.593188617378473, 3910179.582460984122008 ], [ 4966751.201338733546436, 3910142.435194637160748 ], [ 4966826.641924331896007, 3910135.644546197261661 ], [ 4966830.034288566559553, 3910172.427690385840833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966405.196204130537808, 3898975.400832055136561 ], [ 4966410.718677232973278, 3898945.551444583106786 ], [ 4966439.511741722002625, 3898950.697659146506339 ], [ 4966433.700609577819705, 3898980.910685657057911 ], [ 4966405.196204130537808, 3898975.400832055136561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966266.078952729701996, 3911182.673284487333149 ], [ 4966299.191248780116439, 3911179.451592239085585 ], [ 4966302.875747033394873, 3911214.050385930109769 ], [ 4966269.763493158854544, 3911217.272073712665588 ], [ 4966266.078952729701996, 3911182.673284487333149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965679.366393966600299, 3892369.249048260506243 ], [ 4965679.279741521924734, 3892421.683429891243577 ], [ 4965688.498501857742667, 3892421.698666284326464 ], [ 4965688.467204202897847, 3892440.633304484188557 ], [ 4965679.248450360260904, 3892440.618068095762283 ], [ 4965679.226185495965183, 3892454.090791567694396 ], [ 4965648.112906814552844, 3892454.039392134174705 ], [ 4965648.470146323554218, 3892412.165187111590058 ], [ 4965638.675209987908602, 3892412.149013126734644 ], [ 4965639.008988071233034, 3892384.475787249859422 ], [ 4965646.211154553107917, 3892384.487679625861347 ], [ 4965646.236409336328506, 3892369.194318447262049 ], [ 4965679.366393966600299, 3892369.249048260506243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965661.100621039047837, 3901853.704026237595826 ], [ 4965641.099729218520224, 3901932.323212413582951 ], [ 4965600.222776877693832, 3901922.060065256431699 ], [ 4965620.511541909538209, 3901843.441324606537819 ], [ 4965661.100621039047837, 3901853.704026237595826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965491.997392608784139, 3903986.504033199511468 ], [ 4965531.421832053922117, 3904002.590738640166819 ], [ 4965519.857156501151621, 3904030.609784270171076 ], [ 4965480.432751322165132, 3904014.523095519281924 ], [ 4965491.997392608784139, 3903986.504033199511468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965456.854976950213313, 3899616.149885408580303 ], [ 4965449.030825585126877, 3899645.26743334159255 ], [ 4965404.120586140081286, 3899633.541451243218035 ], [ 4965411.944692201912403, 3899604.42389044445008 ], [ 4965456.854976950213313, 3899616.149885408580303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965333.905471888370812, 3903986.608357851859182 ], [ 4965337.987125426530838, 3903956.028037561103702 ], [ 4965380.02070473972708, 3903961.558997794054449 ], [ 4965375.939004178158939, 3903992.13931179838255 ], [ 4965333.905471888370812, 3903986.608357851859182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965193.749358261935413, 3891075.066507296636701 ], [ 4965225.149951212108135, 3891076.574361647013575 ], [ 4965224.849939176812768, 3891083.856438078917563 ], [ 4965238.965676873922348, 3891084.607786257285625 ], [ 4965237.17869121953845, 3891120.289442014880478 ], [ 4965191.662429332733154, 3891118.030242809094489 ], [ 4965193.749358261935413, 3891075.066507296636701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965150.894449087791145, 3901965.746270787902176 ], [ 4965174.504375202581286, 3901968.69789392221719 ], [ 4965168.36745469737798, 3902023.307470526080579 ], [ 4965130.936750646680593, 3902018.876759993378073 ], [ 4965135.02678900025785, 3901983.198629091493785 ], [ 4965148.847037614323199, 3901985.041853591334075 ], [ 4965150.894449087791145, 3901965.746270787902176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965032.227136963047087, 3897733.266974666621536 ], [ 4965065.918260232545435, 3897738.419690159149468 ], [ 4965068.538423026911914, 3897721.309862037189305 ], [ 4965091.862871071323752, 3897724.989193218760192 ], [ 4965081.384556776843965, 3897791.971984088886529 ], [ 4965036.751376198604703, 3897784.980773006565869 ], [ 4965039.078741393983364, 3897770.783502859063447 ], [ 4965026.697055105119944, 3897768.578556024003774 ], [ 4965032.227136963047087, 3897733.266974666621536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965016.008590620011091, 3900617.879109536763281 ], [ 4964984.326985360123217, 3900618.919928647577763 ], [ 4964983.23246500454843, 3900583.597499132156372 ], [ 4965014.914111849851906, 3900582.556678753346205 ], [ 4965016.008590620011091, 3900617.879109536763281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964937.783884296193719, 3897537.211501623038203 ], [ 4964934.271879839710891, 3897571.43398863542825 ], [ 4964883.010623074136674, 3897566.252912029158324 ], [ 4964886.522562908008695, 3897532.030418422538787 ], [ 4964937.783884296193719, 3897537.211501623038203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964835.821825372986495, 3898602.12576346937567 ], [ 4964863.467021813616157, 3898605.083646470215172 ], [ 4964864.344671444036067, 3898596.710081534925848 ], [ 4964881.046881338581443, 3898598.5578383365646 ], [ 4964879.584911749698222, 3898612.02827370306477 ], [ 4964915.293467245995998, 3898615.727559765800834 ], [ 4964912.367130973376334, 3898644.124943277798593 ], [ 4964832.311266301199794, 3898635.620027476921678 ], [ 4964835.821825372986495, 3898602.12576346937567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964818.1706955851987, 3904159.821964491624385 ], [ 4964771.795494744554162, 3904168.121835027355701 ], [ 4964766.085817190818489, 3904137.525569904129952 ], [ 4964812.461069025099277, 3904129.225689670536667 ], [ 4964818.1706955851987, 3904159.821964491624385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964816.066393665038049, 3899950.83164145424962 ], [ 4964860.985810840502381, 3899956.730574452318251 ], [ 4964856.907061675563455, 3899985.490246828645468 ], [ 4964812.276287158019841, 3899979.227658031973988 ], [ 4964816.066393665038049, 3899950.83164145424962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964709.763876417651772, 3903708.123831883072853 ], [ 4964656.50205528922379, 3903700.755127920303494 ], [ 4964661.165381960570812, 3903666.170209124684334 ], [ 4964714.427859341725707, 3903673.17479208111763 ], [ 4964709.763876417651772, 3903708.123831883072853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964570.213025450706482, 3897384.41037909174338 ], [ 4964563.826423382386565, 3897415.351110778283328 ], [ 4964537.911685498431325, 3897410.211548620369285 ], [ 4964544.298258928582072, 3897379.270810870453715 ], [ 4964570.213025450706482, 3897384.41037909174338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964104.117274771444499, 3900671.757461888715625 ], [ 4964087.920329427346587, 3900715.06315828114748 ], [ 4964059.713404980488122, 3900704.458432782907039 ], [ 4964076.19830915145576, 3900661.153178581502289 ], [ 4964104.117274771444499, 3900671.757461888715625 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964086.198511481285095, 3898542.659847044851631 ], [ 4964092.027410745620728, 3898499.701806079596281 ], [ 4964128.31052175257355, 3898504.493351533077657 ], [ 4964122.481565504334867, 3898547.451384743209928 ], [ 4964086.198511481285095, 3898542.659847044851631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964065.795125703327358, 3904298.439067402388901 ], [ 4964068.976599514484406, 3904289.704987972509116 ], [ 4964091.712015626952052, 3904298.116241492796689 ], [ 4964074.940179266035557, 3904342.149383208714426 ], [ 4964033.498499953188002, 3904326.78986250795424 ], [ 4964046.800850264728069, 3904291.490318342112005 ], [ 4964065.795125703327358, 3904298.439067402388901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963883.285647331736982, 3900813.417113420087844 ], [ 4963929.932380361482501, 3900818.953104984015226 ], [ 4963926.427278312854469, 3900849.898625208064914 ], [ 4963879.780598299577832, 3900844.362639619037509 ], [ 4963883.285647331736982, 3900813.417113420087844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963780.792367110960186, 3904249.557043347507715 ], [ 4963757.507388898171484, 3904224.395150177646428 ], [ 4963792.113290891051292, 3904192.406369467265904 ], [ 4963815.39826456271112, 3904217.568292132113129 ], [ 4963780.792367110960186, 3904249.557043347507715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963706.838808298110962, 3904034.238591671921313 ], [ 4963711.775009670294821, 3904008.393081115558743 ], [ 4963738.54742502886802, 3904013.533232865855098 ], [ 4963733.323237059637904, 3904039.378283353056759 ], [ 4963706.838808298110962, 3904034.238591671921313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963096.435887138359249, 3894549.877495482098311 ], [ 4963092.072995205409825, 3894576.81625414127484 ], [ 4963077.385173033922911, 3894574.608622540254146 ], [ 4963072.729709259234369, 3894604.459961949381977 ], [ 4963028.954339098185301, 3894597.837570512667298 ], [ 4963030.990587273612618, 3894585.096218253020197 ], [ 4963021.198705801740289, 3894583.624485195614398 ], [ 4963027.893195287324488, 3894539.21114423731342 ], [ 4963096.435887138359249, 3894549.877495482098311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962273.082945877686143, 3896857.916323328856379 ], [ 4962236.199553676880896, 3896867.327426976989955 ], [ 4962228.469139914028347, 3896836.728760914411396 ], [ 4962209.451356104575098, 3896841.43345914548263 ], [ 4962203.151669515296817, 3896817.027182803954929 ], [ 4962259.0529321487993, 3896802.911357581615448 ], [ 4962273.082945877686143, 3896857.916323328856379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962047.535360058769584, 3896866.31216017017141 ], [ 4962045.780601822771132, 3896883.787714171223342 ], [ 4962037.717182893306017, 3896882.683089036960155 ], [ 4962036.548453784547746, 3896893.605201501399279 ], [ 4962048.068329438567162, 3896894.715072199236602 ], [ 4962045.441168772988021, 3896917.651245427783579 ], [ 4961988.995086022652686, 3896911.375435649417341 ], [ 4961994.54508241545409, 3896860.405713890679181 ], [ 4962047.535360058769584, 3896866.31216017017141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961731.544465898536146, 3898786.618721230886877 ], [ 4961773.843592829070985, 3898812.899816912598908 ], [ 4961757.098502113483846, 3898839.456061674281955 ], [ 4961714.799400720745325, 3898813.174991933163255 ], [ 4961731.544465898536146, 3898786.618721230886877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961711.160314375534654, 3893767.792631085962057 ], [ 4961714.956220369786024, 3893733.934361460618675 ], [ 4961745.486936937086284, 3893737.257493400480598 ], [ 4961744.612299148924649, 3893744.17462401650846 ], [ 4961776.006667718291283, 3893747.863220456521958 ], [ 4961771.046325327828526, 3893789.73056154511869 ], [ 4961750.597081625834107, 3893787.150844289921224 ], [ 4961749.140266933478415, 3893798.072515349835157 ], [ 4961730.994503208436072, 3893796.224540947470814 ], [ 4961732.452955605462193, 3893784.210484815761447 ], [ 4961719.491923484951258, 3893782.734455035068095 ], [ 4961720.953112300485373, 3893768.899758232291788 ], [ 4961711.160314375534654, 3893767.792631085962057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961681.041900156065822, 3896363.25975413620472 ], [ 4961712.720165447331965, 3896367.676972699351609 ], [ 4961701.072924549691379, 3896451.045079817064106 ], [ 4961669.394755654036999, 3896446.627874766942114 ], [ 4961681.041900156065822, 3896363.25975413620472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961554.572199697606266, 3892148.277183088939637 ], [ 4961549.054840423166752, 3892177.399192990269512 ], [ 4961558.559043722227216, 3892179.234083527233452 ], [ 4961553.913048392161727, 3892203.623728671576828 ], [ 4961502.359363974072039, 3892194.079151066485792 ], [ 4961506.424229145981371, 3892172.965783633291721 ], [ 4961494.32776466012001, 3892170.762902515940368 ], [ 4961500.426150833256543, 3892138.364594927988946 ], [ 4961554.572199697606266, 3892148.277183088939637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961500.424295421689749, 3898103.528146503027529 ], [ 4961552.62185978423804, 3898060.274917946197093 ], [ 4961573.610053936950862, 3898085.431350497528911 ], [ 4961521.413050030358136, 3898128.320409975480288 ], [ 4961500.424295421689749, 3898103.528146503027529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961160.038477360270917, 3896122.519910860806704 ], [ 4961185.668674445711076, 3896126.563398932572454 ], [ 4961182.180742338299751, 3896147.67771958373487 ], [ 4961194.564029265195131, 3896149.516764821484685 ], [ 4961185.839871247299016, 3896205.215594114270061 ], [ 4961146.674841080792248, 3896198.967237573582679 ], [ 4961149.873611782677472, 3896178.58074122807011 ], [ 4961135.187047607265413, 3896176.010040175169706 ], [ 4961137.511947844177485, 3896162.176574394572526 ], [ 4961153.350703966803849, 3896164.748987029772252 ], [ 4961160.038477360270917, 3896122.519910860806704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961040.266306945122778, 3899781.846228821203113 ], [ 4961030.770686103031039, 3899776.006090628914535 ], [ 4961012.870050404220819, 3899805.83827335992828 ], [ 4960982.655677518807352, 3899787.951213726308197 ], [ 4960996.226484259590507, 3899764.66695025889203 ], [ 4961003.132203261367977, 3899769.046724922489375 ], [ 4961016.413413229398429, 3899746.854433929547668 ], [ 4961049.217182192020118, 3899766.566015893593431 ], [ 4961040.266306945122778, 3899781.846228821203113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960874.226511667482555, 3909645.915744716767222 ], [ 4960850.030425527133048, 3909654.255114611238241 ], [ 4960844.583906399086118, 3909638.225265208631754 ], [ 4960814.338669922202826, 3909648.740547186695039 ], [ 4960801.724600761197507, 3909612.308742903638631 ], [ 4960814.110823492519557, 3909607.957391775678843 ], [ 4960810.097350992262363, 3909596.299247918650508 ], [ 4960826.804262030869722, 3909590.49773561861366 ], [ 4960829.957776627503335, 3909599.605688876472414 ], [ 4960855.306051549501717, 3909590.903867232613266 ], [ 4960874.226511667482555, 3909645.915744716767222 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960783.007834263145924, 3896498.472557137254626 ], [ 4960753.922490774653852, 3896493.696114915888757 ], [ 4960757.993085385300219, 3896467.848908923566341 ], [ 4960747.625681019388139, 3896466.377155695110559 ], [ 4960755.476689945906401, 3896416.138834789395332 ], [ 4960795.217580414377153, 3896422.38746966002509 ], [ 4960783.007834263145924, 3896498.472557137254626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960537.707605889067054, 3909816.19961913023144 ], [ 4960493.90959492046386, 3909841.624874653760344 ], [ 4960469.499256525188684, 3909799.714009457267821 ], [ 4960525.111339096911252, 3909767.387467563617975 ], [ 4960541.768025158904493, 3909795.814145038370043 ], [ 4960529.666106784716249, 3909802.714964173268527 ], [ 4960537.707605889067054, 3909816.19961913023144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960487.667057697661221, 3893406.94804775249213 ], [ 4960432.353338396176696, 3893409.052144856192172 ], [ 4960430.409511935897171, 3893359.16367366630584 ], [ 4960452.304366215132177, 3893358.467334718443453 ], [ 4960452.031157253310084, 3893348.271331603173167 ], [ 4960485.45013740286231, 3893346.86356918187812 ], [ 4960487.667057697661221, 3893406.94804775249213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960457.644783657975495, 3897992.019660946913064 ], [ 4960465.484188361093402, 3897949.063788882922381 ], [ 4960496.007078724913299, 3897954.570283691864461 ], [ 4960487.879600297659636, 3897997.52572653349489 ], [ 4960457.644783657975495, 3897992.019660946913064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960239.233417231589556, 3896264.635528182145208 ], [ 4960271.193206631578505, 3896273.78513720119372 ], [ 4960256.428938768804073, 3896324.74182016402483 ], [ 4960224.469732959754765, 3896315.228099821601063 ], [ 4960239.233417231589556, 3896264.635528182145208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959952.860676712356508, 3908301.289186526089907 ], [ 4959964.065794877707958, 3908317.691269432194531 ], [ 4959938.128194738179445, 3908335.132246010936797 ], [ 4959926.922543901950121, 3908319.094305001664907 ], [ 4959952.860676712356508, 3908301.289186526089907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959841.555124067701399, 3900599.391292847692966 ], [ 4959782.204957997426391, 3900614.963740902487189 ], [ 4959775.617008193396032, 3900589.829306634608656 ], [ 4959796.072751763276756, 3900584.396682012826204 ], [ 4959787.479256208986044, 3900551.97676340630278 ], [ 4959824.356733989901841, 3900542.562278983183205 ], [ 4959831.231603498570621, 3900568.425396967213601 ], [ 4959845.060782679356635, 3900564.803949462715536 ], [ 4959849.643141790293157, 3900582.65291420603171 ], [ 4959837.830485366284847, 3900585.913124224636704 ], [ 4959841.555124067701399, 3900599.391292847692966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959799.846617365255952, 3908392.102217524312437 ], [ 4959768.150374921970069, 3908409.899229167960584 ], [ 4959745.176131594926119, 3908368.719385544769466 ], [ 4959754.685166438110173, 3908363.271030727308244 ], [ 4959762.726443235762417, 3908377.483704241923988 ], [ 4959784.913153836503625, 3908365.499158563092351 ], [ 4959799.846617365255952, 3908392.102217524312437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959646.596399345435202, 3899176.455634369049221 ], [ 4959648.358295775018632, 3899152.789703033864498 ], [ 4959635.399219883605838, 3899151.678802638314664 ], [ 4959637.156427561305463, 3899131.290033938828856 ], [ 4959650.979556267149746, 3899132.40216962620616 ], [ 4959652.155025062151253, 3899116.018000592943281 ], [ 4959686.712602457031608, 3899118.980436995625496 ], [ 4959685.538674836046994, 3899134.272216877900064 ], [ 4959693.890048796311021, 3899135.012420595623553 ], [ 4959690.08128734305501, 3899180.159089926164597 ], [ 4959646.596399345435202, 3899176.455634369049221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959550.284901066683233, 3906935.217906659469008 ], [ 4959569.587684902362525, 3906927.234530318062752 ], [ 4959562.988120656460524, 3906911.203325290698558 ], [ 4959587.764733261428773, 3906901.042977455072105 ], [ 4959607.276994325220585, 3906948.043811935931444 ], [ 4959563.197652138769627, 3906966.187509289477021 ], [ 4959550.284901066683233, 3906935.217906659469008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959425.313406744971871, 3898832.765900800935924 ], [ 4959383.26645890250802, 3898830.157304922584444 ], [ 4959382.67389261815697, 3898841.808620976749808 ], [ 4959367.698533619754016, 3898840.694989626295865 ], [ 4959371.533655094914138, 3898776.613567715045065 ], [ 4959398.893313354812562, 3898778.108905410394073 ], [ 4959398.010137174278498, 3898791.580457753036171 ], [ 4959427.673405451700091, 3898793.443224253598601 ], [ 4959425.313406744971871, 3898832.765900800935924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959221.444862690754235, 3898594.700314281508327 ], [ 4959219.069203421473503, 3898645.311007171869278 ], [ 4959197.468763788230717, 3898644.552242902107537 ], [ 4959197.170462604612112, 3898651.834418828133494 ], [ 4959173.554404814727604, 3898650.708698325790465 ], [ 4959176.516807821579278, 3898592.4521025842987 ], [ 4959221.444862690754235, 3898594.700314281508327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959018.252805333584547, 3904225.691513719968498 ], [ 4959038.373634798452258, 3904251.573106473777443 ], [ 4959014.73537025321275, 3904269.746431053616107 ], [ 4958994.614531699568033, 3904243.864855709951371 ], [ 4959018.252805333584547, 3904225.691513719968498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959022.279029472731054, 3897467.074086094275117 ], [ 4959011.046285357326269, 3897466.694174154195935 ], [ 4959010.744441794231534, 3897476.52524919854477 ], [ 4958979.062955744564533, 3897475.024243022315204 ], [ 4958980.554739641025662, 3897438.249248217791319 ], [ 4959023.46902432013303, 3897440.130168555304408 ], [ 4959022.279029472731054, 3897467.074086094275117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958903.795212361030281, 3898773.769464342854917 ], [ 4958890.553514433093369, 3898768.653099081013352 ], [ 4958883.617114213295281, 3898785.757490378338844 ], [ 4958863.466550411656499, 3898778.082556728739291 ], [ 4958870.692996734753251, 3898759.522046803962439 ], [ 4958848.527299280278385, 3898751.116044335067272 ], [ 4958864.425895105116069, 3898709.991613837890327 ], [ 4958920.271447757259011, 3898731.553485848940909 ], [ 4958903.795212361030281, 3898773.769464342854917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957880.937784243375063, 3906243.953350704163313 ], [ 4957897.610386126674712, 3906264.367448689416051 ], [ 4957874.550040333531797, 3906282.906714871991426 ], [ 4957857.877928568050265, 3906262.128500140737742 ], [ 4957880.937784243375063, 3906243.953350704163313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957812.179941357113421, 3900697.053912054281682 ], [ 4957825.493736434727907, 3900648.642701296601444 ], [ 4957858.601118724793196, 3900657.791033391375095 ], [ 4957845.287764277309179, 3900705.838098410051316 ], [ 4957812.179941357113421, 3900697.053912054281682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957765.085765654221177, 3898263.87316884752363 ], [ 4957814.042852740734816, 3898269.037538456730545 ], [ 4957809.961984783411026, 3898304.716702925972641 ], [ 4957761.292985199950635, 3898299.552731886971742 ], [ 4957765.085765654221177, 3898263.87316884752363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957680.763217843137681, 3896725.675418959930539 ], [ 4957647.928614002652466, 3896724.174420868977904 ], [ 4957650.59050130750984, 3896672.835779488552362 ], [ 4957683.425167717970908, 3896674.336780781392008 ], [ 4957680.763217843137681, 3896725.675418959930539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957412.19701559189707, 3900234.431512805633247 ], [ 4957420.29489934258163, 3900209.317428228911012 ], [ 4957448.218911619856954, 3900218.458276310935616 ], [ 4957439.833002050407231, 3900243.571964817587286 ], [ 4957412.19701559189707, 3900234.431512805633247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957309.536383985541761, 3898185.698529969435185 ], [ 4957311.299216075800359, 3898159.847685120999813 ], [ 4957336.642951718531549, 3898161.702347299084067 ], [ 4957334.880095362663269, 3898187.553190520498902 ], [ 4957309.536383985541761, 3898185.698529969435185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957265.250171991996467, 3897273.858587081544101 ], [ 4957264.354845451191068, 3897297.161676968913525 ], [ 4957269.827491774223745, 3897297.169009944424033 ], [ 4957268.634857563301921, 3897327.390162724070251 ], [ 4957262.586637855507433, 3897327.01792930951342 ], [ 4957261.692778785713017, 3897349.228633371647447 ], [ 4957229.434493555687368, 3897348.093046600930393 ], [ 4957230.041267111897469, 3897325.153698169626296 ], [ 4957224.856660208664834, 3897325.146758786868304 ], [ 4957225.761211248114705, 3897294.925218603108078 ], [ 4957232.097472709603608, 3897295.297829297371209 ], [ 4957232.703274728730321, 3897273.086739373393357 ], [ 4957265.250171991996467, 3897273.858587081544101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956906.28083608392626, 3892772.016934442799538 ], [ 4956957.308679068461061, 3892744.04676214652136 ], [ 4956975.70146189071238, 3892777.57102393778041 ], [ 4956924.385581112466753, 3892805.540779585018754 ], [ 4956906.28083608392626, 3892772.016934442799538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956622.983510117977858, 3905331.211214383132756 ], [ 4956645.753939237445593, 3905314.127028214279562 ], [ 4956662.713125995360315, 3905336.725511530879885 ], [ 4956640.230652867816389, 3905353.810062792152166 ], [ 4956622.983510117977858, 3905331.211214383132756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956371.042398131452501, 3905320.685073867440224 ], [ 4956347.98515285924077, 3905337.040855486411601 ], [ 4956333.901855084113777, 3905316.995244639925659 ], [ 4956322.373476315289736, 3905324.99108354235068 ], [ 4956293.631386883556843, 3905284.535014932509512 ], [ 4956328.216570047661662, 3905260.54747678199783 ], [ 4956371.042398131452501, 3905320.685073867440224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956153.522731184028089, 3899868.637363180983812 ], [ 4956149.732310999184847, 3899904.31718781311065 ], [ 4956093.578678334131837, 3899898.418250447139144 ], [ 4956094.453554349951446, 3899890.044393056537956 ], [ 4956080.055130220018327, 3899888.569210066460073 ], [ 4956082.970586176030338, 3899861.263233489822596 ], [ 4956153.522731184028089, 3899868.637363180983812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955726.123944693244994, 3894925.391607087571174 ], [ 4955710.612145962193608, 3894891.50772222224623 ], [ 4955759.322765096090734, 3894869.358341318555176 ], [ 4955771.961400410160422, 3894897.412500311154872 ], [ 4955756.396826873533428, 3894904.675096563063562 ], [ 4955758.981884779408574, 3894910.504478671122342 ], [ 4955726.123944693244994, 3894925.391607087571174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955420.517985510639846, 3893318.829217630438507 ], [ 4955479.028143448755145, 3893294.871160237118602 ], [ 4955491.951254272833467, 3893326.566809038631618 ], [ 4955433.729229996912181, 3893350.525205043610185 ], [ 4955420.517985510639846, 3893318.829217630438507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955229.75956460274756, 3899739.643970506265759 ], [ 4955275.247748097404838, 3899753.174328411929309 ], [ 4955266.570649036206305, 3899782.29374727094546 ], [ 4955221.082510511390865, 3899768.763403820805252 ], [ 4955229.75956460274756, 3899739.643970506265759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954856.742296015843749, 3893786.752156450878829 ], [ 4954873.430867588147521, 3893802.430559484288096 ], [ 4954883.238052930682898, 3893792.247222763951868 ], [ 4954903.379360067658126, 3893811.207122982479632 ], [ 4954893.860700946301222, 3893821.026684808544815 ], [ 4954914.001523023471236, 3893840.350721474271268 ], [ 4954890.0606410484761, 3893865.081507345661521 ], [ 4954833.089945419691503, 3893811.119224238675088 ], [ 4954856.742296015843749, 3893786.752156450878829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954446.069893500767648, 3900920.995167541783303 ], [ 4954441.395416112616658, 3900974.88067448977381 ], [ 4954430.164975026622415, 3900973.774416659958661 ], [ 4954429.287505319342017, 3900984.697241731453687 ], [ 4954407.690613033249974, 3900982.48580677760765 ], [ 4954408.856517924927175, 3900971.199206597637385 ], [ 4954383.515682402998209, 3900968.983172211330384 ], [ 4954384.390440483577549, 3900960.245124066248536 ], [ 4954364.233050186187029, 3900958.399629099294543 ], [ 4954367.73385691549629, 3900921.99091580696404 ], [ 4954425.90213986299932, 3900927.52460971288383 ], [ 4954426.48801885638386, 3900919.514467069879174 ], [ 4954446.069893500767648, 3900920.995167541783303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954111.11069917306304, 3894340.762641829438508 ], [ 4954145.146116806194186, 3894305.119642124511302 ], [ 4954138.240549426525831, 3894298.55687408009544 ], [ 4954154.682158944196999, 3894280.734681172762066 ], [ 4954184.031468622386456, 3894308.080282997805625 ], [ 4954133.266369649209082, 3894361.545077603776008 ], [ 4954111.11069917306304, 3894340.762641829438508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953856.839283868670464, 3900676.67071550199762 ], [ 4953893.735288122668862, 3900650.133998946286738 ], [ 4953898.623293616808951, 3900656.69427986908704 ], [ 4953913.612466591410339, 3900645.788586474023759 ], [ 4953907.574682212434709, 3900637.40625477489084 ], [ 4953894.315264767035842, 3900646.857531618792564 ], [ 4953880.514343410730362, 3900627.906002334784716 ], [ 4953912.510036325082183, 3900605.004665124695748 ], [ 4953942.986504519358277, 3900647.280822327826172 ], [ 4953924.826686296612024, 3900660.367425688542426 ], [ 4953941.502222484908998, 3900683.692037024069577 ], [ 4953919.594919960014522, 3900699.687127793673426 ], [ 4953915.857147663831711, 3900694.584761691745371 ], [ 4953885.591311168856919, 3900716.03167567262426 ], [ 4953856.839283868670464, 3900676.67071550199762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953495.681370554491878, 3892759.699016424827278 ], [ 4953505.150963486172259, 3892790.661298112012446 ], [ 4953436.274443480186164, 3892811.334074282087386 ], [ 4953427.379200152121484, 3892781.829017975833267 ], [ 4953450.145996273495257, 3892774.937835445161909 ], [ 4953444.119810722768307, 3892755.267679871525615 ], [ 4953464.293016153387725, 3892749.101660661865026 ], [ 4953469.744332431815565, 3892767.678746253717691 ], [ 4953495.681370554491878, 3892759.699016424827278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953201.235389694571495, 3893507.995793331414461 ], [ 4953220.243118315935135, 3893512.387934554833919 ], [ 4953210.980143238790333, 3893549.882171442266554 ], [ 4953191.972872282378376, 3893545.125908533576876 ], [ 4953201.235389694571495, 3893507.995793331414461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952896.363447721116245, 3892114.843699351884425 ], [ 4952912.475020728074014, 3892133.06908646505326 ], [ 4952897.478943618014455, 3892146.160050306934863 ], [ 4952894.314676744863391, 3892142.150913836434484 ], [ 4952886.528125650249422, 3892149.060188644099981 ], [ 4952873.869334096089005, 3892134.480161558836699 ], [ 4952896.363447721116245, 3892114.843699351884425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952688.939446646720171, 3894577.566206716932356 ], [ 4952681.100860428065062, 3894629.627469121012837 ], [ 4952644.811351388692856, 3894624.123130620922893 ], [ 4952649.455654809251428, 3894593.905858609359711 ], [ 4952640.526977874338627, 3894592.803044555708766 ], [ 4952643.721184832975268, 3894570.959042710717767 ], [ 4952688.939446646720171, 3894577.566206716932356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952308.757618747651577, 3891531.553211431950331 ], [ 4952319.97483969759196, 3891547.587813544087112 ], [ 4952290.277027380652726, 3891568.30881835706532 ], [ 4952279.059797407127917, 3891552.274228451773524 ], [ 4952308.757618747651577, 3891531.553211431950331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952163.044124795123935, 3890474.321406887378544 ], [ 4952195.02946415450424, 3890469.624537419527769 ], [ 4952207.899952206760645, 3890551.568152578547597 ], [ 4952176.490501687861979, 3890556.629797258879989 ], [ 4952171.91556039173156, 3890526.401911207474768 ], [ 4952152.032440480776131, 3890529.656203199643642 ], [ 4952148.886284259147942, 3890509.625547577627003 ], [ 4952168.192786302417517, 3890506.734718194697052 ], [ 4952163.044124795123935, 3890474.321406887378544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951509.339287615381181, 3890464.474553286563605 ], [ 4951510.473684461787343, 3890480.497460960876197 ], [ 4951488.57631919067353, 3890481.565208658576012 ], [ 4951487.441499831154943, 3890465.906429407186806 ], [ 4951509.339287615381181, 3890464.474553286563605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951484.898539051413536, 3888884.132369510363787 ], [ 4951522.644444841891527, 3888882.718329462688416 ], [ 4951522.640755200758576, 3888885.995474102906883 ], [ 4951582.861166674643755, 3888883.878576076589525 ], [ 4951583.695962494239211, 3888910.096708422992378 ], [ 4951528.950373183004558, 3888911.855641564819962 ], [ 4951529.228245805948973, 3888920.959145743399858 ], [ 4951486.008041929453611, 3888922.367020059376955 ], [ 4951484.898539051413536, 3888884.132369510363787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951434.893566682934761, 3890565.982579570263624 ], [ 4951465.72256111446768, 3890564.560696277301759 ], [ 4951467.124214607290924, 3890599.154431398957968 ], [ 4951436.295259760692716, 3890600.576313098426908 ], [ 4951434.893566682934761, 3890565.982579570263624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950821.946005500853062, 3890697.844015740789473 ], [ 4950854.215740221552551, 3890696.058888043276966 ], [ 4950858.448691791854799, 3890776.53584211319685 ], [ 4950825.890949487686157, 3890778.320647883228958 ], [ 4950821.946005500853062, 3890697.844015740789473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950546.401834238320589, 3892654.731521330308169 ], [ 4950619.852055654861033, 3892665.007257477845997 ], [ 4950614.916054235771298, 3892700.322323308791965 ], [ 4950587.552116645500064, 3892696.651164181530476 ], [ 4950585.520037701353431, 3892710.849955686833709 ], [ 4950563.628893613815308, 3892707.913050075992942 ], [ 4950565.662946505472064, 3892691.893616961315274 ], [ 4950541.467514383606613, 3892688.590088442899287 ], [ 4950546.401834238320589, 3892654.731521330308169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950500.58670992217958, 3890545.286976912524551 ], [ 4950503.211757742799819, 3890515.795467036776245 ], [ 4950535.765036613680422, 3890518.379801260773093 ], [ 4950533.139556745067239, 3890548.235435552429408 ], [ 4950500.58670992217958, 3890545.286976912524551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950448.337877362035215, 3892760.950340684968978 ], [ 4950422.987791706807911, 3892759.830435258336365 ], [ 4950423.584108819253743, 3892741.260531833395362 ], [ 4950407.451864903792739, 3892740.878902298863977 ], [ 4950408.03908843640238, 3892730.68394291261211 ], [ 4950449.521055709570646, 3892732.549607319757342 ], [ 4950448.337877362035215, 3892760.950340684968978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950335.146374716423452, 3892205.167731444817036 ], [ 4950363.365649054758251, 3892217.578638091683388 ], [ 4950359.900308142416179, 3892225.221580626443028 ], [ 4950374.009932333603501, 3892231.427043308038265 ], [ 4950357.836381205357611, 3892268.914746031630784 ], [ 4950315.507143354974687, 3892250.662533250171691 ], [ 4950335.146374716423452, 3892205.167731444817036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950317.197079581208527, 3896815.383253045845777 ], [ 4950327.882889877073467, 3896789.177500255871564 ], [ 4950355.23441625200212, 3896800.495110288262367 ], [ 4950344.26054469216615, 3896826.700540625955909 ], [ 4950317.197079581208527, 3896815.383253045845777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950259.778768690302968, 3890232.604301126673818 ], [ 4950232.111993165686727, 3890240.221150138415396 ], [ 4950223.215124105103314, 3890208.168305764440447 ], [ 4950250.881930061616004, 3890200.551447734702379 ], [ 4950259.778768690302968, 3890232.604301126673818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950117.862127527594566, 3891192.65710647823289 ], [ 4950144.663592546246946, 3891185.039206796325743 ], [ 4950144.089350147172809, 3891183.217949123121798 ], [ 4950174.061102970503271, 3891174.511101728305221 ], [ 4950177.218445620499551, 3891185.438341774977744 ], [ 4950191.33963311649859, 3891181.448129657190293 ], [ 4950207.412811629474163, 3891237.54116574767977 ], [ 4950238.53692068811506, 3891228.835631165187806 ], [ 4950247.720351609401405, 3891261.981193345040083 ], [ 4950220.342736721970141, 3891269.598369761835784 ], [ 4950231.248092911206186, 3891308.935960835311562 ], [ 4950179.374747433699667, 3891323.44521991442889 ], [ 4950166.746996735222638, 3891278.279747028369457 ], [ 4950143.692071900703013, 3891284.809266711585224 ], [ 4950117.862127527594566, 3891192.65710647823289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949796.892800813540816, 3896642.956631553824991 ], [ 4949834.927381766960025, 3896630.616656006779522 ], [ 4949836.937086711637676, 3896636.808990695048124 ], [ 4949884.768587497062981, 3896621.202342985197902 ], [ 4949895.103925907053053, 3896653.25673017418012 ], [ 4949809.237943540327251, 3896681.20331815071404 ], [ 4949796.892800813540816, 3896642.956631553824991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949636.89295597281307, 3895408.753567004110664 ], [ 4949575.770202981308103, 3895461.123667542822659 ], [ 4949550.164475257508457, 3895431.60224905796349 ], [ 4949592.835244314745069, 3895394.870176596101373 ], [ 4949596.00000309292227, 3895398.514803502708673 ], [ 4949614.452387643046677, 3895382.512591665610671 ], [ 4949636.89295597281307, 3895408.753567004110664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948646.995685830712318, 3898656.488380362745374 ], [ 4948637.468040362000465, 3898679.054711194243282 ], [ 4948613.572825655341148, 3898668.834742767736316 ], [ 4948623.100454663857818, 3898646.268403609283268 ], [ 4948646.995685830712318, 3898656.488380362745374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948266.395155232399702, 3900214.943015915341675 ], [ 4948271.268138564191759, 3900237.888106004334986 ], [ 4948240.157651695422828, 3900244.047056768089533 ], [ 4948241.877255499362946, 3900252.423774279188365 ], [ 4948230.642970656044781, 3900254.597274420782924 ], [ 4948224.337982756085694, 3900223.639893784187734 ], [ 4948266.395155232399702, 3900214.943015915341675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946763.61034463904798, 3891397.910214874893427 ], [ 4946789.536328254267573, 3891400.847855103667825 ], [ 4946786.922355935908854, 3891423.057186781428754 ], [ 4946761.284835962578654, 3891419.75569462031126 ], [ 4946763.61034463904798, 3891397.910214874893427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945927.055694085545838, 3889426.833367617800832 ], [ 4945942.636155564337969, 3889402.815244846045971 ], [ 4945991.875621942803264, 3889434.175490071065724 ], [ 4945976.295134565792978, 3889458.193584741093218 ], [ 4945927.055694085545838, 3889426.833367617800832 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943738.08954999409616, 3890270.418093850370497 ], [ 4943729.993262371048331, 3890305.367595571558923 ], [ 4943712.421963423490524, 3890301.347503755241632 ], [ 4943710.976551491767168, 3890307.17234165687114 ], [ 4943695.133600684814155, 3890303.517832869663835 ], [ 4943696.579009380191565, 3890297.692994131706655 ], [ 4943680.44794197473675, 3890294.038253493607044 ], [ 4943688.544168568216264, 3890259.088737071026117 ], [ 4943738.08954999409616, 3890270.418093850370497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943372.827670843340456, 3889495.979480841662735 ], [ 4943410.026953784748912, 3889457.048453936353326 ], [ 4943437.376832820475101, 3889482.924072771798819 ], [ 4943413.442649221979082, 3889507.665014453232288 ], [ 4943419.200495516881347, 3889513.131676300428808 ], [ 4943405.647274658083916, 3889527.321484054904431 ], [ 4943372.827670843340456, 3889495.979480841662735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943286.493236298672855, 3891130.478441199287772 ], [ 4943329.130854488350451, 3891131.969934049528092 ], [ 4943327.953038199804723, 3891162.919847874436527 ], [ 4943285.603568797931075, 3891161.428592990152538 ], [ 4943286.493236298672855, 3891130.478441199287772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942790.268052910454571, 3889837.422373499255627 ], [ 4942829.710731732659042, 3889873.502647051587701 ], [ 4942799.144136676564813, 3889906.613756152335554 ], [ 4942759.701756817288697, 3889870.169399256817997 ], [ 4942790.268052910454571, 3889837.422373499255627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992945.551679466851056, 3912418.232625392265618 ], [ 4992945.2142468187958, 3912436.802550906315446 ], [ 4992930.533757302910089, 3912436.399242417886853 ], [ 4992929.895833177492023, 3912459.702106600161642 ], [ 4992895.065318906679749, 3912458.880927086807787 ], [ 4992896.992599384859204, 3912383.874495772179216 ], [ 4992930.959593829698861, 3912384.693373408168554 ], [ 4992930.295435826294124, 3912417.827780515421182 ], [ 4992945.551679466851056, 3912418.232625392265618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990309.913109190762043, 3909005.58868800336495 ], [ 4990328.752614678815007, 3908956.843300527427346 ], [ 4990375.923798337578773, 3908974.807135845534503 ], [ 4990357.084219613112509, 3909023.552490788046271 ], [ 4990309.913109190762043, 3909005.58868800336495 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989216.37531584315002, 3908571.66684642713517 ], [ 4989191.615701097995043, 3908571.240093268454075 ], [ 4989191.925712781958282, 3908562.50168909644708 ], [ 4989170.333135622553527, 3908562.082964199595153 ], [ 4989171.299970303662121, 3908521.302531213499606 ], [ 4989217.651319483295083, 3908522.512141697108746 ], [ 4989216.37531584315002, 3908571.66684642713517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989036.545524400658906, 3913545.638892538379878 ], [ 4989045.099534567445517, 3913578.068402065895498 ], [ 4989008.517490887083113, 3913587.443588608410209 ], [ 4989000.251299437135458, 3913555.014816532377154 ], [ 4989036.545524400658906, 3913545.638892538379878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988542.64551596250385, 3906965.602639868855476 ], [ 4988543.995798384770751, 3907001.291002525482327 ], [ 4988513.471568977460265, 3907002.671104205306619 ], [ 4988513.212807524949312, 3906991.018217680975795 ], [ 4988506.589502851478755, 3906991.365771021228284 ], [ 4988505.498846926726401, 3906966.966166466474533 ], [ 4988542.64551596250385, 3906965.602639868855476 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988463.911981398239732, 3908052.705445543862879 ], [ 4988468.169729569926858, 3908077.112987690139562 ], [ 4988420.929247691296041, 3908085.73403259459883 ], [ 4988412.407289216294885, 3908039.467876977287233 ], [ 4988451.58247475232929, 3908032.283174770418555 ], [ 4988455.557783363386989, 3908054.505211984273046 ], [ 4988463.911981398239732, 3908052.705445543862879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988122.972781116142869, 3908763.370159997139126 ], [ 4988179.991887368261814, 3908758.414276357740164 ], [ 4988182.511427462100983, 3908787.187047877348959 ], [ 4988125.492381758056581, 3908792.142926265951246 ], [ 4988122.972781116142869, 3908763.370159997139126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988029.347757406532764, 3902643.896395165938884 ], [ 4988037.768761599436402, 3902615.879198021255434 ], [ 4988082.660577945411205, 3902629.099532624706626 ], [ 4988073.950648992322385, 3902657.480129099916667 ], [ 4988029.347757406532764, 3902643.896395165938884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987430.991265410557389, 3908113.500493635423481 ], [ 4987425.299267243593931, 3908086.540656452998519 ], [ 4987441.719586476683617, 3908082.939776157960296 ], [ 4987438.591054270975292, 3908067.274364489130676 ], [ 4987461.0603705374524, 3908062.595999676734209 ], [ 4987464.191582224331796, 3908077.169022547081113 ], [ 4987491.558203253895044, 3908071.410354236606508 ], [ 4987498.671773488633335, 3908105.656363900285214 ], [ 4987452.580637942999601, 3908115.374342501629144 ], [ 4987451.155402088537812, 3908109.544708066154271 ], [ 4987430.991265410557389, 3908113.500493635423481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986804.884535882622004, 3909126.80365435872227 ], [ 4986902.225659798830748, 3909115.389080040622503 ], [ 4986900.811035593040287, 3909105.189902674872428 ], [ 4986913.770432125777006, 3909103.765040024183691 ], [ 4986914.90070382039994, 3909112.50699157314375 ], [ 4986937.364603486843407, 3909109.648839306086302 ], [ 4986944.414494395256042, 3909170.112136017996818 ], [ 4986811.938274293206632, 3909185.810394048690796 ], [ 4986804.884535882622004, 3909126.80365435872227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986718.777422529645264, 3910199.329527369234711 ], [ 4986721.028235594742, 3910220.818866706453264 ], [ 4986736.579032045789063, 3910219.036100816447288 ], [ 4986738.832491892389953, 3910239.433048990555108 ], [ 4986726.161547628231347, 3910240.858698665164411 ], [ 4986728.132442995905876, 3910259.070158749353141 ], [ 4986694.151948813349009, 3910262.628696501255035 ], [ 4986692.74529080837965, 3910249.152344047091901 ], [ 4986685.834031605161726, 3910249.863776627462357 ], [ 4986683.865767376497388, 3910230.559926833957434 ], [ 4986676.665721477940679, 3910231.634791579563171 ], [ 4986673.5662607755512, 3910203.953126214910299 ], [ 4986718.777422529645264, 3910199.329527369234711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986676.327384052798152, 3901974.207996055949479 ], [ 4986631.645586955361068, 3901992.30582153564319 ], [ 4986628.494596571661532, 3901985.379661549814045 ], [ 4986607.450528054498136, 3901994.067627204582095 ], [ 4986594.567402160726488, 3901962.721009452827275 ], [ 4986660.582211276516318, 3901935.571753962896764 ], [ 4986676.327384052798152, 3901974.207996055949479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986144.763652926310897, 3910653.831625337246805 ], [ 4986224.566670214757323, 3910630.355846183840185 ], [ 4986235.988072409294546, 3910669.345724042505026 ], [ 4986187.300214988179505, 3910683.429194665513933 ], [ 4986188.4438560558483, 3910686.709157883189619 ], [ 4986157.041794437915087, 3910695.736605153884739 ], [ 4986144.763652926310897, 3910653.831625337246805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985975.75119383726269, 3899663.556875047273934 ], [ 4986002.071391733363271, 3899617.375666224397719 ], [ 4986050.679095987230539, 3899644.802620228379965 ], [ 4986024.358841081149876, 3899690.983782205730677 ], [ 4985975.75119383726269, 3899663.556875047273934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985905.824671385809779, 3910409.650447307620198 ], [ 4985916.883821276016533, 3910360.154956748243421 ], [ 4985958.60740851983428, 3910368.994611066300422 ], [ 4985952.496742928400636, 3910395.925746663007885 ], [ 4985960.265486445277929, 3910397.765122818760574 ], [ 4985955.316922606900334, 3910420.329459454864264 ], [ 4985905.824671385809779, 3910409.650447307620198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985806.850143630057573, 3909305.72526636486873 ], [ 4985809.09826445300132, 3909328.671040564775467 ], [ 4985792.107490435242653, 3909330.450884193647653 ], [ 4985789.859355265274644, 3909307.505111392121762 ], [ 4985806.850143630057573, 3909305.72526636486873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985817.651237792335451, 3900255.617444299627095 ], [ 4985797.733604188077152, 3900274.504408363718539 ], [ 4985768.142810519784689, 3900243.846365048550069 ], [ 4985787.772443243302405, 3900224.958687847480178 ], [ 4985817.651237792335451, 3900255.617444299627095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985632.471557858400047, 3910348.183768982067704 ], [ 4985591.868887819349766, 3910352.091965245082974 ], [ 4985587.366347172297537, 3910308.74934166809544 ], [ 4985618.754709004424512, 3910305.547327100299299 ], [ 4985620.441072701476514, 3910322.66562384320423 ], [ 4985629.656312441453338, 3910321.595304993912578 ], [ 4985632.471557858400047, 3910348.183768982067704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985341.371787434443831, 3909639.613147648982704 ], [ 4985360.891760524362326, 3909663.692494118120521 ], [ 4985324.834600818343461, 3909692.737115848809481 ], [ 4985305.026715253479779, 3909668.657108751591295 ], [ 4985341.371787434443831, 3909639.613147648982704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985292.221740525215864, 3901147.937692479230464 ], [ 4985297.481104081496596, 3901116.27082356531173 ], [ 4985313.314648434519768, 3901118.857478144112974 ], [ 4985319.44757107552141, 3901083.187254780437797 ], [ 4985356.871953781694174, 3901089.466724286787212 ], [ 4985345.767550852149725, 3901156.804484732449055 ], [ 4985292.221740525215864, 3901147.937692479230464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984938.993048555217683, 3900359.483040606137365 ], [ 4984948.005658484995365, 3900323.8195735886693 ], [ 4984969.592828104272485, 3900329.332706957124174 ], [ 4984960.581054480746388, 3900364.632038024719805 ], [ 4984938.993048555217683, 3900359.483040606137365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984692.816807128489017, 3909600.932311041746289 ], [ 4984647.877431996166706, 3909612.114352878183126 ], [ 4984640.460708231665194, 3909582.96621927479282 ], [ 4984685.40098867751658, 3909571.420034351292998 ], [ 4984692.816807128489017, 3909600.932311041746289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984473.177794231101871, 3915458.959821363445371 ], [ 4984442.908398766070604, 3915478.551844493951648 ], [ 4984407.630032834596932, 3915424.941138660069555 ], [ 4984437.900319268926978, 3915404.984944202471524 ], [ 4984473.177794231101871, 3915458.959821363445371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984411.167333984747529, 3907307.689516973681748 ], [ 4984437.093585603870451, 3907302.288486783858389 ], [ 4984440.226527123712003, 3907316.861150393262506 ], [ 4984466.728629228658974, 3907311.461503018625081 ], [ 4984474.70404005702585, 3907348.25764095550403 ], [ 4984404.414929642342031, 3907363.021770818624645 ], [ 4984397.580008455552161, 3907330.962055145762861 ], [ 4984415.440867309458554, 3907326.998580089770257 ], [ 4984411.167333984747529, 3907307.689516973681748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984303.690452763810754, 3906850.81513343565166 ], [ 4984344.595556540414691, 3906842.900242045987397 ], [ 4984349.434815162792802, 3906866.580204809550196 ], [ 4984359.228761396370828, 3906864.782544273883104 ], [ 4984363.780927140265703, 3906888.097703393083066 ], [ 4984351.393897838890553, 3906890.617537218146026 ], [ 4984353.100961796939373, 3906899.360721410252154 ], [ 4984358.286287639290094, 3906898.280502430163324 ], [ 4984361.413333259522915, 3906915.402065334841609 ], [ 4984371.495193493552506, 3906913.60508549073711 ], [ 4984376.618068814277649, 3906939.106382091064006 ], [ 4984369.128449254669249, 3906940.545316867996007 ], [ 4984373.113286526873708, 3906960.217822837177664 ], [ 4984382.908055807463825, 3906958.056040510069579 ], [ 4984387.746403855271637, 3906982.100142177660018 ], [ 4984339.06311006564647, 3906991.817365963943303 ], [ 4984333.089241244830191, 3906960.852093071211129 ], [ 4984327.328067577444017, 3906961.930965115316212 ], [ 4984323.060394797474146, 3906940.073008205741644 ], [ 4984314.130270438268781, 3906941.872709312476218 ], [ 4984305.595744359306991, 3906897.792670889757574 ], [ 4984312.79744122363627, 3906896.353042681701481 ], [ 4984303.690452763810754, 3906850.81513343565166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984250.547298414632678, 3915636.862540113274008 ], [ 4984274.933175313286483, 3915671.148369455244392 ], [ 4984232.551106653176248, 3915700.907974684145302 ], [ 4984208.16605640668422, 3915666.25805087108165 ], [ 4984250.547298414632678, 3915636.862540113274008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984198.981763782911003, 3906439.828457679133862 ], [ 4984208.397483710199594, 3906476.627869607880712 ], [ 4984200.906891412101686, 3906478.430981060024351 ], [ 4984206.614415608346462, 3906500.292285439092666 ], [ 4984179.531432538293302, 3906507.511489052791148 ], [ 4984164.120187907479703, 3906448.850116150919348 ], [ 4984198.981763782911003, 3906439.828457679133862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984078.800572836771607, 3906241.0951485671103 ], [ 4984081.715715078637004, 3906225.808414652943611 ], [ 4984089.198705769143999, 3906227.282441637478769 ], [ 4984097.06501838658005, 3906187.974567303899676 ], [ 4984130.450575097464025, 3906194.607050452381372 ], [ 4984119.668198919855058, 3906249.565774884540588 ], [ 4984078.800572836771607, 3906241.0951485671103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983381.830130397342145, 3917013.816173526924103 ], [ 4983371.738649058155715, 3917021.439658427145332 ], [ 4983378.625336444936693, 3917030.55895147100091 ], [ 4983392.176585121080279, 3917020.394531133584678 ], [ 4983409.105877078138292, 3917043.010047836694866 ], [ 4983361.245677819475532, 3917078.220388823654503 ], [ 4983327.961833049543202, 3917033.354888778179884 ], [ 4983344.972825368866324, 3917020.649498810525984 ], [ 4983339.234048191457987, 3917012.989406283479184 ], [ 4983366.336543560028076, 3916992.660532996058464 ], [ 4983381.830130397342145, 3917013.816173526924103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983382.662267740815878, 3909684.17005218192935 ], [ 4983376.262764206156135, 3909712.557620276231319 ], [ 4983337.704228335060179, 3909703.729298093356192 ], [ 4983344.103693171404302, 3909675.34172096522525 ], [ 4983382.662267740815878, 3909684.17005218192935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983295.582641172222793, 3902134.783099544234574 ], [ 4983320.904047856107354, 3902143.944850808475167 ], [ 4983311.630600868724287, 3902169.048488393891603 ], [ 4983326.88102063536644, 3902174.545678505208343 ], [ 4983316.737747419625521, 3902202.196224228013307 ], [ 4983276.453119051642716, 3902187.902100439649075 ], [ 4983295.582641172222793, 3902134.783099544234574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983196.937586331740022, 3909321.429002220276743 ], [ 4983199.214800708927214, 3909332.722370005678385 ], [ 4983208.144055703654885, 3909330.922295664902776 ], [ 4983214.975676438771188, 3909364.802402881905437 ], [ 4983173.498935816809535, 3909372.717699294909835 ], [ 4983167.239718241617084, 3909340.295452950056642 ], [ 4983174.728604369796813, 3909338.856181010138243 ], [ 4983172.166831988841295, 3909326.105628194287419 ], [ 4983196.937586331740022, 3909321.429002220276743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982872.41240297164768, 3917752.928389403037727 ], [ 4982806.168261018581688, 3917773.168035033158958 ], [ 4982797.310257000848651, 3917745.10936072608456 ], [ 4982863.554461332038045, 3917724.86969360569492 ], [ 4982872.41240297164768, 3917752.928389403037727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982230.996272892691195, 3916809.812364226672798 ], [ 4982258.421520052477717, 3916773.825326520483941 ], [ 4982284.281117767095566, 3916793.547337312716991 ], [ 4982289.189039118587971, 3916787.004068977665156 ], [ 4982307.29057127982378, 3916800.88232127064839 ], [ 4982296.898249825462699, 3916814.331676673144102 ], [ 4982331.665439864620566, 3916840.628401248715818 ], [ 4982309.724549658596516, 3916869.709276625420898 ], [ 4982230.996272892691195, 3916809.812364226672798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981913.674297519028187, 3902717.151275205425918 ], [ 4981916.193746129050851, 3902749.200517215766013 ], [ 4981858.875926897861063, 3902753.804895931389183 ], [ 4981856.067613340914249, 3902722.119139214046299 ], [ 4981913.674297519028187, 3902717.151275205425918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981120.31010297127068, 3901159.804040431044996 ], [ 4981136.361420974135399, 3901194.068110223393887 ], [ 4981096.577136614359915, 3901212.550168179906905 ], [ 4981080.52496846858412, 3901178.650250906590372 ], [ 4981120.31010297127068, 3901159.804040431044996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981059.901488970033824, 3916002.442188357934356 ], [ 4981034.850242254324257, 3916006.756031340453774 ], [ 4981028.309486490674317, 3915971.056315342895687 ], [ 4981053.360765411518514, 3915966.742466357536614 ], [ 4981059.901488970033824, 3916002.442188357934356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981037.040685951709747, 3905578.353438528254628 ], [ 4980998.405820959247649, 3905600.84368510870263 ], [ 4980934.152805580757558, 3905489.640667227562517 ], [ 4980956.065036124549806, 3905476.944729160051793 ], [ 4980963.808839658275247, 3905490.798947886563838 ], [ 4980980.819520146586001, 3905481.005193314049393 ], [ 4981037.040685951709747, 3905578.353438528254628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981002.68735047057271, 3894995.181108732242137 ], [ 4981043.012326491065323, 3894996.727290474344045 ], [ 4981041.503191750496626, 3895027.674949727486819 ], [ 4981001.467129782773554, 3895025.765282687265426 ], [ 4981002.68735047057271, 3894995.181108732242137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980737.622371950186789, 3907378.32216245867312 ], [ 4980748.877287546172738, 3907366.694848752580583 ], [ 4980739.970926531590521, 3907357.935953275300562 ], [ 4980761.037928296253085, 3907336.134666416794062 ], [ 4980791.205653972923756, 3907365.332082573790103 ], [ 4980758.595808397978544, 3907398.760013450868428 ], [ 4980737.622371950186789, 3907378.32216245867312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980727.484437770210207, 3903112.495379748288542 ], [ 4980776.667913323268294, 3903139.549998023081571 ], [ 4980762.212090888991952, 3903165.371308489702642 ], [ 4980713.028648210689425, 3903138.316716253291816 ], [ 4980727.484437770210207, 3903112.495379748288542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980739.691285113804042, 3895514.574944637250155 ], [ 4980806.586567048914731, 3895484.500304235611111 ], [ 4980819.772472489625216, 3895513.659896797034889 ], [ 4980753.165300951339304, 3895543.735142510849983 ], [ 4980739.691285113804042, 3895514.574944637250155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980688.64912617020309, 3899057.083566297776997 ], [ 4980660.109870092943311, 3899068.672643927391618 ], [ 4980640.058240928687155, 3899019.106587843969464 ], [ 4980624.202906214632094, 3899025.625906554516405 ], [ 4980615.035469196736813, 3899003.393699577543885 ], [ 4980627.431407478637993, 3898998.323254809714854 ], [ 4980619.697609396651387, 3898979.007257306016982 ], [ 4980651.407534497790039, 3898966.332752996124327 ], [ 4980688.64912617020309, 3899057.083566297776997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980589.077115869149566, 3903194.118968351744115 ], [ 4980599.140011709183455, 3903201.423817030154169 ], [ 4980589.320865448564291, 3903214.14673182554543 ], [ 4980607.145285621285439, 3903227.658956041093916 ], [ 4980587.794180039316416, 3903253.469549313187599 ], [ 4980559.906878069974482, 3903232.652499809861183 ], [ 4980589.077115869149566, 3903194.118968351744115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980558.460707706399262, 3898798.263374981004745 ], [ 4980533.954286195337772, 3898809.497353813610971 ], [ 4980523.634627886116505, 3898787.262639843858778 ], [ 4980548.141065292060375, 3898776.028651746921241 ], [ 4980558.460707706399262, 3898798.263374981004745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980528.630518024787307, 3901745.471635560970753 ], [ 4980544.117511617951095, 3901774.636283397674561 ], [ 4980530.566907349973917, 3901781.524880558717996 ], [ 4980536.588908113539219, 3901793.19035807531327 ], [ 4980513.81233218871057, 3901804.792316657025367 ], [ 4980510.370153082534671, 3901798.594498428981751 ], [ 4980478.078831796534359, 3901815.273343646433204 ], [ 4980466.320363188162446, 3901793.035438331309706 ], [ 4980483.331591354683042, 3901783.969649486709386 ], [ 4980477.022381815128028, 3901771.939420016482472 ], [ 4980528.630518024787307, 3901745.471635560970753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980290.884346677921712, 3906404.011512780096382 ], [ 4980265.238011072389781, 3906413.058476073667407 ], [ 4980248.924778738990426, 3906367.870276486966759 ], [ 4980274.283214963041246, 3906358.822665394749492 ], [ 4980290.884346677921712, 3906404.011512780096382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980139.83839382044971, 3906874.13875361578539 ], [ 4980193.367273516021669, 3906886.27248475048691 ], [ 4980186.968891088850796, 3906915.389024150557816 ], [ 4980133.152135514654219, 3906903.254674569237977 ], [ 4980139.83839382044971, 3906874.13875361578539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979783.766001459211111, 3908810.544986051972955 ], [ 4979760.09230628143996, 3908840.352295432239771 ], [ 4979727.038886961527169, 3908814.42692188359797 ], [ 4979750.712568123824894, 3908784.619583857711405 ], [ 4979783.766001459211111, 3908810.544986051972955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979722.463420737534761, 3909329.300537180621177 ], [ 4979752.763227183371782, 3909297.322817476000637 ], [ 4979791.263215097598732, 3909333.819947272073478 ], [ 4979760.964196686632931, 3909365.433493302669376 ], [ 4979722.463420737534761, 3909329.300537180621177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979595.600648853927851, 3900926.320056766271591 ], [ 4979628.177317376248538, 3900911.097302218899131 ], [ 4979653.119756040163338, 3900963.222202074248344 ], [ 4979629.768454043194652, 3900974.095394155476242 ], [ 4979620.020923097617924, 3900953.682895090430975 ], [ 4979610.507605231367052, 3900958.031805734150112 ], [ 4979595.600648853927851, 3900926.320056766271591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979447.299508503638208, 3909294.83876415155828 ], [ 4979430.269719194620848, 3909314.829180389642715 ], [ 4979409.865493629127741, 3909297.670767401810735 ], [ 4979426.895278546027839, 3909277.680338451638818 ], [ 4979447.299508503638208, 3909294.83876415155828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979218.205050835385919, 3901115.579718824476004 ], [ 4979167.189468045718968, 3901134.404538015834987 ], [ 4979151.728066854178905, 3901092.496173808351159 ], [ 4979192.367315054871142, 3901077.6543925604783 ], [ 4979198.094210589304566, 3901092.960236046463251 ], [ 4979208.469823414459825, 3901089.341300567146391 ], [ 4979218.205050835385919, 3901115.579718824476004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979128.741066201590002, 3908955.871404274366796 ], [ 4979149.014757663942873, 3908900.202796475496143 ], [ 4979174.331184247508645, 3908909.360678505618125 ], [ 4979166.221836353652179, 3908931.555285862646997 ], [ 4979170.249427352100611, 3908933.020498352125287 ], [ 4979158.372942720539868, 3908966.495098739862442 ], [ 4979128.741066201590002, 3908955.871404274366796 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979131.079702220857143, 3906800.941086654085666 ], [ 4979182.587374105118215, 3906815.9815056277439 ], [ 4979201.150097993202507, 3906753.39080802584067 ], [ 4979265.031058979220688, 3906772.099394005257636 ], [ 4979207.894444491714239, 3906963.87373210536316 ], [ 4979204.44163541868329, 3906962.773888246156275 ], [ 4979175.437431543134153, 3907060.662901598960161 ], [ 4979048.828390017151833, 3907023.248778503388166 ], [ 4979054.627719643525779, 3907004.326380845159292 ], [ 4979047.721315913833678, 3907002.490863385144621 ], [ 4979086.58609541784972, 3906871.486913919448853 ], [ 4979108.166838918812573, 3906878.087752446066588 ], [ 4979131.079702220857143, 3906800.941086654085666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979003.366020295768976, 3905401.307137560565025 ], [ 4979015.951939607039094, 3905440.296294668223709 ], [ 4978967.256088762544096, 3905455.485193767119199 ], [ 4978954.958053065463901, 3905416.496677447576076 ], [ 4979003.366020295768976, 3905401.307137560565025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979007.683731835335493, 3901784.399134526029229 ], [ 4978996.118133258074522, 3901805.858011075295508 ], [ 4978946.064904265105724, 3901779.533077112864703 ], [ 4978968.328974878415465, 3901738.069948673248291 ], [ 4979000.2586934491992, 3901755.25269793253392 ], [ 4978989.560957938432693, 3901774.892786798067391 ], [ 4979007.683731835335493, 3901784.399134526029229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978978.497740057297051, 3904243.679089765064418 ], [ 4978993.549881253391504, 3904207.298274331260473 ], [ 4978999.304385610856116, 3904209.495429305359721 ], [ 4979007.411873312667012, 3904188.757355431094766 ], [ 4979038.484948207624257, 3904201.204630620311946 ], [ 4979015.037297813221812, 3904258.32287141494453 ], [ 4978978.497740057297051, 3904243.679089765064418 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978966.512431138195097, 3903790.673758094664663 ], [ 4979022.314906669780612, 3903819.924181002657861 ], [ 4978998.316856488585472, 3903865.024902011733502 ], [ 4978942.514448803849518, 3903835.774528137873858 ], [ 4978966.512431138195097, 3903790.673758094664663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978942.556972810998559, 3912799.987629867624491 ], [ 4978955.183269730769098, 3912818.585556120146066 ], [ 4978913.671701347455382, 3912845.806431686040014 ], [ 4978901.333256214857101, 3912827.209142397623509 ], [ 4978942.556972810998559, 3912799.987629867624491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978786.907055755145848, 3896620.55594324041158 ], [ 4978808.416586857289076, 3896664.297578535974026 ], [ 4978782.177597135305405, 3896676.985952555667609 ], [ 4978787.052464897744358, 3896687.192023672163486 ], [ 4978772.058771980926394, 3896694.442531971726567 ], [ 4978755.710573544725776, 3896661.635862851049751 ], [ 4978780.218981944955885, 3896650.036148875020444 ], [ 4978769.894699926488101, 3896628.894521363079548 ], [ 4978786.907055755145848, 3896620.55594324041158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978743.870856616646051, 3916592.016353756655008 ], [ 4978765.989891721867025, 3916612.455231527332217 ], [ 4978748.680515832267702, 3916630.989024922717363 ], [ 4978726.562262088060379, 3916610.186028468422592 ], [ 4978743.870856616646051, 3916592.016353756655008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978604.91386133339256, 3900106.714162867516279 ], [ 4978586.150883674621582, 3900126.701314365491271 ], [ 4978553.670902899466455, 3900096.409202724229544 ], [ 4978572.721881646662951, 3900076.422643160447478 ], [ 4978604.91386133339256, 3900106.714162867516279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978557.861505262553692, 3903668.543429653160274 ], [ 4978577.52396051492542, 3903630.715700757224113 ], [ 4978632.176882302388549, 3903659.234594027511775 ], [ 4978612.226405289955437, 3903697.061668912414461 ], [ 4978557.861505262553692, 3903668.543429653160274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978534.13221213594079, 3906019.326915128622204 ], [ 4978557.480247309431434, 3906007.724477069452405 ], [ 4978571.817469934932888, 3906035.793216720689088 ], [ 4978548.468676427379251, 3906047.759772794321179 ], [ 4978534.13221213594079, 3906019.326915128622204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978471.76852716319263, 3906368.760732418857515 ], [ 4978484.086987052112818, 3906398.281660831067711 ], [ 4978450.080250784754753, 3906412.410397309809923 ], [ 4978437.760985150001943, 3906383.253614603541791 ], [ 4978471.76852716319263, 3906368.760732418857515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978380.222091145813465, 3909204.064363041892648 ], [ 4978398.62641601357609, 3909214.299217298161238 ], [ 4978404.695686601102352, 3909203.388148053083569 ], [ 4978424.250078214332461, 3909214.353731680195779 ], [ 4978416.735847803764045, 3909227.810650683473796 ], [ 4978445.780264332890511, 3909243.894300987944007 ], [ 4978430.17289461940527, 3909272.26342825544998 ], [ 4978362.880364762619138, 3909235.707034695427865 ], [ 4978380.222091145813465, 3909204.064363041892648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978188.261885584332049, 3911342.57342826295644 ], [ 4978217.603612083941698, 3911353.195490757469088 ], [ 4978203.125301861204207, 3911392.855305518954992 ], [ 4978173.783613052219152, 3911382.233258585911244 ], [ 4978188.261885584332049, 3911342.57342826295644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978142.062858797609806, 3893042.339555037207901 ], [ 4978171.460856352932751, 3893035.847459502052516 ], [ 4978181.733794392086565, 3893082.113607964478433 ], [ 4978152.048536465503275, 3893088.240955231245607 ], [ 4978142.062858797609806, 3893042.339555037207901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978089.17159974295646, 3907559.389047419652343 ], [ 4978113.674427010118961, 3907545.603865203913301 ], [ 4978135.762874261476099, 3907584.248640340287238 ], [ 4978111.547994413413107, 3907598.034412048291415 ], [ 4978089.17159974295646, 3907559.389047419652343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978035.630986185744405, 3895558.612543187569827 ], [ 4978047.910308021120727, 3895609.252504620235413 ], [ 4978015.919607914052904, 3895617.195782559458166 ], [ 4978003.352176974527538, 3895566.555227342993021 ], [ 4978035.630986185744405, 3895558.612543187569827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977829.125334872864187, 3906215.556861036922783 ], [ 4977841.736343647353351, 3906243.257446744013578 ], [ 4977803.115079385228455, 3906261.018601931631565 ], [ 4977790.215334802865982, 3906233.681558524258435 ], [ 4977829.125334872864187, 3906215.556861036922783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977819.948561907745898, 3907018.448705582879484 ], [ 4977853.987183538265526, 3906988.661554049234837 ], [ 4977872.945302187465131, 3907010.185293482150882 ], [ 4977838.906686650589108, 3907039.972421393729746 ], [ 4977819.948561907745898, 3907018.448705582879484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977779.261644368059933, 3904323.059231475926936 ], [ 4977813.263767661526799, 3904312.206833438016474 ], [ 4977822.132233230397105, 3904339.899498554877937 ], [ 4977787.842948994599283, 3904350.387149783782661 ], [ 4977779.261644368059933, 3904323.059231475926936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977758.365904288366437, 3908234.156783300451934 ], [ 4977774.728136940859258, 3908257.495674377772957 ], [ 4977726.86433623265475, 3908290.531074531842023 ], [ 4977710.789233606308699, 3908267.55694793863222 ], [ 4977758.365904288366437, 3908234.156783300451934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977704.484893247485161, 3905238.328966078348458 ], [ 4977732.910706289112568, 3905276.986664933618158 ], [ 4977708.108882392756641, 3905295.141131827607751 ], [ 4977679.683053037151694, 3905256.483458778820932 ], [ 4977704.484893247485161, 3905238.328966078348458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977573.160430800169706, 3908132.174975105095655 ], [ 4977598.527752723544836, 3908117.662867289036512 ], [ 4977611.43823682051152, 3908139.537888627499342 ], [ 4977586.358082704246044, 3908154.414718919433653 ], [ 4977573.160430800169706, 3908132.174975105095655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977345.79348034504801, 3913328.969115288928151 ], [ 4977344.281936350278556, 3913363.558647205587476 ], [ 4977316.649478138424456, 3913362.408561242744327 ], [ 4977316.047915644012392, 3913374.787846932187676 ], [ 4977291.86904916446656, 3913374.009128050412983 ], [ 4977293.694215659983456, 3913327.039706493727863 ], [ 4977345.79348034504801, 3913328.969115288928151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977290.525348423048854, 3905322.305170039646327 ], [ 4977271.221444038674235, 3905327.726895225699991 ], [ 4977269.220231142826378, 3905320.804220112971961 ], [ 4977236.375188409350812, 3905329.839062124490738 ], [ 4977225.797723898664117, 3905293.0397207159549 ], [ 4977278.235448881052434, 3905278.219602134078741 ], [ 4977290.525348423048854, 3905322.305170039646327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977139.023604669608176, 3906587.712061065714806 ], [ 4977176.795312988571823, 3906562.665541088208556 ], [ 4977193.731910574249923, 3906587.461774738971144 ], [ 4977155.960221176967025, 3906612.508271293714643 ], [ 4977139.023604669608176, 3906587.712061065714806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977077.020147778093815, 3908851.757653161883354 ], [ 4977091.357385104522109, 3908879.82565205777064 ], [ 4977061.095077499747276, 3908895.056340196169913 ], [ 4977046.757816790603101, 3908866.988357185851783 ], [ 4977077.020147778093815, 3908851.757653161883354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977028.744181356392801, 3905894.175695874262601 ], [ 4977043.534309497103095, 3905843.592072641011328 ], [ 4977077.49109105207026, 3905853.494159628637135 ], [ 4977062.988846112042665, 3905904.078362553846091 ], [ 4977028.744181356392801, 3905894.175695874262601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976626.187806519679725, 3913163.616019687615335 ], [ 4976580.12056702002883, 3913167.890700032934546 ], [ 4976576.178963166661561, 3913124.914829844143242 ], [ 4976621.958411237224936, 3913120.639549502171576 ], [ 4976626.187806519679725, 3913163.616019687615335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976561.755861392244697, 3912580.14152519358322 ], [ 4976600.377739925868809, 3912557.28067038487643 ], [ 4976616.730823936872184, 3912584.260237274225801 ], [ 4976577.82035022880882, 3912607.484607907943428 ], [ 4976561.755861392244697, 3912580.14152519358322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976534.251693282276392, 3912796.01600890327245 ], [ 4976572.589119907468557, 3912771.333859305363148 ], [ 4976589.519336624071002, 3912797.586335164494812 ], [ 4976551.469799406826496, 3912822.269053595140576 ], [ 4976534.251693282276392, 3912796.01600890327245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976348.98782083299011, 3911191.628544006496668 ], [ 4976333.951347556896508, 3911224.0055509256199 ], [ 4976321.296359851956367, 3911218.153478232678026 ], [ 4976336.332821115851402, 3911185.776464353781193 ], [ 4976348.98782083299011, 3911191.628544006496668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976260.829182137735188, 3912348.298964590765536 ], [ 4976227.38154686242342, 3912374.812225975096226 ], [ 4976207.855384519323707, 3912350.739475658163428 ], [ 4976241.303775709122419, 3912323.862058591563255 ], [ 4976260.829182137735188, 3912348.298964590765536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976229.378876307047904, 3911117.464500741567463 ], [ 4976242.033931457437575, 3911123.316529766656458 ], [ 4976224.977134922519326, 3911158.23839198006317 ], [ 4976236.481375359930098, 3911163.723930688109249 ], [ 4976224.628150584176183, 3911188.096586518455297 ], [ 4976200.75677003711462, 3911176.75962600717321 ], [ 4976229.378876307047904, 3911117.464500741567463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976119.762698251754045, 3905726.260112376417965 ], [ 4976078.551830164156854, 3905743.290188489947468 ], [ 4976061.930580614134669, 3905704.294176908675581 ], [ 4976103.142241132445633, 3905686.899945442564785 ], [ 4976119.762698251754045, 3905726.260112376417965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976082.264119742438197, 3901524.472100753802806 ], [ 4976111.921754552051425, 3901527.081541550345719 ], [ 4976107.793289855122566, 3901574.410128319170326 ], [ 4976078.13570689316839, 3901571.800692006479949 ], [ 4976082.264119742438197, 3901524.472100753802806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975959.787224546074867, 3907787.649470205418766 ], [ 4975985.908720279112458, 3907826.664822332561016 ], [ 4975957.943295178003609, 3907844.814481457695365 ], [ 4975931.821776644326746, 3907805.799156080000103 ], [ 4975959.787224546074867, 3907787.649470205418766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975939.178456309251487, 3910981.0505849593319 ], [ 4975939.728287647478282, 3910993.796358605846763 ], [ 4975873.798405790701509, 3910995.482894809450954 ], [ 4975873.247802883386612, 3910983.101253985892981 ], [ 4975939.178456309251487, 3910981.0505849593319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975862.952291862107813, 3907691.68569410732016 ], [ 4975837.582550494931638, 3907707.655959616880864 ], [ 4975810.316425700671971, 3907664.997108653653413 ], [ 4975835.686190979555249, 3907649.026817821431905 ], [ 4975862.952291862107813, 3907691.68569410732016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975638.219747368246317, 3913028.688918640837073 ], [ 4975710.333717249333858, 3913098.020370948128402 ], [ 4975667.929092125035822, 3913141.630454611033201 ], [ 4975596.102995539084077, 3913072.299696580972522 ], [ 4975638.219747368246317, 3913028.688918640837073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975510.031804124824703, 3910648.819465301465243 ], [ 4975501.423752092756331, 3910634.600898888893425 ], [ 4975522.465547349303961, 3910621.898745694197714 ], [ 4975529.925706409849226, 3910634.294335110578686 ], [ 4975539.149994465522468, 3910628.486846839077771 ], [ 4975552.923874966800213, 3910650.726789775304496 ], [ 4975537.357898997142911, 3910660.526920240838081 ], [ 4975541.375125479884446, 3910667.089430074207485 ], [ 4975499.290872288867831, 3910692.85785555979237 ], [ 4975482.360461825504899, 3910665.513707087375224 ], [ 4975510.031804124824703, 3910648.819465301465243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975379.711031969636679, 3905599.86196412704885 ], [ 4975356.673961722292006, 3905600.543831812683493 ], [ 4975356.152327053248882, 3905573.597031980287284 ], [ 4975398.481757941655815, 3905572.954032711684704 ], [ 4975399.272217298857868, 3905609.368800783529878 ], [ 4975379.979172385297716, 3905609.694061643909663 ], [ 4975379.711031969636679, 3905599.86196412704885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975294.282448497600853, 3904408.979620272293687 ], [ 4975315.071820291690528, 3904380.983314065728337 ], [ 4975304.432751635089517, 3904373.315150409936905 ], [ 4975317.714727140031755, 3904355.499428001232445 ], [ 4975363.431917865760624, 3904389.455677145160735 ], [ 4975329.361273325048387, 3904434.90352682583034 ], [ 4975294.282448497600853, 3904408.979620272293687 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975259.079706949181855, 3907739.622938718181103 ], [ 4975297.96530694514513, 3907731.690220311284065 ], [ 4975304.525251541286707, 3907762.654656250029802 ], [ 4975245.188466580584645, 3907774.915846638847142 ], [ 4975239.199179228395224, 3907746.501497318036854 ], [ 4975259.650427651591599, 3907742.173011512961239 ], [ 4975259.079706949181855, 3907739.622938718181103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975217.30636733956635, 3905601.35596695356071 ], [ 4975218.246258907951415, 3905563.488153079058975 ], [ 4975267.770678182132542, 3905564.680057835765183 ], [ 4975266.523740676231682, 3905612.014678474981338 ], [ 4975242.337830830365419, 3905611.23780780332163 ], [ 4975242.644798499532044, 3905601.770999050233513 ], [ 4975217.30636733956635, 3905601.35596695356071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975077.141068309545517, 3907437.756392685230821 ], [ 4975119.474855571985245, 3907433.471646126825362 ], [ 4975123.15363906789571, 3907465.52265190333128 ], [ 4975080.819172179326415, 3907470.171523459721357 ], [ 4975077.141068309545517, 3907437.756392685230821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975058.326369125396013, 3905761.98338930727914 ], [ 4975071.960352830588818, 3905711.760508991312236 ], [ 4975094.983456750400364, 3905717.996873044408858 ], [ 4975095.562262929044664, 3905716.541505769826472 ], [ 4975116.283267334103584, 3905722.04501166427508 ], [ 4975102.358343692496419, 3905773.723814032971859 ], [ 4975058.326369125396013, 3905761.98338930727914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975042.888895405456424, 3909589.346138580702245 ], [ 4975034.57180184405297, 3909573.307651640381664 ], [ 4975059.356209415011108, 3909560.976767957210541 ], [ 4975081.151447947137058, 3909603.62394648231566 ], [ 4975025.530215199105442, 3909631.550776279065758 ], [ 4975012.052018384449184, 3909604.942119677085429 ], [ 4975042.888895405456424, 3909589.346138580702245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975053.86921657808125, 3898350.817000389099121 ], [ 4975028.50136037170887, 3898361.690137377474457 ], [ 4975016.747062058188021, 3898334.35686100134626 ], [ 4975042.114939250983298, 3898323.483713094610721 ], [ 4975053.86921657808125, 3898350.817000389099121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974610.037296200171113, 3896893.412312928121537 ], [ 4974643.144346859306097, 3896902.217170131858438 ], [ 4974638.210812613368034, 3896920.777992128394544 ], [ 4974675.34890431445092, 3896930.319155463017523 ], [ 4974665.769122208468616, 3896967.805490145925432 ], [ 4974595.524092705920339, 3896949.459500219207257 ], [ 4974610.037296200171113, 3896893.412312928121537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974464.117517857812345, 3907888.059251211117953 ], [ 4974493.813017994165421, 3907868.090805975720286 ], [ 4974491.51614579744637, 3907864.809064477216452 ], [ 4974522.364819838665426, 3907844.114671570248902 ], [ 4974541.024797716178, 3907871.825724308844656 ], [ 4974480.768575850874186, 3907912.489093986805528 ], [ 4974464.117517857812345, 3907888.059251211117953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974419.355578215792775, 3909701.714346455410123 ], [ 4974387.076807990670204, 3909718.764722204767168 ], [ 4974363.841776022687554, 3909675.751126641407609 ], [ 4974396.120583006180823, 3909658.700723440386355 ], [ 4974419.355578215792775, 3909701.714346455410123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974396.629419687204063, 3903141.468847123440355 ], [ 4974422.297778338193893, 3903121.856538082007319 ], [ 4974444.70190208312124, 3903151.031370331533253 ], [ 4974400.286628156900406, 3903185.17182234255597 ], [ 4974386.212051533162594, 3903166.937430360354483 ], [ 4974404.95898325741291, 3903152.409256673417985 ], [ 4974396.629419687204063, 3903141.468847123440355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974207.82056890334934, 3912877.628766279667616 ], [ 4974249.762234907597303, 3912921.77161752153188 ], [ 4974031.730153397656977, 3913127.441853860858828 ], [ 4973989.788452237844467, 3913083.299337310250849 ], [ 4974207.82056890334934, 3912877.628766279667616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974230.369494979269803, 3896763.39523468259722 ], [ 4974212.494530072435737, 3896771.734994630329311 ], [ 4974201.883687668479979, 3896748.045654169283807 ], [ 4974219.758664992637932, 3896739.705887280404568 ], [ 4974230.369494979269803, 3896763.39523468259722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974156.526623758487403, 3909834.832190711982548 ], [ 4974199.468884389847517, 3909811.976427866145968 ], [ 4974214.098661144264042, 3909838.951081684790552 ], [ 4974171.156431042589247, 3909861.80682153115049 ], [ 4974156.526623758487403, 3909834.832190711982548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974174.06876203045249, 3899756.433809569105506 ], [ 4974125.961453075520694, 3899761.436950704082847 ], [ 4974120.874730641953647, 3899711.905205984599888 ], [ 4974149.105261791497469, 3899709.047710117418319 ], [ 4974151.649316373281181, 3899733.449455802328885 ], [ 4974171.526164000853896, 3899731.303803406655788 ], [ 4974174.06876203045249, 3899756.433809569105506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974140.820429131388664, 3904796.305323777720332 ], [ 4974162.425557331182063, 3904791.978277799673378 ], [ 4974162.995011815801263, 3904795.25658295257017 ], [ 4974186.039913043379784, 3904790.93239098507911 ], [ 4974196.017133973538876, 3904842.29459530627355 ], [ 4974151.079236043617129, 3904850.945249624084681 ], [ 4974140.820429131388664, 3904796.305323777720332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974036.495301451534033, 3899854.842615329194814 ], [ 4974034.521447076462209, 3899833.355042341630906 ], [ 4974078.306359484791756, 3899829.435632752720267 ], [ 4974082.251848312094808, 3899873.503172618336976 ], [ 4974030.40068359579891, 3899878.499125713482499 ], [ 4974028.141679702326655, 3899855.554471132345498 ], [ 4974036.495301451534033, 3899854.842615329194814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973990.647865694947541, 3909125.904039938468486 ], [ 4973916.849387547932565, 3909173.824769620783627 ], [ 4973898.764776908792555, 3909146.479387473315001 ], [ 4973972.564012140966952, 3909098.194477835670114 ], [ 4973990.647865694947541, 3909125.904039938468486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974008.351671061478555, 3898492.940029090736061 ], [ 4974031.698549523018301, 3898484.246741721406579 ], [ 4974027.400394567288458, 3898472.950267072767019 ], [ 4974044.694553528912365, 3898466.429887831676751 ], [ 4974064.465721499174833, 3898518.539341544732451 ], [ 4974049.189167771488428, 3898524.335411109961569 ], [ 4974052.340229549445212, 3898533.080725020263344 ], [ 4974027.551853357814252, 3898542.499424469191581 ], [ 4974008.351671061478555, 3898492.940029090736061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973922.775733591988683, 3912171.742202954366803 ], [ 4974058.655286090448499, 3912024.170885920990258 ], [ 4974170.438288690522313, 3912126.348141670692712 ], [ 4974034.270762091502547, 3912273.918337151408195 ], [ 4973922.775733591988683, 3912171.742202954366803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973838.757565144449472, 3900674.841083627194166 ], [ 4973879.654682008549571, 3900674.192876403219998 ], [ 4973880.162224935367703, 3900709.150410688482225 ], [ 4973839.26516124792397, 3900709.798617159482092 ], [ 4973838.757565144449472, 3900674.841083627194166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973779.135610565543175, 3900678.001663788687438 ], [ 4973822.048705577850342, 3900677.357309160288423 ], [ 4973822.559172431007028, 3900710.858325477689505 ], [ 4973779.64613088965416, 3900711.502679301891476 ], [ 4973779.135610565543175, 3900678.001663788687438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973737.95901941601187, 3899789.442734816577286 ], [ 4973701.936076644808054, 3899800.660453998949379 ], [ 4973689.341908507980406, 3899760.581532218493521 ], [ 4973734.010820183902979, 3899746.467634781263769 ], [ 4973740.306456783786416, 3899767.235363174695522 ], [ 4973731.660542227327824, 3899770.131522839423269 ], [ 4973737.95901941601187, 3899789.442734816577286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973704.265243852511048, 3900525.648843270726502 ], [ 4973697.008413214236498, 3900554.765128595288843 ], [ 4973656.133129881694913, 3900544.125608250964433 ], [ 4973663.677208465524018, 3900515.374002910684794 ], [ 4973704.265243852511048, 3900525.648843270726502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973678.282541163265705, 3901443.571611094754189 ], [ 4973767.234322709031403, 3901462.680084306746721 ], [ 4973753.575045831501484, 3901526.012155948206782 ], [ 4973664.623464449308813, 3901506.903727215249091 ], [ 4973678.282541163265705, 3901443.571611094754189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973620.357364318333566, 3898063.964265437331051 ], [ 4973644.144972057081759, 3898124.820342681836337 ], [ 4973585.919934412464499, 3898147.282973897643387 ], [ 4973571.589568945579231, 3898110.84206879325211 ], [ 4973603.873225514777005, 3898098.160378268454224 ], [ 4973594.703212974593043, 3898074.109935244545341 ], [ 4973620.357364318333566, 3898063.964265437331051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973578.028077639639378, 3900721.305032302625477 ], [ 4973589.313865547068417, 3900693.653080484829843 ], [ 4973632.192865317687392, 3900710.486626373138279 ], [ 4973621.194327861070633, 3900738.503250902984291 ], [ 4973578.028077639639378, 3900721.305032302625477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973513.935721808113158, 3897247.013629056047648 ], [ 4973594.61234207265079, 3897233.333678975235671 ], [ 4973601.448583332821727, 3897272.67301884945482 ], [ 4973544.975445660762489, 3897282.030467237345874 ], [ 4973543.267783981747925, 3897271.467378556728363 ], [ 4973519.064406636171043, 3897275.789861566387117 ], [ 4973513.935721808113158, 3897247.013629056047648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973501.306938600726426, 3900631.57963491184637 ], [ 4973469.049715532921255, 3900632.245203266385943 ], [ 4973468.52748665958643, 3900604.570262819994241 ], [ 4973500.784742929041386, 3900603.904693852178752 ], [ 4973501.306938600726426, 3900631.57963491184637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973406.482633891515434, 3912684.526899554301053 ], [ 4973434.776566862128675, 3912641.978250404819846 ], [ 4973517.001001065596938, 3912696.758094343356788 ], [ 4973488.706995048560202, 3912739.306658361572772 ], [ 4973406.482633891515434, 3912684.526899554301053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973369.702895064838231, 3907306.943950226064771 ], [ 4973345.204411583952606, 3907319.641064235940576 ], [ 4973336.886303531937301, 3907303.238994628190994 ], [ 4973314.405435538850725, 3907314.84765163436532 ], [ 4973287.726277585141361, 3907264.181611178908497 ], [ 4973315.106880038976669, 3907250.033501337748021 ], [ 4973319.123045074753463, 3907257.688057132996619 ], [ 4973333.245598240755498, 3907250.432786534540355 ], [ 4973342.998419287614524, 3907269.386560428887606 ], [ 4973334.352134579792619, 3907273.739384002517909 ], [ 4973340.376720659434795, 3907285.039157055318356 ], [ 4973354.499265239574015, 3907277.78389751072973 ], [ 4973369.702895064838231, 3907306.943950226064771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973290.797807021066546, 3896456.78320407634601 ], [ 4973347.87408013176173, 3896434.317723128944635 ], [ 4973367.078376717865467, 3896483.148329560179263 ], [ 4973342.864439486525953, 3896492.56876587215811 ], [ 4973337.130398727953434, 3896478.720725608523935 ], [ 4973304.55688391905278, 3896491.402166481129825 ], [ 4973290.797807021066546, 3896456.78320407634601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973132.544661819003522, 3902187.1601423737593 ], [ 4973098.524895966053009, 3902206.757558781653643 ], [ 4973084.460861635394394, 3902182.333656441885978 ], [ 4973050.729106324724853, 3902201.931688746903092 ], [ 4973035.803185845725238, 3902176.41375797521323 ], [ 4973067.516982364468277, 3902157.904209103900939 ], [ 4973063.499275794252753, 3902150.613844280596823 ], [ 4973094.635752516798675, 3902132.831476421561092 ], [ 4973117.3111517066136, 3902171.837238765787333 ], [ 4973121.923779917880893, 3902169.297224773094058 ], [ 4973132.544661819003522, 3902187.1601423737593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973057.936146988533437, 3898313.395826340653002 ], [ 4973073.107999701984227, 3898361.854376553092152 ], [ 4973057.545654912479222, 3898366.558067625854164 ], [ 4973062.985795357264578, 3898383.318538561463356 ], [ 4973037.624391471035779, 3898391.28052468271926 ], [ 4973021.591929975897074, 3898340.999685626942664 ], [ 4973038.019053433090448, 3898335.933509866241366 ], [ 4973033.150724794715643, 3898321.358926672954112 ], [ 4973057.936146988533437, 3898313.395826340653002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972952.503316055051982, 3901615.49183580186218 ], [ 4972988.435189579613507, 3901650.153412058949471 ], [ 4972967.658756793476641, 3901671.597141236066818 ], [ 4972931.726885301060975, 3901636.935592309106141 ], [ 4972952.503316055051982, 3901615.49183580186218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972764.578836180269718, 3904851.52871710434556 ], [ 4972760.210681159049273, 3904877.009550096932799 ], [ 4972719.622588433325291, 3904870.013280218467116 ], [ 4972725.735862860456109, 3904835.432495772838593 ], [ 4972742.143615578301251, 3904838.376983142457902 ], [ 4972740.686406522989273, 3904847.47747879428789 ], [ 4972764.578836180269718, 3904851.52871710434556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972632.761802385561168, 3903311.000759477727115 ], [ 4972616.901203667744994, 3903322.622636206448078 ], [ 4972591.050735710188746, 3903287.616645263973624 ], [ 4972607.199313772842288, 3903275.995303839910775 ], [ 4972632.761802385561168, 3903311.000759477727115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972300.855418313294649, 3898242.398398724384606 ], [ 4972312.602832149714231, 3898274.828288333490491 ], [ 4972292.716069743037224, 3898281.708987318910658 ], [ 4972298.160853497684002, 3898296.284530091099441 ], [ 4972283.173271087929606, 3898301.718020864762366 ], [ 4972280.306864783167839, 3898294.429977410472929 ], [ 4972248.89090427570045, 3898305.658383543603122 ], [ 4972236.570833710022271, 3898271.406784722115844 ], [ 4972248.676114527508616, 3898267.060189304407686 ], [ 4972244.664508605375886, 3898256.128676435444504 ], [ 4972275.792501294054091, 3898244.899718917440623 ], [ 4972277.797607909888029, 3898250.729606304317713 ], [ 4972300.855418313294649, 3898242.398398724384606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971998.120738695375621, 3908622.841157692950219 ], [ 4972021.605034500360489, 3908688.793479849118739 ], [ 4971960.815065332688391, 3908710.162486677058041 ], [ 4971947.64189485553652, 3908672.631994285620749 ], [ 4971981.062389283441007, 3908660.678708082996309 ], [ 4971971.038389575667679, 3908632.621592523530126 ], [ 4971998.120738695375621, 3908622.841157692950219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971609.787836887873709, 3892604.371154883410782 ], [ 4971613.80259947758168, 3892614.210154007188976 ], [ 4971598.810628340579569, 3892620.372263220138848 ], [ 4971595.943424891680479, 3892613.084317108150572 ], [ 4971574.897600571624935, 3892621.419876397121698 ], [ 4971564.002194974571466, 3892593.725692631211132 ], [ 4971637.230232854373753, 3892564.73253185627982 ], [ 4971649.55985351651907, 3892595.706593038979918 ], [ 4971634.280461926013231, 3892601.50401479145512 ], [ 4971631.698620958253741, 3892595.673115042969584 ], [ 4971609.787836887873709, 3892604.371154883410782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971561.385345369577408, 3911681.826719138305634 ], [ 4971581.871887933462858, 3911656.739913843106478 ], [ 4971629.012534053064883, 3911695.062240140978247 ], [ 4971608.23809702321887, 3911720.148470474872738 ], [ 4971561.385345369577408, 3911681.826719138305634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971557.366953094489872, 3899063.202400356996804 ], [ 4971516.72686155885458, 3899079.148094843141735 ], [ 4971494.07986859139055, 3899022.301437602844089 ], [ 4971504.167901139706373, 3899018.314865154214203 ], [ 4971496.714893338270485, 3898999.366160766221583 ], [ 4971526.114298099651933, 3898987.768970631062984 ], [ 4971531.274742944166064, 3899000.523180824238807 ], [ 4971565.862537323497236, 3898986.750959441065788 ], [ 4971558.40956414770335, 3898967.802238298114389 ], [ 4971599.337864919565618, 3898951.857147441711277 ], [ 4971604.210948027670383, 3898964.246702916920185 ], [ 4971603.346217410638928, 3898964.60921311751008 ], [ 4971621.405934386886656, 3899010.15932713681832 ], [ 4971612.182610445655882, 3899013.783345615956932 ], [ 4971619.062231515534222, 3899031.274486981797963 ], [ 4971589.086121389642358, 3899043.234625841490924 ], [ 4971584.211681977845728, 3899031.573330384213477 ], [ 4971550.200647754594684, 3899044.982477575540543 ], [ 4971557.366953094489872, 3899063.202400356996804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971354.629796853289008, 3908007.342343066353351 ], [ 4971377.111274721100926, 3907994.639648657757789 ], [ 4971395.767591121606529, 3908025.989828850142658 ], [ 4971373.285451299510896, 3908039.056638824287802 ], [ 4971354.629796853289008, 3908007.342343066353351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971267.333749180659652, 3899218.508848474361002 ], [ 4971239.95689691323787, 3899226.832912070211023 ], [ 4971227.073482119478285, 3899185.298106306232512 ], [ 4971279.521135112270713, 3899169.738079235889018 ], [ 4971292.975757750682533, 3899213.82288507791236 ], [ 4971268.192368476651609, 3899221.423488243017346 ], [ 4971267.333749180659652, 3899218.508848474361002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993368.664157036691904, 3908687.725730905774981 ], [ 4993407.564542397856712, 3908675.813784015364945 ], [ 4993428.971113100647926, 3908745.420688047073781 ], [ 4993390.070818774402142, 3908757.33260446600616 ], [ 4993368.664157036691904, 3908687.725730905774981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970975.921882248483598, 3895917.130809149239212 ], [ 4970999.081022144295275, 3895854.907513026613742 ], [ 4971027.002941284328699, 3895865.154828859027475 ], [ 4971003.843745447695255, 3895927.378101303242147 ], [ 4970975.921882248483598, 3895917.130809149239212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970936.613204660825431, 3898638.564341173972934 ], [ 4970901.762155187316239, 3898638.864069364964962 ], [ 4970901.774935433641076, 3898631.945620969403535 ], [ 4970880.172784534282982, 3898632.269854738377035 ], [ 4970879.64649857673794, 3898605.323255487717688 ], [ 4970936.099764498881996, 3898604.699292447883636 ], [ 4970936.613204660825431, 3898638.564341173972934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992687.376689481548965, 3912291.918689619284123 ], [ 4992667.781942198053002, 3912299.1492675752379 ], [ 4992652.630150160752237, 3912259.418407903052866 ], [ 4992687.208882093429565, 3912246.765652354341 ], [ 4992698.071581995114684, 3912275.561109914444387 ], [ 4992683.087635979987681, 3912280.983270674012601 ], [ 4992687.376689481548965, 3912291.918689619284123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970885.565750394947827, 3906003.746003586333245 ], [ 4970909.778342601843178, 3905989.953733738511801 ], [ 4970917.241921751759946, 3906002.348006740678102 ], [ 4970936.842764252796769, 3905991.096159603912383 ], [ 4970952.628997194580734, 3906018.435234020464122 ], [ 4970914.869075799360871, 3906039.849189451429993 ], [ 4970903.962331954389811, 3906020.894182904623449 ], [ 4970897.62091238796711, 3906024.523782915901393 ], [ 4970885.565750394947827, 3906003.746003586333245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970664.978778473101556, 3900378.606363503728062 ], [ 4970674.525666391476989, 3900355.319567381870002 ], [ 4970871.080599361099303, 3900436.882836518343538 ], [ 4970861.245569600723684, 3900460.169032332487404 ], [ 4970664.978778473101556, 3900378.606363503728062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970595.591802758164704, 3911656.366772898472846 ], [ 4970556.408692582510412, 3911673.409082049503922 ], [ 4970540.927978615276515, 3911638.059774012770504 ], [ 4970594.805075955577195, 3911614.490033780224621 ], [ 4970597.959723100997508, 3911621.050222008489072 ], [ 4970618.703849503770471, 3911611.985009253956378 ], [ 4970630.745976672507823, 3911638.588849213439971 ], [ 4970611.154056703671813, 3911647.292036768980324 ], [ 4970614.880441803485155, 3911656.038075603544712 ], [ 4970598.746444752439857, 3911662.926961391698569 ], [ 4970595.591802758164704, 3911656.366772898472846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970568.003784113563597, 3894839.648701309226453 ], [ 4970548.691053059883416, 3894846.53173352079466 ], [ 4970554.136149046942592, 3894861.83514953777194 ], [ 4970526.752416629344225, 3894871.616430193651468 ], [ 4970521.880090394988656, 3894858.134715884923935 ], [ 4970501.991264318116009, 3894865.016725787427276 ], [ 4970490.528889135457575, 3894832.224092453252524 ], [ 4970504.941251053474844, 3894827.152685752604157 ], [ 4970501.788596834056079, 3894818.407806927803904 ], [ 4970536.089836211875081, 3894806.454407129902393 ], [ 4970538.094911593943834, 3894812.648280935361981 ], [ 4970555.966692801564932, 3894806.12672753026709 ], [ 4970568.003784113563597, 3894839.648701309226453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970529.989751050248742, 3912892.842489 ], [ 4970555.845643050037324, 3912921.292327788192779 ], [ 4970535.373044685460627, 3912939.825558293610811 ], [ 4970509.22928225249052, 3912911.37521103862673 ], [ 4970529.989751050248742, 3912892.842489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970332.47522556129843, 3897148.16292540403083 ], [ 4970308.843013739213347, 3897155.40237902617082 ], [ 4970305.980600847862661, 3897145.56565118720755 ], [ 4970279.466045759618282, 3897153.892259784508497 ], [ 4970266.581470060162246, 3897111.629708508960903 ], [ 4970316.727651401422918, 3897096.427748715970665 ], [ 4970332.47522556129843, 3897148.16292540403083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970288.925799235701561, 3898757.5377854462713 ], [ 4970334.460629700683057, 3898742.327436448540539 ], [ 4970347.922339243814349, 3898783.498726713471115 ], [ 4970302.388235309161246, 3898798.344924368429929 ], [ 4970288.925799235701561, 3898757.5377854462713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970214.33907909784466, 3913447.568644319660962 ], [ 4970216.145228335633874, 3913404.240062723401934 ], [ 4970263.063317786902189, 3913406.146291238255799 ], [ 4970262.457699008285999, 3913422.531188890337944 ], [ 4970299.58913732599467, 3913424.055494025349617 ], [ 4970298.388494122773409, 3913450.999173240270466 ], [ 4970214.33907909784466, 3913447.568644319660962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970245.54405714571476, 3894588.902261939365417 ], [ 4970254.142803211696446, 3894612.586334547027946 ], [ 4970225.029224120080471, 3894623.0930265490897 ], [ 4970216.718518734909594, 3894599.409487819299102 ], [ 4970245.54405714571476, 3894588.902261939365417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992231.041842388920486, 3912420.70487236045301 ], [ 4992170.873719048686326, 3912421.638366706203669 ], [ 4992170.094694955274463, 3912389.592534719966352 ], [ 4992230.263852114789188, 3912388.294907384552062 ], [ 4992231.041842388920486, 3912420.70487236045301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970174.862871601246297, 3897495.619550940115005 ], [ 4970123.270735520869493, 3897514.460446828510612 ], [ 4970114.385441817343235, 3897490.411723299417645 ], [ 4970121.014810847118497, 3897487.874866775237024 ], [ 4970111.269380992278457, 3897461.639801846817136 ], [ 4970151.909089509397745, 3897446.78438357077539 ], [ 4970159.934905719012022, 3897468.282646167557687 ], [ 4970164.258038957603276, 3897466.833993510808796 ], [ 4970174.862871601246297, 3897495.619550940115005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970072.716544958762825, 3900925.90453788312152 ], [ 4970133.184263743460178, 3900932.20467038359493 ], [ 4970129.085447067394853, 3900968.974405392073095 ], [ 4970108.641797163523734, 3900966.75244911853224 ], [ 4970107.763250251300633, 3900974.76172509836033 ], [ 4970068.027269647456706, 3900970.684082363266498 ], [ 4970072.716544958762825, 3900925.90453788312152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970016.384307334199548, 3891812.366720359306782 ], [ 4970033.648071156814694, 3891824.414284679107368 ], [ 4970022.383392666466534, 3891840.415506675839424 ], [ 4970005.118973783217371, 3891828.732076898217201 ], [ 4970016.384307334199548, 3891812.366720359306782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992268.737500523217022, 3912100.002635341603309 ], [ 4992311.339206196367741, 3912101.571823541540653 ], [ 4992310.388895460404456, 3912134.341347438748926 ], [ 4992267.498404088430107, 3912133.135530927218497 ], [ 4992268.737500523217022, 3912100.002635341603309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969697.448322518728673, 3897575.591648945119232 ], [ 4969720.712517664767802, 3897612.410705197136849 ], [ 4969676.305941841565073, 3897640.004534335806966 ], [ 4969653.329740700311959, 3897603.186034598853439 ], [ 4969697.448322518728673, 3897575.591648945119232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991876.26415520068258, 3910713.075602763798088 ], [ 4991844.572306972928345, 3910722.095645373687148 ], [ 4991838.296126140281558, 3910700.231149876490235 ], [ 4991827.059791715815663, 3910703.478830764535815 ], [ 4991822.7787398500368, 3910689.266381955239922 ], [ 4991833.150451404973865, 3910686.380561149679124 ], [ 4991824.878147906623781, 3910657.228157181758434 ], [ 4991857.722586647607386, 3910647.846987224183977 ], [ 4991876.26415520068258, 3910713.075602763798088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969511.630175111815333, 3905294.463765321765095 ], [ 4969521.66715719923377, 3905317.422080551274121 ], [ 4969497.17261116579175, 3905327.937905151862651 ], [ 4969487.135612132027745, 3905304.979598922654986 ], [ 4969511.630175111815333, 3905294.463765321765095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969523.281265910714865, 3890786.45508685708046 ], [ 4969544.840648559853435, 3890813.43930585635826 ], [ 4969517.432248423807323, 3890834.873662759549916 ], [ 4969507.0834054145962, 3890822.110591968987137 ], [ 4969498.716644777916372, 3890828.649887328967452 ], [ 4969484.056690398603678, 3890810.053034961223602 ], [ 4969488.672879960387945, 3890806.420032842550427 ], [ 4969475.162709045223892, 3890789.281762098427862 ], [ 4969514.976588231511414, 3890758.402291397564113 ], [ 4969531.648045628331602, 3890779.915799317881465 ], [ 4969523.281265910714865, 3890786.45508685708046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969453.793464702554047, 3900615.640515672974288 ], [ 4969473.960543549619615, 3900611.671258006710559 ], [ 4969484.800580224022269, 3900669.587461072020233 ], [ 4969450.517077944241464, 3900676.08030398376286 ], [ 4969447.095712574198842, 3900656.775251083541662 ], [ 4969454.298275326378644, 3900655.331646262202412 ], [ 4969451.731761990115047, 3900641.125953353941441 ], [ 4969458.357679643668234, 3900640.04544594231993 ], [ 4969453.793464702554047, 3900615.640515672974288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969221.667847756296396, 3890445.455236524809152 ], [ 4969239.529858930967748, 3890445.851240518502891 ], [ 4969238.595995941199362, 3890484.811303799040616 ], [ 4969220.734010643325746, 3890484.415300417225808 ], [ 4969221.667847756296396, 3890445.455236524809152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969198.366514382883906, 3901406.803499502129853 ], [ 4969216.241389438509941, 3901395.911475603003055 ], [ 4969219.114141310565174, 3901399.92204022873193 ], [ 4969239.584191868081689, 3901387.214010672178119 ], [ 4969251.644660477526486, 3901406.898604798596352 ], [ 4969213.299753756262362, 3901430.498639445286244 ], [ 4969198.366514382883906, 3901406.803499502129853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969093.472166075371206, 3899016.82871449040249 ], [ 4969111.602883354760706, 3899024.871856841258705 ], [ 4969108.709761054255068, 3899032.149308178573847 ], [ 4969139.791421921923757, 3899045.677485324442387 ], [ 4969124.46434857416898, 3899080.60667568212375 ], [ 4969074.964011146686971, 3899059.034873249940574 ], [ 4969093.472166075371206, 3899016.82871449040249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968918.075305073522031, 3907618.385725608095527 ], [ 4968918.887395154684782, 3907647.517729968298227 ], [ 4968895.852255262434483, 3907648.205137456767261 ], [ 4968895.328063643537462, 3907619.073644327465445 ], [ 4968918.075305073522031, 3907618.385725608095527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968855.334743178449571, 3903377.234134573023766 ], [ 4968877.158424911089242, 3903412.229388489853591 ], [ 4968851.501494881696999, 3903427.841567458119243 ], [ 4968829.677147841081023, 3903393.21046400628984 ], [ 4968855.334743178449571, 3903377.234134573023766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968830.159523298963904, 3893683.683863181155175 ], [ 4968872.202017196454108, 3893692.861530670896173 ], [ 4968865.521526648662984, 3893723.800662126392126 ], [ 4968852.275358570739627, 3893720.864171928260475 ], [ 4968847.920104308985174, 3893740.155297484248877 ], [ 4968819.123844330199063, 3893733.914135075174272 ], [ 4968830.159523298963904, 3893683.683863181155175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990675.533447893336415, 3908792.784892589319497 ], [ 4990639.262325114570558, 3908790.506397745106369 ], [ 4990641.363279337063432, 3908757.375726770609617 ], [ 4990631.000356209464371, 3908756.620699150487781 ], [ 4990633.399557674303651, 3908719.485336288344115 ], [ 4990680.033712367527187, 3908722.518865639809519 ], [ 4990675.533447893336415, 3908792.784892589319497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990637.382876822724938, 3911636.202963963150978 ], [ 4990693.25519809499383, 3911627.24398805340752 ], [ 4990701.757941287010908, 3911678.97293731989339 ], [ 4990645.597844807431102, 3911687.931152216624469 ], [ 4990637.382876822724938, 3911636.202963963150978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968746.713226638734341, 3898846.52907891292125 ], [ 4968749.269347940571606, 3898866.924881660845131 ], [ 4968740.338884757831693, 3898868.001491517294198 ], [ 4968743.746834795922041, 3898895.317271157167852 ], [ 4968708.024382084608078, 3898899.987864766735584 ], [ 4968702.060241748578846, 3898852.27629100671038 ], [ 4968746.713226638734341, 3898846.52907891292125 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968702.43220526445657, 3897499.534173068590462 ], [ 4968739.890498737804592, 3897491.589471202343702 ], [ 4968748.460677633993328, 3897531.658893150277436 ], [ 4968711.290468818508089, 3897539.604091838933527 ], [ 4968702.43220526445657, 3897499.534173068590462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968621.286771145649254, 3898434.840771274175495 ], [ 4968622.356071259826422, 3898481.815427406225353 ], [ 4968597.008912025019526, 3898482.499026137404144 ], [ 4968597.279614955186844, 3898492.331013473682106 ], [ 4968573.661234626546502, 3898492.653549525886774 ], [ 4968572.590567741543055, 3898446.407152780331671 ], [ 4968598.225782053545117, 3898445.72403840534389 ], [ 4968597.955720372498035, 3898435.527922461740673 ], [ 4968621.286771145649254, 3898434.840771274175495 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968555.973719732835889, 3890538.584964924491942 ], [ 4968509.251193613745272, 3890566.540679431520402 ], [ 4968474.203295226208866, 3890508.946823616977781 ], [ 4968516.023583818227053, 3890483.531328687444329 ], [ 4968523.492598807439208, 3890495.924822522327304 ], [ 4968536.75960501190275, 3890487.93732980825007 ], [ 4968549.974090924486518, 3890509.808272581547499 ], [ 4968541.610028598457575, 3890514.891355850733817 ], [ 4968555.973719732835889, 3890538.584964924491942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968411.620555949397385, 3904334.845076019410044 ], [ 4968438.721274796873331, 3904316.321955311112106 ], [ 4968468.881449734792113, 3904359.342426945455372 ], [ 4968441.780753321014345, 3904377.865517727099359 ], [ 4968411.620555949397385, 3904334.845076019410044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968013.435670821927488, 3901485.188482907600701 ], [ 4967953.752946221269667, 3901524.774943597149104 ], [ 4967931.348013830371201, 3901491.235997258685529 ], [ 4967991.030779649503529, 3901451.649487619753927 ], [ 4968013.435670821927488, 3901485.188482907600701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989015.009643572382629, 3908502.337124199140817 ], [ 4989060.769581117667258, 3908509.735230274498463 ], [ 4989053.455035015940666, 3908555.961639604531229 ], [ 4989028.415757186710835, 3908552.257135699503124 ], [ 4989029.878288574516773, 3908543.15750443097204 ], [ 4989008.868867004290223, 3908539.827317839488387 ], [ 4989015.009643572382629, 3908502.337124199140817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967827.005375429987907, 3903869.55811627022922 ], [ 4967862.760230391286314, 3903842.310272478032857 ], [ 4967899.824765665456653, 3903890.075772755779326 ], [ 4967864.069936419837177, 3903917.323568029329181 ], [ 4967827.005375429987907, 3903869.55811627022922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967650.837536547333002, 3902663.615474640391767 ], [ 4967676.496382221579552, 3902646.909767149947584 ], [ 4967708.665420772507787, 3902695.75890180375427 ], [ 4967673.492700835689902, 3902718.638368492946029 ], [ 4967654.247984973713756, 3902689.838788978755474 ], [ 4967664.049867757596076, 3902683.665490203537047 ], [ 4967650.837536547333002, 3902663.615474640391767 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967524.325618349947035, 3905391.468354086391628 ], [ 4967501.641084016300738, 3905354.652017628308386 ], [ 4967532.484097558073699, 3905335.770284273196012 ], [ 4967568.090466816909611, 3905393.364412428811193 ], [ 4967529.176824001595378, 3905416.965914549306035 ], [ 4967516.54226453974843, 3905396.552793078590184 ], [ 4967524.325618349947035, 3905391.468354086391628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988871.806719691492617, 3908087.95738112134859 ], [ 4988902.306815223768353, 3908095.680945831350982 ], [ 4988904.6312494315207, 3908087.311745954211801 ], [ 4988919.592918192967772, 3908091.354882686864585 ], [ 4988907.382984408177435, 3908137.93312361696735 ], [ 4988884.364221687428653, 3908132.049047389067709 ], [ 4988882.618382934480906, 3908139.327307416591793 ], [ 4988859.888450191356242, 3908133.079846450127661 ], [ 4988871.806719691492617, 3908087.95738112134859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988616.838501856662333, 3907921.636532166507095 ], [ 4988617.010476360097528, 3907967.881813419051468 ], [ 4988580.731684997677803, 3907968.155011375434697 ], [ 4988580.996792911551893, 3907977.258992778137326 ], [ 4988564.584465002641082, 3907977.582003002054989 ], [ 4988564.410575927235186, 3907932.064982585143298 ], [ 4988590.612213690765202, 3907931.766504795756191 ], [ 4988590.348933696746826, 3907921.934262789785862 ], [ 4988616.838501856662333, 3907921.636532166507095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988394.91628488060087, 3906973.608124115969986 ], [ 4988396.829883746802807, 3907014.395741183776408 ], [ 4988354.499642919749022, 3907016.110655880067497 ], [ 4988352.585070604458451, 3906975.687171964440495 ], [ 4988394.91628488060087, 3906973.608124115969986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988090.786518668755889, 3908739.257302829995751 ], [ 4988117.282524035312235, 3908736.04603484319523 ], [ 4988120.6713044391945, 3908762.63616622518748 ], [ 4988094.175324865616858, 3908765.847430918365717 ], [ 4988090.786518668755889, 3908739.257302829995751 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967014.931143102236092, 3899311.795946326106787 ], [ 4967019.322636792436242, 3899269.92845616210252 ], [ 4967059.061587204225361, 3899274.00158733734861 ], [ 4967057.301860714331269, 3899292.569226130377501 ], [ 4967077.747032635845244, 3899294.788859162479639 ], [ 4967075.403199014253914, 3899318.089193217456341 ], [ 4967014.931143102236092, 3899311.795946326106787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966907.616905792616308, 3905855.045285893604159 ], [ 4966882.824803489260375, 3905872.117357718758285 ], [ 4966862.143035136163235, 3905842.587584170978516 ], [ 4966927.295399205759168, 3905797.181805775035173 ], [ 4966947.402484416030347, 3905825.982388194650412 ], [ 4966926.934418371878564, 3905840.148720147553831 ], [ 4966933.827704082243145, 3905850.356123322155327 ], [ 4966913.936166949570179, 3905864.159313910175115 ], [ 4966907.616905792616308, 3905855.045285893604159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988024.783659571781754, 3907609.189389453735203 ], [ 4987950.473178474232554, 3907619.564664086326957 ], [ 4987946.232058892957866, 3907588.238734536804259 ], [ 4988020.254701048135757, 3907577.862732889596373 ], [ 4988024.783659571781754, 3907609.189389453735203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987985.696889606304467, 3904218.293217634316534 ], [ 4988015.666426548734307, 3904209.628496488090605 ], [ 4988021.377673273906112, 3904228.941673439461738 ], [ 4987991.408155985176563, 3904237.606388318352401 ], [ 4987985.696889606304467, 3904218.293217634316534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987912.254624404013157, 3908633.579374144785106 ], [ 4987845.707116220146418, 3908649.436191760469228 ], [ 4987838.583306315355003, 3908619.559645541012287 ], [ 4987905.130884160287678, 3908603.702810578979552 ], [ 4987912.254624404013157, 3908633.579374144785106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987701.157026339322329, 3907026.503331280779094 ], [ 4987710.262701969593763, 3907070.221745220944285 ], [ 4987665.03440229408443, 3907079.577359375543892 ], [ 4987655.928656357340515, 3907035.858960512559861 ], [ 4987701.157026339322329, 3907026.503331280779094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988157.057665859349072, 3913689.451734348200262 ], [ 4988127.957681869156659, 3913699.939157614018768 ], [ 4988115.951020749285817, 3913666.408944148104638 ], [ 4988145.050129517912865, 3913656.285639793146402 ], [ 4988157.057665859349072, 3913689.451734348200262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988067.153467303141952, 3908401.647414999548346 ], [ 4987995.139433471485972, 3908415.669604410417378 ], [ 4987987.178209425881505, 3908375.231092744972557 ], [ 4988006.478486740961671, 3908371.273577895481139 ], [ 4988006.478486740961671, 3908371.273577895481139 ], [ 4988033.556105642579496, 3908365.878875749185681 ], [ 4988035.260970889590681, 3908374.986432179808617 ], [ 4988060.898109627887607, 3908369.952309889253229 ], [ 4988067.153467303141952, 3908401.647414999548346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988003.980768295936286, 3913200.03907324699685 ], [ 4988046.907756735570729, 3913185.944556481204927 ], [ 4988057.195691277272999, 3913216.193249153904617 ], [ 4988014.267840684391558, 3913230.651881363708526 ], [ 4988003.980768295936286, 3913200.03907324699685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966653.92997751198709, 3896484.443700776435435 ], [ 4966655.828182091936469, 3896554.359780244994909 ], [ 4966611.467874236404896, 3896555.377273340709507 ], [ 4966609.569554365240037, 3896485.461196966469288 ], [ 4966653.92997751198709, 3896484.443700776435435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987614.860197650268674, 3908042.219873637426645 ], [ 4987685.439936974085867, 3908026.372456551529467 ], [ 4987692.276158900931478, 3908056.248239248525351 ], [ 4987621.696493889205158, 3908072.09563867887482 ], [ 4987614.860197650268674, 3908042.219873637426645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987573.724583800882101, 3908727.051990770269185 ], [ 4987542.323359259404242, 3908734.621285351458937 ], [ 4987538.902559953741729, 3908720.775798327289522 ], [ 4987528.243542943149805, 3908723.298432511277497 ], [ 4987524.825429462827742, 3908708.360555587802082 ], [ 4987534.619818456470966, 3908706.199919800739735 ], [ 4987524.928720388561487, 3908666.485537353437394 ], [ 4987557.193756316788495, 3908658.918354318011552 ], [ 4987573.724583800882101, 3908727.051990770269185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987315.368530130945146, 3907947.171461777761579 ], [ 4987276.479658809490502, 3907955.08678860636428 ], [ 4987269.652790197171271, 3907921.205678822938353 ], [ 4987334.467069733887911, 3907908.256236158311367 ], [ 4987344.426942429505289, 3907955.98210909543559 ], [ 4987318.21281017549336, 3907961.379628225695342 ], [ 4987315.368530130945146, 3907947.171461777761579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987284.388092872686684, 3902275.739396082703024 ], [ 4987323.25294975657016, 3902280.932758681476116 ], [ 4987316.501390241086483, 3902332.986947700381279 ], [ 4987309.303678960539401, 3902332.240991685073823 ], [ 4987306.369282950647175, 3902354.445793588180095 ], [ 4987267.791614638641477, 3902349.617291789036244 ], [ 4987273.371473755687475, 3902305.571102003101259 ], [ 4987280.568298500962555, 3902306.681177566293627 ], [ 4987284.388092872686684, 3902275.739396082703024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987734.508806532248855, 3908209.652569002006203 ], [ 4987794.71413857396692, 3908197.421096798963845 ], [ 4987800.969851274974644, 3908229.116136565804482 ], [ 4987788.007279810495675, 3908231.632961947470903 ], [ 4987791.137392339296639, 3908246.570154914166778 ], [ 4987765.500187173485756, 3908251.604534225538373 ], [ 4987762.653470852412283, 3908238.488709336146712 ], [ 4987741.336816384457052, 3908242.805541935376823 ], [ 4987734.508806532248855, 3908209.652569002006203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966113.388922084122896, 3899520.743239543400705 ], [ 4966140.165355486795306, 3899525.885770083405077 ], [ 4966130.289103328250349, 3899576.119243446737528 ], [ 4966103.512718128040433, 3899570.976722594816238 ], [ 4966113.388922084122896, 3899520.743239543400705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986912.181675751693547, 3908575.768563627265394 ], [ 4986919.294067388400435, 3908610.742691779974848 ], [ 4986868.308604503981769, 3908620.813844069838524 ], [ 4986861.195260080508888, 3908586.203859784640372 ], [ 4986912.181675751693547, 3908575.768563627265394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987224.416187076829374, 3907700.066077906638384 ], [ 4987249.188258701004088, 3907695.757323127705604 ], [ 4987257.140065057203174, 3907740.565163858700544 ], [ 4987264.629618383944035, 3907739.127033358439803 ], [ 4987269.458982185460627, 3907765.720577999018133 ], [ 4987226.826879383064806, 3907773.626779333688319 ], [ 4987218.02020575851202, 3907725.175522105768323 ], [ 4987228.677800567820668, 3907723.381027184426785 ], [ 4987224.416187076829374, 3907700.066077906638384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987181.028465057723224, 3901795.560555202886462 ], [ 4987147.861883058212698, 3901815.142298942431808 ], [ 4987112.586000851355493, 3901755.338299714960158 ], [ 4987133.63934662938118, 3901743.009440248366445 ], [ 4987141.669040504842997, 3901756.866113411728293 ], [ 4987154.070306757465005, 3901749.613896071445197 ], [ 4987181.028465057723224, 3901795.560555202886462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987041.254067537374794, 3908658.01418003346771 ], [ 4987047.195003747940063, 3908700.996397312730551 ], [ 4987016.088940680027008, 3908705.653966947924346 ], [ 4987016.088940680027008, 3908705.653966947924346 ], [ 4986883.604162675328553, 3908723.900781326927245 ], [ 4986877.094261257909238, 3908678.004148203879595 ], [ 4986934.120433611795306, 3908670.132575982715935 ], [ 4986934.401224328204989, 3908673.046324713155627 ], [ 4987041.254067537374794, 3908658.01418003346771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986763.546993107534945, 3905416.19300055783242 ], [ 4986778.977144661359489, 3905465.024319475982338 ], [ 4986769.178973398171365, 3905468.277616061270237 ], [ 4986774.035883544012904, 3905483.947137514129281 ], [ 4986735.997689504176378, 3905495.870769819710404 ], [ 4986723.997108756564558, 3905457.607660547830164 ], [ 4986704.978443559259176, 3905463.38744033081457 ], [ 4986696.404787941835821, 3905436.784917571116239 ], [ 4986763.546993107534945, 3905416.19300055783242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986736.308078392408788, 3908440.246085839811713 ], [ 4986755.317544690333307, 3908437.379362061154097 ], [ 4986753.614913021214306, 3908427.179494795389473 ], [ 4986777.809520665556192, 3908423.233030208852142 ], [ 4986778.940754365175962, 3908431.610841798596084 ], [ 4986801.406984951347113, 3908428.024315959773958 ], [ 4986806.794739886187017, 3908461.901804952416569 ], [ 4986741.412436382845044, 3908472.302207387052476 ], [ 4986736.308078392408788, 3908440.246085839811713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986481.840466794557869, 3909723.92369405599311 ], [ 4986484.660239303484559, 3909748.327452197205275 ], [ 4986473.428580233827233, 3909749.756715808529407 ], [ 4986476.52918579056859, 3909777.074219399597496 ], [ 4986437.075361260212958, 3909781.712194465100765 ], [ 4986435.379764144308865, 3909768.599291861057281 ], [ 4986427.028003174811602, 3909769.671429206617177 ], [ 4986424.770732290111482, 3909750.731036608573049 ], [ 4986430.818411014974117, 3909750.017441721167415 ], [ 4986428.562907803803682, 3909730.348787302616984 ], [ 4986481.840466794557869, 3909723.92369405599311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986595.219491290859878, 3908680.958464819006622 ], [ 4986543.944602789357305, 3908691.757794110570103 ], [ 4986535.691597688943148, 3908652.047267162706703 ], [ 4986586.965673069469631, 3908641.612053009681404 ], [ 4986595.219491290859878, 3908680.958464819006622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965612.227202955633402, 3898836.439186848700047 ], [ 4965588.039137012325227, 3898833.122105390299112 ], [ 4965585.417548231780529, 3898850.960152270272374 ], [ 4965557.773883517831564, 3898847.273268220480531 ], [ 4965560.688274236395955, 3898826.522661238908768 ], [ 4965557.520680567249656, 3898826.153309407178313 ], [ 4965563.059651481918991, 3898785.744008699897677 ], [ 4965618.059080568142235, 3898793.117340405937284 ], [ 4965612.227202955633402, 3898836.439186848700047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965550.972177714109421, 3897731.568025716580451 ], [ 4965557.380850257351995, 3897687.88301525823772 ], [ 4965539.815230502746999, 3897685.3051578104496 ], [ 4965542.436900136992335, 3897667.467118863016367 ], [ 4965562.306771473027766, 3897670.048776572570205 ], [ 4965565.803354147821665, 3897645.657846591435373 ], [ 4965599.207056649960577, 3897650.446626603603363 ], [ 4965586.679409879259765, 3897736.724717003758997 ], [ 4965550.972177714109421, 3897731.568025716580451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965554.823185957968235, 3893821.917392524890602 ], [ 4965583.074585425667465, 3893809.583582829684019 ], [ 4965592.544904622249305, 3893831.446938695386052 ], [ 4965564.581594755873084, 3893843.781213455367833 ], [ 4965554.823185957968235, 3893821.917392524890602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986402.71100986469537, 3896521.050467547960579 ], [ 4986442.425527542829514, 3896535.711960030253977 ], [ 4986420.971804104745388, 3896592.828363231848925 ], [ 4986381.25824162364006, 3896577.802773987874389 ], [ 4986402.71100986469537, 3896521.050467547960579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986156.704510729759932, 3909762.826754179783165 ], [ 4986147.929121440276504, 3909700.902945796493441 ], [ 4986183.929079839959741, 3909695.892065574415028 ], [ 4986192.704387872479856, 3909757.815885531250387 ], [ 4986156.704510729759932, 3909762.826754179783165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986456.773016382008791, 3893945.691377701237798 ], [ 4986410.951362952589989, 3893953.226993709336966 ], [ 4986404.132996596395969, 3893913.884478047024459 ], [ 4986449.955598209984601, 3893905.984723203349859 ], [ 4986456.773016382008791, 3893945.691377701237798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986165.102594252675772, 3902948.840390948578715 ], [ 4986156.207077041268349, 3902935.710171745158732 ], [ 4986188.800886338576674, 3902913.941023041494191 ], [ 4986196.548020105808973, 3902925.611951651982963 ], [ 4986203.470830075442791, 3902920.894973608199507 ], [ 4986217.244275230914354, 3902941.319629810750484 ], [ 4986209.744640944525599, 3902946.399341547396034 ], [ 4986216.631357181817293, 3902956.611670491751283 ], [ 4986192.690850005485117, 3902972.575591852422804 ], [ 4986173.467019600793719, 3902943.398624462541193 ], [ 4986165.102594252675772, 3902948.840390948578715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965107.861608780920506, 3902217.654473352245986 ], [ 4965097.209271472878754, 3902215.816437836270779 ], [ 4965102.145356337539852, 3902191.063600592315197 ], [ 4965149.935427725315094, 3902200.24489158578217 ], [ 4965141.224621043540537, 3902243.926354690920562 ], [ 4965104.086954487487674, 3902236.583112985361367 ], [ 4965107.861608780920506, 3902217.654473352245986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985762.886969431303442, 3910468.660544879268855 ], [ 4985812.135901731438935, 3910460.767918537370861 ], [ 4985816.391289829276502, 3910486.995732201263309 ], [ 4985823.880000246688724, 3910485.557197625283152 ], [ 4985826.997806896455586, 3910505.956148595549166 ], [ 4985773.716710424982011, 3910514.567329969722778 ], [ 4985770.310097303241491, 3910494.531824755948037 ], [ 4985767.142404296435416, 3910494.888350868131965 ], [ 4985762.886969431303442, 3910468.660544879268855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985722.572216361761093, 3910952.496804402209818 ], [ 4985743.893387897871435, 3910945.265313528012484 ], [ 4985753.042850845493376, 3910971.504874111153185 ], [ 4985699.73998935893178, 3910989.583615234587342 ], [ 4985689.448537544347346, 3910959.335867574438453 ], [ 4985721.142389838583767, 3910948.487907296977937 ], [ 4985722.572216361761093, 3910952.496804402209818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964904.710073872469366, 3899102.552199047524482 ], [ 4964881.879480315372348, 3899150.21616727579385 ], [ 4964852.811906353570521, 3899136.696183785330504 ], [ 4964875.643050750717521, 3899088.668062145356089 ], [ 4964904.710073872469366, 3899102.552199047524482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985507.018377524800599, 3898878.822996017988771 ], [ 4985544.419076716527343, 3898775.863486187066883 ], [ 4985517.656023694202304, 3898766.332086551468819 ], [ 4985524.323981113731861, 3898748.141503610648215 ], [ 4985532.669549860991538, 3898751.07450606347993 ], [ 4985541.367587171494961, 3898727.062694094143808 ], [ 4985564.389043158851564, 3898735.492772286292166 ], [ 4985573.665765763260424, 3898710.389963994733989 ], [ 4985613.954401654191315, 3898724.687501486390829 ], [ 4985552.198727662675083, 3898894.952790718059987 ], [ 4985507.018377524800599, 3898878.822996017988771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985245.805750200524926, 3897660.547632470726967 ], [ 4985219.278381895273924, 3897672.500787807162851 ], [ 4985210.68253784161061, 3897653.545556772965938 ], [ 4985237.209920978173614, 3897641.59239310072735 ], [ 4985245.805750200524926, 3897660.547632470726967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985513.533473475836217, 3910724.776836359407753 ], [ 4985537.178801896981895, 3910708.811544700525701 ], [ 4985570.457260643132031, 3910757.685045627411455 ], [ 4985532.105190400034189, 3910783.810846190433949 ], [ 4985502.555331402458251, 3910740.772440308239311 ], [ 4985517.549998585134745, 3910730.612575360573828 ], [ 4985513.533473475836217, 3910724.776836359407753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985450.866013210266829, 3903937.562497168779373 ], [ 4985500.399978089146316, 3903935.860222740564495 ], [ 4985500.658340805210173, 3903948.241317647043616 ], [ 4985507.569446711800992, 3903948.257842217106372 ], [ 4985509.164875250309706, 3904003.609674025792629 ], [ 4985472.303108973428607, 3904004.613950191065669 ], [ 4985471.76634382084012, 3903988.226741216145456 ], [ 4985452.471128628589213, 3903988.90889951121062 ], [ 4985450.866013210266829, 3903937.562497168779373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985350.235724417492747, 3907613.599812087602913 ], [ 4985355.924693545326591, 3907642.743984397500753 ], [ 4985324.526307771913707, 3907648.859344078693539 ], [ 4985326.233005886897445, 3907657.602594143245369 ], [ 4985280.143632914870977, 3907666.596035771537572 ], [ 4985273.317643723450601, 3907631.258917508181185 ], [ 4985296.073998151347041, 3907626.94355997024104 ], [ 4985294.08370438683778, 3907616.378973573446274 ], [ 4985313.672048257663846, 3907612.420212596189231 ], [ 4985315.092565280385315, 3907620.434514423832297 ], [ 4985350.235724417492747, 3907613.599812087602913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964733.098015678115189, 3901922.827882220502943 ], [ 4964712.44086592271924, 3901874.729218405205756 ], [ 4964732.037393630482256, 3901866.385911535471678 ], [ 4964730.603948613628745, 3901862.37815501820296 ], [ 4964753.946656123735011, 3901852.584402584005147 ], [ 4964776.611975006759167, 3901905.420048892032355 ], [ 4964762.203310484066606, 3901911.222807579208165 ], [ 4964766.792785880155861, 3901922.518289651721716 ], [ 4964749.213946869596839, 3901929.772445049136877 ], [ 4964744.337070141918957, 3901918.112370122224092 ], [ 4964733.098015678115189, 3901922.827882220502943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964697.875969938933849, 3903580.294607087038457 ], [ 4964693.792634688317776, 3903612.331538033671677 ], [ 4964669.320790183730423, 3903609.014808392617851 ], [ 4964673.692063472233713, 3903576.978339109569788 ], [ 4964697.875969938933849, 3903580.294607087038457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964675.707088788039982, 3901438.805483659729362 ], [ 4964703.106726730242372, 3901413.724760557059199 ], [ 4964722.943279115483165, 3901435.240543734747916 ], [ 4964732.461666624061763, 3901426.15267763659358 ], [ 4964747.698604387231171, 3901442.563209834508598 ], [ 4964704.72456892952323, 3901481.819794158451259 ], [ 4964686.037640096619725, 3901461.762404090259224 ], [ 4964691.806256600655615, 3901456.309769192244858 ], [ 4964675.707088788039982, 3901438.805483659729362 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964573.978566698729992, 3902016.880751688033342 ], [ 4964556.351140682585537, 3902054.357803517021239 ], [ 4964538.222285410389304, 3902045.589459921699017 ], [ 4964534.465016052126884, 3902053.958414482418448 ], [ 4964509.717230206355453, 3902042.266384988557547 ], [ 4964531.100700151175261, 3901997.148607036098838 ], [ 4964573.978566698729992, 3902016.880751688033342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985065.924504946917295, 3905606.918423582799733 ], [ 4985104.193497402593493, 3905618.661559538450092 ], [ 4985083.300579397939146, 3905686.340481332503259 ], [ 4985045.030809929594398, 3905674.961504641454667 ], [ 4985065.924504946917295, 3905606.918423582799733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985047.842631550505757, 3900244.67584488959983 ], [ 4985046.086094628088176, 3900256.687993661500514 ], [ 4985013.264198383316398, 3900252.240535860415548 ], [ 4985014.732718432322145, 3900240.227701699826866 ], [ 4985047.842631550505757, 3900244.67584488959983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984981.908051322214305, 3908978.949308446608484 ], [ 4985022.171210707165301, 3908997.615616566035897 ], [ 4985009.148786311037838, 3909025.622936291154474 ], [ 4984968.88652354106307, 3909006.592516616452485 ], [ 4984981.908051322214305, 3908978.949308446608484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984845.659981120377779, 3909128.649185377638787 ], [ 4984817.158887828700244, 3909127.853473617695272 ], [ 4984818.709560127928853, 3909080.884009160101414 ], [ 4984847.210703211836517, 3909081.679722560103983 ], [ 4984845.659981120377779, 3909128.649185377638787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985248.905139690265059, 3909418.728177886921912 ], [ 4985277.974778881296515, 3909422.438766648061574 ], [ 4985273.287618042901158, 3909456.291957395616919 ], [ 4985254.866984349675477, 3909454.063271450344473 ], [ 4985256.038550897501409, 3909445.69100553682074 ], [ 4985245.677482008002698, 3909444.209793015848845 ], [ 4985248.905139690265059, 3909418.728177886921912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985187.324090722948313, 3906138.839872961398214 ], [ 4985224.195055176503956, 3906132.737383102998137 ], [ 4985225.049336959607899, 3906136.744870759546757 ], [ 4985261.632373614236712, 3906130.641746744979173 ], [ 4985269.58016106300056, 3906178.726127101108432 ], [ 4985252.297759229317307, 3906181.233882777392864 ], [ 4985251.446084825322032, 3906176.134003832936287 ], [ 4985186.058834761381149, 3906186.538176208268851 ], [ 4985181.231450121849775, 3906158.124381326138973 ], [ 4985190.448966074734926, 3906156.689784532878548 ], [ 4985187.324090722948313, 3906138.839872961398214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985053.061909537762403, 3915386.411675191484392 ], [ 4985082.119922837242484, 3915392.306858921889216 ], [ 4985078.041707668453455, 3915412.688686849083751 ], [ 4985048.982850705273449, 3915407.157639659009874 ], [ 4985053.061909537762403, 3915386.411675191484392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964340.960495294071734, 3895214.194495833944529 ], [ 4964331.376439166255295, 3895262.972450208384544 ], [ 4964295.381123758852482, 3895255.632202952168882 ], [ 4964304.676477516070008, 3895207.217902873642743 ], [ 4964340.960495294071734, 3895214.194495833944529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984748.815754455514252, 3908564.74262709217146 ], [ 4984768.143819999881089, 3908548.76647399039939 ], [ 4984781.924059318378568, 3908565.549158281646669 ], [ 4984796.636916947551072, 3908553.203440041746944 ], [ 4984809.555980686098337, 3908568.891703757923096 ], [ 4984801.478046027012169, 3908575.791117203887552 ], [ 4984819.56574560329318, 3908597.317734953481704 ], [ 4984793.890685989521444, 3908618.740830728318542 ], [ 4984748.815754455514252, 3908564.74262709217146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984876.24130604416132, 3909831.498089987784624 ], [ 4984820.068985885940492, 3909844.838043402414769 ], [ 4984805.81441087089479, 3909785.450644567608833 ], [ 4984862.274748242460191, 3909772.111343496944755 ], [ 4984876.24130604416132, 3909831.498089987784624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984253.285201014019549, 3909068.264068982098252 ], [ 4984297.354759310372174, 3909059.992390426341444 ], [ 4984303.327336627058685, 3909091.321826292201877 ], [ 4984259.258681748062372, 3909099.229364424012601 ], [ 4984253.285201014019549, 3909068.264068982098252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984160.018095054663718, 3903773.199312715325505 ], [ 4984186.291950558312237, 3903743.766172661446035 ], [ 4984216.465133129619062, 3903770.782592430710793 ], [ 4984221.950966871343553, 3903764.605209514033049 ], [ 4984243.503082074224949, 3903783.954696063883603 ], [ 4984217.518020254559815, 3903813.024326026905328 ], [ 4984206.885524530895054, 3903803.531992926262319 ], [ 4984201.399702167138457, 3903809.709379067178816 ], [ 4984160.018095054663718, 3903773.199312715325505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984027.992124917916954, 3907283.122937312349677 ], [ 4984038.811673452146351, 3907335.219149386044592 ], [ 4983924.449663735926151, 3907358.620758876670152 ], [ 4983915.623310710303485, 3907315.996683013159782 ], [ 4983948.175166728906333, 3907309.154104793909937 ], [ 4983946.750826692208648, 3907302.596398357767612 ], [ 4983973.25284253526479, 3907297.19626429816708 ], [ 4983974.393499713391066, 3907301.932647988665849 ], [ 4984002.91186030395329, 3907296.173117789905518 ], [ 4984001.489233689382672, 3907288.887147711124271 ], [ 4984027.992124917916954, 3907283.122937312349677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984055.605020361952484, 3894724.673596853390336 ], [ 4984033.98339316714555, 3894731.905683245044202 ], [ 4984037.417168537154794, 3894741.745203125756234 ], [ 4984014.931376014836133, 3894748.975286511238664 ], [ 4984013.788482379168272, 3894744.967192144598812 ], [ 4983978.905867428518832, 3894756.537920509465039 ], [ 4983967.748785887844861, 3894723.376091886311769 ], [ 4983975.5323964105919, 3894720.845345135778189 ], [ 4983964.947172213345766, 3894689.505500848870724 ], [ 4983992.046242717653513, 3894680.465494468342513 ], [ 4983996.338276544585824, 3894692.855919238179922 ], [ 4984039.869646992534399, 3894678.39237648062408 ], [ 4984055.605020361952484, 3894724.673596853390336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984107.562786044552922, 3909577.708737222943455 ], [ 4984078.183966361917555, 3909583.102013912983239 ], [ 4984071.084318537265062, 3909541.210129681043327 ], [ 4984100.174427876248956, 3909536.180302780121565 ], [ 4984107.562786044552922, 3909577.708737222943455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984015.348356364294887, 3906656.057561512105167 ], [ 4984047.894228792749345, 3906652.128148920834064 ], [ 4984052.979164152406156, 3906694.015241386834532 ], [ 4984020.145408391952515, 3906697.943975294474512 ], [ 4984015.348356364294887, 3906656.057561512105167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963661.484591037034988, 3899745.800285705830902 ], [ 4963683.925627333112061, 3899760.765043771825731 ], [ 4963675.265281839296222, 3899773.495928748976439 ], [ 4963683.033435575664043, 3899778.606014377437532 ], [ 4963669.464903745800257, 3899798.975886956322938 ], [ 4963639.255732395686209, 3899778.901065382640809 ], [ 4963661.484591037034988, 3899745.800285705830902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983563.855009753257036, 3917334.312181894667447 ], [ 4983535.690937479957938, 3917316.040123724844307 ], [ 4983578.72813893482089, 3917250.595720463898033 ], [ 4983606.89225086197257, 3917268.867823002394289 ], [ 4983563.855009753257036, 3917334.312181894667447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983463.769241629168391, 3914070.344592282082886 ], [ 4983424.562064276076853, 3914095.743192043155432 ], [ 4983359.163713283836842, 3913995.090951136313379 ], [ 4983394.04640569537878, 3913972.595323966350406 ], [ 4983408.960958241485059, 3913995.934399441815913 ], [ 4983431.447369391098619, 3913981.421085095964372 ], [ 4983469.882496807724237, 3914040.863904921337962 ], [ 4983452.009373903274536, 3914052.110664249863476 ], [ 4983463.769241629168391, 3914070.344592282082886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983491.634177457541227, 3908876.047430446837097 ], [ 4983463.687520631588995, 3908884.357757695484906 ], [ 4983455.972124671563506, 3908859.214735960122198 ], [ 4983483.919648630544543, 3908850.540270062629133 ], [ 4983491.634177457541227, 3908876.047430446837097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963544.719432331621647, 3904214.956125435419381 ], [ 4963573.822306261397898, 3904202.985617337748408 ], [ 4963591.608126669190824, 3904245.981112794950604 ], [ 4963562.793250714428723, 3904257.952055352274328 ], [ 4963544.719432331621647, 3904214.956125435419381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963426.848968273960054, 3904275.216643441468477 ], [ 4963453.369239758700132, 3904257.415852644480765 ], [ 4963479.513465476222336, 3904295.690697818994522 ], [ 4963453.281173150986433, 3904313.491915464866906 ], [ 4963426.848968273960054, 3904275.216643441468477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963410.266847788356245, 3899609.584496817085892 ], [ 4963394.962390289641917, 3899635.049604906700552 ], [ 4963343.456688298843801, 3899604.381958769634366 ], [ 4963359.049123891629279, 3899578.91727304039523 ], [ 4963410.266847788356245, 3899609.584496817085892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983310.719223665073514, 3894954.530075738672167 ], [ 4983317.94760505668819, 3894942.894615380559117 ], [ 4983344.41036534588784, 3894959.705692205578089 ], [ 4983306.535932311788201, 3895019.699627955444157 ], [ 4983277.772099598310888, 3895001.426759482361376 ], [ 4983289.625360694713891, 3894982.883499536663294 ], [ 4983271.503698477521539, 3894971.55366429220885 ], [ 4983290.008379383012652, 3894941.737732312642038 ], [ 4983310.719223665073514, 3894954.530075738672167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963339.907798207364976, 3892857.058338708244264 ], [ 4963373.923106883652508, 3892843.27472426276654 ], [ 4963389.134364744648337, 3892879.71143197035417 ], [ 4963354.830442794598639, 3892893.858704090584069 ], [ 4963339.907798207364976, 3892857.058338708244264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963213.901849763467908, 3904183.486346031539142 ], [ 4963186.808585633523762, 3904199.465822265483439 ], [ 4963163.257765311747789, 3904159.738785080611706 ], [ 4963190.063094726763666, 3904143.758836074732244 ], [ 4963213.901849763467908, 3904183.486346031539142 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983022.590344647876918, 3907138.417007124051452 ], [ 4983058.173076959326863, 3907065.672371442895383 ], [ 4983098.438763071782887, 3907085.064035564661026 ], [ 4983062.855947064235806, 3907157.808618796989322 ], [ 4983022.590344647876918, 3907138.417007124051452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962985.301175260916352, 3895254.658706835471094 ], [ 4962957.09146972745657, 3895241.870402926113456 ], [ 4962950.732772224582732, 3895255.697447575628757 ], [ 4962929.143823544494808, 3895245.832477899733931 ], [ 4962936.370068669319153, 3895229.82199841318652 ], [ 4962924.280177019536495, 3895224.341315187513828 ], [ 4962941.909774862229824, 3895186.863345630932599 ], [ 4962947.666388946585357, 3895189.785307796671987 ], [ 4962962.984805662184954, 3895156.673317957669497 ], [ 4962990.330427483655512, 3895169.460285571869463 ], [ 4962977.035727300681174, 3895197.841721923556179 ], [ 4963005.53296042047441, 3895210.994622158817947 ], [ 4962985.301175260916352, 3895254.658706835471094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962779.210825874470174, 3901490.427617096807808 ], [ 4962770.835515181533992, 3901505.708159502130002 ], [ 4962735.156365055590868, 3901485.26175093324855 ], [ 4962743.531099593266845, 3901470.345327257644385 ], [ 4962779.210825874470174, 3901490.427617096807808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962725.169188932515681, 3899185.763547304086387 ], [ 4962714.473357173614204, 3899211.236147740855813 ], [ 4962659.786133911460638, 3899188.211644790600985 ], [ 4962670.481922906823456, 3899162.739022946916521 ], [ 4962725.169188932515681, 3899185.763547304086387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982630.876122959889472, 3908203.334939775057137 ], [ 4982638.34533, 3908210.634654830675572 ], [ 4982606.309204518795013, 3908244.425806870218366 ], [ 4982598.839998231269419, 3908237.126100569032133 ], [ 4982630.876122959889472, 3908203.334939775057137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962686.323347536846995, 3899722.795527014415711 ], [ 4962700.7978755235672, 3899674.752666014246643 ], [ 4962731.312731178477407, 3899683.902997564058751 ], [ 4962716.838153499178588, 3899731.945842395536602 ], [ 4962686.323347536846995, 3899722.795527014415711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962431.519160457886755, 3895156.218019672203809 ], [ 4962451.329235699959099, 3895199.215616784058511 ], [ 4962412.41428776551038, 3895216.998330350033939 ], [ 4962423.611674376763403, 3895241.048004340846092 ], [ 4962396.22684252075851, 3895253.750595682766289 ], [ 4962370.387030660174787, 3895197.999292621389031 ], [ 4962387.682680345140398, 3895190.014913039281964 ], [ 4962382.515490721911192, 3895178.354872717987746 ], [ 4962431.519160457886755, 3895156.218019672203809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981813.257861287333071, 3907533.296528374776244 ], [ 4981887.519015245139599, 3907416.213394250255078 ], [ 4981857.042433690279722, 3907396.845620060805231 ], [ 4981888.249355616047978, 3907347.758162970189005 ], [ 4981972.204521151259542, 3907400.746948923915625 ], [ 4981866.736211673356593, 3907566.917298856656998 ], [ 4981813.257861287333071, 3907533.296528374776244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962132.9531857566908, 3896762.300897928886116 ], [ 4962104.997280579060316, 3896772.818149240221828 ], [ 4962109.587649364024401, 3896784.841400176286697 ], [ 4962083.937198229134083, 3896794.633918988052756 ], [ 4962064.429581266827881, 3896742.533773029223084 ], [ 4962088.926808240823448, 3896733.467742728535086 ], [ 4962084.049487483687699, 3896720.715800824109465 ], [ 4962100.18914557620883, 3896714.550122093874961 ], [ 4962104.778973114676774, 3896726.937500448897481 ], [ 4962117.748529309406877, 3896721.859402747824788 ], [ 4962132.9531857566908, 3896762.300897928886116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962092.834832563064992, 3910457.571141017135233 ], [ 4962092.590670146979392, 3910428.804299924056977 ], [ 4962102.379042445681989, 3910428.819181954022497 ], [ 4962102.135443572886288, 3910399.688209600746632 ], [ 4962148.486869825050235, 3910399.394596716854721 ], [ 4962148.975075068883598, 3910456.928279389161617 ], [ 4962092.834832563064992, 3910457.571141017135233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981576.062550472095609, 3903532.409725223202258 ], [ 4981561.043309970758855, 3903552.403245008084923 ], [ 4981535.168757142499089, 3903533.410351883154362 ], [ 4981528.236308924853802, 3903542.862219505012035 ], [ 4981505.812432585284114, 3903526.06188381742686 ], [ 4981533.539789810776711, 3903489.346790516749024 ], [ 4981567.176431272178888, 3903514.183205638546497 ], [ 4981561.687889364548028, 3903521.817648077849299 ], [ 4981576.062550472095609, 3903532.409725223202258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981517.368453925475478, 3915830.865051514469087 ], [ 4981550.199674859642982, 3915822.927779916208237 ], [ 4981555.904064237140119, 3915846.245178520213813 ], [ 4981573.471827549859881, 3915841.91501437779516 ], [ 4981581.173045194707811, 3915873.24785693641752 ], [ 4981530.48630805965513, 3915885.514625675510615 ], [ 4981517.368453925475478, 3915830.865051514469087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981462.714277179911733, 3903996.787335880100727 ], [ 4981427.520099372602999, 3904024.746632719878107 ], [ 4981416.608525909483433, 3904010.885200607124716 ], [ 4981407.377436870709062, 3904018.147165972739458 ], [ 4981393.308046030811965, 3903999.909095757640898 ], [ 4981401.673620581626892, 3903993.373451421968639 ], [ 4981386.168474749661982, 3903973.311513742431998 ], [ 4981421.938602093607187, 3903945.353453170508146 ], [ 4981462.714277179911733, 3903996.787335880100727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981408.419361224398017, 3907025.514921195339411 ], [ 4981385.066082668490708, 3907039.299671796616167 ], [ 4981371.583904173225164, 3907016.6933030677028 ], [ 4981395.225125400349498, 3907002.909185429103673 ], [ 4981408.419361224398017, 3907025.514921195339411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981352.048641475848854, 3904422.209458835888654 ], [ 4981384.278714567422867, 3904431.748985552228987 ], [ 4981375.864397135563195, 3904460.132427740376443 ], [ 4981343.346397806890309, 3904450.592267005238682 ], [ 4981352.048641475848854, 3904422.209458835888654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981229.836014972068369, 3902926.81249884236604 ], [ 4981214.219624591991305, 3902956.272287133615464 ], [ 4981192.933960548602045, 3902945.30086097959429 ], [ 4981188.01648373529315, 3902955.121438879519701 ], [ 4981166.731619969010353, 3902943.785903953015804 ], [ 4981170.491513373330235, 3902936.511660475749522 ], [ 4981139.138908134773374, 3902920.055863230489194 ], [ 4981155.912815134972334, 3902888.049693115521222 ], [ 4981229.836014972068369, 3902926.81249884236604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981756.21840319223702, 3895522.305714509449899 ], [ 4981765.212804869748652, 3895493.559712581336498 ], [ 4981776.439506449736655, 3895496.862155734095722 ], [ 4981783.984650406986475, 3895472.118324260227382 ], [ 4981814.785052645951509, 3895481.655073274858296 ], [ 4981798.245440537109971, 3895535.14488432276994 ], [ 4981756.21840319223702, 3895522.305714509449899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981676.659134962595999, 3903361.858081825543195 ], [ 4981722.063193884678185, 3903404.199460253119469 ], [ 4981702.433822233229876, 3903425.274920734576881 ], [ 4981656.74179941881448, 3903382.932927623391151 ], [ 4981676.659134962595999, 3903361.858081825543195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981379.875409648753703, 3903568.383185004815459 ], [ 4981428.750673756934702, 3903603.813341874163598 ], [ 4981405.354479279369116, 3903635.440399250946939 ], [ 4981377.179425398819149, 3903614.985981926321983 ], [ 4981370.247053753584623, 3903624.437890780158341 ], [ 4981349.834840311668813, 3903609.462842362001538 ], [ 4981379.875409648753703, 3903568.383185004815459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962091.925526189617813, 3897224.318930994719267 ], [ 4962116.483773263171315, 3897174.834631398320198 ], [ 4962128.284361566416919, 3897180.678648318164051 ], [ 4962133.774200396612287, 3897169.398980336729437 ], [ 4962151.043580016121268, 3897177.80023285234347 ], [ 4962146.419503178447485, 3897187.988825800362974 ], [ 4962164.264382850378752, 3897196.755092135630548 ], [ 4962168.598212542943656, 3897188.022578743286431 ], [ 4962185.580088774673641, 3897196.059286331292242 ], [ 4962181.246254848316312, 3897204.791797023732215 ], [ 4962191.607750456780195, 3897209.905391357373446 ], [ 4962166.471110871061683, 3897260.845261517912149 ], [ 4962091.925526189617813, 3897224.318930994719267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962064.699458424001932, 3899030.725500055588782 ], [ 4962080.004656130447984, 3899004.167256265878677 ], [ 4962132.953579112887383, 3899034.470531501807272 ], [ 4962113.027925354428589, 3899069.032580770086497 ], [ 4962093.172594550997019, 3899057.350241743028164 ], [ 4962097.792458097450435, 3899049.710532389581203 ], [ 4962064.699458424001932, 3899030.725500055588782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961958.473311815410852, 3899376.852061257231981 ], [ 4962003.365046162158251, 3899402.04506574710831 ], [ 4961989.792080171406269, 3899426.057074078824371 ], [ 4961944.899821986444294, 3899401.228221127297729 ], [ 4961958.473311815410852, 3899376.852061257231981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961889.38854868337512, 3899542.062573175877333 ], [ 4961913.558798574842513, 3899557.028464164119214 ], [ 4961896.524920186027884, 3899584.312456708867103 ], [ 4961846.458564717322588, 3899552.921599491033703 ], [ 4961863.491861811839044, 3899526.001704995520413 ], [ 4961873.562860421836376, 3899532.207136383280158 ], [ 4961878.471140855923295, 3899524.203693205025047 ], [ 4961894.296832042746246, 3899534.059132840484381 ], [ 4961889.38854868337512, 3899542.062573175877333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981215.831579721532762, 3905072.97267910419032 ], [ 4981242.071674427948892, 3905056.645316595677286 ], [ 4981324.419703780673444, 3905188.280870985705405 ], [ 4981298.467636324465275, 3905204.60879786638543 ], [ 4981215.831579721532762, 3905072.97267910419032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980863.957590272650123, 3903254.080740939360112 ], [ 4980888.408389408141375, 3903266.151326887775213 ], [ 4980876.83788026496768, 3903289.430061248131096 ], [ 4980852.387097178958356, 3903277.359485651832074 ], [ 4980863.957590272650123, 3903254.080740939360112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980861.069500136189163, 3904426.213687852025032 ], [ 4980832.241443585604429, 3904440.715020536910743 ], [ 4980794.110921323299408, 3904364.891123209614307 ], [ 4980822.939038365148008, 3904350.389750295784324 ], [ 4980861.069500136189163, 3904426.213687852025032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961781.469375438056886, 3899485.823579606600106 ], [ 4961808.519839978776872, 3899500.793719000648707 ], [ 4961813.429205816239119, 3899492.062005581799895 ], [ 4961827.242165385745466, 3899499.729587409179658 ], [ 4961807.027589750476182, 3899535.383826148230582 ], [ 4961766.452207162976265, 3899512.746564471628517 ], [ 4961781.469375438056886, 3899485.823579606600106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961753.515814438462257, 3899687.873649997171015 ], [ 4961809.047585689462721, 3899723.642145473510027 ], [ 4961792.01556633412838, 3899749.833819027990103 ], [ 4961736.484375197440386, 3899713.701228871475905 ], [ 4961753.515814438462257, 3899687.873649997171015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961756.313074423931539, 3895729.059761421754956 ], [ 4961763.560442985035479, 3895698.483824444934726 ], [ 4961775.942250698804855, 3895701.415522346273065 ], [ 4961777.681536947377026, 3895694.135559184011072 ], [ 4961817.994416479952633, 3895703.663728022016585 ], [ 4961809.007694718427956, 3895741.519611610099673 ], [ 4961756.313074423931539, 3895729.059761421754956 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961666.108001687563956, 3899398.622774182353169 ], [ 4961653.110810646787286, 3899422.999947909731418 ], [ 4961633.82937671430409, 3899412.775328615214676 ], [ 4961630.652498891577125, 3899418.596636618487537 ], [ 4961588.060710867866874, 3899395.956616963259876 ], [ 4961604.234732798300683, 3899365.758100834209472 ], [ 4961666.108001687563956, 3899398.622774182353169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980736.798513277433813, 3915161.303028053138405 ], [ 4980671.643788530491292, 3915207.403847342357039 ], [ 4980650.695732919499278, 3915178.226789528038353 ], [ 4980716.138335050083697, 3915132.126557499635965 ], [ 4980736.798513277433813, 3915161.303028053138405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980689.118545306846499, 3895588.381403253413737 ], [ 4980715.934798927977681, 3895576.060301287099719 ], [ 4980733.995082702487707, 3895615.426268660929054 ], [ 4980707.178859954699874, 3895627.747352891601622 ], [ 4980689.118545306846499, 3895588.381403253413737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980596.863771398551762, 3904884.070702201221138 ], [ 4980626.570371423847973, 3904862.652552598156035 ], [ 4980644.369531266391277, 3904887.088713916949928 ], [ 4980614.662943934090436, 3904908.506844172254205 ], [ 4980596.863771398551762, 3904884.070702201221138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980836.94168590568006, 3899463.053301314357668 ], [ 4980866.339787472039461, 3899453.651097753550857 ], [ 4980880.072216339409351, 3899495.192444331012666 ], [ 4980850.674155302345753, 3899504.594633110798895 ], [ 4980836.94168590568006, 3899463.053301314357668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980624.230298182927072, 3903706.165393275208771 ], [ 4980603.118755023926497, 3903746.901483811438084 ], [ 4980579.820126819424331, 3903734.8336969204247 ], [ 4980576.927614558488131, 3903740.653414893429726 ], [ 4980558.230785492807627, 3903731.144726741593331 ], [ 4980563.725428915582597, 3903720.597040712833405 ], [ 4980540.714725554920733, 3903708.529923505615443 ], [ 4980554.01818269956857, 3903682.705943416338414 ], [ 4980589.397748496383429, 3903700.990615867543966 ], [ 4980594.603640663437545, 3903690.806430199183524 ], [ 4980624.230298182927072, 3903706.165393275208771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961461.224070605821908, 3898700.278288870118558 ], [ 4961434.173694922588766, 3898684.580247956793755 ], [ 4961461.02865894511342, 3898638.37591311475262 ], [ 4961488.079065567813814, 3898654.073980628978461 ], [ 4961461.224070605821908, 3898700.278288870118558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961453.993795133195817, 3892942.291038983035833 ], [ 4961456.907276478596032, 3892920.44767593126744 ], [ 4961449.418806083500385, 3892919.344091511331499 ], [ 4961452.332286137156188, 3892897.50072825094685 ], [ 4961462.98911050055176, 3892898.973181113600731 ], [ 4961464.447490569204092, 3892886.959116744343191 ], [ 4961509.379444840364158, 3892892.852423878852278 ], [ 4961508.215669319964945, 3892900.49738307017833 ], [ 4961519.73673280980438, 3892901.97115262504667 ], [ 4961514.491283620707691, 3892942.017449575476348 ], [ 4961481.656624429859221, 3892937.598748959135264 ], [ 4961480.491768909618258, 3892945.971965264994651 ], [ 4961453.993795133195817, 3892942.291038983035833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961415.877128172665834, 3893195.303509502205998 ], [ 4961424.14541544392705, 3893252.848203561734408 ], [ 4961386.398583963513374, 3893258.617882469203323 ], [ 4961383.259630888700485, 3893238.586115855723619 ], [ 4961361.072773276828229, 3893241.830162200611085 ], [ 4961356.795069229789078, 3893212.693481708876789 ], [ 4961377.541017754934728, 3893209.811409800779074 ], [ 4961374.40694344881922, 3893186.502493594307452 ], [ 4961397.17054829839617, 3893182.895190844777972 ], [ 4961399.45287720579654, 3893197.827876944094896 ], [ 4961415.877128172665834, 3893195.303509502205998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980009.967644992284477, 3897528.428907325025648 ], [ 4979987.771711071953177, 3897536.391257576644421 ], [ 4980000.084639479406178, 3897569.554007371421903 ], [ 4979975.294076693244278, 3897578.603087484370917 ], [ 4979964.125293529592454, 3897549.084149234462529 ], [ 4979965.279009593650699, 3897548.35840914491564 ], [ 4979943.230198254808784, 3897488.957047760486603 ], [ 4979989.063883038237691, 3897472.307182891760021 ], [ 4980009.967644992284477, 3897528.428907325025648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979986.190072607249022, 3893118.767052521929145 ], [ 4980002.554859825409949, 3893144.291853063274175 ], [ 4979976.014251901768148, 3893161.347934971563518 ], [ 4979959.649449969641864, 3893135.823150334879756 ], [ 4979986.190072607249022, 3893118.767052521929145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980213.235674791969359, 3903080.046869815327227 ], [ 4980225.675208354368806, 3903054.220841562841088 ], [ 4980251.853508864529431, 3903066.658768299035728 ], [ 4980239.413955821655691, 3903092.484784629195929 ], [ 4980213.235674791969359, 3903080.046869815327227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980011.582015192136168, 3904298.35317778820172 ], [ 4979996.410934804007411, 3904256.809007011819631 ], [ 4980043.385766252875328, 3904239.797554836142808 ], [ 4980058.556783799082041, 3904281.341751697938889 ], [ 4980011.582015192136168, 3904298.35317778820172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979997.23062143381685, 3907174.59978541592136 ], [ 4980004.182300688698888, 3907155.680109047796577 ], [ 4980022.595380439423025, 3907162.274757854174823 ], [ 4980015.643689902499318, 3907181.194429529365152 ], [ 4979997.23062143381685, 3907174.59978541592136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961026.740655509755015, 3896660.505589654669166 ], [ 4961092.111893367953598, 3896670.06976927863434 ], [ 4961085.710781768895686, 3896713.391688902396709 ], [ 4961094.350370710715652, 3896714.496882256120443 ], [ 4961090.568608612753451, 3896739.616210630629212 ], [ 4961031.244764725677669, 3896731.153371630236506 ], [ 4961034.735737518407404, 3896707.854252060409635 ], [ 4961020.048913011327386, 3896705.64774179412052 ], [ 4961026.740655509755015, 3896660.505589654669166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979927.136155096814036, 3903672.590701841749251 ], [ 4979911.237633011303842, 3903700.229983273427933 ], [ 4979896.569674369879067, 3903691.822945451829582 ], [ 4979912.468186282552779, 3903664.183655480854213 ], [ 4979927.136155096814036, 3903672.590701841749251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979854.713623192161322, 3905850.668449922464788 ], [ 4979914.088575780391693, 3905823.852246024180204 ], [ 4979941.027933632023633, 3905882.172182306647301 ], [ 4979881.652288117446005, 3905909.352457861416042 ], [ 4979854.713623192161322, 3905850.668449922464788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979855.733166447840631, 3905119.129780667368323 ], [ 4979651.46330688148737, 3905170.75590318441391 ], [ 4979599.212081583216786, 3904966.364481620490551 ], [ 4979594.60168981179595, 3904967.810998082626611 ], [ 4979572.046326431445777, 3904878.913895831443369 ], [ 4979556.488185786642134, 3904882.88558256207034 ], [ 4979548.491866708733141, 3904852.281170228496194 ], [ 4979573.845171179622412, 3904846.145946447271854 ], [ 4979557.854112131521106, 3904784.208855810575187 ], [ 4979672.235097011551261, 3904755.326749438885599 ], [ 4979677.659513565711677, 3904776.822312615811825 ], [ 4979742.485592951066792, 3904760.213282465934753 ], [ 4979758.474655587226152, 3904822.878742014523596 ], [ 4979773.168207776732743, 3904819.269420994911343 ], [ 4979789.729102447628975, 3904883.756805568002164 ], [ 4979795.491330146789551, 3904882.312832030002028 ], [ 4979855.733166447840631, 3905119.129780667368323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979854.909292086027563, 3904308.570861032232642 ], [ 4979903.319764621555805, 3904293.382952734827995 ], [ 4979915.90252021420747, 3904333.464894524309784 ], [ 4979867.78007108066231, 3904348.653408653568476 ], [ 4979854.909292086027563, 3904308.570861032232642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979713.113107675686479, 3904363.610004201065749 ], [ 4979760.374737970530987, 3904346.962812526617199 ], [ 4979774.113478419370949, 3904385.22654777765274 ], [ 4979726.851906755939126, 3904401.873715671245009 ], [ 4979713.113107675686479, 3904363.610004201065749 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979442.533029134385288, 3902321.702269176021218 ], [ 4979388.29665363766253, 3902366.008884148672223 ], [ 4979357.562343573197722, 3902329.165168466046453 ], [ 4979363.62094902433455, 3902324.080432879272848 ], [ 4979339.493581248447299, 3902294.897780267521739 ], [ 4979331.992710904218256, 3902301.071797518525273 ], [ 4979301.547016478143632, 3902263.864640298765153 ], [ 4979355.495472705923021, 3902219.557230351958424 ], [ 4979385.081138809211552, 3902254.941931712906808 ], [ 4979378.156996085308492, 3902260.753052428364754 ], [ 4979403.145930542610586, 3902291.029996876139194 ], [ 4979411.512337859719992, 3902284.12961035920307 ], [ 4979442.533029134385288, 3902321.702269176021218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979984.354324526153505, 3897782.171633132267743 ], [ 4979998.112856494262815, 3897812.788634743075818 ], [ 4979968.993342412635684, 3897825.833692267537117 ], [ 4979955.23398878145963, 3897795.580833742860705 ], [ 4979984.354324526153505, 3897782.171633132267743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979925.595581103116274, 3906356.238339683506638 ], [ 4979908.589813788421452, 3906364.212115940637887 ], [ 4979885.949276480823755, 3906315.369007347617298 ], [ 4979922.841835105791688, 3906298.699463848955929 ], [ 4979952.933680771850049, 3906363.580690763890743 ], [ 4979933.33409324195236, 3906372.641181121580303 ], [ 4979925.595581103116274, 3906356.238339683506638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979896.545710956677794, 3908716.11644519213587 ], [ 4979889.328846680000424, 3908724.839875571895391 ], [ 4979861.739379439502954, 3908701.839324244763702 ], [ 4979891.182677677832544, 3908666.94684225320816 ], [ 4979926.53225948754698, 3908696.154622863512486 ], [ 4979924.222603126429021, 3908699.062639624346048 ], [ 4979942.61555287707597, 3908714.39638007665053 ], [ 4979922.69796219561249, 3908738.021496303845197 ], [ 4979896.545710956677794, 3908716.11644519213587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979900.476765848696232, 3902825.198835177347064 ], [ 4979926.628408617340028, 3902850.016847549472004 ], [ 4979883.90887350961566, 3902895.440017876215279 ], [ 4979857.46926146838814, 3902870.621418374124914 ], [ 4979900.476765848696232, 3902825.198835177347064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979848.767493071034551, 3899729.244930679909885 ], [ 4979879.61293912678957, 3899716.203497504815459 ], [ 4979907.691510598175228, 3899783.264790575951338 ], [ 4979883.765450592152774, 3899793.044110536575317 ], [ 4979877.748274724930525, 3899778.829891247674823 ], [ 4979870.829743068665266, 3899781.727845437824726 ], [ 4979848.767493071034551, 3899729.244930679909885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979781.069458179175854, 3906215.368174037896097 ], [ 4979739.358237293548882, 3906329.250673544127494 ], [ 4979729.576296063140035, 3906325.58806268312037 ], [ 4979724.072999800555408, 3906340.505499848630279 ], [ 4979646.965996008366346, 3906312.663781428709626 ], [ 4979664.05641664750874, 3906265.727897155564278 ], [ 4979565.658303572796285, 3906230.193365740589797 ], [ 4979572.030881804414093, 3906212.728859949391335 ], [ 4979580.374774212948978, 3906215.660027355421335 ], [ 4979603.837752716615796, 3906151.259605933912098 ], [ 4979781.069458179175854, 3906215.368174037896097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960928.486958291381598, 3896877.017417639959604 ], [ 4961130.939678826369345, 3896903.170220384839922 ], [ 4961129.189840663224459, 3896917.732804882805794 ], [ 4961243.519830188713968, 3896932.103718327824026 ], [ 4961224.579676294699311, 3897078.455619007349014 ], [ 4961072.237031827680767, 3897058.930628429166973 ], [ 4961064.07762330211699, 3897122.641213382594287 ], [ 4961106.122764095664024, 3897128.1654661167413 ], [ 4961097.381287745200098, 3897195.880605941172689 ], [ 4960953.102592919021845, 3897177.460632463917136 ], [ 4960951.647357494570315, 3897187.654111003968865 ], [ 4960928.896877533756196, 3897184.707481570541859 ], [ 4960930.646052690222859, 3897170.509010499808937 ], [ 4960885.145054215565324, 3897164.615806515794247 ], [ 4960895.052650736644864, 3897087.070821720641106 ], [ 4960864.814208965748549, 3897083.38494486734271 ], [ 4960877.925077622756362, 3896982.176259259693325 ], [ 4960914.210803991183639, 3896986.963461738079786 ], [ 4960928.486958291381598, 3896877.017417639959604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960901.11092544067651, 3897666.40996920177713 ], [ 4960845.801644292660058, 3897671.426252176053822 ], [ 4960841.831439645029604, 3897629.181362366303802 ], [ 4960896.852776434272528, 3897624.164646503981203 ], [ 4960901.11092544067651, 3897666.40996920177713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960696.507855602540076, 3908329.680557992774993 ], [ 4960661.360763948410749, 3908344.194261930882931 ], [ 4960649.312090741470456, 3908314.317765558604151 ], [ 4960641.534089055843651, 3908317.219417484011501 ], [ 4960632.354403503239155, 3908294.265643839724362 ], [ 4960662.603762269951403, 3908281.929509723093361 ], [ 4960666.332785651087761, 3908291.402412286028266 ], [ 4960678.72066336683929, 3908286.322739853989333 ], [ 4960696.507855602540076, 3908329.680557992774993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960699.554440971463919, 3898407.11744078155607 ], [ 4960731.506176440045238, 3898419.908899138681591 ], [ 4960713.873215093277395, 3898463.214454981032759 ], [ 4960681.921522807329893, 3898450.42301725409925 ], [ 4960699.554440971463919, 3898407.11744078155607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979363.858767734840512, 3904078.465704827569425 ], [ 4979380.901261596009135, 3904054.105753148905933 ], [ 4979438.119681098498404, 3904093.919923635199666 ], [ 4979419.344665655866265, 3904120.46087862085551 ], [ 4979387.716232596896589, 3904098.544542155694216 ], [ 4979379.916864389553666, 3904109.815747434273362 ], [ 4979366.978305889293551, 3904100.684474382549524 ], [ 4979376.510164387524128, 3904087.23222358385101 ], [ 4979363.858767734840512, 3904078.465704827569425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979322.433154229074717, 3906058.160449725575745 ], [ 4979235.112645220011473, 3906092.564415363129228 ], [ 4979226.235221973620355, 3906069.969078164082021 ], [ 4979216.148681077174842, 3906073.952769211027771 ], [ 4979195.814874812029302, 3906022.930438450537622 ], [ 4979200.137908950448036, 3906021.119101389311254 ], [ 4979188.68309776019305, 3905991.963844366837293 ], [ 4979223.553792916238308, 3905978.202040224336088 ], [ 4979210.094395291060209, 3905943.944602961651981 ], [ 4979242.948001394979656, 3905930.906737385317683 ], [ 4979254.977090403437614, 3905960.79152005398646 ], [ 4979264.774952108971775, 3905957.171352437697351 ], [ 4979270.501540845260024, 3905972.113126422744244 ], [ 4979286.063727615401149, 3905965.956489979755133 ], [ 4979322.433154229074717, 3906058.160449725575745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979250.560455118305981, 3909473.930762111674994 ], [ 4979239.874229543842375, 3909489.565402828622609 ], [ 4979191.57792322896421, 3909456.325127148069441 ], [ 4979217.570962869562209, 3909418.511392082087696 ], [ 4979257.529888337478042, 3909446.271720938850194 ], [ 4979242.223041941411793, 3909468.450774027500302 ], [ 4979250.560455118305981, 3909473.930762111674994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979102.944979042746127, 3909303.198394828941673 ], [ 4979092.270530808717012, 3909313.37112754676491 ], [ 4979079.917252365499735, 3909300.964024215005338 ], [ 4979090.880390213802457, 3909290.427775473333895 ], [ 4979102.944979042746127, 3909303.198394828941673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979041.389237068593502, 3913158.143313446082175 ], [ 4979044.612928910180926, 3913131.568498626351357 ], [ 4978994.2491923738271, 3913125.634057319257408 ], [ 4978996.883022652938962, 3913105.612373422831297 ], [ 4978906.516977292485535, 3913094.494267886504531 ], [ 4978910.913105585612357, 3913058.090349143836647 ], [ 4979095.387607174925506, 3913080.334951131604612 ], [ 4979085.13359844032675, 3913163.335324658546597 ], [ 4979041.389237068593502, 3913158.143313446082175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979599.920338846743107, 3900793.785814967937768 ], [ 4979582.017924987711012, 3900815.230671635363251 ], [ 4979564.768958534114063, 3900800.992138531059027 ], [ 4979558.704442924819887, 3900808.625727757345885 ], [ 4979527.656102399341762, 3900783.069229085464031 ], [ 4979551.911013506352901, 3900753.991369378287345 ], [ 4979599.920338846743107, 3900793.785814967937768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979535.03957885876298, 3909327.800901126582175 ], [ 4979495.505011214874685, 3909369.954561058897525 ], [ 4979465.62367912568152, 3909341.851580321788788 ], [ 4979505.158240952529013, 3909299.697877143975347 ], [ 4979535.03957885876298, 3909327.800901126582175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979426.069830877706409, 3902610.058513826224953 ], [ 4979466.456036296673119, 3902578.102423859294504 ], [ 4979482.538587815128267, 3902598.528614433947951 ], [ 4979472.153264322318137, 3902606.881130842491984 ], [ 4979496.277839154005051, 3902637.156296548433602 ], [ 4979463.103717884980142, 3902663.301864509936422 ], [ 4979442.712578156031668, 3902637.768517798744142 ], [ 4979445.886630930937827, 3902634.862341269850731 ], [ 4979426.069830877706409, 3902610.058513826224953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979387.40874192584306, 3906237.089756380300969 ], [ 4979411.90555904339999, 3906226.947072338312864 ], [ 4979427.946537397801876, 3906265.57979091303423 ], [ 4979403.737687156535685, 3906275.723083734046668 ], [ 4979387.40874192584306, 3906237.089756380300969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979333.328424094244838, 3900483.697199063375592 ], [ 4979371.34755677357316, 3900482.322866590227932 ], [ 4979372.434197631664574, 3900512.54806772293523 ], [ 4979351.984654360450804, 3900513.232113448902965 ], [ 4979352.533889187499881, 3900525.613746006507427 ], [ 4979334.677138075232506, 3900525.939279440324754 ], [ 4979333.328424094244838, 3900483.697199063375592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979309.06709598004818, 3901448.955631433054805 ], [ 4979321.260217759758234, 3901403.829738298431039 ], [ 4979363.282351271249354, 3901415.208628960885108 ], [ 4979357.476104027591646, 3901436.679800233338028 ], [ 4979364.383918982930481, 3901438.515391138382256 ], [ 4979357.996973274275661, 3901462.170092617161572 ], [ 4979309.06709598004818, 3901448.955631433054805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979262.254992094822228, 3900321.141397142317146 ], [ 4979272.682793462648988, 3900293.489974417258054 ], [ 4979316.136467534117401, 3900309.605569549370557 ], [ 4979305.996629046276212, 3900337.257597791031003 ], [ 4979262.254992094822228, 3900321.141397142317146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960494.605097103863955, 3898125.709217730443925 ], [ 4960501.269023754633963, 3898098.773345788940787 ], [ 4960534.092746610753238, 3898106.468023153953254 ], [ 4960527.716814000159502, 3898133.404307966586202 ], [ 4960494.605097103863955, 3898125.709217730443925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960440.534684067592025, 3898269.461589709389955 ], [ 4960431.83028017450124, 3898313.144475714303553 ], [ 4960401.308844937942922, 3898306.909794561099261 ], [ 4960410.300694366917014, 3898263.591447480488569 ], [ 4960440.534684067592025, 3898269.461589709389955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960413.062346290796995, 3893402.10558934090659 ], [ 4960358.612850286997855, 3893404.211097144521773 ], [ 4960356.668886616826057, 3893354.322631427552551 ], [ 4960378.563742845319211, 3893353.626232424285263 ], [ 4960378.287326010875404, 3893345.614997882395983 ], [ 4960410.553469556383789, 3893344.569593213032931 ], [ 4960413.062346290796995, 3893402.10558934090659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978903.801660720258951, 3907249.427435462363064 ], [ 4978919.731448400765657, 3907205.765754350461066 ], [ 4978947.638555716723204, 3907216.021366695873439 ], [ 4978931.709510344080627, 3907259.318900995422155 ], [ 4978903.801660720258951, 3907249.427435462363064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978882.008717636577785, 3906536.409954229835421 ], [ 4978919.486377389170229, 3906515.006571075879037 ], [ 4978951.615488849580288, 3906570.787751318421215 ], [ 4978914.137881013564765, 3906592.191090391483158 ], [ 4978882.008717636577785, 3906536.409954229835421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978851.146747086197138, 3907366.929217912256718 ], [ 4978869.951741872355342, 3907325.094329415820539 ], [ 4978897.5661301612854, 3907337.534056453499943 ], [ 4978879.049026943743229, 3907379.369543477427214 ], [ 4978851.146747086197138, 3907366.929217912256718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978800.581214153207839, 3907584.571963515132666 ], [ 4978816.093212514184415, 3907601.355278009083122 ], [ 4978799.072184541262686, 3907616.97650579130277 ], [ 4978783.560184629634023, 3907600.193200952839106 ], [ 4978800.581214153207839, 3907584.571963515132666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978779.693276606500149, 3900932.572061636485159 ], [ 4978832.738978506997228, 3900907.196503832936287 ], [ 4978849.368571693077683, 3900941.824565730523318 ], [ 4978815.350069749169052, 3900958.13756774738431 ], [ 4978809.901564160361886, 3900947.201973637100309 ], [ 4978791.162405564449728, 3900956.265117521863431 ], [ 4978779.693276606500149, 3900932.572061636485159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978722.240690937265754, 3908942.25416415464133 ], [ 4978689.197958999313414, 3909045.597164856735617 ], [ 4978643.739588472992182, 3909030.934716592077166 ], [ 4978649.538205439224839, 3909012.012208014260978 ], [ 4978664.499331171624362, 3909016.777898281347007 ], [ 4978691.455421896651387, 3908932.356750585138798 ], [ 4978722.240690937265754, 3908942.25416415464133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978677.959020124748349, 3904335.160433124750853 ], [ 4978708.768254584632814, 3904336.318685835693032 ], [ 4978707.221020957455039, 3904386.565534288529307 ], [ 4978676.123885991051793, 3904385.406667958013713 ], [ 4978677.959020124748349, 3904335.160433124750853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979236.963240554556251, 3897893.793366994708776 ], [ 4979182.170499198138714, 3897924.990411991719157 ], [ 4979178.727512524463236, 3897918.792778700590134 ], [ 4979161.136661918833852, 3897928.586388095747679 ], [ 4979143.059176502749324, 3897896.868121583480388 ], [ 4979190.065756647847593, 3897870.023774520494044 ], [ 4979181.170638129115105, 3897854.347005116287619 ], [ 4979205.971669739112258, 3897840.199392626993358 ], [ 4979236.963240554556251, 3897893.793366994708776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979213.287343267351389, 3908735.025183878839016 ], [ 4979221.403073891997337, 3908709.917546523269266 ], [ 4979247.297836779616773, 3908717.984346048906446 ], [ 4979226.137286740355194, 3908784.21080509154126 ], [ 4979197.365827312693, 3908775.045423422008753 ], [ 4979205.191263534128666, 3908751.029552221763879 ], [ 4979197.99819350708276, 3908748.829242287669331 ], [ 4979203.504637140780687, 3908732.091020844411105 ], [ 4979213.287343267351389, 3908735.025183878839016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979110.42958309315145, 3904757.388404565863311 ], [ 4979117.568057145923376, 3904785.441914608236402 ], [ 4979090.197557092644274, 3904792.301489989738911 ], [ 4979094.479239461012185, 3904809.789026845712215 ], [ 4979076.040811748243868, 3904814.118923312518746 ], [ 4979072.043154181912541, 3904798.452658900525421 ], [ 4979049.571022473275661, 3904803.866289380937815 ], [ 4979041.290847153402865, 3904771.076630149502307 ], [ 4979062.034497276879847, 3904766.023405832238495 ], [ 4979059.748882314190269, 3904757.643460352439433 ], [ 4979085.390901220031083, 3904751.144265574403107 ], [ 4979088.245363289490342, 3904762.802622586488724 ], [ 4979110.42958309315145, 3904757.388404565863311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979106.07939972076565, 3900223.5818613297306 ], [ 4979093.636510227806866, 3900250.864879664499313 ], [ 4979051.341666409745812, 3900231.474961429834366 ], [ 4979064.072524690069258, 3900204.192543347366154 ], [ 4979106.07939972076565, 3900223.5818613297306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979075.687177176587284, 3913004.916895407252014 ], [ 4979035.080098818987608, 3913013.204589425586164 ], [ 4979014.564394628629088, 3912915.208550842944533 ], [ 4979055.171614590100944, 3912906.920826330780983 ], [ 4979075.687177176587284, 3913004.916895407252014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978931.47136899176985, 3902272.535207279957831 ], [ 4978982.256878733634949, 3902225.671343014575541 ], [ 4979013.5756094167009, 3902258.874570823740214 ], [ 4979006.938746469095349, 3902265.050535606686026 ], [ 4979034.520701427944005, 3902294.968578177969903 ], [ 4979041.446326921693981, 3902288.429109938908368 ], [ 4979073.913698006421328, 3902323.091404215898365 ], [ 4979022.551469340920448, 3902370.317989341914654 ], [ 4978989.79689175542444, 3902335.291007961146533 ], [ 4978996.144970971159637, 3902329.478549337945879 ], [ 4978970.572615356184542, 3902302.477910577785224 ], [ 4978964.512515648268163, 3902308.290993586648256 ], [ 4978931.47136899176985, 3902272.535207279957831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978893.826075908727944, 3907067.704065386671573 ], [ 4978919.195897755213082, 3907052.829083533026278 ], [ 4978943.295972135849297, 3907092.935358582995832 ], [ 4978917.925393175333738, 3907108.174448555335402 ], [ 4978893.826075908727944, 3907067.704065386671573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960328.285852018743753, 3896034.635101593099535 ], [ 4960316.990610635839403, 3896076.857684068381786 ], [ 4960243.85411564540118, 3896057.81676762085408 ], [ 4960254.861202273517847, 3896015.59373691957444 ], [ 4960328.285852018743753, 3896034.635101593099535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960129.022504881024361, 3901365.207661255262792 ], [ 4960162.126114740036428, 3901375.815353611018509 ], [ 4960144.189562801271677, 3901431.8654830083251 ], [ 4960111.085488481447101, 3901421.621942111756653 ], [ 4960129.022504881024361, 3901365.207661255262792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978435.268516866490245, 3905795.539347314275801 ], [ 4978395.784711113199592, 3905812.205416723154485 ], [ 4978383.177939775399864, 3905782.683927171397954 ], [ 4978388.942221539095044, 3905780.147260537371039 ], [ 4978382.924835768528283, 3905766.297454635147005 ], [ 4978416.645184021443129, 3905751.803895982913673 ], [ 4978435.268516866490245, 3905795.539347314275801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978430.316301474347711, 3906769.581882826518267 ], [ 4978407.539424819871783, 3906783.73457495123148 ], [ 4978384.869419624097645, 3906747.637284079566598 ], [ 4978415.7185068000108, 3906728.768027972895652 ], [ 4978430.927036156877875, 3906753.19723809696734 ], [ 4978423.142781456932425, 3906757.914391324855387 ], [ 4978430.316301474347711, 3906769.581882826518267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978374.072652544826269, 3903157.639973031356931 ], [ 4978307.025214873254299, 3903269.649980281479657 ], [ 4978273.662415738217533, 3903249.916075970046222 ], [ 4978340.421791632659733, 3903137.90537505177781 ], [ 4978374.072652544826269, 3903157.639973031356931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978207.38228911254555, 3906260.780079553835094 ], [ 4978218.553198562003672, 3906288.477791228797287 ], [ 4978179.648440255783498, 3906304.053013149183244 ], [ 4978163.892858699895442, 3906265.785779047757387 ], [ 4978189.252999529242516, 3906255.643809806089848 ], [ 4978193.549691980704665, 3906266.212742210831493 ], [ 4978207.38228911254555, 3906260.780079553835094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978128.017650502733886, 3905938.355202049016953 ], [ 4978127.445621382445097, 3905936.533331717830151 ], [ 4978111.886766644194722, 3905941.234117966610938 ], [ 4978103.01836453564465, 3905913.905460427515209 ], [ 4978140.476994560100138, 3905901.604255559854209 ], [ 4978150.203789901919663, 3905931.483666300773621 ], [ 4978128.017650502733886, 3905938.355202049016953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978056.322752672247589, 3906754.22333983425051 ], [ 4978090.495079318061471, 3906797.627323797438294 ], [ 4978055.598316479474306, 3906824.499302278738469 ], [ 4978030.328788401558995, 3906792.038136029615998 ], [ 4978048.786472311243415, 3906777.875994211994112 ], [ 4978040.172356736846268, 3906766.569692207966 ], [ 4978056.322752672247589, 3906754.22333983425051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978497.62978476472199, 3906934.312929005827755 ], [ 4978454.974172396585345, 3906953.885219362098724 ], [ 4978442.64896247163415, 3906927.641468588262796 ], [ 4978485.304607399739325, 3906908.069158989936113 ], [ 4978497.62978476472199, 3906934.312929005827755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978458.310339798219502, 3908632.54236276820302 ], [ 4978480.469523304142058, 3908637.323275995440781 ], [ 4978481.050777612254024, 3908634.775586446747184 ], [ 4978502.059081269428134, 3908639.189933588262647 ], [ 4978495.370374501682818, 3908670.491079066414386 ], [ 4978451.915796387009323, 3908660.931084976997226 ], [ 4978458.310339798219502, 3908632.54236276820302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959833.536544628441334, 3908188.964919673744589 ], [ 4959854.500620841048658, 3908226.500626149587333 ], [ 4959799.465130837634206, 3908256.644563873764127 ], [ 4959778.501001442782581, 3908219.108899634331465 ], [ 4959833.536544628441334, 3908188.964919673744589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978033.482457335107028, 3904481.992438891436905 ], [ 4978079.862790005281568, 3904472.987193988170475 ], [ 4978085.558781358413398, 3904502.858030006755143 ], [ 4978039.179267783649266, 3904511.499135276768357 ], [ 4978033.482457335107028, 3904481.992438891436905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977958.691075455397367, 3908811.00055332807824 ], [ 4977993.776953425258398, 3908829.645389106590301 ], [ 4977979.035859628580511, 3908856.92420250736177 ], [ 4977943.950775514356792, 3908837.915254732128233 ], [ 4977958.691075455397367, 3908811.00055332807824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977950.466820889152586, 3902474.361000665463507 ], [ 4977972.613500769250095, 3902487.516455988865346 ], [ 4977956.430622477084398, 3902514.063877644017339 ], [ 4977934.57193489652127, 3902500.909042845480144 ], [ 4977950.466820889152586, 3902474.361000665463507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977869.962221143767238, 3906922.787296832539141 ], [ 4977858.137110143899918, 3906932.229817014187574 ], [ 4977840.621646944433451, 3906909.252599047496915 ], [ 4977891.092472322285175, 3906870.032673843204975 ], [ 4977913.490462412126362, 3906898.846333763562143 ], [ 4977874.556070198304951, 3906928.987223256379366 ], [ 4977869.962221143767238, 3906922.787296832539141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977831.202104451134801, 3905639.504577627871186 ], [ 4977828.557701454497874, 3905664.624106072820723 ], [ 4977807.830306375399232, 3905662.395680935587734 ], [ 4977806.947313384152949, 3905671.49711833614856 ], [ 4977758.870573102496564, 3905666.662259164266288 ], [ 4977762.397889289073646, 3905632.441285090055317 ], [ 4977831.202104451134801, 3905639.504577627871186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977826.507755002006888, 3904586.789913176093251 ], [ 4977857.051023845560849, 3904577.386813897173852 ], [ 4977865.057789981365204, 3904603.985287964344025 ], [ 4977834.803270865231752, 3904613.02485465304926 ], [ 4977826.507755002006888, 3904586.789913176093251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977697.677791382186115, 3909163.659521612804383 ], [ 4977743.653309121727943, 3909206.359669322147965 ], [ 4977722.589455150067806, 3909228.527478181757033 ], [ 4977676.902613445185125, 3909185.463839548639953 ], [ 4977697.677791382186115, 3909163.659521612804383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978246.01356665045023, 3908274.513091317377985 ], [ 4978272.48719147965312, 3908281.487778316717595 ], [ 4978265.809482670389116, 3908307.691142805851996 ], [ 4978239.048738186247647, 3908300.351720803882927 ], [ 4978246.01356665045023, 3908274.513091317377985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959554.87247739546001, 3898260.902249824255705 ], [ 4959553.036923993378878, 3898336.274499495979398 ], [ 4959479.017632614821196, 3898334.348472713027149 ], [ 4959480.852978564798832, 3898258.97621806897223 ], [ 4959554.87247739546001, 3898260.902249824255705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977690.285443671047688, 3907748.625262163579464 ], [ 4977717.088209788314998, 3907736.301077866461128 ], [ 4977737.150133976712823, 3907780.403254846576601 ], [ 4977743.490535750053823, 3907777.503526523709297 ], [ 4977751.229965473525226, 3907793.905753877945244 ], [ 4977718.086848038248718, 3907809.129637429956347 ], [ 4977690.285443671047688, 3907748.625262163579464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977551.889141426421702, 3912099.721703186631203 ], [ 4977523.347526447847486, 3912119.689233192708343 ], [ 4977498.376337993890047, 3912084.316010183654726 ], [ 4977526.917971830815077, 3912064.348454097285867 ], [ 4977551.889141426421702, 3912099.721703186631203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977521.906350170262158, 3903596.805118932854384 ], [ 4977552.471996235661209, 3903577.206045691389591 ], [ 4977621.072243994101882, 3903684.040350659750402 ], [ 4977602.041318376548588, 3903696.016772983130068 ], [ 4977594.577883928082883, 3903684.713050517253578 ], [ 4977586.50416106171906, 3903689.793963259551674 ], [ 4977570.429985101334751, 3903664.999336428474635 ], [ 4977569.853290413506329, 3903665.362259202636778 ], [ 4977547.465190376155078, 3903630.358736367430538 ], [ 4977544.581714953295887, 3903632.173352772369981 ], [ 4977521.906350170262158, 3903596.805118932854384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977505.999544255435467, 3908443.367489443626255 ], [ 4977465.071487263776362, 3908464.401509962510318 ], [ 4977451.307199109345675, 3908437.791046753525734 ], [ 4977492.234523523598909, 3908417.121136456727982 ], [ 4977505.999544255435467, 3908443.367489443626255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977907.368372029624879, 3911030.645796212367713 ], [ 4977945.039286626502872, 3911050.752583926077932 ], [ 4977927.698487799614668, 3911082.759704339317977 ], [ 4977890.026837577112019, 3911063.017071974929422 ], [ 4977907.368372029624879, 3911030.645796212367713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977807.494000082835555, 3907053.379173263907433 ], [ 4977757.614813734777272, 3907085.317860124632716 ], [ 4977742.116401811130345, 3907061.616681822575629 ], [ 4977792.283543277531862, 3907029.67857253504917 ], [ 4977807.494000082835555, 3907053.379173263907433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977719.836178024299443, 3913825.338641840964556 ], [ 4977688.142847438342869, 3913839.109117188490927 ], [ 4977678.68793810531497, 3913817.969501180108637 ], [ 4977664.56994588021189, 3913824.130121318623424 ], [ 4977653.396279848180711, 3913798.981434600427747 ], [ 4977699.495514563284814, 3913779.050914295017719 ], [ 4977719.836178024299443, 3913825.338641840964556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977643.276004310697317, 3907922.945937324780971 ], [ 4977672.098605019971728, 3907908.441152547020465 ], [ 4977691.022561904974282, 3907945.986528129316866 ], [ 4977667.099978878162801, 3907957.952654586173594 ], [ 4977659.931798621080816, 3907943.736443149857223 ], [ 4977655.031808964908123, 3907946.275082788430154 ], [ 4977643.276004310697317, 3907922.945937324780971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977641.297452305443585, 3906533.413386326283216 ], [ 4977654.195674356073141, 3906561.478624116163701 ], [ 4977612.405419659800828, 3906580.325799903366715 ], [ 4977599.507163133472204, 3906552.260581841226667 ], [ 4977641.297452305443585, 3906533.413386326283216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977598.02306398935616, 3909044.74311067070812 ], [ 4977610.714700672775507, 3909033.481620552949607 ], [ 4977621.630766975693405, 3909045.156764026265591 ], [ 4977608.938367383554578, 3909056.782380061689764 ], [ 4977598.02306398935616, 3909044.74311067070812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977563.83869996946305, 3912167.111407324206084 ], [ 4977601.612913937307894, 3912137.331685523502529 ], [ 4977634.05795774795115, 3912177.818557326216251 ], [ 4977605.222379093058407, 3912200.698450746946037 ], [ 4977588.281320730224252, 3912179.907320137601346 ], [ 4977579.630578024312854, 3912186.807712796144187 ], [ 4977563.83869996946305, 3912167.111407324206084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959400.766408383846283, 3899081.79591644834727 ], [ 4959440.798408957198262, 3899083.30928767984733 ], [ 4959440.495389907620847, 3899093.868625804781914 ], [ 4959453.455019161105156, 3899094.615302958060056 ], [ 4959452.250170526094735, 3899131.754846355412155 ], [ 4959439.002544786781073, 3899131.007760535459965 ], [ 4959438.40685645584017, 3899144.843852842692286 ], [ 4959419.110938050784171, 3899144.088184030260891 ], [ 4959419.707650672644377, 3899129.523832847829908 ], [ 4959398.971648808568716, 3899128.766133472323418 ], [ 4959400.766408383846283, 3899081.79591644834727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977233.186097088269889, 3901884.421472453977913 ], [ 4977251.036605970934033, 3901886.643448308575898 ], [ 4977244.888779861852527, 3901934.695928846951574 ], [ 4977213.506829347461462, 3901930.62512138299644 ], [ 4977218.771687700413167, 3901891.674069588072598 ], [ 4977232.015195267274976, 3901893.522307953797281 ], [ 4977233.186097088269889, 3901884.421472453977913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977157.332233993336558, 3905953.068156129214913 ], [ 4977117.827500995248556, 3905980.295883920975029 ], [ 4977100.314565945416689, 3905955.498510402161628 ], [ 4977140.107259025797248, 3905928.271356164012104 ], [ 4977157.332233993336558, 3905953.068156129214913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977104.279783577658236, 3906264.290615667123348 ], [ 4977129.059104343876243, 3906256.331231056246907 ], [ 4977125.055230283178389, 3906243.214155063033104 ], [ 4977144.072024721652269, 3906237.063462131191045 ], [ 4977157.804418301209807, 3906279.695468454156071 ], [ 4977113.720416736789048, 3906293.804928984493017 ], [ 4977104.279783577658236, 3906264.290615667123348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977071.249318934977055, 3904561.177745672408491 ], [ 4977031.477352812886238, 3904577.481078958604485 ], [ 4977004.547742722555995, 3904510.789116447791457 ], [ 4977044.319790959358215, 3904494.48574397014454 ], [ 4977071.249318934977055, 3904561.177745672408491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977044.326234834268689, 3901855.990640976000577 ], [ 4977067.360510521568358, 3901858.223256986122578 ], [ 4977062.950745042413473, 3901901.545684764627367 ], [ 4977030.702507210895419, 3901898.565684861969203 ], [ 4977033.937606153078377, 3901866.164742848835886 ], [ 4977043.151616108603776, 3901866.912131568416953 ], [ 4977044.326234834268689, 3901855.990640976000577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976872.745142166502774, 3907809.551170920021832 ], [ 4976815.656137297861278, 3907848.395205453969538 ], [ 4976794.413969157263637, 3907817.400040154345334 ], [ 4976851.503008887171745, 3907778.555961232632399 ], [ 4976872.745142166502774, 3907809.551170920021832 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977297.229625028558075, 3905559.368935100734234 ], [ 4977308.112302038818598, 3905587.79391626175493 ], [ 4977262.581290188245475, 3905604.813164869789034 ], [ 4977251.699330893345177, 3905576.024071642197669 ], [ 4977297.229625028558075, 3905559.368935100734234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977176.533256675116718, 3906273.544199272524565 ], [ 4977167.092685248702765, 3906244.029864251613617 ], [ 4977212.61724641174078, 3906229.55935967899859 ], [ 4977222.05777301825583, 3906259.073710432741791 ], [ 4977176.533256675116718, 3906273.544199272524565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977170.973203432746232, 3908114.948956862557679 ], [ 4977203.831506168469787, 3908097.903142050839961 ], [ 4977208.419239811599255, 3908107.016005363781005 ], [ 4977220.813375031575561, 3908100.487438173033297 ], [ 4977237.445863869041204, 3908132.56573889311403 ], [ 4977192.482149159535766, 3908155.776556483935565 ], [ 4977170.973203432746232, 3908114.948956862557679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959089.94721145182848, 3897071.724566374905407 ], [ 4959103.482359873130918, 3897073.564271246548742 ], [ 4959106.394518804736435, 3897050.992342875339091 ], [ 4959152.472168403677642, 3897056.883347770664841 ], [ 4959148.104388090781868, 3897090.377104402985424 ], [ 4959114.698340263217688, 3897085.960471800528467 ], [ 4959109.74941114615649, 3897123.094711748883128 ], [ 4959083.542758462019265, 3897119.780647427774966 ], [ 4959089.94721145182848, 3897071.724566374905407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976689.628497989848256, 3913528.608677724841982 ], [ 4976695.971941775642335, 3913523.523899576161057 ], [ 4976710.90082551445812, 3913542.853796750307083 ], [ 4976671.689521932974458, 3913572.995959974825382 ], [ 4976638.959867122583091, 3913531.053093274589628 ], [ 4976671.828500422649086, 3913505.631533319596201 ], [ 4976689.628497989848256, 3913528.608677724841982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976625.31977769266814, 3905762.253841216675937 ], [ 4976635.457084646448493, 3905733.508319844957441 ], [ 4976679.768103187903762, 3905749.257355603855103 ], [ 4976669.630754661746323, 3905778.002860541921109 ], [ 4976625.31977769266814, 3905762.253841216675937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977073.712823322974145, 3901850.225569557398558 ], [ 4977074.913171561434865, 3901826.923681002110243 ], [ 4977107.164517800323665, 3901828.447216267697513 ], [ 4977106.252883661538363, 3901851.385572536382824 ], [ 4977073.712823322974145, 3901850.225569557398558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977040.466390219517052, 3909262.42327085416764 ], [ 4977013.657142012380064, 3909278.75358340004459 ], [ 4976977.216988735832274, 3909218.960228117182851 ], [ 4977005.755979789420962, 3909201.541071388870478 ], [ 4977028.997027328237891, 3909239.823235071729869 ], [ 4977027.555229303427041, 3909240.912639712914824 ], [ 4977040.466390219517052, 3909262.42327085416764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976936.987265395000577, 3906819.972972398623824 ], [ 4976962.935872530564666, 3906803.276686732657254 ], [ 4976977.57283544074744, 3906826.247359379194677 ], [ 4976951.624996141530573, 3906842.579500634688884 ], [ 4976936.987265395000577, 3906819.972972398623824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976781.359977842308581, 3911904.034913233947009 ], [ 4976745.321885697543621, 3911929.813903650268912 ], [ 4976726.376880059018731, 3911903.193050894420594 ], [ 4976762.414989575743675, 3911877.414035507943481 ], [ 4976781.359977842308581, 3911904.034913233947009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976778.589641763828695, 3900425.862729927059263 ], [ 4976793.184355690144002, 3900471.045088455546647 ], [ 4976765.80630371440202, 3900479.727658769115806 ], [ 4976751.211548569612205, 3900434.545314867515117 ], [ 4976778.589641763828695, 3900425.862729927059263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958845.872009556740522, 3900649.322418536059558 ], [ 4958878.411716007627547, 3900652.280998402740806 ], [ 4958873.734422602690756, 3900701.796169824898243 ], [ 4958841.194775608368218, 3900698.837595534045249 ], [ 4958845.872009556740522, 3900649.322418536059558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958798.599883250892162, 3905418.641655475832522 ], [ 4958820.450253389775753, 3905442.704864940606058 ], [ 4958762.499761607497931, 3905495.058818160556257 ], [ 4958740.649382342584431, 3905470.995655057020485 ], [ 4958798.599883250892162, 3905418.641655475832522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976327.184308047406375, 3908205.331557870842516 ], [ 4976285.96367793250829, 3908228.915697067510337 ], [ 4976270.183427181094885, 3908201.937583799939603 ], [ 4976311.404084685258567, 3908178.353420791216195 ], [ 4976327.184308047406375, 3908205.331557870842516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976278.12752566114068, 3908962.262401179410517 ], [ 4976296.51267169136554, 3908982.327351210173219 ], [ 4976285.839907340705395, 3908992.137065841350704 ], [ 4976293.596284615807235, 3909000.528003341984004 ], [ 4976282.34696569852531, 3909010.700670837890357 ], [ 4976276.026402097195387, 3909004.133339770603925 ], [ 4976254.681658884510398, 3909023.388658866286278 ], [ 4976234.85994774568826, 3909001.864266865886748 ], [ 4976278.12752566114068, 3908962.262401179410517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976163.97816015034914, 3911142.091787646990269 ], [ 4976191.160790309309959, 3911082.793680785223842 ], [ 4976204.966670201160014, 3911089.012178661301732 ], [ 4976189.639449320733547, 3911122.845201391261071 ], [ 4976195.679839506745338, 3911125.406485526356846 ], [ 4976183.82365679834038, 3911151.235684797167778 ], [ 4976163.97816015034914, 3911142.091787646990269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976714.859842190518975, 3912880.13897911272943 ], [ 4976693.81849402654916, 3912893.204348306637257 ], [ 4976668.856703498400748, 3912853.098164744675159 ], [ 4976712.380300153978169, 3912826.242112291045487 ], [ 4976730.455798852257431, 3912855.410110171884298 ], [ 4976707.973584545776248, 3912869.200759339611977 ], [ 4976714.859842190518975, 3912880.13897911272943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976696.267854327335954, 3901799.194141227286309 ], [ 4976654.489648899994791, 3901808.939516886137426 ], [ 4976645.637147800065577, 3901772.508174099959433 ], [ 4976668.400060254149139, 3901766.729007811751217 ], [ 4976665.830709745176136, 3901755.799781634937972 ], [ 4976684.847565560601652, 3901751.105298153590411 ], [ 4976696.267854327335954, 3901799.194141227286309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976654.895869298838079, 3913062.081969636958092 ], [ 4976648.870977091602981, 3913052.237940640654415 ], [ 4976670.20004441216588, 3913039.173128793016076 ], [ 4976695.160907352343202, 3913079.643450214527547 ], [ 4976651.63848840072751, 3913106.135402927640826 ], [ 4976632.701731362380087, 3913075.873277290724218 ], [ 4976654.895869298838079, 3913062.081969636958092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976546.842195245437324, 3901779.951468346174806 ], [ 4976509.997958652675152, 3901771.136542853433639 ], [ 4976519.872606637887657, 3901730.738315061666071 ], [ 4976556.716895453631878, 3901739.553253875579685 ], [ 4976546.842195245437324, 3901779.951468346174806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976509.934369879774749, 3900961.673537941649556 ], [ 4976554.272074040025473, 3900968.319090859033167 ], [ 4976549.308734728954732, 3901001.080646861810237 ], [ 4976504.971083438023925, 3900994.435101991053671 ], [ 4976509.934369879774749, 3900961.673537941649556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976425.640394163317978, 3905687.196071048732847 ], [ 4976367.456264246255159, 3905696.544090089853853 ], [ 4976360.066055471077561, 3905649.555930886883289 ], [ 4976407.592596515081823, 3905642.006676481105387 ], [ 4976411.003830485977232, 3905663.49745456315577 ], [ 4976421.661510136909783, 3905661.698675519321114 ], [ 4976425.640394163317978, 3905687.196071048732847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958638.679349152371287, 3906118.279241852927953 ], [ 4958663.688004299066961, 3906148.536964856088161 ], [ 4958606.322301010601223, 3906195.7942481841892 ], [ 4958587.35022493917495, 3906172.827594912145287 ], [ 4958606.088021276518703, 3906157.195983300916851 ], [ 4958600.051423369906843, 3906149.904961938969791 ], [ 4958638.679349152371287, 3906118.279241852927953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958514.799902083352208, 3905542.415380285587162 ], [ 4958563.084772620350122, 3905607.297767200972885 ], [ 4958535.413256467320025, 3905628.014845866244286 ], [ 4958486.840411107987165, 3905563.132108823861927 ], [ 4958514.799902083352208, 3905542.415380285587162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958479.426475833170116, 3905510.686920727603137 ], [ 4958457.80733257625252, 3905527.407019232865423 ], [ 4958413.540725436992943, 3905471.633665657602251 ], [ 4958443.808363988995552, 3905447.642874601762742 ], [ 4958473.127476274035871, 3905484.82486878009513 ], [ 4958464.191560230217874, 3905491.730987606104463 ], [ 4958479.426475833170116, 3905510.686920727603137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958420.818410447798669, 3901042.356071646790951 ], [ 4958468.598669678904116, 3901061.721105773467571 ], [ 4958457.907615807838738, 3901087.195428531151265 ], [ 4958447.545396936126053, 3901083.175650687422603 ], [ 4958437.141860850155354, 3901109.014510306064039 ], [ 4958400.011378252878785, 3901094.033814738504589 ], [ 4958420.818410447798669, 3901042.356071646790951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976114.593468493781984, 3912205.259669990744442 ], [ 4976119.186070027761161, 3912211.823448366019875 ], [ 4976141.382143483497202, 3912197.30346047738567 ], [ 4976158.602507655508816, 3912222.827980026602745 ], [ 4976122.857777533121407, 3912246.423608471173793 ], [ 4976101.333409021608531, 3912213.971791371703148 ], [ 4976114.593468493781984, 3912205.259669990744442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976081.165888270363212, 3905308.886337372940034 ], [ 4976033.598764190450311, 3905336.099198189564049 ], [ 4976014.374529147520661, 3905302.559895345009863 ], [ 4976061.941692914813757, 3905275.347001065500081 ], [ 4976081.165888270363212, 3905308.886337372940034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976042.194779294542968, 3906204.206958105321974 ], [ 4976085.42197600286454, 3906186.452673728577793 ], [ 4976101.753465421497822, 3906226.176384370308369 ], [ 4976058.526321664452553, 3906243.93064290843904 ], [ 4976042.194779294542968, 3906204.206958105321974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975949.811244961805642, 3911131.823292728513479 ], [ 4975959.385626397095621, 3911095.429486973676831 ], [ 4975955.932475409470499, 3911094.694189249537885 ], [ 4975962.026285381056368, 3911071.037953157909214 ], [ 4975979.001941126771271, 3911075.806258098687977 ], [ 4975963.334460476413369, 3911135.492159935180098 ], [ 4975949.811244961805642, 3911131.823292728513479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975880.380190907046199, 3904925.775015337858349 ], [ 4975915.828690856695175, 3904910.917708307038993 ], [ 4975937.321377627551556, 3904961.939866202883422 ], [ 4975896.685358948074281, 3904978.971385257318616 ], [ 4975887.228114785626531, 3904956.740125601179898 ], [ 4975892.703644244000316, 3904954.566469428129494 ], [ 4975880.380190907046199, 3904925.775015337858349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975777.002857534214854, 3910885.682242507115006 ], [ 4975771.799436297267675, 3910896.231537990272045 ], [ 4975736.136734739877284, 3910878.680806565564126 ], [ 4975741.340145335532725, 3910868.131504288874567 ], [ 4975777.002857534214854, 3910885.682242507115006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975693.786558501422405, 3906488.978212594520301 ], [ 4975659.204066113568842, 3906503.837576036341488 ], [ 4975645.735234460793436, 3906472.130826455540955 ], [ 4975680.317022500559688, 3906457.635576423723251 ], [ 4975693.786558501422405, 3906488.978212594520301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975543.258972959592938, 3911017.024991054553539 ], [ 4975569.434603216126561, 3911028.001891175284982 ], [ 4975564.806328271515667, 3911038.91652333503589 ], [ 4975573.723455173894763, 3911042.575882322154939 ], [ 4975566.781781470403075, 3911058.5836984179914 ], [ 4975495.159787411801517, 3911027.851820487994701 ], [ 4975502.390048643574119, 3911011.480436049867421 ], [ 4975538.63217840064317, 3911027.211364650633186 ], [ 4975543.258972959592938, 3911017.024991054553539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975515.905977968126535, 3905316.478045017458498 ], [ 4975540.870651275850832, 3905359.496011806186289 ], [ 4975501.375512695871294, 3905382.35654344689101 ], [ 4975479.852944382466376, 3905345.899929701350629 ], [ 4975498.880285526625812, 3905334.650252840481699 ], [ 4975495.149458936415613, 3905328.452482437714934 ], [ 4975515.905977968126535, 3905316.478045017458498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975471.386287052184343, 3903548.165631049778312 ], [ 4975499.634253839962184, 3903534.749782317783684 ], [ 4975512.536898227408528, 3903562.44981089560315 ], [ 4975484.577655635774136, 3903575.502097623422742 ], [ 4975471.386287052184343, 3903548.165631049778312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975355.207197584211826, 3910332.439907310064882 ], [ 4975330.416767216287553, 3910348.047706118784845 ], [ 4975334.434091217815876, 3910354.610183739103377 ], [ 4975313.679337560199201, 3910367.677192751783878 ], [ 4975284.981485282070935, 3910322.102857283316553 ], [ 4975330.814606697298586, 3910293.428584760520607 ], [ 4975355.207197584211826, 3910332.439907310064882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975346.145490814000368, 3906110.307168000377715 ], [ 4975356.232174417935312, 3906105.957893830724061 ], [ 4975363.111193919554353, 3906121.62941631488502 ], [ 4975354.753617886453867, 3906125.253905712626874 ], [ 4975360.772481800988317, 3906139.103036522865295 ], [ 4975327.341481381095946, 3906153.965143223293126 ], [ 4975307.562319793738425, 3906109.865388921927661 ], [ 4975339.552199342288077, 3906095.728620734531432 ], [ 4975346.145490814000368, 3906110.307168000377715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975983.892260883003473, 3900758.140410644002259 ], [ 4976009.226346074603498, 3900762.925714796409011 ], [ 4976003.989732628688216, 3900788.768325959797949 ], [ 4975978.656412378884852, 3900783.618897469248623 ], [ 4975983.892260883003473, 3900758.140410644002259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975919.757014605216682, 3911187.838603572919965 ], [ 4975910.78367792442441, 3911211.853125091642141 ], [ 4975911.358706883154809, 3911212.218428077176213 ], [ 4975896.885950699448586, 3911250.787087581120431 ], [ 4975879.913352927193046, 3911244.562307874206454 ], [ 4975903.648037982173264, 3911181.615566583815962 ], [ 4975919.757014605216682, 3911187.838603572919965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975914.824881599284708, 3905970.539008025545627 ], [ 4975870.442727227695286, 3905989.747744679450989 ], [ 4975862.703846445307136, 3905972.253686223644763 ], [ 4975850.599223622120917, 3905977.691065324936062 ], [ 4975844.581315251998603, 3905963.477695842273533 ], [ 4975855.53343843948096, 3905958.402103861328214 ], [ 4975847.50733729917556, 3905940.543334637768567 ], [ 4975881.514034568332136, 3905926.047178210690618 ], [ 4975893.264843444339931, 3905953.01682764198631 ], [ 4975905.080804076977074, 3905947.943012516479939 ], [ 4975914.824881599284708, 3905970.539008025545627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957975.159181855618954, 3899452.679294727277011 ], [ 4957990.50389785785228, 3899394.07533584581688 ], [ 4957991.943457825109363, 3899394.441433694213629 ], [ 4957996.576036144047976, 3899376.60539723560214 ], [ 4958022.200113298371434, 3899383.194781933911145 ], [ 4958017.278511402197182, 3899401.758678678888828 ], [ 4958021.30917742010206, 3899402.856582714710385 ], [ 4958006.541416769847274, 3899460.733053393661976 ], [ 4957975.159181855618954, 3899452.679294727277011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975276.812025486491621, 3898917.850814200006425 ], [ 4975282.315817661583424, 3898902.204275791998953 ], [ 4975269.075825838372111, 3898897.80809983657673 ], [ 4975275.448060078546405, 3898879.978523966856301 ], [ 4975288.400042654946446, 3898884.374123956076801 ], [ 4975294.194062002003193, 3898867.635780962649733 ], [ 4975330.746602053754032, 3898880.453861717134714 ], [ 4975313.36450538598001, 3898930.66887169983238 ], [ 4975276.812025486491621, 3898917.850814200006425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975146.503339506685734, 3911326.8315743599087 ], [ 4975139.282144243828952, 3911338.833478905260563 ], [ 4975081.486863952130079, 3911304.124972706660628 ], [ 4975088.708042628131807, 3911292.12305288342759 ], [ 4975146.503339506685734, 3911326.8315743599087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975059.376464901492, 3898045.686986738350242 ], [ 4975082.467405267059803, 3898021.336507111787796 ], [ 4975110.353417870588601, 3898047.609736710321158 ], [ 4975087.262474672868848, 3898071.960192766040564 ], [ 4975059.376464901492, 3898045.686986738350242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975023.567482003942132, 3899388.163478116039187 ], [ 4975001.647286668419838, 3899403.777238009031862 ], [ 4974970.91521365288645, 3899361.112542136572301 ], [ 4975006.391656236723065, 3899335.694347243756056 ], [ 4975030.516919135116041, 3899369.606733564287424 ], [ 4975016.961425323039293, 3899379.047003003302962 ], [ 4975023.567482003942132, 3899388.163478116039187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974962.748399504460394, 3905608.128566425293684 ], [ 4974921.795485738664865, 3905640.454463303089142 ], [ 4974897.669203646481037, 3905609.819218704476953 ], [ 4974942.659189513884485, 3905574.588298023212701 ], [ 4974953.28696829918772, 3905587.718278330285102 ], [ 4974948.961241650395095, 3905590.986819273792207 ], [ 4974962.748399504460394, 3905608.128566425293684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975533.810829346068203, 3911418.644624480511993 ], [ 4975534.355692853219807, 3911433.939314418938011 ], [ 4975465.546623677946627, 3911436.349299409426749 ], [ 4975465.001721051521599, 3911421.054610847029835 ], [ 4975533.810829346068203, 3911418.644624480511993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975441.060690354555845, 3909160.469818810932338 ], [ 4975447.695035775192082, 3909154.292947302572429 ], [ 4975467.231561000458896, 3909174.723786423448473 ], [ 4975460.596481412649155, 3909181.264784258790314 ], [ 4975470.364732999354601, 3909191.480206876061857 ], [ 4975447.865418714471161, 3909212.554500604979694 ], [ 4975399.025549909099936, 3909160.749201781116426 ], [ 4975421.236961902119219, 3909139.674287360161543 ], [ 4975441.060690354555845, 3909160.469818810932338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957729.883656528778374, 3900856.795281371567398 ], [ 4957741.737466871738434, 3900822.947255135513842 ], [ 4957733.677526620216668, 3900820.023270399309695 ], [ 4957740.038163509219885, 3900801.825390585232526 ], [ 4957750.113094513304532, 3900805.480374217033386 ], [ 4957757.919664507731795, 3900782.91489898134023 ], [ 4957783.827484959736466, 3900791.689230893272907 ], [ 4957772.840070662088692, 3900823.717763867694885 ], [ 4957781.475997947156429, 3900826.642543262336403 ], [ 4957775.982790894806385, 3900842.292680293787271 ], [ 4957782.603729803115129, 3900844.486461085733026 ], [ 4957773.062749461270869, 3900871.78326704679057 ], [ 4957729.883656528778374, 3900856.795281371567398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974734.801595048978925, 3899477.163374991156161 ], [ 4974692.458960299380124, 3899479.62806177791208 ], [ 4974689.953742907382548, 3899435.927434881683439 ], [ 4974723.078641380183399, 3899434.172664562705904 ], [ 4974724.473056368529797, 3899457.115652691572905 ], [ 4974733.690128833986819, 3899456.769861742388457 ], [ 4974734.801595048978925, 3899477.163374991156161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975137.243566663004458, 3910489.307231107726693 ], [ 4975116.77690551429987, 3910502.374970769509673 ], [ 4975090.949037817306817, 3910461.176187563687563 ], [ 4975118.045289857313037, 3910444.116258929017931 ], [ 4975112.304947342723608, 3910435.365562004037201 ], [ 4975130.176235347986221, 3910424.477411325555295 ], [ 4975155.143322126939893, 3910464.217972897458822 ], [ 4975130.929645410738885, 3910479.462980951182544 ], [ 4975137.243566663004458, 3910489.307231107726693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957455.863673774525523, 3905873.419684584252536 ], [ 4957467.048755670897663, 3905906.570716471411288 ], [ 4957437.953397408127785, 3905916.363065790385008 ], [ 4957426.76828374620527, 3905883.212045816704631 ], [ 4957455.863673774525523, 3905873.419684584252536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957310.922636180184782, 3901445.756940740626305 ], [ 4957328.251868762075901, 3901408.638894668314606 ], [ 4957366.530556133948267, 3901426.532698553986847 ], [ 4957349.201282123103738, 3901463.65072034439072 ], [ 4957310.922636180184782, 3901445.756940740626305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957312.68271704018116, 3898631.397586344275624 ], [ 4957315.951095548458397, 3898556.755361140239984 ], [ 4957345.615253049880266, 3898558.251700454391539 ], [ 4957342.635300994850695, 3898632.530179706867784 ], [ 4957312.68271704018116, 3898631.397586344275624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974624.897736537270248, 3900288.591720007359982 ], [ 4974626.278448279947042, 3900318.453168256208301 ], [ 4974579.905848760157824, 3900320.545897369273007 ], [ 4974578.525085620582104, 3900290.684451467823237 ], [ 4974624.897736537270248, 3900288.591720007359982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974598.65858141053468, 3910456.916948017198592 ], [ 4974564.932467144913971, 3910478.333836564328521 ], [ 4974538.529389066621661, 3910436.406179637182504 ], [ 4974579.750160749070346, 3910410.270407523028553 ], [ 4974593.526392998173833, 3910431.78159281052649 ], [ 4974585.743154432624578, 3910436.863999864086509 ], [ 4974598.65858141053468, 3910456.916948017198592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974567.606144018471241, 3901729.707382858265191 ], [ 4974576.79859212692827, 3901741.377809236757457 ], [ 4974547.667194737121463, 3901763.896136242896318 ], [ 4974512.908189778216183, 3901719.76739053055644 ], [ 4974554.731249826028943, 3901687.078531839419156 ], [ 4974580.585769239813089, 3901719.537471593823284 ], [ 4974567.606144018471241, 3901729.707382858265191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974565.215506164357066, 3899305.32104290695861 ], [ 4974530.934800563380122, 3899308.89436842687428 ], [ 4974526.692564754746854, 3899269.559882475063205 ], [ 4974561.261332851834595, 3899265.987122893333435 ], [ 4974565.215506164357066, 3899305.32104290695861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974376.14008981641382, 3896315.075099368114024 ], [ 4974329.730405693873763, 3896332.461642337962985 ], [ 4974319.700612984597683, 3896306.224501213990152 ], [ 4974322.294452546164393, 3896305.501362876035273 ], [ 4974313.125183219090104, 3896281.086572063155472 ], [ 4974322.061045499518514, 3896277.827045932412148 ], [ 4974317.474610922858119, 3896266.529970975127071 ], [ 4974358.695989227853715, 3896250.953804619144648 ], [ 4974371.305216767825186, 3896283.750391107052565 ], [ 4974365.251957357861102, 3896285.923207569401711 ], [ 4974376.14008981641382, 3896315.075099368114024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974327.745908763259649, 3908273.041468705516309 ], [ 4974343.824616006575525, 3908295.649440364912152 ], [ 4974308.648510010913014, 3908321.069217227399349 ], [ 4974292.281153534539044, 3908298.824828789569438 ], [ 4974327.745908763259649, 3908273.041468705516309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974343.94884112291038, 3896863.026771442499012 ], [ 4974392.952849100343883, 3896844.188859023619443 ], [ 4974418.458665589801967, 3896909.782663404475898 ], [ 4974381.561710216104984, 3896923.91077033476904 ], [ 4974365.798767025582492, 3896883.825337706133723 ], [ 4974353.979838994331658, 3896888.535673467442393 ], [ 4974343.94884112291038, 3896863.026771442499012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974277.522819763049483, 3909795.380265552550554 ], [ 4974235.734219742007554, 3909817.145780711434782 ], [ 4974221.96671730838716, 3909790.901080850046128 ], [ 4974264.043247245252132, 3909769.136112714651972 ], [ 4974277.522819763049483, 3909795.380265552550554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974958.464956005103886, 3899682.250675219576806 ], [ 4974931.673623877577484, 3899685.474326035007834 ], [ 4974928.553528017364442, 3899661.43548583984375 ], [ 4974907.23507003672421, 3899664.305961349513382 ], [ 4974902.70034580398351, 3899627.519735541194677 ], [ 4974950.810224246233702, 3899621.42559818085283 ], [ 4974958.464956005103886, 3899682.250675219576806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957271.185256076976657, 3892844.236705632414669 ], [ 4957288.221615334972739, 3892814.765123293735087 ], [ 4957298.297163309529424, 3892820.240559900645167 ], [ 4957318.221229749731719, 3892785.675069259013981 ], [ 4957352.477114567533135, 3892805.019862945191562 ], [ 4957315.516137595288455, 3892869.421011187136173 ], [ 4957271.185256076976657, 3892844.236705632414669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974184.555450849235058, 3900719.943864774424583 ], [ 4974176.425555422902107, 3900753.427873218432069 ], [ 4974135.261332783848047, 3900743.515314269810915 ], [ 4974143.391179855912924, 3900710.031293573323637 ], [ 4974184.555450849235058, 3900719.943864774424583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974062.540506499819458, 3897006.303683232981712 ], [ 4974074.570085634477437, 3897040.919655520003289 ], [ 4974083.504950911737978, 3897038.024177047424018 ], [ 4974089.519365806132555, 3897055.514231662265956 ], [ 4974082.601477404125035, 3897058.049542597960681 ], [ 4974087.471616146154702, 3897071.53191959252581 ], [ 4974050.001130511984229, 3897084.56696530431509 ], [ 4974036.826543583534658, 3897046.307456146460027 ], [ 4974008.00357663538307, 3897056.082374978344887 ], [ 4973998.264638020657003, 3897028.389394151046872 ], [ 4974062.540506499819458, 3897006.303683232981712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974032.666642831638455, 3908254.617693993262947 ], [ 4973993.750725352205336, 3908278.574006280396134 ], [ 4973978.826952982693911, 3908254.147849855478853 ], [ 4974017.454975541681051, 3908230.190950879827142 ], [ 4974032.666642831638455, 3908254.617693993262947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973989.871201943606138, 3909228.223753490485251 ], [ 4973952.684164900332689, 3909252.183530666399747 ], [ 4973932.590726218186319, 3909221.55699114408344 ], [ 4973942.103772124275565, 3909215.385393059812486 ], [ 4973931.482653664425015, 3909199.342734370846301 ], [ 4973957.427809880115092, 3909182.279390591196716 ], [ 4973967.187343559227884, 3909197.227971290238202 ], [ 4973989.960547683760524, 3909182.707363081164658 ], [ 4974016.082105132751167, 3909222.449096080847085 ], [ 4973995.037786568515003, 3909236.244811377022415 ], [ 4973989.871201943606138, 3909228.223753490485251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973990.80872949026525, 3898332.688341221772134 ], [ 4974005.428574164398015, 3898368.037653752136976 ], [ 4973959.019099951721728, 3898387.245501691475511 ], [ 4973941.245945054106414, 3898344.243299853987992 ], [ 4973964.019027250818908, 3898334.456439082976431 ], [ 4973967.459590369835496, 3898342.474049476906657 ], [ 4973990.80872949026525, 3898332.688341221772134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973985.301252323202789, 3897469.689377157948911 ], [ 4973948.976359942927957, 3897486.368112511001527 ], [ 4973934.062215053476393, 3897453.931312870234251 ], [ 4973946.747059683315456, 3897448.130099340341985 ], [ 4973944.166189347393811, 3897442.29896094230935 ], [ 4973978.472766812890768, 3897426.708649869076908 ], [ 4973981.055059880949557, 3897431.811534469947219 ], [ 4973998.064702010713518, 3897423.834050153382123 ], [ 4974018.715843137353659, 3897468.298434513155371 ], [ 4973990.751715243794024, 3897480.988098917528987 ], [ 4973985.301252323202789, 3897469.689377157948911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973977.021323956549168, 3898166.617965970188379 ], [ 4973953.672759832814336, 3898176.039556541014463 ], [ 4973950.233598965220153, 3898167.293691356200725 ], [ 4973932.361794235184789, 3898174.541258514858782 ], [ 4973910.002881797030568, 3898119.877933231182396 ], [ 4973924.704297945834696, 3898113.716528387740254 ], [ 4973930.722854631021619, 3898129.021786597557366 ], [ 4973957.529895979911089, 3898118.514567650388926 ], [ 4973977.021323956549168, 3898166.617965970188379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973955.042045810259879, 3900562.188376937992871 ], [ 4973962.907290260307491, 3900516.687477117870003 ], [ 4974004.941639800556004, 3900523.688433093950152 ], [ 4973998.822900868020952, 3900559.725352917797863 ], [ 4973978.957395417615771, 3900556.409196091815829 ], [ 4973977.210827499628067, 3900565.87316525215283 ], [ 4973955.042045810259879, 3900562.188376937992871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973923.28057867102325, 3900015.930297715589404 ], [ 4973890.433045346289873, 3900023.512683815322816 ], [ 4973882.147933416068554, 3899989.268193098250777 ], [ 4973915.283511448651552, 3899981.686361366417259 ], [ 4973923.28057867102325, 3900015.930297715589404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973905.331717426888645, 3900945.156377601902932 ], [ 4973778.321684305556118, 3900947.092625653371215 ], [ 4973777.796222928911448, 3900921.238320400007069 ], [ 4973904.806378183886409, 3900919.302069903817028 ], [ 4973905.331717426888645, 3900945.156377601902932 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974620.585376508533955, 3896513.28176128398627 ], [ 4974627.51285569742322, 3896506.012921668123454 ], [ 4974618.025526648387313, 3896496.890840620268136 ], [ 4974646.600331947207451, 3896467.453078927937895 ], [ 4974676.499620194546878, 3896496.278737700544298 ], [ 4974685.447036855854094, 3896487.193279158324003 ], [ 4974704.996286494657397, 3896506.16689434228465 ], [ 4974662.855981259606779, 3896549.41456646239385 ], [ 4974637.269417695701122, 3896524.602914167568088 ], [ 4974634.960017207078636, 3896527.147235797718167 ], [ 4974620.585376508533955, 3896513.28176128398627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974553.355198724195361, 3904558.614303559530526 ], [ 4974548.101933157071471, 3904593.924639728385955 ], [ 4974500.890887117013335, 3904586.912545614410192 ], [ 4974506.144091968424618, 3904551.602200359106064 ], [ 4974520.249618767760694, 3904553.814947460312396 ], [ 4974522.001899199560285, 3904541.437950233928859 ], [ 4974538.986271626316011, 3904544.020545814186335 ], [ 4974537.234705589711666, 3904556.033411876764148 ], [ 4974553.355198724195361, 3904558.614303559530526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974510.70226473081857, 3899054.327177196741104 ], [ 4974466.89223416801542, 3899070.262132971547544 ], [ 4974456.294064100831747, 3899040.746598027646542 ], [ 4974499.816120880655944, 3899024.811054652556777 ], [ 4974510.70226473081857, 3899054.327177196741104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974485.223091174848378, 3898103.896918647922575 ], [ 4974506.553562381304801, 3898095.564181355759501 ], [ 4974511.140323955565691, 3898106.497172152623534 ], [ 4974540.830758036114275, 3898094.539727922528982 ], [ 4974554.30296513158828, 3898127.338149209972471 ], [ 4974503.569422494620085, 3898147.993001275230199 ], [ 4974485.223091174848378, 3898103.896918647922575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974427.301612072624266, 3903358.187590584158897 ], [ 4974388.105418461374938, 3903374.495963773224503 ], [ 4974373.776075350120664, 3903339.51103584561497 ], [ 4974438.622491563670337, 3903312.693591340444982 ], [ 4974447.794268699362874, 3903334.559619104955345 ], [ 4974421.856136326678097, 3903345.068091488908976 ], [ 4974427.301612072624266, 3903358.187590584158897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974423.708121477626264, 3898915.421299683861434 ], [ 4974425.140280636027455, 3898919.429565819911659 ], [ 4974451.076913039200008, 3898911.83415536954999 ], [ 4974462.524050704203546, 3898948.998102156445384 ], [ 4974416.702086033299565, 3898962.744374324101955 ], [ 4974404.110745798796415, 3898921.572751241270453 ], [ 4974423.708121477626264, 3898915.421299683861434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956965.526084097102284, 3895015.493052275851369 ], [ 4956886.575376695021987, 3895032.502338686492294 ], [ 4956878.846063687466085, 3894996.079190540593117 ], [ 4956957.796873075887561, 3894979.069881790783256 ], [ 4956965.526084097102284, 3895015.493052275851369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956771.388111070729792, 3891298.574893075972795 ], [ 4956771.361651458777487, 3891318.601911217905581 ], [ 4956778.559772847220302, 3891321.888576479163021 ], [ 4956778.531383143737912, 3891343.372105326969177 ], [ 4956773.041167002171278, 3891355.745211159810424 ], [ 4956773.02962042670697, 3891364.484273882117122 ], [ 4956756.560450226999819, 3891400.511215975042433 ], [ 4956715.386566476896405, 3891382.250458505004644 ], [ 4956731.567114259116352, 3891346.587238975334913 ], [ 4956720.913741569966078, 3891341.83951447205618 ], [ 4956721.259487994946539, 3891298.144581843633205 ], [ 4956771.388111070729792, 3891298.574893075972795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973758.280721009708941, 3901033.716568467207253 ], [ 4973842.667231393046677, 3901031.696784345433116 ], [ 4973843.718735639005899, 3901083.041271904483438 ], [ 4973759.333097790367901, 3901084.696923468261957 ], [ 4973758.280721009708941, 3901033.716568467207253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973727.658754472620785, 3900934.613211644813418 ], [ 4973725.01774328853935, 3900959.733072011265904 ], [ 4973581.335294548422098, 3900945.615953607484698 ], [ 4973583.68817756138742, 3900920.495518544688821 ], [ 4973727.658754472620785, 3900934.613211644813418 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973624.579302811063826, 3897227.565974073950201 ], [ 4973655.424579161219299, 3897214.517417565453798 ], [ 4973647.683836868032813, 3897195.931704086717218 ], [ 4973673.628300681710243, 3897185.058394962456077 ], [ 4973697.137775166891515, 3897241.180255257990211 ], [ 4973640.348824548535049, 3897264.737952249590307 ], [ 4973624.579302811063826, 3897227.565974073950201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973527.421365912072361, 3904084.684562554582953 ], [ 4973488.782173775136471, 3904111.555144890211523 ], [ 4973462.076793437823653, 3904072.905320188961923 ], [ 4973479.954463247209787, 3904060.559594667516649 ], [ 4973475.359816342592239, 3904053.99630050547421 ], [ 4973496.121369882486761, 3904039.471402425784618 ], [ 4973527.421365912072361, 3904084.684562554582953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974358.27350892033428, 3899817.606941998470575 ], [ 4974361.656198980286717, 3899854.754932657349855 ], [ 4974323.920861596241593, 3899857.957565092016011 ], [ 4974319.980799435637891, 3899811.341086965985596 ], [ 4974352.819361470639706, 3899808.492904159240425 ], [ 4974353.66467734053731, 3899817.961966002825648 ], [ 4974358.27350892033428, 3899817.606941998470575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974340.198733072727919, 3900802.908522952347994 ], [ 4974345.777850066311657, 3900748.664075944107026 ], [ 4974372.556535949930549, 3900751.265906731132418 ], [ 4974370.502413128502667, 3900770.560771560762078 ], [ 4974375.109642129391432, 3900770.934008713345975 ], [ 4974371.29659204557538, 3900805.883015595842153 ], [ 4974340.198733072727919, 3900802.908522952347994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974283.11840190552175, 3904771.824830635916442 ], [ 4974308.47056929487735, 3904765.684639485552907 ], [ 4974305.900551235303283, 3904754.755619052797556 ], [ 4974330.38887745141983, 3904748.613743083551526 ], [ 4974343.529011806473136, 3904802.167038478888571 ], [ 4974293.68860166054219, 3904814.449084010440856 ], [ 4974283.11840190552175, 3904771.824830635916442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974198.293078639544547, 3897839.700017513241619 ], [ 4974217.222575657069683, 3897880.51987502258271 ], [ 4974206.267477081157267, 3897885.596109895501286 ], [ 4974216.306112852878869, 3897907.099561202339828 ], [ 4974190.071945373900235, 3897919.064169776625931 ], [ 4974160.815007006749511, 3897857.104458018671721 ], [ 4974198.293078639544547, 3897839.700017513241619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974124.836807388812304, 3902675.20901092607528 ], [ 4974093.405137559399009, 3902696.63092147000134 ], [ 4974062.965534194372594, 3902652.875356600154191 ], [ 4974067.867577653378248, 3902649.607810832560062 ], [ 4974055.519639561884105, 3902631.741123518906534 ], [ 4974082.337278901599348, 3902613.587277840357274 ], [ 4974124.836807388812304, 3902675.20901092607528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974063.299620750360191, 3900870.81954049738124 ], [ 4974072.047555870376527, 3900815.853001316078007 ], [ 4974159.571194538846612, 3900829.862126204650849 ], [ 4974150.826668412424624, 3900883.00799101870507 ], [ 4974124.914945157244802, 3900878.951563626527786 ], [ 4974124.624084060080349, 3900880.407514123246074 ], [ 4974063.299620750360191, 3900870.81954049738124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973351.767068822868168, 3898438.132149507757276 ], [ 4973336.777234413661063, 3898444.657439524773508 ], [ 4973339.070117649622262, 3898450.487964902073145 ], [ 4973291.796494636684656, 3898470.059420121368021 ], [ 4973277.46097076125443, 3898436.16756611969322 ], [ 4973340.012511981651187, 3898410.071347638498992 ], [ 4973351.767068822868168, 3898438.132149507757276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973311.101578461937606, 3898020.032024460844696 ], [ 4973292.365770561620593, 3898027.278342937119305 ], [ 4973297.238243107683957, 3898039.668198491912335 ], [ 4973249.678721221163869, 3898057.782650559209287 ], [ 4973233.91476299893111, 3898017.697854726575315 ], [ 4973276.286344226449728, 3898001.393983107060194 ], [ 4973277.14619479700923, 3898003.580427586566657 ], [ 4973301.07072329800576, 3897994.159365825355053 ], [ 4973311.101578461937606, 3898020.032024460844696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973294.385451743379235, 3903825.698989913333207 ], [ 4973332.725603064522147, 3903804.65365355508402 ], [ 4973356.257480379194021, 3903846.574370830785483 ], [ 4973317.917370240204036, 3903867.619674152228981 ], [ 4973294.385451743379235, 3903825.698989913333207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973225.20497971214354, 3904010.179680579807609 ], [ 4973259.810465544462204, 3903984.393308074679226 ], [ 4973288.820625531487167, 3904022.683260662015527 ], [ 4973254.215160958468914, 3904048.469596396200359 ], [ 4973225.20497971214354, 3904010.179680579807609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973191.640931836329401, 3910497.855832726694643 ], [ 4973176.650108966976404, 3910508.386706065386534 ], [ 4973159.424402982927859, 3910483.592388215940446 ], [ 4973174.127340047620237, 3910473.0609490275383 ], [ 4973191.640931836329401, 3910497.855832726694643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974018.253688308410347, 3896236.446418311912566 ], [ 4973988.57001147326082, 3896244.034887357614934 ], [ 4973980.854217441752553, 3896212.704599510878325 ], [ 4974010.537211949005723, 3896205.480250338092446 ], [ 4974018.253688308410347, 3896236.446418311912566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956309.218421353027225, 3892448.613833189476281 ], [ 4956287.316769233904779, 3892454.047208091244102 ], [ 4956274.130280120298266, 3892403.780297699384391 ], [ 4956296.032445149496198, 3892397.982784376014024 ], [ 4956309.218421353027225, 3892448.613833189476281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956283.082369149662554, 3898797.171481988858432 ], [ 4956299.47612536791712, 3898815.03521651821211 ], [ 4956244.977242145687342, 3898863.757603632286191 ], [ 4956230.02214499656111, 3898846.9881636290811 ], [ 4956256.551046887412667, 3898822.990132589824498 ], [ 4956255.400398910976946, 3898821.896244481671602 ], [ 4956283.082369149662554, 3898797.171481988858432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956131.188169606029987, 3906202.662954826373607 ], [ 4956130.312064480036497, 3906212.129235630389303 ], [ 4956110.158732330426574, 3906210.282425401732326 ], [ 4956114.82669541426003, 3906163.315523392520845 ], [ 4956157.14852655492723, 3906167.375914992298931 ], [ 4956156.271938145160675, 3906177.206325604114681 ], [ 4956180.743901252746582, 3906179.422915446106344 ], [ 4956178.116479731164873, 3906207.093491178005934 ], [ 4956131.188169606029987, 3906202.662954826373607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972920.084640962071717, 3910385.907570326235145 ], [ 4972962.154276237823069, 3910366.689475117716938 ], [ 4972975.915700196288526, 3910396.574853020254523 ], [ 4972946.523923067376018, 3910410.355326970573515 ], [ 4972942.796720896847546, 3910402.337234418373555 ], [ 4972930.406089653261006, 3910408.139521433506161 ], [ 4972920.084640962071717, 3910385.907570326235145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972878.096511132083833, 3912759.610108207911253 ], [ 4972850.133416830562055, 3912780.311981591861695 ], [ 4972821.708571289665997, 3912741.659268714487553 ], [ 4972813.060634235851467, 3912747.832934706006199 ], [ 4972802.436753335408866, 3912733.611346770077944 ], [ 4972809.355383895337582, 3912728.526758274994791 ], [ 4972797.296341471374035, 3912712.117618403863162 ], [ 4972826.700908305123448, 3912690.326058410573751 ], [ 4972878.096511132083833, 3912759.610108207911253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973545.664578709751368, 3903440.571794098243117 ], [ 4973562.607210699468851, 3903465.001561834476888 ], [ 4973538.096638101153076, 3903482.068028286565095 ], [ 4973542.692076586186886, 3903488.267201047390699 ], [ 4973515.586289481259882, 3903507.149294551461935 ], [ 4973494.048899834044278, 3903476.156260771676898 ], [ 4973545.664578709751368, 3903440.571794098243117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973532.719610869884491, 3898103.847963030915707 ], [ 4973551.066795023158193, 3898148.30752421868965 ], [ 4973521.952912245877087, 3898160.267182383686304 ], [ 4973522.238104487769306, 3898161.724257281050086 ], [ 4973503.790362672880292, 3898168.970989120658487 ], [ 4973499.20391028560698, 3898157.674041122198105 ], [ 4973483.926566677168012, 3898163.834559406153858 ], [ 4973469.880559966899455, 3898129.214911310467869 ], [ 4973532.719610869884491, 3898103.847963030915707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973449.034695944748819, 3910044.645278400275856 ], [ 4973470.366707095876336, 3910030.485556743573397 ], [ 4973495.915241026319563, 3910068.769160489086062 ], [ 4973455.845176774077117, 3910095.637090259697288 ], [ 4973437.760721703991294, 3910068.29200276080519 ], [ 4973456.498094504699111, 3910055.947893629781902 ], [ 4973449.034695944748819, 3910044.645278400275856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973424.233688687905669, 3897755.528869022149593 ], [ 4973391.082794117741287, 3897769.665610962081701 ], [ 4973374.166052310727537, 3897729.942633464001119 ], [ 4973405.875426113605499, 3897716.531333737075329 ], [ 4973400.426885140128434, 3897704.140343201346695 ], [ 4973424.353136759251356, 3897693.991135672666132 ], [ 4973449.871814727783203, 3897753.757996344007552 ], [ 4973427.386458448134363, 3897763.545848451554775 ], [ 4973424.233688687905669, 3897755.528869022149593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973324.678405908867717, 3903053.435357353184372 ], [ 4973303.628213410265744, 3903067.95982137741521 ], [ 4973291.566523340530694, 3903050.822297856677324 ], [ 4973264.461177922785282, 3903069.340509871486574 ], [ 4973244.933317637071013, 3903041.264623723458499 ], [ 4973293.377566477283835, 3903007.858331887051463 ], [ 4973324.678405908867717, 3903053.435357353184372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955798.691892214119434, 3900097.58086450304836 ], [ 4955796.662291037850082, 3900108.138028838206083 ], [ 4955779.674739284440875, 3900104.47489794017747 ], [ 4955781.414926515892148, 3900095.009750843513757 ], [ 4955771.62512778211385, 3900093.176524207461625 ], [ 4955778.870137638412416, 3900058.229340964928269 ], [ 4955823.211109912022948, 3900067.389594847336411 ], [ 4955816.255453689955175, 3900101.244748203549534 ], [ 4955798.691892214119434, 3900097.58086450304836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955694.515095487236977, 3901382.826926567591727 ], [ 4955683.859456745907664, 3901382.813272168394178 ], [ 4955683.254085197113454, 3901405.752711163368076 ], [ 4955627.673414244316518, 3901404.589167224243283 ], [ 4955628.896173947490752, 3901349.24291270179674 ], [ 4955657.118786185979843, 3901349.643159697763622 ], [ 4955657.422160508111119, 3901337.627245576120913 ], [ 4955695.72352624963969, 3901338.768698963336647 ], [ 4955694.515095487236977, 3901382.826926567591727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955675.593113785609603, 3895244.303872630931437 ], [ 4955700.634854299947619, 3895259.265244792215526 ], [ 4955676.097878807224333, 3895300.016265573911369 ], [ 4955651.05569670163095, 3895285.419044365175068 ], [ 4955675.593113785609603, 3895244.303872630931437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955657.35395263787359, 3892389.87524051591754 ], [ 4955687.612374275922775, 3892382.631413690745831 ], [ 4955689.616853270679712, 3892392.101321015041322 ], [ 4955706.90764816198498, 3892387.753934917040169 ], [ 4955730.691811194643378, 3892486.827369344420731 ], [ 4955670.175195327028632, 3892501.314961001742631 ], [ 4955646.964199994690716, 3892404.427083556074649 ], [ 4955659.931818445213139, 3892401.530650194734335 ], [ 4955657.35395263787359, 3892389.87524051591754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972211.266703518107533, 3899768.298138471785933 ], [ 4972169.184490512125194, 3899785.696639113593847 ], [ 4972156.570099593140185, 3899755.08579181227833 ], [ 4972198.65235224366188, 3899737.687271735165268 ], [ 4972211.266703518107533, 3899768.298138471785933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972181.633469356223941, 3902183.156426279805601 ], [ 4972196.272214798256755, 3902208.673336842097342 ], [ 4972155.622696824371815, 3902231.900687858927995 ], [ 4972140.983925566077232, 3902206.383799084462225 ], [ 4972181.633469356223941, 3902183.156426279805601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972922.859103691764176, 3899808.254610394127667 ], [ 4972936.743665800429881, 3899776.966092591173947 ], [ 4972947.966150587424636, 3899782.085502157919109 ], [ 4972954.909149432554841, 3899766.07711996184662 ], [ 4972999.224454892799258, 3899785.825449456926435 ], [ 4972985.339123617857695, 3899817.478064212016761 ], [ 4972962.60618643835187, 3899807.238664226140827 ], [ 4972955.663894044235349, 3899822.882915751077235 ], [ 4972922.859103691764176, 3899808.254610394127667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972736.232620550319552, 3907322.108608936425298 ], [ 4972746.556803806684911, 3907343.612185766454786 ], [ 4972722.637989416718483, 3907354.490317648742348 ], [ 4972712.601717727258801, 3907332.98730131238699 ], [ 4972736.232620550319552, 3907322.108608936425298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972735.366259511560202, 3900259.052435122430325 ], [ 4972742.179251998662949, 3900310.77201954415068 ], [ 4972681.970865006558597, 3900319.031737909652293 ], [ 4972674.870453365147114, 3900266.947488279081881 ], [ 4972735.366259511560202, 3900259.052435122430325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972676.033171504735947, 3912598.275630120187998 ], [ 4972701.698937185108662, 3912574.656111683696508 ], [ 4972732.726126918569207, 3912607.48754754755646 ], [ 4972738.205426583997905, 3912602.400182826910168 ], [ 4972757.166449123062193, 3912622.463859855663031 ], [ 4972726.020692839287221, 3912651.534824167843908 ], [ 4972676.033171504735947, 3912598.275630120187998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955562.099707931280136, 3894792.274673217441887 ], [ 4955584.594963947311044, 3894771.548044705297798 ], [ 4955598.402820191346109, 3894786.494971076026559 ], [ 4955575.907565993256867, 3894807.221588212996721 ], [ 4955562.099707931280136, 3894792.274673217441887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971708.595522478222847, 3908867.721086797770113 ], [ 4971736.41332059726119, 3908926.034526927862316 ], [ 4971697.798591684550047, 3908944.532748707570136 ], [ 4971691.202656905166805, 3908930.683333471417427 ], [ 4971663.538762371055782, 3908943.740179245360196 ], [ 4971648.338313952088356, 3908912.396275740582496 ], [ 4971669.086250927299261, 3908902.6036271834746 ], [ 4971663.064744146540761, 3908889.483562000561506 ], [ 4971708.595522478222847, 3908867.721086797770113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971661.776352403685451, 3910496.762340404093266 ], [ 4971720.596047148108482, 3910449.171381595544517 ], [ 4971743.862691348418593, 3910477.253321504686028 ], [ 4971702.919005940668285, 3910510.676615884993225 ], [ 4971698.610875752754509, 3910505.206534521188587 ], [ 4971680.73420153837651, 3910519.73828315641731 ], [ 4971661.776352403685451, 3910496.762340404093266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972422.913262689486146, 3907652.870281769894063 ], [ 4972370.460002128966153, 3907679.716213768348098 ], [ 4972345.790047058835626, 3907631.603847430553287 ], [ 4972395.649292073212564, 3907606.209458644036204 ], [ 4972399.091897699050605, 3907612.770390075165778 ], [ 4972418.112876236438751, 3907603.339170125313103 ], [ 4972432.742876360192895, 3907631.769340330734849 ], [ 4972416.315301515161991, 3907640.113092038780451 ], [ 4972422.913262689486146, 3907652.870281769894063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972249.538927457295358, 3910557.953541200142354 ], [ 4972316.160312426276505, 3910495.813382381573319 ], [ 4972358.396014215424657, 3910540.317893663421273 ], [ 4972291.773949534632266, 3910602.822080959565938 ], [ 4972249.538927457295358, 3910557.953541200142354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971499.311607401818037, 3912085.534120011143386 ], [ 4971516.906763462349772, 3912066.996247521135956 ], [ 4971541.619769957847893, 3912090.711151776369661 ], [ 4971524.313169003464282, 3912108.885415225755423 ], [ 4971499.311607401818037, 3912085.534120011143386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971380.501444229856133, 3892743.039851104840636 ], [ 4971404.307026118971407, 3892799.524224355816841 ], [ 4971379.801026901230216, 3892809.674126282799989 ], [ 4971355.70731992367655, 3892753.189237473998219 ], [ 4971380.501444229856133, 3892743.039851104840636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954779.63020090572536, 3894175.545396959409118 ], [ 4954800.687755876220763, 3894152.631554125808179 ], [ 4954850.754192461259663, 3894198.574315669946373 ], [ 4954829.697085492312908, 3894221.123991646338254 ], [ 4954779.63020090572536, 3894175.545396959409118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970991.713940478861332, 3903725.571635912172496 ], [ 4971048.96771923545748, 3903753.351645139977336 ], [ 4971046.076600475236773, 3903759.536518704611808 ], [ 4971065.927944500930607, 3903769.404853770509362 ], [ 4971052.342994143255055, 3903796.689517211169004 ], [ 4971029.902008596807718, 3903785.72400112496689 ], [ 4971023.542510533705354, 3903798.820946206804365 ], [ 4971002.539989106357098, 3903788.586379749234766 ], [ 4971009.478105459362268, 3903774.033976226113737 ], [ 4970975.816565715707839, 3903757.585763077251613 ], [ 4970991.713940478861332, 3903725.571635912172496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970756.723582430742681, 3898884.384372428990901 ], [ 4970724.751683672890067, 3898885.417893147096038 ], [ 4970723.128137467429042, 3898828.610601466614753 ], [ 4970755.099433060735464, 3898827.941207758616656 ], [ 4970756.723582430742681, 3898884.384372428990901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971264.777816722169518, 3901520.537065397482365 ], [ 4971261.880989185534418, 3901529.634943261742592 ], [ 4971233.67435332108289, 3901520.843331349547952 ], [ 4971246.423080696724355, 3901479.356140386778861 ], [ 4971314.925168326124549, 3901500.603244300931692 ], [ 4971304.785196327604353, 3901532.991993339266628 ], [ 4971264.777816722169518, 3901520.537065397482365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971222.916614286601543, 3898477.785484273917973 ], [ 4971251.165738799609244, 3898465.457597441505641 ], [ 4971262.350472886115313, 3898491.331641959492117 ], [ 4971234.389391463249922, 3898503.660052833147347 ], [ 4971222.916614286601543, 3898477.785484273917973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954394.531058033928275, 3892734.939019929617643 ], [ 4954374.935588084161282, 3892739.648539180401713 ], [ 4954377.22858514636755, 3892749.11870558001101 ], [ 4954327.088298106566072, 3892760.344952401239425 ], [ 4954320.784074087627232, 3892733.027559181675315 ], [ 4954338.938676292076707, 3892728.680355543736368 ], [ 4954336.932850780896842, 3892719.938802954740822 ], [ 4954367.190543486736715, 3892712.693488606717438 ], [ 4954369.196808279491961, 3892721.070915473159403 ], [ 4954390.23270627297461, 3892716.363167645409703 ], [ 4954394.531058033928275, 3892734.939019929617643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954341.065863717347383, 3895213.133516246918589 ], [ 4954323.514586321078241, 3895196.726110553368926 ], [ 4954306.78581489995122, 3895214.183727101422846 ], [ 4954274.561081142164767, 3895183.557281543966383 ], [ 4954289.847328651696444, 3895167.91851733578369 ], [ 4954297.040244351141155, 3895174.845810252707452 ], [ 4954322.99895182531327, 3895147.568058707285672 ], [ 4954365.293996378779411, 3895187.674319780431688 ], [ 4954341.065863717347383, 3895213.133516246918589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970554.960986786521971, 3898495.12254889914766 ], [ 4970557.940727862529457, 3898440.872635942418128 ], [ 4970605.747659747488797, 3898443.509289014153183 ], [ 4970604.847489188425243, 3898463.170659257099032 ], [ 4970597.071576595306396, 3898462.79225209588185 ], [ 4970594.99191983230412, 3898497.380790176801383 ], [ 4970554.960986786521971, 3898495.12254889914766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970504.688719745725393, 3912718.740391334984452 ], [ 4970533.814902104437351, 3912690.755549657158554 ], [ 4970551.342170652933419, 3912708.630238338839263 ], [ 4970522.215989307500422, 3912736.615061323624104 ], [ 4970504.688719745725393, 3912718.740391334984452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970500.430472240783274, 3899332.52193466341123 ], [ 4970432.999634874053299, 3899352.06149326171726 ], [ 4970420.978405728004873, 3899310.892780871596187 ], [ 4970448.642929817549884, 3899302.568409868050367 ], [ 4970450.645019955933094, 3899310.218809727113694 ], [ 4970490.412084238603711, 3899298.639466351363808 ], [ 4970500.430472240783274, 3899332.52193466341123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970372.273569180630147, 3904212.003971699159592 ], [ 4970400.985644906759262, 3904257.937017909251153 ], [ 4970377.057719589211047, 3904272.822648335248232 ], [ 4970361.553170877508819, 3904248.033378201071173 ], [ 4970357.80503901746124, 3904250.575447819661349 ], [ 4970344.309525729157031, 3904229.431172625161707 ], [ 4970372.273569180630147, 3904212.003971699159592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970360.760359037667513, 3898062.544689476490021 ], [ 4970341.461964363232255, 3898062.873566202353686 ], [ 4970341.731368959881365, 3898073.069697353988886 ], [ 4970317.82457091473043, 3898073.390174676198512 ], [ 4970317.046241134405136, 3898026.415988473687321 ], [ 4970360.251502018421888, 3898025.766633389517665 ], [ 4970360.760359037667513, 3898062.544689476490021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970314.192083649337292, 3891383.236825900152326 ], [ 4970317.65124595630914, 3891382.150753195863217 ], [ 4970305.03541870880872, 3891348.992035089060664 ], [ 4970335.018193507567048, 3891337.758773184381425 ], [ 4970347.059123976156116, 3891370.188198282383382 ], [ 4970365.50933931209147, 3891363.667583630420268 ], [ 4970376.117719153873622, 3891391.724862827453762 ], [ 4970324.513076764531434, 3891410.929431970696896 ], [ 4970314.192083649337292, 3891383.236825900152326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971121.407767824828625, 3911268.079580791294575 ], [ 4971168.366062575019896, 3911250.324278091546148 ], [ 4971182.689226288348436, 3911288.584852166473866 ], [ 4971187.586640017107129, 3911286.773290293756872 ], [ 4971199.330989464186132, 3911318.474688027519733 ], [ 4971149.204044761136174, 3911337.316450501326472 ], [ 4971146.05355619918555, 3911328.571408634074032 ], [ 4971133.090002093464136, 3911333.281063546892256 ], [ 4971126.787659439258277, 3911316.519247400108725 ], [ 4971138.311125130392611, 3911312.171048206277192 ], [ 4971121.407767824828625, 3911268.079580791294575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971040.18152629211545, 3897925.425260739400983 ], [ 4971049.074617121368647, 3897944.740623240359128 ], [ 4971025.436841961927712, 3897955.256608685944229 ], [ 4971016.543063486926258, 3897936.305382588878274 ], [ 4971040.18152629211545, 3897925.425260739400983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970952.638316999189556, 3910527.120639646891505 ], [ 4970963.816928138956428, 3910553.723013079259545 ], [ 4970984.849893364124, 3910544.658621840644628 ], [ 4970992.302726558409631, 3910562.150791690684855 ], [ 4970975.880084629170597, 3910569.038913244847208 ], [ 4970986.200373378582299, 3910592.726646044757217 ], [ 4970931.169993648305535, 3910615.92932522110641 ], [ 4970921.137556958943605, 3910592.242145475465804 ], [ 4970929.781710113398731, 3910588.252667909488082 ], [ 4970918.315861085429788, 3910561.285644312389195 ], [ 4970907.944349932484329, 3910565.271932753268629 ], [ 4970901.064555036835372, 3910549.237376376055181 ], [ 4970952.638316999189556, 3910527.120639646891505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970225.940861821174622, 3893648.321032818872482 ], [ 4970293.978595647960901, 3893619.678877125494182 ], [ 4970307.746981952339411, 3893652.111480939667672 ], [ 4970239.709315347485244, 3893680.753602337557822 ], [ 4970225.940861821174622, 3893648.321032818872482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970170.221804145723581, 3898779.533411806449294 ], [ 4970159.769001530483365, 3898825.758914769161493 ], [ 4970132.705939318984747, 3898819.883600305765867 ], [ 4970130.383918341249228, 3898829.710890861228108 ], [ 4970108.215168222784996, 3898824.936892595607787 ], [ 4970118.669868579134345, 3898777.618982862215489 ], [ 4970146.884386355057359, 3898783.86050778394565 ], [ 4970148.629055997356772, 3898774.760428777430207 ], [ 4970170.221804145723581, 3898779.533411806449294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970130.239880008623004, 3894156.835164238698781 ], [ 4970106.024990355595946, 3894166.25850329361856 ], [ 4970095.13002796843648, 3894137.83663400541991 ], [ 4970082.445781577378511, 3894142.911397929769009 ], [ 4970066.963515112176538, 3894102.464947493281215 ], [ 4970111.356469405815005, 3894085.795658581424505 ], [ 4970123.971900751814246, 3894118.590210737194866 ], [ 4970121.37730217911303, 3894119.677881158422679 ], [ 4970127.685007583349943, 3894136.075159087777138 ], [ 4970122.78454355802387, 3894137.886895266827196 ], [ 4970130.239880008623004, 3894156.835164238698781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969984.82971128448844, 3897934.414973435457796 ], [ 4969960.856146754696965, 3897971.512770754750818 ], [ 4969912.523020794615149, 3897940.838309518061578 ], [ 4969928.1200080383569, 3897916.833975864108652 ], [ 4969937.038963354192674, 3897922.312078446149826 ], [ 4969952.63730273861438, 3897897.579501821659505 ], [ 4969973.926921761594713, 3897911.090892298147082 ], [ 4969966.417089799419045, 3897922.729437914211303 ], [ 4969984.82971128448844, 3897934.414973435457796 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969901.581531584262848, 3912570.895707573276013 ], [ 4969928.833541832864285, 3912623.744388114195317 ], [ 4969895.98671499453485, 3912640.070883349981159 ], [ 4969881.070228600874543, 3912610.913220719899982 ], [ 4969860.900226297788322, 3912621.436578561551869 ], [ 4969855.449805680662394, 3912610.86685389559716 ], [ 4969846.517275071702898, 3912615.584425462875515 ], [ 4969839.91997791826725, 3912602.463697018101811 ], [ 4969901.581531584262848, 3912570.895707573276013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969916.206923648715019, 3894314.843021275475621 ], [ 4969955.116940909996629, 3894303.261355899274349 ], [ 4969969.146392301656306, 3894350.623567653819919 ], [ 4969930.52450290415436, 3894362.205734689719975 ], [ 4969916.206923648715019, 3894314.843021275475621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969855.631640542298555, 3897705.143324758857489 ], [ 4969887.088147146627307, 3897671.33614714583382 ], [ 4969925.620865931734443, 3897706.362366122659296 ], [ 4969894.451721910387278, 3897740.534149294253439 ], [ 4969855.631640542298555, 3897705.143324758857489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969843.388703673146665, 3898900.924133487977087 ], [ 4969830.041209384799004, 3898955.519527143798769 ], [ 4969798.661250356584787, 3898947.816095639951527 ], [ 4969812.008684653788805, 3898893.220686646178365 ], [ 4969843.388703673146665, 3898900.924133487977087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969832.577612056396902, 3900739.03453296655789 ], [ 4969732.218639866448939, 3900814.228330707643181 ], [ 4969712.106827246956527, 3900787.610528389923275 ], [ 4969812.465184217318892, 3900712.780786098446697 ], [ 4969832.577612056396902, 3900739.03453296655789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970657.058156369253993, 3897793.631529303733259 ], [ 4970699.422490484081209, 3897780.600755944848061 ], [ 4970713.454154572449625, 3897825.050423701759428 ], [ 4970671.089883592911065, 3897838.081175297033042 ], [ 4970657.058156369253993, 3897793.631529303733259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970506.193119261413813, 3902316.946675095241517 ], [ 4970553.131892086006701, 3902318.125138380099088 ], [ 4970552.490466999821365, 3902353.808790475595742 ], [ 4970537.804163387045264, 3902353.417721121106297 ], [ 4970538.108170699328184, 3902344.679136858321726 ], [ 4970505.567773376591504, 3902343.891215858049691 ], [ 4970506.193119261413813, 3902316.946675095241517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969536.540033766068518, 3898801.691867404617369 ], [ 4969542.893437672406435, 3898792.235899180173874 ], [ 4969520.166173208504915, 3898777.629869976080954 ], [ 4969545.869796568527818, 3898738.714122232981026 ], [ 4969566.007532578893006, 3898751.858997385017574 ], [ 4969559.652802102267742, 3898762.043217770755291 ], [ 4969580.653913652524352, 3898775.55378602584824 ], [ 4969555.526964833028615, 3898814.106407657265663 ], [ 4969536.540033766068518, 3898801.691867404617369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970287.024701133370399, 3897905.105929957702756 ], [ 4970293.126429087482393, 3897875.986668012104928 ], [ 4970298.884327542036772, 3897877.453694063704461 ], [ 4970302.662578873336315, 3897858.889962688554078 ], [ 4970353.912271453998983, 3897869.543306390754879 ], [ 4970344.033529293723404, 3897916.498022425919771 ], [ 4970287.024701133370399, 3897905.105929957702756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970172.992335187271237, 3898998.016540074255317 ], [ 4970196.320288055576384, 3898998.78727163374424 ], [ 4970194.795998327434063, 3899045.029027733020484 ], [ 4970166.860503525473177, 3899043.88578130165115 ], [ 4970166.555258157663047, 3899053.352610373869538 ], [ 4970143.515367055311799, 3899052.582428545691073 ], [ 4970145.038243368268013, 3899007.068927260581404 ], [ 4970172.685761643573642, 3899008.211626739241183 ], [ 4970172.992335187271237, 3898998.016540074255317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953542.662896477617323, 3892739.728341314475983 ], [ 4953582.144260506145656, 3892728.123682569246739 ], [ 4953578.414069154299796, 3892715.738828315399587 ], [ 4953596.281793526373804, 3892710.298392935656011 ], [ 4953599.725646980106831, 3892721.226391152013093 ], [ 4953608.659289469011128, 3892718.688243025913835 ], [ 4953619.27671370562166, 3892753.293230785988271 ], [ 4953574.607694965787232, 3892766.712239691987634 ], [ 4953572.598559371195734, 3892760.519639697857201 ], [ 4953550.984487253241241, 3892767.047974980436265 ], [ 4953542.662896477617323, 3892739.728341314475983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969375.460087276995182, 3894501.031926285941154 ], [ 4969327.607603341341019, 3894519.881020183674991 ], [ 4969290.327195573598146, 3894425.869046852458268 ], [ 4969338.179820358753204, 3894407.019887639675289 ], [ 4969375.460087276995182, 3894501.031926285941154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969359.477275099605322, 3899245.977275397162884 ], [ 4969352.905107101425529, 3899216.835096674505621 ], [ 4969422.632423623465002, 3899201.302378667052835 ], [ 4969431.206252786330879, 3899238.459026791621 ], [ 4969380.2070482224226, 3899250.019820474088192 ], [ 4969378.205301011912525, 3899242.005371586419642 ], [ 4969359.477275099605322, 3899245.977275397162884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969307.276740683242679, 3898157.499078028835356 ], [ 4969311.004785989411175, 3898166.608992818277329 ], [ 4969324.26369112264365, 3898161.170754283200949 ], [ 4969333.438794625923038, 3898184.491483862511814 ], [ 4969324.792197937145829, 3898187.753187145572156 ], [ 4969332.821057341061532, 3898207.794697013683617 ], [ 4969286.12793923728168, 3898226.281838392838836 ], [ 4969277.812978244386613, 3898205.147441170644015 ], [ 4969285.018791272304952, 3898202.247277873102576 ], [ 4969272.689043491147459, 3898171.274198984727263 ], [ 4969307.276740683242679, 3898157.499078028835356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970136.182692882604897, 3894215.470760205294937 ], [ 4970153.093199538998306, 3894262.474176194518805 ], [ 4970112.448682446964085, 3894277.32956463471055 ], [ 4970095.538775824941695, 3894229.962045876774937 ], [ 4970136.182692882604897, 3894215.470760205294937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970051.094025893136859, 3897765.94304919661954 ], [ 4970090.287802725099027, 3897753.997949972283095 ], [ 4970102.884976968169212, 3897795.895780666731298 ], [ 4970063.691255526617169, 3897807.840861815959215 ], [ 4970051.094025893136859, 3897765.94304919661954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953346.052628013305366, 3894785.167941795196384 ], [ 4953346.659182937815785, 3894759.679641805123538 ], [ 4953386.698820154182613, 3894760.455735540483147 ], [ 4953386.380288204178214, 3894785.944378979504108 ], [ 4953346.052628013305366, 3894785.167941795196384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953336.788392006419599, 3892651.726877084001899 ], [ 4953379.160208735615015, 3892632.114544560667127 ], [ 4953392.090903243049979, 3892659.803764215204865 ], [ 4953349.719120647758245, 3892679.416076694149524 ], [ 4953336.788392006419599, 3892651.726877084001899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953182.905905243009329, 3893902.689510996453464 ], [ 4953209.401455025188625, 3893908.547056179493666 ], [ 4953204.189787423238158, 3893930.752713595051318 ], [ 4953177.694258415140212, 3893924.8951734774746 ], [ 4953182.905905243009329, 3893902.689510996453464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969166.89337951131165, 3898545.046902740839869 ], [ 4969193.952381466515362, 3898553.470146006904542 ], [ 4969192.21451589372009, 3898558.928996887523681 ], [ 4969210.350061209872365, 3898564.423301419708878 ], [ 4969195.284662937745452, 3898613.918111240956932 ], [ 4969150.090196184813976, 3898600.000590085051954 ], [ 4969166.89337951131165, 3898545.046902740839869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969245.773950333707035, 3898727.252673140261322 ], [ 4969271.675465156324208, 3898738.586969782132655 ], [ 4969276.012009283527732, 3898729.49146574549377 ], [ 4969295.006271153688431, 3898737.900403254199773 ], [ 4969276.498910281807184, 3898779.378158328589052 ], [ 4969252.324245781637728, 3898768.775200829375535 ], [ 4969247.987065725959837, 3898778.234837837982923 ], [ 4969227.266008262522519, 3898769.094590783584863 ], [ 4969245.773950333707035, 3898727.252673140261322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969149.743787588551641, 3893783.294476082548499 ], [ 4969216.858639290556312, 3893786.691303992178291 ], [ 4969213.281593910418451, 3893854.048792114946991 ], [ 4969160.281088556163013, 3893851.405381126794964 ], [ 4969162.079601695761085, 3893812.082651219796389 ], [ 4969148.253473874181509, 3893811.329755435697734 ], [ 4969149.743787588551641, 3893783.294476082548499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952783.182053728960454, 3900185.634557231329381 ], [ 4952777.949304269626737, 3900227.139247881248593 ], [ 4952746.849288472905755, 3900223.4614830724895 ], [ 4952751.794414287433028, 3900181.592319319956005 ], [ 4952783.182053728960454, 3900185.634557231329381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968285.445719033479691, 3901894.581943168770522 ], [ 4968228.651617663912475, 3901929.43915805593133 ], [ 4968210.558866687119007, 3901900.641207571141422 ], [ 4968267.353005246259272, 3901865.783955053891987 ], [ 4968285.445719033479691, 3901894.581943168770522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968790.719501457177103, 3900020.562734372448176 ], [ 4968850.88349134195596, 3900037.055087218992412 ], [ 4968837.258302256464958, 3900087.280950197018683 ], [ 4968777.093772702850401, 3900071.152756577823311 ], [ 4968790.719501457177103, 3900020.562734372448176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952632.919533586129546, 3892225.958165245130658 ], [ 4952609.283546328544617, 3892236.854436082299799 ], [ 4952612.731260143220425, 3892244.869281881023198 ], [ 4952596.30131964944303, 3892252.496816137805581 ], [ 4952594.29022198356688, 3892247.760802600067109 ], [ 4952583.048843886703253, 3892252.845496090594679 ], [ 4952580.75008013471961, 3892247.745019927620888 ], [ 4952548.754917970858514, 3892262.637015908025205 ], [ 4952536.972126416862011, 3892237.862572236452252 ], [ 4952620.563175432384014, 3892198.998245728202164 ], [ 4952632.919533586129546, 3892225.958165245130658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968559.756836893968284, 3899028.628544714301825 ], [ 4968554.325557636097074, 3899005.314656887669116 ], [ 4968603.884788917377591, 3898993.749760678503662 ], [ 4968617.322710408829153, 3899049.849479692522436 ], [ 4968581.594073018990457, 3899058.161531881429255 ], [ 4968573.587349137291312, 3899025.375721021555364 ], [ 4968559.756836893968284, 3899028.628544714301825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968565.067530079744756, 3890609.970118565950543 ], [ 4968617.256354593671858, 3890586.393670003395528 ], [ 4968628.448853342793882, 3890611.174117310903966 ], [ 4968576.260067006573081, 3890634.750544477254152 ], [ 4968565.067530079744756, 3890609.970118565950543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968428.987734774127603, 3899362.306051757186651 ], [ 4968449.421871656551957, 3899370.716922686435282 ], [ 4968442.482096628285944, 3899386.362335723359138 ], [ 4968422.336620288901031, 3899377.587846389971673 ], [ 4968428.987734774127603, 3899362.306051757186651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968401.747682350687683, 3902412.215627595316619 ], [ 4968355.904099313542247, 3902443.450489065144211 ], [ 4968335.222571773454547, 3902413.19138390570879 ], [ 4968381.065543618053198, 3902382.320617478340864 ], [ 4968401.747682350687683, 3902412.215627595316619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952416.45075255446136, 3892821.420451349113137 ], [ 4952412.091536721214652, 3892854.18696222640574 ], [ 4952357.940196309238672, 3892847.205807427875698 ], [ 4952358.812447001226246, 3892840.288375416304916 ], [ 4952341.530067167244852, 3892838.083611919544637 ], [ 4952345.017372232861817, 3892811.870394204743207 ], [ 4952416.45075255446136, 3892821.420451349113137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967846.07123564183712, 3896525.445642167236656 ], [ 4967855.504659826867282, 3896566.972768387757242 ], [ 4967806.806037886999547, 3896578.176395872607827 ], [ 4967797.373173026368022, 3896536.285157971084118 ], [ 4967846.07123564183712, 3896525.445642167236656 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967756.752541018649936, 3894209.06432319059968 ], [ 4967771.966535839252174, 3894240.041619231924415 ], [ 4967716.035006902180612, 3894266.890437756665051 ], [ 4967700.82033380959183, 3894236.277300877962261 ], [ 4967756.752541018649936, 3894209.06432319059968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968332.716664999723434, 3897431.88414933020249 ], [ 4968336.761878359131515, 3897424.608639623969793 ], [ 4968369.278290834277868, 3897442.507979730144143 ], [ 4968351.073544198647141, 3897475.976014088373631 ], [ 4968301.579189701005816, 3897448.943726450204849 ], [ 4968316.314748057164252, 3897422.752180003095418 ], [ 4968332.716664999723434, 3897431.88414933020249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952139.519301974214613, 3891891.845201029907912 ], [ 4952170.079661268740892, 3891872.217403161339462 ], [ 4952206.027451842091978, 3891927.606269695796072 ], [ 4952175.755220470018685, 3891947.234358732588589 ], [ 4952139.519301974214613, 3891891.845201029907912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967371.190473227761686, 3899990.779554247390479 ], [ 4967374.101769064553082, 3899972.57803445821628 ], [ 4967393.681131508201361, 3899975.524684452451766 ], [ 4967391.057827840559185, 3899993.726696581114084 ], [ 4967371.190473227761686, 3899990.779554247390479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968104.516666378825903, 3891857.031792666297406 ], [ 4968087.761638339608908, 3891883.21985621843487 ], [ 4968080.279490914195776, 3891878.473150642588735 ], [ 4968069.302188594825566, 3891895.568075736984611 ], [ 4968041.387693591415882, 3891878.041306101251394 ], [ 4968045.721116911619902, 3891871.130405229516327 ], [ 4968014.065814157947898, 3891851.048253310378641 ], [ 4968037.465298014692962, 3891814.311977996025234 ], [ 4968104.516666378825903, 3891857.031792666297406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968079.980273992754519, 3902631.223936906084418 ], [ 4968050.862905260175467, 3902649.379760006442666 ], [ 4968055.458482443355024, 3902656.306250849273056 ], [ 4968032.683610750362277, 3902670.467700788285583 ], [ 4968005.113892463035882, 3902626.724012134596705 ], [ 4968026.734976967796683, 3902613.652923617511988 ], [ 4968031.041955683380365, 3902620.943038700614125 ], [ 4968061.601130337454379, 3902601.697313072625548 ], [ 4968079.980273992754519, 3902631.223936906084418 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968032.003785385750234, 3893131.720162720419466 ], [ 4968009.836929195560515, 3893122.942505827173591 ], [ 4968004.628714231774211, 3893136.042086288332939 ], [ 4967988.507074078544974, 3893129.823863024823368 ], [ 4967993.715282375924289, 3893116.724279483314604 ], [ 4967961.184520130977035, 3893103.923227578401566 ], [ 4967973.916317336261272, 3893071.537885140627623 ], [ 4968044.735654913820326, 3893099.334853313397616 ], [ 4968032.003785385750234, 3893131.720162720419466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968006.563531042076647, 3904276.240380853414536 ], [ 4967977.158131926320493, 3904295.488191500771791 ], [ 4967955.617530181072652, 3904263.04306133557111 ], [ 4967945.815522278659046, 3904269.580389876384288 ], [ 4967931.455509481951594, 3904247.707564755808562 ], [ 4967940.969562237150967, 3904241.169730745255947 ], [ 4967931.491564223542809, 3904226.952145325951278 ], [ 4967955.420070240274072, 3904210.971947294659913 ], [ 4967968.344716078601778, 3904230.293370467144996 ], [ 4967973.534322196617723, 3904226.661080440040678 ], [ 4968006.563531042076647, 3904276.240380853414536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966978.743177160620689, 3899252.017008123453707 ], [ 4966942.154375006444752, 3899258.509125111624599 ], [ 4966934.451674545183778, 3899215.164544723927975 ], [ 4966942.806541106663644, 3899213.722226285841316 ], [ 4966938.242890746332705, 3899187.497098701540381 ], [ 4966966.764304568991065, 3899182.811904083471745 ], [ 4966978.743177160620689, 3899252.017008123453707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967130.521628811955452, 3902460.265377945732325 ], [ 4967174.90954861510545, 3902437.400950293522328 ], [ 4967189.836524748243392, 3902465.464538117870688 ], [ 4967145.448016624897718, 3902488.69307130901143 ], [ 4967130.521628811955452, 3902460.265377945732325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966970.705069004558027, 3905499.760149569716305 ], [ 4966977.623831272125244, 3905495.03821260901168 ], [ 4966970.443143839947879, 3905484.466180026065558 ], [ 4967000.135708290152252, 3905464.489483088254929 ], [ 4967024.837078764103353, 3905500.94470166740939 ], [ 4966988.225777383893728, 3905525.643304295372218 ], [ 4966970.705069004558027, 3905499.760149569716305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966194.033717448823154, 3905030.176856216508895 ], [ 4966164.919611328281462, 3905048.698879599571228 ], [ 4966125.571881, 3904987.823197891935706 ], [ 4966154.686025741510093, 3904969.301132570486516 ], [ 4966194.033717448823154, 3905030.176856216508895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966129.911928183399141, 3899974.477098005823791 ], [ 4966087.300503582693636, 3899966.395112180151045 ], [ 4966091.659465505741537, 3899943.098046383354813 ], [ 4966103.46405169647187, 3899945.302525342442095 ], [ 4966104.333537765778601, 3899942.026803877204657 ], [ 4966143.777542685158551, 3899949.739395426120609 ], [ 4966138.839485190808773, 3899974.856137181632221 ], [ 4966166.191471612080932, 3899979.999657065141946 ], [ 4966164.449444538913667, 3899988.371742520947009 ], [ 4966176.829406558535993, 3899990.941345620434731 ], [ 4966173.344131022691727, 3900008.413773972075433 ], [ 4966125.261893180198967, 3899999.594323547091335 ], [ 4966129.911928183399141, 3899974.477098005823791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966104.130826186388731, 3895403.1486960449256 ], [ 4966085.406081221066415, 3895403.845717485994101 ], [ 4966084.864589528180659, 3895383.08944465406239 ], [ 4966103.301294394768775, 3895382.391942205838859 ], [ 4966104.130826186388731, 3895403.1486960449256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966096.88798897061497, 3897499.794391628820449 ], [ 4966108.615257058292627, 3897548.971476949285716 ], [ 4966073.173439104110003, 3897557.28733674203977 ], [ 4966061.446109883487225, 3897508.11026663472876 ], [ 4966096.88798897061497, 3897499.794391628820449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965680.710731383413076, 3893996.178801575209945 ], [ 4965651.307205730117857, 3894008.510606833733618 ], [ 4965641.26386453397572, 3893984.825636696070433 ], [ 4965670.954879392869771, 3893972.858424608130008 ], [ 4965680.710731383413076, 3893996.178801575209945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950602.322129553183913, 3891306.061363818589598 ], [ 4950614.471966740675271, 3891260.558614315930754 ], [ 4950622.82444226462394, 3891262.752506901044399 ], [ 4950627.163826553151011, 3891246.371482270769775 ], [ 4950634.363910128362477, 3891248.564119263552129 ], [ 4950640.727559763938189, 3891225.266875085886568 ], [ 4950668.665201995521784, 3891232.57999256066978 ], [ 4950657.382742293179035, 3891275.170640605501831 ], [ 4950664.007415380328894, 3891276.634399936534464 ], [ 4950656.776276621036232, 3891302.843715566210449 ], [ 4950646.119826386682689, 3891299.919036905746907 ], [ 4950641.780041044577956, 3891316.664186677895486 ], [ 4950602.322129553183913, 3891306.061363818589598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965578.815487550571561, 3893597.289398912806064 ], [ 4965552.869655657559633, 3893608.898753489833325 ], [ 4965529.621463502757251, 3893556.790019683074206 ], [ 4965555.567335534840822, 3893545.18064301693812 ], [ 4965578.815487550571561, 3893597.289398912806064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965560.211312597617507, 3901561.504713862203062 ], [ 4965551.23505624756217, 3901590.984496490564197 ], [ 4965530.510118896141648, 3901584.760121124330908 ], [ 4965539.486354557797313, 3901555.280331678222865 ], [ 4965560.211312597617507, 3901561.504713862203062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965969.056976257823408, 3897466.445611267350614 ], [ 4965887.808311820030212, 3897480.511622088495642 ], [ 4965882.673313945531845, 3897450.64445687411353 ], [ 4965905.434525573626161, 3897446.676833645440638 ], [ 4965904.292679479345679, 3897440.484731296077371 ], [ 4965962.780232833698392, 3897430.386325991712511 ], [ 4965969.056976257823408, 3897466.445611267350614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950392.414983563125134, 3890932.601720475591719 ], [ 4950353.230322923511267, 3890935.108172419015318 ], [ 4950354.078862859867513, 3890949.674213271122426 ], [ 4950339.384871174581349, 3890950.386567244771868 ], [ 4950338.536323305219412, 3890935.820526852738112 ], [ 4950307.419319891370833, 3890937.60751918097958 ], [ 4950305.717072110623121, 3890913.2090999125503 ], [ 4950334.816992629319429, 3890911.784051550086588 ], [ 4950333.964502092450857, 3890900.859287844505161 ], [ 4950390.148052580654621, 3890897.642970321234316 ], [ 4950392.414983563125134, 3890932.601720475591719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965261.414103762246668, 3903940.609013266395777 ], [ 4965304.309223330579698, 3903947.59779051784426 ], [ 4965299.07635403983295, 3903977.812097515910864 ], [ 4965256.469840166158974, 3903970.45966988010332 ], [ 4965261.414103762246668, 3903940.609013266395777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965001.349416409619153, 3891574.336897691711783 ], [ 4964980.036876094527543, 3891570.296810783911496 ], [ 4964977.132825501263142, 3891584.493097223807126 ], [ 4964950.924445568583906, 3891579.35268575232476 ], [ 4964953.829074770212173, 3891564.792269045021385 ], [ 4964931.940920445136726, 3891560.387156179640442 ], [ 4964938.329907226376235, 3891529.082490803208202 ], [ 4964962.522260217927396, 3891533.855483431369066 ], [ 4964963.683523928746581, 3891528.395444834139198 ], [ 4964988.163968861103058, 3891533.168928955681622 ], [ 4964987.002108019776642, 3891538.993093991652131 ], [ 4965007.738480776548386, 3891543.032248553819954 ], [ 4965001.349416409619153, 3891574.336897691711783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965611.584759614430368, 3898527.655893124174327 ], [ 4965639.805388844572008, 3898530.979654174763709 ], [ 4965635.429757425561547, 3898564.472384846769273 ], [ 4965649.827771787531674, 3898566.316814473830163 ], [ 4965647.201906345784664, 3898586.703755342401564 ], [ 4965631.363801633007824, 3898584.856949184089899 ], [ 4965627.572044517844915, 3898613.61695654829964 ], [ 4965592.729444726370275, 3898608.825762722175568 ], [ 4965599.148194454610348, 3898558.95054685138166 ], [ 4965607.498986074700952, 3898560.056716714054346 ], [ 4965611.584759614430368, 3898527.655893124174327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965520.486695467494428, 3894555.580806978512555 ], [ 4965515.540451834909618, 3894585.431248429697007 ], [ 4965480.693806434981525, 3894579.911954877898097 ], [ 4965485.640611536800861, 3894549.697378995828331 ], [ 4965520.486695467494428, 3894555.580806978512555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964970.930015612393618, 3902126.762805017177016 ], [ 4964964.82256630808115, 3902163.53007421316579 ], [ 4964929.409673403948545, 3902158.010533769149333 ], [ 4964931.445077694952488, 3902145.9975276584737 ], [ 4964911.867030318826437, 3902143.052667543292046 ], [ 4964915.939010499976575, 3902118.29839360807091 ], [ 4964970.930015612393618, 3902126.762805017177016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964881.478534733876586, 3898510.074961536563933 ], [ 4964897.317325620912015, 3898511.557196766603738 ], [ 4964896.141590299084783, 3898526.120485196821392 ], [ 4964880.01478707138449, 3898524.637783113401383 ], [ 4964881.478534733876586, 3898510.074961536563933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964790.193866255693138, 3894052.982395166996866 ], [ 4964794.548516913317144, 3894032.234096767846495 ], [ 4964811.826756657101214, 3894035.903378950431943 ], [ 4964807.760161991231143, 3894056.652141337282956 ], [ 4964790.193866255693138, 3894052.982395166996866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965379.194227333180606, 3893237.565799876116216 ], [ 4965410.334113161079586, 3893220.86700776964426 ], [ 4965423.546198885887861, 3893244.921215530484915 ], [ 4965392.406332641839981, 3893261.619992582593113 ], [ 4965379.194227333180606, 3893237.565799876116216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965235.23442274518311, 3897942.244784054346383 ], [ 4965224.197652676142752, 3897998.302719373721629 ], [ 4965191.948803957551718, 3897992.059772415086627 ], [ 4965203.273536443710327, 3897936.002295042388141 ], [ 4965235.23442274518311, 3897942.244784054346383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949990.304241046309471, 3890048.794446235988289 ], [ 4949963.500910221599042, 3890057.140749672893435 ], [ 4949949.718971957452595, 3890012.702435934450477 ], [ 4949941.360613291151822, 3890015.606538232415915 ], [ 4949931.597820364870131, 3889984.645254484377801 ], [ 4949971.946778042241931, 3889972.307979792356491 ], [ 4949987.738868406973779, 3890022.938625934068114 ], [ 4949982.55129656009376, 3890024.389593236148357 ], [ 4949990.304241046309471, 3890048.794446235988289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964508.722138714045286, 3900334.492666014935821 ], [ 4964472.975406570360065, 3900355.918844093568623 ], [ 4964454.592495797201991, 3900325.302339513786137 ], [ 4964490.339253887534142, 3900303.876137376297265 ], [ 4964508.722138714045286, 3900334.492666014935821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964941.110429029911757, 3897794.292517121881247 ], [ 4964971.921798998489976, 3897799.076304535381496 ], [ 4964965.23081354983151, 3897839.847958389669657 ], [ 4964934.420080952346325, 3897834.700049695558846 ], [ 4964941.110429029911757, 3897794.292517121881247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964180.280833912082016, 3893735.937577013857663 ], [ 4964176.197239457629621, 3893767.610270523931831 ], [ 4964132.130379743874073, 3893762.442137823440135 ], [ 4964135.926431677304208, 3893730.40485019935295 ], [ 4964180.280833912082016, 3893735.937577013857663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964163.029242694377899, 3900030.253828973509371 ], [ 4964198.137890432029963, 3900047.788160184863955 ], [ 4964188.314322714693844, 3900067.435498511884362 ], [ 4964152.917689773254097, 3900049.900720194913447 ], [ 4964163.029242694377899, 3900030.253828973509371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964123.300656583160162, 3900381.212027455214411 ], [ 4964143.994884675368667, 3900407.462430557236075 ], [ 4964116.311973010189831, 3900429.266084403265268 ], [ 4964095.617734771221876, 3900403.015702270902693 ], [ 4964123.300656583160162, 3900381.212027455214411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964131.054762970656157, 3892811.335995305795223 ], [ 4964125.822827659547329, 3892840.457946946844459 ], [ 4964085.790484546683729, 3892833.47568656085059 ], [ 4964091.022377819754183, 3892804.353727248962969 ], [ 4964131.054762970656157, 3892811.335995305795223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964101.765100347809494, 3897630.903564578387886 ], [ 4964109.325305956415832, 3897586.127661848440766 ], [ 4964141.288022547028959, 3897591.640591211616993 ], [ 4964133.728346140123904, 3897636.052356286440045 ], [ 4964101.765100347809494, 3897630.903564578387886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964733.381004951894283, 3903883.673223741352558 ], [ 4964737.175204951316118, 3903852.364087836816907 ], [ 4964779.498211951926351, 3903857.166314103174955 ], [ 4964775.991926678456366, 3903888.475910528097302 ], [ 4964733.381004951894283, 3903883.673223741352558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964729.588904362171888, 3902489.773772852029651 ], [ 4964778.228350689634681, 3902507.694918791297823 ], [ 4964769.261520271189511, 3902532.07716139825061 ], [ 4964720.622112171724439, 3902514.156031424645334 ], [ 4964729.588904362171888, 3902489.773772852029651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964733.992545863613486, 3897097.376528060995042 ], [ 4964743.493025601841509, 3897100.304935797117651 ], [ 4964749.575961616821587, 3897079.195260593201965 ], [ 4964776.926443099975586, 3897087.250387263484299 ], [ 4964763.023484593257308, 3897134.928859702777117 ], [ 4964768.205770115368068, 3897136.393767795525491 ], [ 4964761.833617884665728, 3897158.231230621226132 ], [ 4964719.5124197229743, 3897145.782348760869354 ], [ 4964733.992545863613486, 3897097.376528060995042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964558.192632530815899, 3906450.880795707460493 ], [ 4964557.258400520309806, 3906494.575092445593327 ], [ 4964570.503431709483266, 3906494.596442687790841 ], [ 4964569.884119812399149, 3906521.541189695708454 ], [ 4964515.178195986896753, 3906520.360655117314309 ], [ 4964515.808006568811834, 3906486.861553436610848 ], [ 4964506.306719811633229, 3906486.482124895788729 ], [ 4964506.941209479235113, 3906450.069977802690119 ], [ 4964558.192632530815899, 3906450.880795707460493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964341.709628281183541, 3901933.121399297844619 ], [ 4964320.989928534254432, 3901923.620787725318223 ], [ 4964340.06345752440393, 3901882.140466123819351 ], [ 4964379.776153637096286, 3901900.410701718181372 ], [ 4964363.591764929704368, 3901936.069539499469101 ], [ 4964344.310829451307654, 3901927.299479401204735 ], [ 4964341.709628281183541, 3901933.121399297844619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964305.592662693932652, 3897692.403080153744668 ], [ 4964330.935781807638705, 3897694.628465377725661 ], [ 4964328.300329645164311, 3897721.569843272212893 ], [ 4964302.957235723733902, 3897719.344460503198206 ], [ 4964305.592662693932652, 3897692.403080153744668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964284.480402239598334, 3907097.867288908455521 ], [ 4964287.633040485903621, 3907106.975633863825351 ], [ 4964269.771538004279137, 3907113.137272037100047 ], [ 4964267.765363524667919, 3907107.307950979098678 ], [ 4964240.685482576489449, 3907116.367906399071217 ], [ 4964230.08162512537092, 3907085.399738054256886 ], [ 4964310.457617346197367, 3907058.218538006301969 ], [ 4964319.915513332933187, 3907085.543582597281784 ], [ 4964284.480402239598334, 3907097.867288908455521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949221.801137839443982, 3889045.176134361885488 ], [ 4949262.440438244491816, 3889031.745719611644745 ], [ 4949275.077981819398701, 3889069.992291404865682 ], [ 4949234.72685488127172, 3889083.422987217549235 ], [ 4949221.801137839443982, 3889045.176134361885488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963570.117424187250435, 3904544.170715279411525 ], [ 4963530.947911171242595, 3904548.842763938009739 ], [ 4963526.114521935582161, 3904509.508986531756818 ], [ 4963565.28409141395241, 3904504.836930941324681 ], [ 4963570.117424187250435, 3904544.170715279411525 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963563.621491208672523, 3892571.20438324753195 ], [ 4963594.69391414616257, 3892597.106439613737166 ], [ 4963569.005684271454811, 3892628.01692622108385 ], [ 4963537.933272450231016, 3892602.114899080712348 ], [ 4963563.621491208672523, 3892571.20438324753195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963457.746746914461255, 3893399.066669151186943 ], [ 4963511.019588416442275, 3893412.623127071652561 ], [ 4963504.931654116138816, 3893437.010188268497586 ], [ 4963484.485738697461784, 3893432.244385112542659 ], [ 4963481.295744735747576, 3893445.712140100076795 ], [ 4963460.274824543856084, 3893440.217194422613829 ], [ 4963461.724349123425782, 3893434.393409282434732 ], [ 4963449.629754559136927, 3893431.461390973534435 ], [ 4963457.746746914461255, 3893399.066669151186943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964105.156661463901401, 3904354.213883516378701 ], [ 4964118.463739496655762, 3904316.001332067884505 ], [ 4964135.156052592210472, 3904321.854064644314349 ], [ 4964137.46960178297013, 3904315.667526463977993 ], [ 4964161.932726871222258, 3904324.081596995238215 ], [ 4964146.312043179757893, 3904368.480664474889636 ], [ 4964105.156661463901401, 3904354.213883516378701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964098.979403351433575, 3901546.026574543211609 ], [ 4964099.521127436310053, 3901567.511142902076244 ], [ 4964052.86470998544246, 3901568.89331816136837 ], [ 4964051.221446210518479, 3901515.727635943330824 ], [ 4964086.069833573885262, 3901514.69076528865844 ], [ 4964086.883306487463415, 3901546.371422451920807 ], [ 4964098.979403351433575, 3901546.026574543211609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964074.198292851448059, 3903723.48940548626706 ], [ 4964072.743961026892066, 3903732.590364602860063 ], [ 4964092.032395309768617, 3903735.898287289775908 ], [ 4964085.92534642200917, 3903773.394052416086197 ], [ 4964042.166320716030896, 3903766.041714888066053 ], [ 4964049.727633921429515, 3903719.444979562889785 ], [ 4964074.198292851448059, 3903723.48940548626706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963755.958654791116714, 3901744.297176243271679 ], [ 4963731.457942078821361, 3901758.095400809776038 ], [ 4963697.28305078111589, 3901697.59572042291984 ], [ 4963728.413257530890405, 3901680.166636629030108 ], [ 4963751.961972665041685, 3901722.078887657262385 ], [ 4963745.620509782806039, 3901725.710165884811431 ], [ 4963755.958654791116714, 3901744.297176243271679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963739.272567757405341, 3901551.281572875566781 ], [ 4963747.042497585527599, 3901554.935163776390254 ], [ 4963737.795783575624228, 3901574.583595364354551 ], [ 4963691.175049529410899, 3901553.390358902513981 ], [ 4963712.560407171025872, 3901506.451294668018818 ], [ 4963751.698682750575244, 3901524.355558383278549 ], [ 4963739.272567757405341, 3901551.281572875566781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963670.877569809556007, 3907660.567696706857532 ], [ 4963707.189235218800604, 3907639.505397217813879 ], [ 4963729.872993696480989, 3907678.867499091662467 ], [ 4963693.561363549903035, 3907699.929768439847976 ], [ 4963670.877569809556007, 3907660.567696706857532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963639.993074735626578, 3893466.353119138162583 ], [ 4963639.117366663180292, 3893473.634314916562289 ], [ 4963615.211159349419177, 3893471.047729290556163 ], [ 4963620.469967594370246, 3893424.447527574375272 ], [ 4963667.418233175761998, 3893429.61936569493264 ], [ 4963663.035058756358922, 3893468.938363334629685 ], [ 4963639.993074735626578, 3893466.353119138162583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963393.10836770478636, 3893836.284018915612251 ], [ 4963438.902529873885214, 3893842.181908881291747 ], [ 4963433.362330323085189, 3893884.776297295931727 ], [ 4963387.568239537067711, 3893878.878416627645493 ], [ 4963393.10836770478636, 3893836.284018915612251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963370.513864062726498, 3901084.614043180365115 ], [ 4963394.680188425816596, 3901100.673668615985662 ], [ 4963371.009385369718075, 3901135.9572166162543 ], [ 4963346.843078688718379, 3901119.897612117696553 ], [ 4963370.513864062726498, 3901084.614043180365115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963355.277608462609351, 3904375.604614089708775 ], [ 4963366.192055346444249, 3904393.464146124664694 ], [ 4963375.41584347654134, 3904387.652504522819072 ], [ 4963388.915611784905195, 3904409.521542032714933 ], [ 4963344.815858654677868, 3904436.398134736344218 ], [ 4963320.401036564260721, 3904397.033731212839484 ], [ 4963355.277608462609351, 3904375.604614089708775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963338.911375964991748, 3904161.469847774598747 ], [ 4963363.417688433080912, 3904142.573421698529273 ], [ 4963392.156080774031579, 3904179.395719770342112 ], [ 4963367.361821482889354, 3904198.291668752208352 ], [ 4963338.911375964991748, 3904161.469847774598747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962762.970544122159481, 3899512.446583723649383 ], [ 4962783.408020249567926, 3899519.760759871453047 ], [ 4962772.706639804877341, 3899548.874634732026607 ], [ 4962752.269745200872421, 3899541.196337350644171 ], [ 4962762.970544122159481, 3899512.446583723649383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963114.12718588206917, 3898172.264683064073324 ], [ 4963093.977932037785649, 3898164.222451791167259 ], [ 4963102.074374672025442, 3898143.843787070829421 ], [ 4963166.840237622149289, 3898169.433797127567232 ], [ 4963154.985243435017765, 3898198.909828606527299 ], [ 4963110.656145942397416, 3898181.726652675773948 ], [ 4963114.12718588206917, 3898172.264683064073324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963004.20436420571059, 3899589.287583337631077 ], [ 4963073.840324118733406, 3899629.450168420094997 ], [ 4963058.535064092837274, 3899655.643726914189756 ], [ 4962989.187158538028598, 3899615.481628120876849 ], [ 4963004.20436420571059, 3899589.287583337631077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962463.907724791206419, 3901085.02913851942867 ], [ 4962486.971781723201275, 3901069.042777034454048 ], [ 4962495.017720622941852, 3901080.707297793123871 ], [ 4962471.95366888307035, 3901096.69365249061957 ], [ 4962463.907724791206419, 3901085.02913851942867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962412.23445150628686, 3896086.902881061192602 ], [ 4962406.993297144770622, 3896123.671922015957534 ], [ 4962417.072697253897786, 3896125.143873784691095 ], [ 4962411.834331455640495, 3896160.092272005509585 ], [ 4962400.026666871272027, 3896158.617676410358399 ], [ 4962398.279438170604408, 3896170.995400680694729 ], [ 4962358.249942015856504, 3896165.108084785286337 ], [ 4962359.9977095304057, 3896152.36622942565009 ], [ 4962351.934640636667609, 3896150.897381983697414 ], [ 4962354.555454188026488, 3896132.330791352316737 ], [ 4962343.900517011992633, 3896130.493853794876486 ], [ 4962348.846299444325268, 3896098.458030656911433 ], [ 4962370.445357935503125, 3896101.404097464866936 ], [ 4962373.645068343728781, 3896081.017747964244336 ], [ 4962412.23445150628686, 3896086.902881061192602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962294.255683403462172, 3901100.427124606911093 ], [ 4962301.21702192351222, 3901068.030146944336593 ], [ 4962327.703529324382544, 3901073.896703370846808 ], [ 4962327.702416242100298, 3901074.624962552450597 ], [ 4962388.161551686935127, 3901087.462002879474312 ], [ 4962381.489220889285207, 3901119.131139937788248 ], [ 4962294.255683403462172, 3901100.427124606911093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962225.689927029423416, 3895825.537146431859583 ], [ 4962273.497300334274769, 3895831.436131646391004 ], [ 4962267.078531635925174, 3895884.95334548689425 ], [ 4962271.110664061270654, 3895885.323627605568618 ], [ 4962269.072094519622624, 3895899.885689539369196 ], [ 4962230.480746375396848, 3895895.09314801543951 ], [ 4962232.23013589065522, 3895881.258900982327759 ], [ 4962218.982093025930226, 3895879.782189436722547 ], [ 4962225.689927029423416, 3895825.537146431859583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962657.549901160411537, 3899144.148465420119464 ], [ 4962645.702622084878385, 3899169.255188608076423 ], [ 4962629.873066384345293, 3899161.948212888557464 ], [ 4962641.720333859324455, 3899136.841482824180275 ], [ 4962657.549901160411537, 3899144.148465420119464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962649.585662168450654, 3896648.026699441019446 ], [ 4962623.586873336695135, 3896696.780022468883544 ], [ 4962597.97199731040746, 3896683.267817541025579 ], [ 4962593.061866144649684, 3896691.999373032245785 ], [ 4962577.519995382986963, 3896683.964624629821628 ], [ 4962583.297044550068676, 3896673.413751887623221 ], [ 4962570.921369794756174, 3896666.840394128113985 ], [ 4962588.830856235697865, 3896633.732147346716374 ], [ 4962600.91906098742038, 3896639.94094149954617 ], [ 4962604.386197418905795, 3896633.027815082110465 ], [ 4962621.078572602011263, 3896642.156737901736051 ], [ 4962624.834315517917275, 3896634.879928816109896 ], [ 4962649.585662168450654, 3896648.026699441019446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962591.017913264222443, 3893713.055427771061659 ], [ 4962570.216254242695868, 3893752.349364391062409 ], [ 4962536.539231561124325, 3893734.455308873672038 ], [ 4962546.073581154458225, 3893716.26351007213816 ], [ 4962540.604679930955172, 3893713.342078862246126 ], [ 4962551.871950787492096, 3893692.239913161378354 ], [ 4962591.017913264222443, 3893713.055427771061659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962488.165816663764417, 3896348.464164476841688 ], [ 4962467.739246570505202, 3896332.411141070537269 ], [ 4962461.389989205636084, 3896340.41225335560739 ], [ 4962433.195123030804098, 3896318.521277078427374 ], [ 4962465.231151166372001, 3896277.423754264600575 ], [ 4962477.314518664032221, 3896286.909648479893804 ], [ 4962482.50937950052321, 3896280.363287061918527 ], [ 4962519.335523387417197, 3896308.821893970482051 ], [ 4962488.165816663764417, 3896348.464164476841688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962420.167030913755298, 3895797.432209863793105 ], [ 4962467.110261995345354, 3895803.330215832218528 ], [ 4962465.649913101457059, 3895816.436631703283638 ], [ 4962479.185465216636658, 3895818.278035002294928 ], [ 4962474.229425407014787, 3895856.868141105864197 ], [ 4962425.846041832119226, 3895850.967916356865317 ], [ 4962424.095992990769446, 3895865.166278998367488 ], [ 4962411.712100719101727, 3895863.69079612288624 ], [ 4962420.167030913755298, 3895797.432209863793105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962374.967721204273403, 3895969.596190511714667 ], [ 4962434.579202385619283, 3895979.154818052425981 ], [ 4962429.636643135920167, 3896009.005852191243321 ], [ 4962417.541422943584621, 3896007.166679279413074 ], [ 4962415.216965885832906, 3896020.271776064299047 ], [ 4962422.992580596357584, 3896021.376072692684829 ], [ 4962420.665333622135222, 3896036.301811612211168 ], [ 4962365.37413183785975, 3896027.113951416220516 ], [ 4962374.967721204273403, 3895969.596190511714667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962239.756727622821927, 3899634.355410350020975 ], [ 4962266.524335877038538, 3899645.684279948007315 ], [ 4962256.408471164293587, 3899668.973172993399203 ], [ 4962229.641437068581581, 3899657.280184033792466 ], [ 4962239.756727622821927, 3899634.355410350020975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961795.617232728749514, 3899080.568180911708623 ], [ 4961811.211799789220095, 3899052.917830245103687 ], [ 4961854.377224341034889, 3899077.37971492158249 ], [ 4961838.782626948319376, 3899105.030040947720408 ], [ 4961795.617232728749514, 3899080.568180911708623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961753.893963175825775, 3899245.820300612132996 ], [ 4961740.034225985407829, 3899269.103740381076932 ], [ 4961679.030265456065536, 3899232.598906987346709 ], [ 4961693.1779820099473, 3899209.31586964474991 ], [ 4961753.893963175825775, 3899245.820300612132996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961559.498093632981181, 3893282.181109492667019 ], [ 4961565.90732213575393, 3893234.489855107385665 ], [ 4961605.65382516849786, 3893240.011420715600252 ], [ 4961604.488943840377033, 3893248.384633122943342 ], [ 4961616.29793035518378, 3893249.858876788988709 ], [ 4961609.305902507156134, 3893301.91878978908062 ], [ 4961584.248135185800493, 3893298.604024713858962 ], [ 4961585.995717970654368, 3893285.862140486482531 ], [ 4961559.498093632981181, 3893282.181109492667019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961490.672169288620353, 3909038.002799632959068 ], [ 4961493.867520769126713, 3909019.072711242828518 ], [ 4961478.611646284349263, 3909016.865071654319763 ], [ 4961484.423797572031617, 3908980.824687676038593 ], [ 4961544.870450886897743, 3908990.382710192818195 ], [ 4961539.351043082773685, 3909023.146330621559173 ], [ 4961552.303642323240638, 3909025.350549693219364 ], [ 4961548.815973033197224, 3909047.19325043912977 ], [ 4961490.672169288620353, 3909038.002799632959068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962157.678732424974442, 3898874.290960680693388 ], [ 4962172.984665087424219, 3898847.368643199559301 ], [ 4962217.302160516381264, 3898871.832861803472042 ], [ 4962201.996197276748717, 3898898.755154431331903 ], [ 4962157.678732424974442, 3898874.290960680693388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962083.454400205053389, 3898818.830343455076218 ], [ 4962092.125363140366971, 3898798.81637078570202 ], [ 4962131.270324693061411, 3898815.625858396291733 ], [ 4962122.311320439912379, 3898835.639380670152605 ], [ 4962083.454400205053389, 3898818.830343455076218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961983.200112193822861, 3896933.942684701643884 ], [ 4962043.397824652493, 3896935.490491677541286 ], [ 4962042.174389328807592, 3896982.461346166674048 ], [ 4961968.439023929648101, 3896980.893031251151115 ], [ 4961969.043230148032308, 3896962.323339717462659 ], [ 4961982.580445789732039, 3896962.707979359664023 ], [ 4961983.200112193822861, 3896933.942684701643884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961873.927454535849392, 3893382.425683920271695 ], [ 4961906.48774807062, 3893377.377102619037032 ], [ 4961907.913259439170361, 3893387.210735382046551 ], [ 4961932.693849383853376, 3893383.24280752427876 ], [ 4961939.540435360744596, 3893427.676880417391658 ], [ 4961882.20020626951009, 3893436.329245573375374 ], [ 4961873.927454535849392, 3893382.425683920271695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961455.691969474777579, 3909133.71720336843282 ], [ 4961515.264744940213859, 3909149.8282330641523 ], [ 4961508.316238658502698, 3909175.671208926010877 ], [ 4961491.912099596112967, 3909171.277047536801547 ], [ 4961485.832793794572353, 3909193.480009036604315 ], [ 4961430.289157975465059, 3909178.467465919908136 ], [ 4961435.210258070379496, 3909160.632346539292485 ], [ 4961447.297444518655539, 3909163.927617588546127 ], [ 4961455.691969474777579, 3909133.71720336843282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961340.943639020435512, 3898818.44083711784333 ], [ 4961372.030528099276125, 3898831.231771224644035 ], [ 4961352.374706122092903, 3898878.539329808205366 ], [ 4961321.287862502038479, 3898865.748418078757823 ], [ 4961340.943639020435512, 3898818.44083711784333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961291.926226646639407, 3899628.192932058125734 ], [ 4961313.583352693356574, 3899590.355674665886909 ], [ 4961348.978092193603516, 3899610.799743108451366 ], [ 4961327.320932663045824, 3899648.636972445994616 ], [ 4961291.926226646639407, 3899628.192932058125734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961841.958643209189177, 3893949.690117904916406 ], [ 4961788.67010673135519, 3893946.696677017491311 ], [ 4961791.913557944819331, 3893897.180039534345269 ], [ 4961844.913571967743337, 3893900.537179817445576 ], [ 4961841.958643209189177, 3893949.690117904916406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961728.958679677918553, 3900503.488343592267483 ], [ 4961741.094163193367422, 3900477.289241675287485 ], [ 4961751.167027754709125, 3900482.0381128359586 ], [ 4961762.146150947548449, 3900458.750320581719279 ], [ 4961785.457686685957015, 3900469.709378045983613 ], [ 4961778.233526439405978, 3900485.720216835848987 ], [ 4961788.018930712714791, 3900490.104538050945848 ], [ 4961772.416432778351009, 3900523.580997753422707 ], [ 4961728.958679677918553, 3900503.488343592267483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961669.801020168699324, 3896176.444473253563046 ], [ 4961662.550600929185748, 3896209.205215454567224 ], [ 4961614.750328687950969, 3896198.937772873789072 ], [ 4961621.712646246887743, 3896166.176585370209068 ], [ 4961669.801020168699324, 3896176.444473253563046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961566.866692620329559, 3896436.278278910089284 ], [ 4961571.802208186127245, 3896410.432493146508932 ], [ 4961603.189659005962312, 3896416.669793662149459 ], [ 4961597.966071203351021, 3896442.515141412150115 ], [ 4961566.866692620329559, 3896436.278278910089284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947347.258885205723345, 3891139.211215598974377 ], [ 4947372.614161999896169, 3891136.686942638363689 ], [ 4947374.611756101250648, 3891156.351798851042986 ], [ 4947349.25649765972048, 3891158.876069963444024 ], [ 4947347.258885205723345, 3891139.211215598974377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947203.070600376464427, 3889789.977719990070909 ], [ 4947180.885084509849548, 3889790.68457002658397 ], [ 4947180.049887710250914, 3889760.461159687954932 ], [ 4947202.235077018849552, 3889760.11843639658764 ], [ 4947203.070600376464427, 3889789.977719990070909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961087.14410949125886, 3892830.32156740501523 ], [ 4961128.647345012053847, 3892817.274467966519296 ], [ 4961132.088124048896134, 3892828.203431261703372 ], [ 4961137.563841227442026, 3892826.755040337797254 ], [ 4961151.614462139084935, 3892870.835456778760999 ], [ 4961104.923135444521904, 3892885.69547266094014 ], [ 4961087.14410949125886, 3892830.32156740501523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961058.146190986037254, 3896459.916760426945984 ], [ 4961056.37102063279599, 3896491.59339112509042 ], [ 4961024.112399063073099, 3896490.089122318662703 ], [ 4961025.004005749709904, 3896471.519841165747494 ], [ 4961013.482829821296036, 3896471.138666440732777 ], [ 4961014.078845592215657, 3896457.666759692132473 ], [ 4961058.146190986037254, 3896459.916760426945984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961470.383635393343866, 3899508.296457223128527 ], [ 4961458.533812385052443, 3899535.952614095062017 ], [ 4961397.80177035741508, 3899510.372722122818232 ], [ 4961409.65208609867841, 3899482.352409633807838 ], [ 4961470.383635393343866, 3899508.296457223128527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961321.729046482592821, 3900694.774776868987828 ], [ 4961307.572118459269404, 3900724.97649169433862 ], [ 4961260.661085448227823, 3900703.05879395827651 ], [ 4961274.81797219440341, 3900672.857054813299328 ], [ 4961321.729046482592821, 3900694.774776868987828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960873.301320597529411, 3896015.405829539056867 ], [ 4960877.658538741059601, 3895990.651459138840437 ], [ 4960867.291493382304907, 3895988.815531656611711 ], [ 4960872.231247446499765, 3895959.692467640619725 ], [ 4960878.278652369044721, 3895960.793769987300038 ], [ 4960883.797741943039, 3895929.486786819063127 ], [ 4960916.051133546978235, 3895934.99630033550784 ], [ 4960901.234970030374825, 3896020.18070002598688 ], [ 4960873.301320597529411, 3896015.405829539056867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960610.92762360535562, 3908966.422086323145777 ], [ 4960609.69223996438086, 3909023.589027743786573 ], [ 4960557.294516386464238, 3909022.41992357140407 ], [ 4960557.597873604856431, 3909011.860534233506769 ], [ 4960548.097426141612232, 3909011.482504724990577 ], [ 4960548.709992381744087, 3908986.358280768152326 ], [ 4960559.649992499500513, 3908986.738416582811624 ], [ 4960559.969333511777222, 3908965.255085894837976 ], [ 4960610.92762360535562, 3908966.422086323145777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960468.739213396795094, 3898284.432049697265029 ], [ 4960471.082188004627824, 3898257.853993280790746 ], [ 4960504.77724098879844, 3898260.452090160455555 ], [ 4960502.721724926494062, 3898287.394693315494806 ], [ 4960468.739213396795094, 3898284.432049697265029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960933.761600616388023, 3908712.368598239030689 ], [ 4960915.041964817792177, 3908715.982277588918805 ], [ 4960913.040558994747698, 3908706.511888055130839 ], [ 4960901.232415309175849, 3908709.043384290765971 ], [ 4960903.520661926828325, 3908719.242460523266345 ], [ 4960877.600560180842876, 3908724.666200743988156 ], [ 4960868.737585458904505, 3908682.41380534414202 ], [ 4960925.185546831227839, 3908670.844872396904975 ], [ 4960933.761600616388023, 3908712.368598239030689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960887.120463485829532, 3899145.484720232430845 ], [ 4960893.779700155369937, 3899121.826091993134469 ], [ 4960923.145351113751531, 3899129.880280853249133 ], [ 4960916.486090563237667, 3899153.538901914376765 ], [ 4960887.120463485829532, 3899145.484720232430845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960811.591675634495914, 3893320.760136288125068 ], [ 4960852.23300844617188, 3893305.526566910557449 ], [ 4960861.415518993511796, 3893329.936720739118755 ], [ 4960876.980239173397422, 3893324.133598938118666 ], [ 4960886.736726071685553, 3893350.001122766640037 ], [ 4960830.530751073732972, 3893371.037780192680657 ], [ 4960811.591675634495914, 3893320.760136288125068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960725.865848468616605, 3893826.773141409270465 ], [ 4960725.909693234600127, 3893796.914640686009079 ], [ 4960747.515057538636029, 3893796.946375080849975 ], [ 4960747.841648257337511, 3893770.729578644502908 ], [ 4960786.442734542302787, 3893771.150449169799685 ], [ 4960786.057735841721296, 3893837.057203406933695 ], [ 4960769.061541283503175, 3893837.032213194295764 ], [ 4960769.075993777252734, 3893827.200755544938147 ], [ 4960725.865848468616605, 3893826.773141409270465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960371.160952136851847, 3902001.330956893507391 ], [ 4960405.708905264735222, 3902008.299751003738493 ], [ 4960395.555227910168469, 3902059.263245879206806 ], [ 4960346.899875715374947, 3902049.725023499689996 ], [ 4960354.152964930981398, 3902012.958383851218969 ], [ 4960368.260445557534695, 3902015.527828703634441 ], [ 4960371.160952136851847, 3902001.330956893507391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960327.945586525835097, 3901023.213558672461659 ], [ 4960333.502727055922151, 3900964.59664698690176 ], [ 4960362.009964854456484, 3900967.551160647533834 ], [ 4960356.164768677204847, 3901026.167647493071854 ], [ 4960327.945586525835097, 3901023.213558672461659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960176.165005980990827, 3899835.200386830139905 ], [ 4960208.702915132977068, 3899839.981222704052925 ], [ 4960204.048893020488322, 3899871.653798914980143 ], [ 4960220.750098093412817, 3899873.862790558952838 ], [ 4960217.84046982973814, 3899894.24985986854881 ], [ 4960163.994383964687586, 3899886.525112166535109 ], [ 4960169.229642291553319, 3899851.21206911187619 ], [ 4960173.836693996563554, 3899851.947000953834504 ], [ 4960176.165005980990827, 3899835.200386830139905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959788.146560288965702, 3909122.17030114075169 ], [ 4959752.405875205993652, 3909150.157238668296486 ], [ 4959725.103724984452128, 3909115.889702290762216 ], [ 4959760.557041306048632, 3909087.538184950593859 ], [ 4959788.146560288965702, 3909122.17030114075169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959781.61056328099221, 3899422.436603256035596 ], [ 4959792.870154347270727, 3899403.517985625658184 ], [ 4959779.632589532062411, 3899395.85227548610419 ], [ 4959793.202550160698593, 3899372.567410066723824 ], [ 4959842.412305663339794, 3899400.676035002805293 ], [ 4959817.870197123847902, 3899443.244021316058934 ], [ 4959781.61056328099221, 3899422.436603256035596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959956.743273933418095, 3892806.094327917788178 ], [ 4960009.166349137201905, 3892811.631784590426832 ], [ 4960004.782654084265232, 3892854.956770794000477 ], [ 4959976.554851698689163, 3892852.003065014258027 ], [ 4959975.096085801720619, 3892864.745465603191406 ], [ 4959950.900907929055393, 3892862.161724416073412 ], [ 4959956.743273933418095, 3892806.094327917788178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959915.127112017944455, 3898705.65645588375628 ], [ 4959916.924371253699064, 3898657.593897859565914 ], [ 4959963.29287856630981, 3898659.481292283162475 ], [ 4959961.799288623034954, 3898696.620388337410986 ], [ 4959938.758815204724669, 3898695.858954240567982 ], [ 4959938.455072470009327, 3898706.78241342259571 ], [ 4959915.127112017944455, 3898705.65645588375628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959901.882974809035659, 3893493.854486095719039 ], [ 4959900.510656666010618, 3893446.515775070991367 ], [ 4959957.552183200605214, 3893444.777200235519558 ], [ 4959959.200416856445372, 3893500.491273039951921 ], [ 4959933.560720580630004, 3893501.182624649256468 ], [ 4959933.572771526873112, 3893492.807680502999574 ], [ 4959901.882974809035659, 3893493.854486095719039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959880.501600614748895, 3897747.581229463219643 ], [ 4959881.434244582429528, 3897699.881583550479263 ], [ 4959905.628215827979147, 3897700.280496021267027 ], [ 4959905.613029717467725, 3897710.840234410949051 ], [ 4959920.878073796629906, 3897711.226321286987513 ], [ 4959920.553897747769952, 3897736.350801944267005 ], [ 4959932.074546149931848, 3897736.731508514843881 ], [ 4959932.384584376588464, 3897721.438508608844131 ], [ 4959960.898977519012988, 3897721.843688776250929 ], [ 4959960.572142140008509, 3897748.788813686463982 ], [ 4959880.501600614748895, 3897747.581229463219643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959239.837732118554413, 3899438.415363295469433 ], [ 4959185.695762034505606, 3899435.425851404201239 ], [ 4959187.767862191423774, 3899395.73860383592546 ], [ 4959202.455421844497323, 3899396.487599323503673 ], [ 4959203.044299241155386, 3899387.385180450510234 ], [ 4959242.21079112496227, 3899389.625294706318527 ], [ 4959239.837732118554413, 3899438.415363295469433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959304.979192455299199, 3904690.363214071374387 ], [ 4959280.473661324009299, 3904711.083999638911337 ], [ 4959256.90052692964673, 3904683.37667867494747 ], [ 4959246.810264498926699, 3904691.737426621373743 ], [ 4959237.036273605190217, 3904680.07141044922173 ], [ 4959246.838582362048328, 3904671.710251732263714 ], [ 4959229.877028280869126, 3904652.023190428968519 ], [ 4959254.670529485680163, 3904631.302766710519791 ], [ 4959304.979192455299199, 3904690.363214071374387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959298.370782259851694, 3900408.540835501160473 ], [ 4959297.471212545409799, 3900433.66454873746261 ], [ 4959283.359707867726684, 3900433.280445486772805 ], [ 4959284.5472650853917, 3900408.157139337155968 ], [ 4959298.370782259851694, 3900408.540835501160473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959018.226739895530045, 3899530.956202208530158 ], [ 4959013.294756061397493, 3899556.438375423196703 ], [ 4958987.380519713275135, 3899551.668287451379001 ], [ 4958992.601001288741827, 3899525.822384658735245 ], [ 4959018.226739895530045, 3899530.956202208530158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958964.094568985514343, 3907318.54772013425827 ], [ 4958931.238251685164869, 3907341.806056512054056 ], [ 4958911.985462868586183, 3907314.469181537628174 ], [ 4958975.392214072868228, 3907269.769924049731344 ], [ 4958994.070139871910214, 3907296.377772723790258 ], [ 4958979.08311518561095, 3907306.916545641142875 ], [ 4958986.267476536333561, 3907316.75819209869951 ], [ 4958970.703590827994049, 3907328.024423197377473 ], [ 4958964.094568985514343, 3907318.54772013425827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959056.941446914337575, 3900877.928206040523946 ], [ 4959094.090834388509393, 3900879.437011363916099 ], [ 4959092.004625126719475, 3900929.319931018631905 ], [ 4959081.925309325568378, 3900928.94161074096337 ], [ 4959080.728224752470851, 3900960.983396747615188 ], [ 4959053.657741967588663, 3900960.217045370489359 ], [ 4959056.941446914337575, 3900877.928206040523946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958962.674351999536157, 3889239.8662367942743 ], [ 4958941.591543190181255, 3889275.521203441079706 ], [ 4958912.22727767098695, 3889258.366047522984445 ], [ 4958933.310060895979404, 3889222.71105819195509 ], [ 4958962.674351999536157, 3889239.8662367942743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958747.551705605350435, 3898459.306986388750374 ], [ 4958765.181499569676816, 3898416.000140752177685 ], [ 4958828.222688093781471, 3898441.577288674656302 ], [ 4958813.48370851483196, 3898477.241407565772533 ], [ 4958792.757867505773902, 3898468.837465109303594 ], [ 4958789.578951773233712, 3898476.479751114267856 ], [ 4958747.551705605350435, 3898459.306986388750374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958649.182347813621163, 3907054.112055095843971 ], [ 4958639.093669558875263, 3907062.108912404626608 ], [ 4958646.854586351662874, 3907071.58713693311438 ], [ 4958626.965685948729515, 3907087.217126823030412 ], [ 4958589.313259252347052, 3907039.463524859398603 ], [ 4958619.002420380711555, 3907016.200369765516371 ], [ 4958649.182347813621163, 3907054.112055095843971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958844.700557474978268, 3908073.225723658222705 ], [ 4958863.452983639203012, 3908046.306205559521914 ], [ 4958871.219144443050027, 3908051.779057280160487 ], [ 4958880.450904153287411, 3908038.683235567063093 ], [ 4958910.077971482649446, 3908059.116132925264537 ], [ 4958879.785312885418534, 3908102.769523387774825 ], [ 4958874.320475329644978, 3908098.756419160868973 ], [ 4958866.5313885146752, 3908109.669471496716142 ], [ 4958838.629816613160074, 3908090.695563058368862 ], [ 4958849.015259278006852, 3908076.144816521089524 ], [ 4958844.700557474978268, 3908073.225723658222705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958568.659584261476994, 3900762.908852993510664 ], [ 4958575.031925410032272, 3900736.700320308096707 ], [ 4958601.230558108538389, 3900743.291062299627811 ], [ 4958594.858192948624492, 3900769.499588869977742 ], [ 4958568.659584261476994, 3900762.908852993510664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958417.926907559856772, 3905423.210264493711293 ], [ 4958390.25481107737869, 3905444.291620935313404 ], [ 4958342.828548182733357, 3905382.687919062562287 ], [ 4958370.212723096832633, 3905361.606116811744869 ], [ 4958417.926907559856772, 3905423.210264493711293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944753.020022350363433, 3890361.225715809967369 ], [ 4944740.290445760823786, 3890421.659817527979612 ], [ 4944708.316210460849106, 3890415.077599607408047 ], [ 4944721.045718257315457, 3890354.643482988700271 ], [ 4944753.020022350363433, 3890361.225715809967369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944532.578357612714171, 3890405.821647886186838 ], [ 4944553.318336489610374, 3890410.209150154609233 ], [ 4944548.690310386009514, 3890431.324555966071784 ], [ 4944527.95034705568105, 3890426.937057210598141 ], [ 4944532.578357612714171, 3890405.821647886186838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958010.689118649810553, 3898744.495152139570564 ], [ 4957989.588611316867173, 3898799.449910519644618 ], [ 4957961.089260106906295, 3898788.85120421461761 ], [ 4957982.477736024186015, 3898733.896817403379828 ], [ 4958010.689118649810553, 3898744.495152139570564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957999.945469435304403, 3900282.565665368922055 ], [ 4958026.152657320722938, 3900283.329772870056331 ], [ 4958025.246799512766302, 3900313.915469488594681 ], [ 4957999.040139308199286, 3900312.787233342416584 ], [ 4957999.945469435304403, 3900282.565665368922055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957877.415822447277606, 3905659.153460062108934 ], [ 4957902.205862017348409, 3905639.524167816154659 ], [ 4957927.213804543949664, 3905671.237719315569848 ], [ 4957902.712216617539525, 3905690.50325093511492 ], [ 4957877.415822447277606, 3905659.153460062108934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958216.469967542216182, 3904717.974275671876967 ], [ 4958173.266786294989288, 3904725.197502145078033 ], [ 4958167.55622174218297, 3904689.868933168705553 ], [ 4958152.29111709818244, 3904692.39688429934904 ], [ 4958149.150114403106272, 3904673.093619619961828 ], [ 4958164.99163993448019, 3904670.202327402774245 ], [ 4958162.991960735991597, 3904658.547383481636643 ], [ 4958209.363755255937576, 3904650.600236141122878 ], [ 4958213.649525252170861, 3904675.00291850650683 ], [ 4958209.329199247062206, 3904675.725238455925137 ], [ 4958216.469967542216182, 3904717.974275671876967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958071.573032003827393, 3904968.661734675522894 ], [ 4958104.120076370425522, 3904962.516121262684464 ], [ 4958110.123611607588828, 3904994.203772171400487 ], [ 4958077.576604216359556, 3905000.349378438200802 ], [ 4958071.573032003827393, 3904968.661734675522894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944290.040327123366296, 3892029.623764492105693 ], [ 4944301.85078720934689, 3892031.090401280205697 ], [ 4944298.948655019514263, 3892055.848631533328444 ], [ 4944252.282407253049314, 3892050.710869347210974 ], [ 4944258.66900613065809, 3891993.912333988584578 ], [ 4944293.52456521987915, 3891997.947596720885485 ], [ 4944290.040327123366296, 3892029.623764492105693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957789.844581416808069, 3900178.866236478090286 ], [ 4957796.214319232851267, 3900154.114046256989241 ], [ 4957821.838198957033455, 3900160.339113512076437 ], [ 4957815.467943611554801, 3900185.455427235458046 ], [ 4957789.844581416808069, 3900178.866236478090286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944056.161303225904703, 3890271.778393473941833 ], [ 4944050.364533298648894, 3890312.555795211810619 ], [ 4944025.301838370040059, 3890309.257402778137475 ], [ 4944031.098879504017532, 3890268.11586813442409 ], [ 4944056.161303225904703, 3890271.778393473941833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943986.905642090365291, 3890741.808837076183408 ], [ 4943998.178370179608464, 3890698.487148802727461 ], [ 4944084.591232589446008, 3890720.408076021820307 ], [ 4944073.606478394940495, 3890763.729973193723708 ], [ 4943986.905642090365291, 3890741.808837076183408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957498.717859207652509, 3901426.710661950521171 ], [ 4957506.230645543895662, 3901408.150144127197564 ], [ 4957515.441410933621228, 3901411.803875600919127 ], [ 4957524.398586809635162, 3901389.968138264492154 ], [ 4957560.377678457647562, 3901404.581940650939941 ], [ 4957540.439498635940254, 3901454.076749152969569 ], [ 4957506.186926622875035, 3901440.557693324051797 ], [ 4957509.943564787507057, 3901431.095370198599994 ], [ 4957498.717859207652509, 3901426.710661950521171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957496.735380776226521, 3896276.091009277384728 ], [ 4957507.874601560644805, 3896132.639089917298406 ], [ 4957550.789103769697249, 3896135.974172122776508 ], [ 4957539.937700199894607, 3896279.426462847273797 ], [ 4957496.735380776226521, 3896276.091009277384728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957691.885043825022876, 3907851.701794325374067 ], [ 4957729.071334900334477, 3907818.980387451127172 ], [ 4957758.969133350998163, 3907852.885257665999234 ], [ 4957746.574190985411406, 3907863.428242747206241 ], [ 4957768.422518180683255, 3907888.218895283993334 ], [ 4957743.631679138168693, 3907910.033125366549939 ], [ 4957691.885043825022876, 3907851.701794325374067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957670.905597293749452, 3906973.387539851479232 ], [ 4957631.705658021382987, 3907003.92149507952854 ], [ 4957627.681046637706459, 3906999.182334425393492 ], [ 4957608.081109242513776, 3907014.449336593504995 ], [ 4957589.398168395273387, 3906990.391372974961996 ], [ 4957648.485998651944101, 3906944.590759623330086 ], [ 4957670.905597293749452, 3906973.387539851479232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957148.886616183444858, 3897056.317619151435792 ], [ 4957144.818121484480798, 3897083.257767009083182 ], [ 4957109.972528929822147, 3897078.113445079885423 ], [ 4957114.040989458560944, 3897051.173292027320713 ], [ 4957148.886616183444858, 3897056.317619151435792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957377.88065589312464, 3897910.144128940533847 ], [ 4957378.500269873067737, 3897877.737422297243029 ], [ 4957368.707814116962254, 3897877.360132330562919 ], [ 4957369.022753368131816, 3897857.333424732089043 ], [ 4957413.66562581807375, 3897858.485839711502194 ], [ 4957412.731487218290567, 3897910.555123663041741 ], [ 4957377.88065589312464, 3897910.144128940533847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957325.065551711246371, 3894554.98584350431338 ], [ 4957276.366733438335359, 3894566.936791099142283 ], [ 4957269.489806610159576, 3894539.61790570570156 ], [ 4957318.189159815199673, 3894527.302817575167865 ], [ 4957325.065551711246371, 3894554.98584350431338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943606.440112529322505, 3890596.930999655742198 ], [ 4943573.889597564004362, 3890590.349651047494262 ], [ 4943570.707131955772638, 3890606.368636397179216 ], [ 4943540.173058318905532, 3890600.153130553662777 ], [ 4943550.00942641030997, 3890551.004021457862109 ], [ 4943613.094409950077534, 3890563.436767187900841 ], [ 4943606.440112529322505, 3890596.930999655742198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956824.512338511645794, 3891647.844147762283683 ], [ 4956791.380020823329687, 3891648.892712794709951 ], [ 4956790.562428073957562, 3891613.571186240762472 ], [ 4956823.694307459518313, 3891612.886747888289392 ], [ 4956824.512338511645794, 3891647.844147762283683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956449.73505811393261, 3905477.364493823610246 ], [ 4956514.590367591008544, 3905426.107013919390738 ], [ 4956533.563785938546062, 3905449.800454545766115 ], [ 4956521.745546110905707, 3905459.252353191841394 ], [ 4956528.069853342138231, 3905467.271543943323195 ], [ 4956504.145454934798181, 3905486.174973749555647 ], [ 4956499.833425868302584, 3905480.707347297109663 ], [ 4956470.720779147930443, 3905503.609446026850492 ], [ 4956449.73505811393261, 3905477.364493823610246 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956287.947595427744091, 3899262.8999457443133 ], [ 4956300.661952217109501, 3899230.873089211992919 ], [ 4956325.418265617452562, 3899240.736892734188586 ], [ 4956312.703883945010602, 3899272.763737739529461 ], [ 4956287.947595427744091, 3899262.8999457443133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956275.715309309773147, 3905553.968811751808971 ], [ 4956303.099110405892134, 3905531.792508682701737 ], [ 4956337.021559054031968, 3905574.076014189980924 ], [ 4956309.638248005881906, 3905595.888152553234249 ], [ 4956275.715309309773147, 3905553.968811751808971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942902.512080857530236, 3892848.851497396826744 ], [ 4942937.100681962445378, 3892825.575161842629313 ], [ 4942975.081888095475733, 3892882.045724775176495 ], [ 4942940.20553934853524, 3892904.957651657517999 ], [ 4942902.512080857530236, 3892848.851497396826744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942720.822688058950007, 3892735.825989407487214 ], [ 4942711.885432574898005, 3892744.193805153947324 ], [ 4942723.11106433160603, 3892756.219004342798144 ], [ 4942703.218540718778968, 3892774.77366884239018 ], [ 4942705.808958186767995, 3892777.688762877136469 ], [ 4942679.862091168761253, 3892802.064667379949242 ], [ 4942641.579610681161284, 3892761.25180383073166 ], [ 4942683.671316457912326, 3892721.595339387189597 ], [ 4942677.33871332462877, 3892715.035981358028948 ], [ 4942690.023662914521992, 3892703.393987750634551 ], [ 4942720.822688058950007, 3892735.825989407487214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956082.582556574605405, 3893492.27587472833693 ], [ 4956059.530915689654648, 3893496.615561285056174 ], [ 4956054.665701336227357, 3893471.848511421121657 ], [ 4956077.717362656258047, 3893467.508820756338537 ], [ 4956082.582556574605405, 3893492.27587472833693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942502.455458208918571, 3890184.935352556873113 ], [ 4942579.952198892831802, 3890191.186893333680928 ], [ 4942579.661488937214017, 3890194.46381293842569 ], [ 4942604.725623923353851, 3890196.304347292985767 ], [ 4942601.524315666407347, 3890236.719991600606591 ], [ 4942498.963602604344487, 3890228.627929330803454 ], [ 4942502.455458208918571, 3890184.935352556873113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955653.998507613316178, 3901087.465312201995403 ], [ 4955697.196117645129561, 3901088.613035201560706 ], [ 4955696.296668540686369, 3901116.285787208471447 ], [ 4955653.099102952517569, 3901115.138065631967038 ], [ 4955653.998507613316178, 3901087.465312201995403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955492.118744065985084, 3893421.240472340490669 ], [ 4955450.330649811774492, 3893434.660039294976741 ], [ 4955437.41680330876261, 3893395.68184712016955 ], [ 4955458.454678523354232, 3893389.154292941559106 ], [ 4955455.872651468962431, 3893380.776048459112644 ], [ 4955471.723783320747316, 3893375.33429173566401 ], [ 4955473.732435338199139, 3893381.527035857085139 ], [ 4955503.704863438382745, 3893371.733734658919275 ], [ 4955519.487313779070973, 3893420.182960031554103 ], [ 4955494.414535759016871, 3893428.161841247230768 ], [ 4955492.118744065985084, 3893421.240472340490669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955328.903854164294899, 3895595.610827852506191 ], [ 4955299.221558211371303, 3895605.76883015781641 ], [ 4955286.020030078478158, 3895567.154424744658172 ], [ 4955315.702363620512187, 3895556.996408090926707 ], [ 4955328.903854164294899, 3895595.610827852506191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955319.638760425150394, 3898360.069665565155447 ], [ 4955340.441045230254531, 3898309.117880795150995 ], [ 4955347.637929165735841, 3898312.040047295857221 ], [ 4955358.038644696585834, 3898286.928293390665203 ], [ 4955384.523388206027448, 3898297.521675979252905 ], [ 4955379.322324149310589, 3898310.623741028364748 ], [ 4955396.594924403354526, 3898317.564143013209105 ], [ 4955383.5931934742257, 3898349.591043989639729 ], [ 4955364.881420720368624, 3898341.920564107131213 ], [ 4955352.168685760349035, 3898373.219588036648929 ], [ 4955319.638760425150394, 3898360.069665565155447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955496.489694567397237, 3891799.053609749302268 ], [ 4955485.248506111092865, 3891803.408832918852568 ], [ 4955488.981656786985695, 3891812.88092326419428 ], [ 4955454.970030687749386, 3891825.946249865461141 ], [ 4955434.295418823137879, 3891772.393091530539095 ], [ 4955438.619132305495441, 3891770.577947863843292 ], [ 4955434.312086220830679, 3891759.284493506420404 ], [ 4955445.553284830413759, 3891754.929249163717031 ], [ 4955440.09710645955056, 3891741.085434273816645 ], [ 4955469.785109828226268, 3891729.835227419156581 ], [ 4955496.489694567397237, 3891799.053609749302268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954701.681189138442278, 3895933.098967874888331 ], [ 4954697.114546488970518, 3895899.229271282907575 ], [ 4954788.153929805383086, 3895886.598180552013218 ], [ 4954792.148905990645289, 3895916.82588730333373 ], [ 4954745.188783249817789, 3895923.321657118853182 ], [ 4954747.187881974503398, 3895937.161057308781892 ], [ 4954716.937339921481907, 3895941.492928734980524 ], [ 4954715.797838799655437, 3895931.295892804861069 ], [ 4954701.681189138442278, 3895933.098967874888331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954833.45133975148201, 3895827.665807616896927 ], [ 4954843.1927011879161, 3895869.552834289614111 ], [ 4954802.854434565640986, 3895878.605683628004044 ], [ 4954793.112559237517416, 3895837.082799962256104 ], [ 4954833.45133975148201, 3895827.665807616896927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954494.790380100719631, 3895059.296615057624876 ], [ 4954459.602320564910769, 3895095.666021306067705 ], [ 4954433.707701051607728, 3895070.873271893244237 ], [ 4954468.89575787819922, 3895034.503832273650914 ], [ 4954494.790380100719631, 3895059.296615057624876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954397.93644034396857, 3895113.068103183526546 ], [ 4954414.953840626403689, 3895095.246771317441016 ], [ 4954436.245380136184394, 3895115.300142955034971 ], [ 4954419.227529091760516, 3895133.485589995514601 ], [ 4954421.816898611374199, 3895136.037688178010285 ], [ 4954398.743138620629907, 3895159.677611431572586 ], [ 4954375.149841483682394, 3895137.436658470891416 ], [ 4954383.51471933349967, 3895128.343742079567164 ], [ 4954369.704121358692646, 3895115.218079000711441 ], [ 4954384.413899093866348, 3895099.942787860054523 ], [ 4954397.93644034396857, 3895113.068103183526546 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954151.645974691025913, 3892760.129669656511396 ], [ 4954180.74990308471024, 3892753.975118938833475 ], [ 4954179.03255685325712, 3892744.869802931789309 ], [ 4954199.203707932494581, 3892740.52497496502474 ], [ 4954200.636981490068138, 3892746.352787587791681 ], [ 4954213.316195585764945, 3892743.455302791669965 ], [ 4954221.337857108563185, 3892779.877989720087498 ], [ 4954187.623291344381869, 3892787.11923291394487 ], [ 4954192.207176703959703, 3892807.880174355581403 ], [ 4954173.765461584553123, 3892811.498868551105261 ], [ 4954170.042242504656315, 3892793.652012166567147 ], [ 4954159.380523935891688, 3892795.823729970026761 ], [ 4954151.645974691025913, 3892760.129669656511396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954370.404925628565252, 3898754.328150220215321 ], [ 4954368.927145075984299, 3898784.913232085295022 ], [ 4954313.342344121076167, 3898782.660020243376493 ], [ 4954314.532491049729288, 3898751.710451814346015 ], [ 4954370.404925628565252, 3898754.328150220215321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954283.023478296585381, 3889702.342318207491189 ], [ 4954293.354015545919538, 3889736.218903123401105 ], [ 4954319.870451760478318, 3889728.240690680220723 ], [ 4954328.192192687653005, 3889755.560517266392708 ], [ 4954305.422615573741496, 3889762.45094411727041 ], [ 4954303.127097734250128, 3889754.801436811685562 ], [ 4954275.458233672194183, 3889762.778250311966985 ], [ 4954265.128578394651413, 3889728.173417119309306 ], [ 4954260.805510375648737, 3889729.260492743458599 ], [ 4954255.066003981977701, 3889710.68292577797547 ], [ 4954283.023478296585381, 3889702.342318207491189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954200.870706001296639, 3894435.910142587032169 ], [ 4954215.2931401245296, 3894420.270283604040742 ], [ 4954240.038118110969663, 3894443.604885852895677 ], [ 4954225.616128718480468, 3894458.880603454541415 ], [ 4954200.870706001296639, 3894435.910142587032169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953851.308438063599169, 3892887.937022775411606 ], [ 4953855.89565705601126, 3892906.149012156762183 ], [ 4953868.863281375728548, 3892902.887586045544595 ], [ 4953872.590661687776446, 3892917.457249899860471 ], [ 4953831.958891535177827, 3892927.603574838489294 ], [ 4953823.644254089333117, 3892894.821931796148419 ], [ 4953851.308438063599169, 3892887.937022775411606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953714.651360682211816, 3892498.882435593288392 ], [ 4953691.561904893256724, 3892534.17502254806459 ], [ 4953649.246751991100609, 3892506.450232606381178 ], [ 4953657.328065423294902, 3892494.079605920705944 ], [ 4953650.995450866408646, 3892489.702431950718164 ], [ 4953665.715033564716578, 3892467.144212978426367 ], [ 4953714.651360682211816, 3892498.882435593288392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953568.424749665893614, 3900783.376636096276343 ], [ 4953570.198707539588213, 3900745.145096499938518 ], [ 4953626.93149823974818, 3900747.398161793593317 ], [ 4953626.637798747047782, 3900752.131500783842057 ], [ 4953648.52425348944962, 3900753.250265919137746 ], [ 4953647.043009464628994, 3900787.476721041835845 ], [ 4953610.757189572788775, 3900785.976485232356936 ], [ 4953610.455163141712546, 3900797.62828874681145 ], [ 4953593.752242135815322, 3900796.879922294989228 ], [ 4953594.343134396709502, 3900784.500205808319151 ], [ 4953568.424749665893614, 3900783.376636096276343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953800.486823217011988, 3895127.631450098473579 ], [ 4953771.655987021513283, 3895148.351908348500729 ], [ 4953745.485932391136885, 3895112.635618672706187 ], [ 4953740.008000296540558, 3895116.634416352957487 ], [ 4953723.903619146905839, 3895094.403088496997952 ], [ 4953758.212418959476054, 3895069.683784713502973 ], [ 4953800.486823217011988, 3895127.631450098473579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953095.086550146341324, 3892407.837567384820431 ], [ 4953107.152524203062057, 3892436.25387849798426 ], [ 4953086.39997598901391, 3892444.968377617187798 ], [ 4953088.698195683769882, 3892450.433025497943163 ], [ 4953037.104547915048897, 3892472.583807737566531 ], [ 4953022.740283083170652, 3892438.702885046601295 ], [ 4953095.086550146341324, 3892407.837567384820431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952967.825552339665592, 3895763.861949644517154 ], [ 4952999.206708462908864, 3895777.735901997890323 ], [ 4952985.631804225966334, 3895808.670848304405808 ], [ 4952953.963056605309248, 3895794.432443185243756 ], [ 4952967.825552339665592, 3895763.861949644517154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952852.854534815996885, 3899961.412276568356901 ], [ 4952847.355033854953945, 3899984.710132776759565 ], [ 4952808.197012886404991, 3899975.560875356663018 ], [ 4952813.984487310983241, 3899952.26334949536249 ], [ 4952852.854534815996885, 3899961.412276568356901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952461.775950043462217, 3890753.2244708891958 ], [ 4952471.798282451927662, 3890806.034675528760999 ], [ 4952438.65919075999409, 3890812.186390096321702 ], [ 4952428.636795599013567, 3890759.376197620760649 ], [ 4952461.775950043462217, 3890753.2244708891958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952566.253113680519164, 3891090.528567794244736 ], [ 4952586.644165719859302, 3891145.535674024838954 ], [ 4952550.328312927857041, 3891158.601983840577304 ], [ 4952530.225296982564032, 3891103.595239909365773 ], [ 4952566.253113680519164, 3891090.528567794244736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952458.332516129128635, 3890244.897790851071477 ], [ 4952464.038061858154833, 3890293.697559096384794 ], [ 4952425.714489846490324, 3890298.022630356252193 ], [ 4952420.296985044144094, 3890249.223204133566469 ], [ 4952458.332516129128635, 3890244.897790851071477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952129.528347146697342, 3890557.304075606632978 ], [ 4952160.358645026572049, 3890554.790606257971376 ], [ 4952163.198678833432496, 3890590.478416182566434 ], [ 4952132.656945704482496, 3890592.628085730597377 ], [ 4952129.528347146697342, 3890557.304075606632978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951750.90951990801841, 3894661.327575946226716 ], [ 4951778.287840098142624, 3894650.434787413105369 ], [ 4951805.001488228328526, 3894717.464850104413927 ], [ 4951777.623225386254489, 3894728.357611855491996 ], [ 4951750.90951990801841, 3894661.327575946226716 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951789.301973930560052, 3893830.065158632583916 ], [ 4951768.828252339735627, 3893848.248342998791486 ], [ 4951749.263799363747239, 3893826.742546989116818 ], [ 4951769.449452641420066, 3893808.559020915534347 ], [ 4951789.301973930560052, 3893830.065158632583916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951666.317936330102384, 3890754.497575895860791 ], [ 4951671.133306203410029, 3890827.328633062541485 ], [ 4951631.948370926082134, 3890829.833221200853586 ], [ 4951629.678516731597483, 3890798.879772070795298 ], [ 4951608.933409282937646, 3890800.31285170186311 ], [ 4951607.235622607171535, 3890773.001331391278654 ], [ 4951625.387404166162014, 3890771.929448497481644 ], [ 4951624.251443025656044, 3890757.363043570425361 ], [ 4951666.317936330102384, 3890754.497575895860791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951353.747927044518292, 3890476.316117517184466 ], [ 4951355.988770486786962, 3890533.486719571519643 ], [ 4951322.566788064315915, 3890534.905828307382762 ], [ 4951320.037766590714455, 3890477.734906770288944 ], [ 4951353.747927044518292, 3890476.316117517184466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951332.843345068395138, 3890877.561794032808393 ], [ 4951328.877528515644372, 3890817.112100289668888 ], [ 4951359.418941366486251, 3890814.961517408955842 ], [ 4951361.122686257585883, 3890837.175236410927027 ], [ 4951402.612819655798376, 3890834.308710690587759 ], [ 4951405.728862628340721, 3890881.648852738086134 ], [ 4951370.577469973824918, 3890884.158346118871123 ], [ 4951369.723359769210219, 3890875.054187776520848 ], [ 4951332.843345068395138, 3890877.561794032808393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950865.637826922349632, 3893665.537978244014084 ], [ 4950888.398800089024007, 3893662.650032952427864 ], [ 4950886.686419114470482, 3893648.08299951814115 ], [ 4950920.971942869015038, 3893643.751274561043829 ], [ 4950926.11344678234309, 3893683.446971770375967 ], [ 4950869.0670205373317, 3893690.666632693726569 ], [ 4950865.637826922349632, 3893665.537978244014084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950694.38929963298142, 3893786.968840889632702 ], [ 4950692.309390557929873, 3893844.863021779805422 ], [ 4950662.927342653274536, 3893843.738472821190953 ], [ 4950665.006790115498006, 3893786.20841792691499 ], [ 4950694.38929963298142, 3893786.968840889632702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951007.86741394456476, 3894257.040060513652861 ], [ 4950970.124249191023409, 3894262.824367658700794 ], [ 4950972.127026953734457, 3894275.20696016214788 ], [ 4950937.553027270361781, 3894280.630688362754881 ], [ 4950931.259791388176382, 3894240.569574526045471 ], [ 4950952.868822393007576, 3894236.952154010999948 ], [ 4950951.723796734586358, 3894230.396571130957454 ], [ 4951002.720500310882926, 3894222.442130777519196 ], [ 4951007.86741394456476, 3894257.040060513652861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950990.099795854650438, 3900421.367585343308747 ], [ 4951010.582509404048324, 3900390.075069539248943 ], [ 4951062.385507615283132, 3900423.632450200617313 ], [ 4951041.902759194374084, 3900454.924927163869143 ], [ 4950990.099795854650438, 3900421.367585343308747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950912.17265840433538, 3894047.196143537759781 ], [ 4950913.000704450532794, 3894079.96864273166284 ], [ 4950888.226011308841407, 3894080.669574947096407 ], [ 4950888.50002898927778, 3894093.414382686372846 ], [ 4950855.659435394220054, 3894094.106453462969512 ], [ 4950854.561295825056732, 3894044.947865773458034 ], [ 4950900.653519250452518, 3894043.906277512665838 ], [ 4950900.649503097869456, 3894047.547560323495418 ], [ 4950912.17265840433538, 3894047.196143537759781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950842.505291506648064, 3890341.749475630931556 ], [ 4950844.7704804148525, 3890377.800635199993849 ], [ 4950843.618047764524817, 3890377.799366713967174 ], [ 4950844.7460314380005, 3890400.012413165066391 ], [ 4950802.103257045149803, 3890402.514404826331884 ], [ 4950800.409027029760182, 3890371.197539197281003 ], [ 4950788.595789393410087, 3890371.912814090959728 ], [ 4950787.184849930927157, 3890344.965796345379204 ], [ 4950842.505291506648064, 3890341.749475630931556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950768.897668465971947, 3891256.358182691968977 ], [ 4950756.464265148155391, 3891297.491013703867793 ], [ 4950715.855174073018134, 3891285.794376548845321 ], [ 4950728.288919850252569, 3891244.297399347182363 ], [ 4950768.897668465971947, 3891256.358182691968977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950506.914877084083855, 3893996.138154184445739 ], [ 4950504.264796853996813, 3894048.933933677151799 ], [ 4950472.290740662254393, 3894047.442643471062183 ], [ 4950474.940758230164647, 3893994.646860875189304 ], [ 4950506.914877084083855, 3893996.138154184445739 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950445.100854815915227, 3891762.506921696010977 ], [ 4950473.341520641930401, 3891755.619167 ], [ 4950483.381633222103119, 3891795.320059805642813 ], [ 4950455.140610948204994, 3891802.571931930724531 ], [ 4950445.100854815915227, 3891762.506921696010977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950409.28028669487685, 3893976.733254250138998 ], [ 4950407.223121576942503, 3894014.236279725562781 ], [ 4950379.570057024247944, 3894012.749786754604429 ], [ 4950381.627183672972023, 3893975.24675919348374 ], [ 4950409.28028669487685, 3893976.733254250138998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949391.529740108177066, 3899203.81635223608464 ], [ 4949355.808820906095207, 3899210.697442119941115 ], [ 4949349.792133844457567, 3899180.468376863747835 ], [ 4949385.513472818769515, 3899173.223149701021612 ], [ 4949391.529740108177066, 3899203.81635223608464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949463.312350234948099, 3889258.443151360843331 ], [ 4949482.559814553707838, 3889312.354253829456866 ], [ 4949453.160541175864637, 3889322.88310364400968 ], [ 4949433.913025514222682, 3889268.972021902911365 ], [ 4949463.312350234948099, 3889258.443151360843331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948935.686840686947107, 3900521.129237305372953 ], [ 4949016.31314951647073, 3900534.321095330640674 ], [ 4949011.095687439665198, 3900566.723284781910479 ], [ 4948986.907906641252339, 3900562.692880641203374 ], [ 4948984.879137654788792, 3900575.071210618130863 ], [ 4948961.842980758287013, 3900571.406147540546954 ], [ 4948964.450741389766335, 3900556.11537207942456 ], [ 4948931.048471777699888, 3900550.618997659999877 ], [ 4948935.686840686947107, 3900521.129237305372953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948386.59703825507313, 3892407.406312140170485 ], [ 4948377.363208996132016, 3892422.326255392748863 ], [ 4948348.572200797498226, 3892404.819059511646628 ], [ 4948357.806020061485469, 3892389.899106524419039 ], [ 4948386.59703825507313, 3892407.406312140170485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947992.073424302972853, 3900358.500032361596823 ], [ 4948017.68957550264895, 3900374.547254533972591 ], [ 4947999.228879055939615, 3900403.295149301178753 ], [ 4947973.612744285725057, 3900387.247944441158324 ], [ 4947992.073424302972853, 3900358.500032361596823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946999.162289314903319, 3896928.15729373274371 ], [ 4947055.622975156642497, 3896922.749498771969229 ], [ 4947058.761676137335598, 3896953.703501997515559 ], [ 4947002.300705807283521, 3896959.47541942819953 ], [ 4946999.162289314903319, 3896928.15729373274371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946881.589682712219656, 3889127.685173767153174 ], [ 4946900.615779280662537, 3889117.143616340123117 ], [ 4946922.475478206761181, 3889156.490263272076845 ], [ 4946903.737522006966174, 3889167.032080364879221 ], [ 4946881.589682712219656, 3889127.685173767153174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946486.978962666355073, 3890845.631009678822011 ], [ 4946456.149194706231356, 3890848.515112638473511 ], [ 4946454.440032967366278, 3890827.758215257897973 ], [ 4946484.981379407458007, 3890825.237967627122998 ], [ 4946486.978962666355073, 3890845.631009678822011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946462.748338438570499, 3890570.32754129357636 ], [ 4946470.503635132685304, 3890595.459642102941871 ], [ 4946432.75085767544806, 3890607.076349008828402 ], [ 4946424.995529074221849, 3890581.944258923176676 ], [ 4946462.748338438570499, 3890570.32754129357636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946514.717189033515751, 3889227.108918868470937 ], [ 4946468.602883228100836, 3889243.087244374211878 ], [ 4946456.246479384601116, 3889208.119403981603682 ], [ 4946526.282400380820036, 3889184.152726671192795 ], [ 4946535.190522729419172, 3889209.285909501370043 ], [ 4946511.268637702800333, 3889217.638359944336116 ], [ 4946514.717189033515751, 3889227.108918868470937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946391.532480455935001, 3892168.054933895356953 ], [ 4946419.184249913319945, 3892173.178602484520525 ], [ 4946412.235354498028755, 3892210.313181384000927 ], [ 4946384.583621922880411, 3892205.189519848674536 ], [ 4946391.532480455935001, 3892168.054933895356953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946345.423146257176995, 3892492.814295585267246 ], [ 4946343.098070425912738, 3892514.659825400449336 ], [ 4946318.325114378705621, 3892512.087816264480352 ], [ 4946320.938595387153327, 3892489.878424973692745 ], [ 4946345.423146257176995, 3892492.814295585267246 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946339.716146868653595, 3892434.184308546595275 ], [ 4946343.48165859375149, 3892412.340123878326267 ], [ 4946366.524825466796756, 3892416.367053149733692 ], [ 4946362.759295573458076, 3892438.211234634742141 ], [ 4946339.716146868653595, 3892434.184308546595275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946125.255046267062426, 3892257.746924872510135 ], [ 4946149.451741808094084, 3892260.682350055780262 ], [ 4946146.838717760518193, 3892282.527627086732537 ], [ 4946122.641704722307622, 3892279.956332194153219 ], [ 4946125.255046267062426, 3892257.746924872510135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945996.358336052857339, 3891763.505969759076834 ], [ 4946041.010113502852619, 3891766.460131570231169 ], [ 4946038.382022530771792, 3891804.691167077515274 ], [ 4945993.730308298021555, 3891801.737009558826685 ], [ 4945996.358336052857339, 3891763.505969759076834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945874.480244065634906, 3891464.808989399578422 ], [ 4945867.818682341836393, 3891503.400468863081187 ], [ 4945811.648591643199325, 3891493.881764327641577 ], [ 4945815.704229906201363, 3891469.488886238075793 ], [ 4945845.085738847032189, 3891474.249413954559714 ], [ 4945847.403502503409982, 3891460.050538106821477 ], [ 4945874.480244065634906, 3891464.808989399578422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945951.001845257356763, 3891586.862105319276452 ], [ 4945997.379810716025531, 3891592.730805166065693 ], [ 4945996.218045823276043, 3891602.925323686096817 ], [ 4946022.719433822669089, 3891606.591010842472315 ], [ 4946018.368488873355091, 3891638.630278811324388 ], [ 4945945.489238088019192, 3891629.095905394293368 ], [ 4945951.001845257356763, 3891586.862105319276452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945029.776890445500612, 3891143.251772232819349 ], [ 4945071.837226156145334, 3891145.83790240297094 ], [ 4945068.330994432792068, 3891201.18225769745186 ], [ 4945026.270744979381561, 3891198.596132926642895 ], [ 4945029.776890445500612, 3891143.251772232819349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945021.287898835726082, 3892272.405657987110317 ], [ 4945046.062487928196788, 3892273.519959666766226 ], [ 4945043.717824562452734, 3892318.669790517538786 ], [ 4945018.943276980891824, 3892317.555490975268185 ], [ 4945021.287898835726082, 3892272.405657987110317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944618.921639169566333, 3892497.084182849153876 ], [ 4944617.176352588459849, 3892516.381466501858085 ], [ 4944602.773039164952934, 3892515.276566527318209 ], [ 4944599.573108830489218, 3892550.958362481091172 ], [ 4944561.260661950334907, 3892547.647960010915995 ], [ 4944563.588076126761734, 3892521.432739179581404 ], [ 4944549.472848437726498, 3892520.328117590863258 ], [ 4944551.802778248675168, 3892491.199871857184917 ], [ 4944618.921639169566333, 3892497.084182849153876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944616.812944117933512, 3892603.04369209241122 ], [ 4944617.421078437007964, 3892566.267259264364839 ], [ 4944650.838587994687259, 3892566.660454108379781 ], [ 4944650.230407970026135, 3892603.436886194162071 ], [ 4944616.812944117933512, 3892603.04369209241122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944508.990483855828643, 3891695.178498421795666 ], [ 4944505.508472979068756, 3891723.941609685774893 ], [ 4944510.981623913161457, 3891724.674600741825998 ], [ 4944507.79022807162255, 3891750.524938428774476 ], [ 4944456.803030138835311, 3891744.290700520388782 ], [ 4944459.412846273742616, 3891724.630033335648477 ], [ 4944454.515881415456533, 3891723.897550077177584 ], [ 4944458.867463551461697, 3891688.945004511158913 ], [ 4944508.990483855828643, 3891695.178498421795666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944492.27057352848351, 3891374.003048546612263 ], [ 4944530.584701594896615, 3891377.313350463751704 ], [ 4944527.675038176588714, 3891410.446486189961433 ], [ 4944545.823577721603215, 3891412.28284576581791 ], [ 4944543.494824836030602, 3891439.954562500584871 ], [ 4944486.456382806412876, 3891434.443284088280052 ], [ 4944489.074748288840055, 3891404.951172483619303 ], [ 4944478.416097316890955, 3891403.849577375221997 ], [ 4944479.871370051056147, 3891386.736815087497234 ], [ 4944491.106537195853889, 3891387.474781035445631 ], [ 4944492.27057352848351, 3891374.003048546612263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944552.300294496119022, 3890919.987361965235323 ], [ 4944558.648016531020403, 3890909.06902498845011 ], [ 4944589.747594422660768, 3890926.93827531253919 ], [ 4944575.320999158546329, 3890951.686458328738809 ], [ 4944582.807859440334141, 3890956.062490493059158 ], [ 4944569.535903721116483, 3890978.262783137150109 ], [ 4944526.918284762650728, 3890953.465149590279907 ], [ 4944541.344203614629805, 3890929.445195981767029 ], [ 4944535.584996869787574, 3890926.163055606652051 ], [ 4944542.509861839935184, 3890914.152830720879138 ], [ 4944552.300294496119022, 3890919.987361965235323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944195.26198639255017, 3892700.631126957479864 ], [ 4944226.949590222910047, 3892702.478832095861435 ], [ 4944221.691908438690007, 3892786.952118646819144 ], [ 4944190.00440382398665, 3892785.10441960953176 ], [ 4944195.26198639255017, 3892700.631126957479864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944236.285828616470098, 3892228.027636743616313 ], [ 4944276.327924191020429, 3892230.610799916554242 ], [ 4944271.367127176374197, 3892304.524588241241872 ], [ 4944231.613228775560856, 3892301.941678605042398 ], [ 4944236.285828616470098, 3892228.027636743616313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943939.264697607606649, 3893254.253163491375744 ], [ 4943968.358047179877758, 3893257.190761005505919 ], [ 4943966.033121988177299, 3893281.221275344491005 ], [ 4943982.740359275601804, 3893282.69191155070439 ], [ 4943978.091107310727239, 3893330.024682553485036 ], [ 4943932.290626105852425, 3893325.616459111683071 ], [ 4943939.264697607606649, 3893254.253163491375744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943885.513397890143096, 3892428.364693765994161 ], [ 4943884.341126629151404, 3892452.032045766245574 ], [ 4943894.135741740465164, 3892452.404421988874674 ], [ 4943892.963157217949629, 3892476.435901979450136 ], [ 4943878.847572164610028, 3892475.695760551374406 ], [ 4943877.671324628405273, 3892504.096778097096831 ], [ 4943831.291413863189518, 3892501.873012168798596 ], [ 4943832.75508647877723, 3892474.200490693561733 ], [ 4943847.734930632635951, 3892474.941334358416498 ], [ 4943849.197397251613438, 3892448.725326362997293 ], [ 4943855.534982439130545, 3892449.094782771542668 ], [ 4943856.706003720872104, 3892426.883941686246544 ], [ 4943885.513397890143096, 3892428.364693765994161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943383.004630099050701, 3889033.181654749903828 ], [ 4943366.848800138570368, 3889058.657290863804519 ], [ 4943373.472317336127162, 3889062.668143200222403 ], [ 4943361.066890822723508, 3889082.320828021038324 ], [ 4943319.598536537028849, 3889056.433701058384031 ], [ 4943348.159754673019052, 3889011.305340662132949 ], [ 4943383.004630099050701, 3889033.181654749903828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943356.964507032185793, 3892669.70607521571219 ], [ 4943332.186027222312987, 3892673.691123054362833 ], [ 4943331.326561729423702, 3892667.864363775122911 ], [ 4943288.684514103457332, 3892674.747812195215374 ], [ 4943282.091715633869171, 3892634.324163823854178 ], [ 4943325.021909715607762, 3892627.440941652283072 ], [ 4943323.588365717791021, 3892619.06481313938275 ], [ 4943348.366894577629864, 3892615.079757505096495 ], [ 4943356.964507032185793, 3892669.70607521571219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943342.46670734602958, 3889978.787868529558182 ], [ 4943352.836959098465741, 3889980.981158107053488 ], [ 4943356.597988543100655, 3889962.049606373533607 ], [ 4943382.812040326185524, 3889967.168961051851511 ], [ 4943372.108134441077709, 3890020.322806410025805 ], [ 4943335.523893352597952, 3890013.01017507025972 ], [ 4943342.46670734602958, 3889978.787868529558182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942536.401607057079673, 3889885.285051918122917 ], [ 4942531.20720714237541, 3889895.840644495096058 ], [ 4942539.847147052176297, 3889900.217017283663154 ], [ 4942532.055406884290278, 3889916.232469441369176 ], [ 4942521.975193159654737, 3889911.490831846836954 ], [ 4942516.492114894092083, 3889922.774454510305077 ], [ 4942494.027929021045566, 3889911.832863436080515 ], [ 4942512.497118096798658, 3889873.978177698329091 ], [ 4942536.401607057079673, 3889885.285051918122917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942725.524030583910644, 3890095.90129053639248 ], [ 4942703.920050080865622, 3890090.422126652207226 ], [ 4942702.475426471792161, 3890095.518762955907732 ], [ 4942652.929867560975254, 3890083.463060593232512 ], [ 4942661.599884696304798, 3890049.970208065118641 ], [ 4942732.749212398193777, 3890067.869223321322352 ], [ 4942725.524030583910644, 3890095.90129053639248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942388.32766770105809, 3890963.714922141749412 ], [ 4942330.693872262723744, 3890980.783685573376715 ], [ 4942315.753096439875662, 3890929.065804616548121 ], [ 4942373.386707099154592, 3890912.361137389671057 ], [ 4942388.32766770105809, 3890963.714922141749412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993213.653129687532783, 3910879.756415477022529 ], [ 4993222.362944487482309, 3910852.469734612852335 ], [ 4993289.673260663636029, 3910873.405747041571885 ], [ 4993280.671590791083872, 3910902.14815814839676 ], [ 4993265.138315059244633, 3910897.372780927922577 ], [ 4993263.106504575349391, 3910903.557604329194874 ], [ 4993238.656495880335569, 3910895.845275122206658 ], [ 4993240.980092586949468, 3910888.20469776680693 ], [ 4993213.653129687532783, 3910879.756415477022529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992608.011118385009468, 3911825.252431467641145 ], [ 4992622.356666329316795, 3911843.497223998885602 ], [ 4992597.547892596572638, 3911862.730412593577057 ], [ 4992565.988613711670041, 3911822.227776950225234 ], [ 4992600.893461065366864, 3911795.374564247671515 ], [ 4992617.820262897759676, 3911817.267546499148011 ], [ 4992608.011118385009468, 3911825.252431467641145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990039.388909732922912, 3909074.444110392592847 ], [ 4990057.359488718211651, 3909027.516972071956843 ], [ 4990107.695851270109415, 3909046.216709083411843 ], [ 4990097.550953661091626, 3909072.772419023793191 ], [ 4990087.771416598930955, 3909069.10603155894205 ], [ 4990079.944733102805912, 3909089.841560204513371 ], [ 4990039.388909732922912, 3909074.444110392592847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990040.393437498249114, 3908344.724354433361441 ], [ 4990020.42287558875978, 3908385.456108263228089 ], [ 4989983.615373208187521, 3908367.519416456576437 ], [ 4990003.873808273114264, 3908326.788372464012355 ], [ 4990040.393437498249114, 3908344.724354433361441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989840.44884252268821, 3908846.716546929907054 ], [ 4989824.805964792147279, 3908884.182309004478157 ], [ 4989783.101760250516236, 3908867.325786507688463 ], [ 4989798.744589456357062, 3908829.860000536311418 ], [ 4989840.44884252268821, 3908846.716546929907054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989694.16054055467248, 3913152.221017702482641 ], [ 4989685.901533010415733, 3913117.243122899439186 ], [ 4989778.360839108005166, 3913095.994922420941293 ], [ 4989785.193416862748563, 3913125.871331804431975 ], [ 4989746.884240021929145, 3913134.876972289290279 ], [ 4989750.300543257035315, 3913149.815173059236258 ], [ 4989732.44275539368391, 3913153.775116332340986 ], [ 4989730.164904646575451, 3913143.937694420106709 ], [ 4989694.16054055467248, 3913152.221017702482641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989573.180557491257787, 3907974.665756013710052 ], [ 4989574.216494417749345, 3908020.184980454389006 ], [ 4989521.236601886339486, 3908021.142710514366627 ], [ 4989520.748658254742622, 3907986.548862177412957 ], [ 4989547.238175325095654, 3907986.25204879976809 ], [ 4989546.978022681549191, 3907975.32740601664409 ], [ 4989573.180557491257787, 3907974.665756013710052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988843.972447466105223, 3912742.238474900368601 ], [ 4988872.487928756512702, 3912735.755830526351929 ], [ 4988875.903853182680905, 3912751.05804783757776 ], [ 4988847.388387282378972, 3912757.540688642766327 ], [ 4988843.972447466105223, 3912742.238474900368601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988418.274619740433991, 3904540.171137948986143 ], [ 4988427.090813272632658, 3904469.187454635743052 ], [ 4988465.377275845967233, 3904474.016906371805817 ], [ 4988463.611281277611852, 3904489.306028958875686 ], [ 4988475.125915548764169, 3904490.791359376627952 ], [ 4988471.895539091899991, 3904515.908379730768502 ], [ 4988481.683332625776529, 3904517.025261454749852 ], [ 4988478.151332309469581, 3904547.603505531791598 ], [ 4988418.274619740433991, 3904540.171137948986143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988402.705873491242528, 3905584.82700950326398 ], [ 4988401.166962648741901, 3905624.513567706570029 ], [ 4988349.341447658836842, 3905622.563446162268519 ], [ 4988349.95552609115839, 3905607.271429378073663 ], [ 4988346.213150704279542, 3905606.897952530998737 ], [ 4988347.137903274036944, 3905582.503408059943467 ], [ 4988402.705873491242528, 3905584.82700950326398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987865.830595507286489, 3905990.590470101218671 ], [ 4987902.97225690074265, 3905991.77496989024803 ], [ 4987901.126293852925301, 3906039.471712103579193 ], [ 4987896.519248449243605, 3906039.460285146255046 ], [ 4987895.605756035074592, 3906059.485292081255466 ], [ 4987863.360072936862707, 3906057.948806654196233 ], [ 4987865.830595507286489, 3905990.590470101218671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987589.520370690152049, 3908859.635338725056499 ], [ 4987517.804706500843167, 3908870.018216072116047 ], [ 4987513.273580909706652, 3908839.419881796464324 ], [ 4987565.40422473102808, 3908831.90170881152153 ], [ 4987566.537891356274486, 3908839.187163793016225 ], [ 4987586.12298637162894, 3908836.322448340244591 ], [ 4987589.520370690152049, 3908859.635338725056499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987407.75637283269316, 3907610.576126882340759 ], [ 4987372.041313481517136, 3907615.586069220677018 ], [ 4987364.971351948566735, 3907563.497716385405511 ], [ 4987371.019548200070858, 3907562.784334112424403 ], [ 4987367.343736616894603, 3907535.465347812976688 ], [ 4987397.009800693020225, 3907531.532904860563576 ], [ 4987407.75637283269316, 3907610.576126882340759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987272.558381055481732, 3903808.7041164948605 ], [ 4987297.429802812635899, 3903765.433559388387948 ], [ 4987337.975515252910554, 3903788.837669604923576 ], [ 4987335.950809517875314, 3903792.474007525481284 ], [ 4987358.668646571226418, 3903805.274493970442563 ], [ 4987340.448986940085888, 3903836.909138696268201 ], [ 4987357.702637973241508, 3903846.783133266028017 ], [ 4987344.110125809907913, 3903870.418261371087283 ], [ 4987317.366216263733804, 3903855.423097933176905 ], [ 4987330.380098258145154, 3903832.87892887275666 ], [ 4987293.860575818456709, 3903811.669514087494463 ], [ 4987289.812075083144009, 3903818.578067310154438 ], [ 4987272.558381055481732, 3903808.7041164948605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987204.693316105753183, 3907524.141633452381939 ], [ 4987169.55045591108501, 3907530.609779548365623 ], [ 4987164.433918474242091, 3907503.651420056819916 ], [ 4987157.233122798614204, 3907504.726154163945466 ], [ 4987150.693911659531295, 3907470.845790251623839 ], [ 4987193.326471717096865, 3907462.939469615463167 ], [ 4987204.693316105753183, 3907524.141633452381939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987077.872018536552787, 3905933.300512080080807 ], [ 4987130.020671213045716, 3905920.683688193093985 ], [ 4987143.419095860794187, 3905975.700499842874706 ], [ 4987129.58899952378124, 3905979.307911067735404 ], [ 4987133.581783384084702, 3905994.975384598597884 ], [ 4987090.36478728055954, 3906005.42929178616032 ], [ 4987085.805019487626851, 3905986.119113609194756 ], [ 4987090.414750636555254, 3905985.038011554162949 ], [ 4987077.872018536552787, 3905933.300512080080807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986938.143473902717233, 3905139.878897463902831 ], [ 4986981.360019187442958, 3905130.153010668698698 ], [ 4986990.192045082338154, 3905168.772607923951 ], [ 4987015.257924637757242, 3905163.007829420268536 ], [ 4987021.240699775516987, 3905189.239976473152637 ], [ 4986952.958396838977933, 3905204.730612838175148 ], [ 4986938.143473902717233, 3905139.878897463902831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986792.827491496689618, 3896123.640572083182633 ], [ 4986785.299219643697143, 3896139.64393803011626 ], [ 4986734.949641584418714, 3896115.488652738276869 ], [ 4986742.477002961561084, 3896099.849400767590851 ], [ 4986792.827491496689618, 3896123.640572083182633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986489.978249034844339, 3905660.588310465682298 ], [ 4986492.128240398131311, 3905605.245452767238021 ], [ 4986512.282620994374156, 3905606.02265796251595 ], [ 4986511.967261102981865, 3905617.30998671008274 ], [ 4986575.884823563508689, 3905620.014222110621631 ], [ 4986574.355694337747991, 3905656.787846235558391 ], [ 4986552.18574237357825, 3905656.005696109030396 ], [ 4986551.572688081301749, 3905671.297754427418113 ], [ 4986524.508579050190747, 3905670.139601912349463 ], [ 4986524.81686748098582, 3905661.765312530566007 ], [ 4986489.978249034844339, 3905660.588310465682298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986275.386737753637135, 3908426.746134555898607 ], [ 4986297.563226285390556, 3908423.886751805897802 ], [ 4986298.408458050340414, 3908431.53558498993516 ], [ 4986315.976545781828463, 3908429.393326417077333 ], [ 4986320.215018482878804, 3908462.539667848031968 ], [ 4986280.758410956710577, 3908467.541999167762697 ], [ 4986275.386737753637135, 3908426.746134555898607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986247.651458519510925, 3902990.186774907633662 ], [ 4986274.474357795901597, 3902973.137481889687479 ], [ 4986289.391682772897184, 3902996.842127128969878 ], [ 4986262.568797585554421, 3903013.891405515838414 ], [ 4986247.651458519510925, 3902990.186774907633662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986178.233713192865252, 3905976.264060847461224 ], [ 4986182.614421417936683, 3905950.78539547836408 ], [ 4986193.55179010797292, 3905952.632488009519875 ], [ 4986200.857699604704976, 3905908.226024380885065 ], [ 4986237.12338843010366, 3905914.503953827079386 ], [ 4986233.909358469769359, 3905933.795184744987637 ], [ 4986241.681136053986847, 3905934.906377209350467 ], [ 4986236.130992020480335, 3905967.664847721345723 ], [ 4986228.359223699197173, 3905966.553656836040318 ], [ 4986225.437549393624067, 3905984.024935523979366 ], [ 4986178.233713192865252, 3905976.264060847461224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986110.864303583279252, 3899051.778894467279315 ], [ 4986127.041496051475406, 3899031.790752980858088 ], [ 4986141.702151214703918, 3899043.478324231225997 ], [ 4986158.457161347381771, 3899022.763335465453565 ], [ 4986176.854091710411012, 3899037.737124569248408 ], [ 4986143.921875504776835, 3899078.440223970450461 ], [ 4986110.864303583279252, 3899051.778894467279315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985465.246006147004664, 3903583.660900473594666 ], [ 4985463.460781092755497, 3903607.689320547040552 ], [ 4985462.308915508911014, 3903607.686568218749017 ], [ 4985460.528044763952494, 3903629.894341171719134 ], [ 4985466.574463953264058, 3903630.272920580115169 ], [ 4985464.490833591669798, 3903658.670207604765892 ], [ 4985402.877442045137286, 3903653.789341032970697 ], [ 4985405.254189589060843, 3903623.207959564868361 ], [ 4985401.223531615920365, 3903622.834205837920308 ], [ 4985403.90302399918437, 3903586.06331031722948 ], [ 4985416.282980651594698, 3903587.18526208633557 ], [ 4985416.876302795484662, 3903579.904046779964119 ], [ 4985465.246006147004664, 3903583.660900473594666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985207.13588226120919, 3900959.479331853799522 ], [ 4985225.462668816559017, 3901003.582803892437369 ], [ 4985151.375409176573157, 3901033.993555934168398 ], [ 4985146.793476660735905, 3901023.058731312397867 ], [ 4985177.351164379157126, 3901010.386812445707619 ], [ 4985163.605375050567091, 3900977.582328321877867 ], [ 4985207.13588226120919, 3900959.479331853799522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984965.786990413442254, 3905335.402454142924398 ], [ 4984957.089851323515177, 3905360.142808159813285 ], [ 4984924.866466131992638, 3905348.778341449797153 ], [ 4984913.851123531349003, 3905379.703460174612701 ], [ 4984908.09648843575269, 3905377.869167120195925 ], [ 4984904.328157650306821, 3905388.420067865867168 ], [ 4984872.679816999472678, 3905377.42115766974166 ], [ 4984877.027480716817081, 3905365.41509641520679 ], [ 4984867.532969762571156, 3905362.115429125726223 ], [ 4984872.171167718246579, 3905349.017659095581621 ], [ 4984861.813669034279883, 3905345.351818685885519 ], [ 4984872.248758771456778, 3905316.245965390000492 ], [ 4984884.332230986095965, 3905320.644160845316947 ], [ 4984888.391960811801255, 3905308.637419964186847 ], [ 4984965.786990413442254, 3905335.402454142924398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984943.138755933381617, 3900433.047303413506597 ], [ 4984908.89085550699383, 3900422.770498576574028 ], [ 4984923.985067523084581, 3900372.920323262922466 ], [ 4984958.520163648761809, 3900383.561958544421941 ], [ 4984943.138755933381617, 3900433.047303413506597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984584.441472474485636, 3914781.932348114904016 ], [ 4984623.872169006615877, 3914783.846015083603561 ], [ 4984622.366789338178933, 3914811.880790073424578 ], [ 4984582.936992366798222, 3914809.602993190288544 ], [ 4984584.441472474485636, 3914781.932348114904016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984222.583333011716604, 3905092.231050854548812 ], [ 4984220.80955248977989, 3905111.890016749035567 ], [ 4984213.323698466643691, 3905111.508343820460141 ], [ 4984211.245765816420317, 3905138.085104122757912 ], [ 4984226.216605524532497, 3905139.212580845225602 ], [ 4984224.13610212597996, 3905166.881730350200087 ], [ 4984158.206705178134143, 3905161.993591344449669 ], [ 4984160.288845976814628, 3905133.596176998689771 ], [ 4984168.349742060527205, 3905134.343313487712294 ], [ 4984170.730929855257273, 3905101.212885916698724 ], [ 4984180.80748805962503, 3905101.964745852164924 ], [ 4984181.701185745187104, 3905089.222222420852631 ], [ 4984222.583333011716604, 3905092.231050854548812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983496.505557596683502, 3916340.432838331442326 ], [ 4983512.067788211628795, 3916332.093814501073211 ], [ 4983526.971632094122469, 3916359.438447637017816 ], [ 4983515.444092459976673, 3916365.602008789312094 ], [ 4983529.773099650628865, 3916392.581177155952901 ], [ 4983496.632214760407805, 3916409.982809845358133 ], [ 4983468.260266601108015, 3916356.753447628580034 ], [ 4983468.260266601108015, 3916356.753447628580034 ], [ 4983453.64503485057503, 3916329.045381184667349 ], [ 4983482.463475567288697, 3916313.818487919867039 ], [ 4983496.505557596683502, 3916340.432838331442326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983235.028679412789643, 3916519.710585722699761 ], [ 4983191.802412155084312, 3916542.187205939553678 ], [ 4983199.254022026434541, 3916556.041500671766698 ], [ 4983181.675546325743198, 3916565.104326476808637 ], [ 4983156.45833941642195, 3916516.616311375051737 ], [ 4983193.344837667420506, 3916497.402223822195083 ], [ 4983197.642946690320969, 3916505.787228637840599 ], [ 4983221.560409591533244, 3916493.825962138362229 ], [ 4983235.028679412789643, 3916519.710585722699761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983176.280093496665359, 3916283.615963697899133 ], [ 4983164.236533365212381, 3916263.924942623823881 ], [ 4983206.607290210202336, 3916238.169098155107349 ], [ 4983220.943396554328501, 3916262.235039867460728 ], [ 4983228.437079546041787, 3916257.882716825697571 ], [ 4983240.765904949977994, 3916278.666828288231045 ], [ 4983191.767523755319417, 3916307.684544867835939 ], [ 4983177.144424692727625, 3916283.253821967169642 ], [ 4983176.280093496665359, 3916283.615963697899133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983005.203035202808678, 3917706.259993056766689 ], [ 4982959.128322704695165, 3917716.714004687499255 ], [ 4982950.861983576789498, 3917681.738079955801368 ], [ 4982945.966609425842762, 3917682.81923902221024 ], [ 4982940.551639185287058, 3917659.502179049421102 ], [ 4982953.510043244808912, 3917656.61886718403548 ], [ 4982950.377527694217861, 3917642.046282340306789 ], [ 4982999.332200177945197, 3917630.870607303921133 ], [ 4983003.892049632035196, 3917650.544365509878844 ], [ 4982992.949185426346958, 3917653.068151489831507 ], [ 4983005.203035202808678, 3917706.259993056766689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982892.275782508775592, 3902065.762487177737057 ], [ 4982886.45766627881676, 3902091.238326233346015 ], [ 4982862.279645820148289, 3902085.720918169710785 ], [ 4982868.097740288823843, 3902060.245073970407248 ], [ 4982892.275782508775592, 3902065.762487177737057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982170.637152852490544, 3902678.770498024299741 ], [ 4982187.344735060818493, 3902676.623589246999472 ], [ 4982189.894412043504417, 3902695.200067101977766 ], [ 4982223.885514304973185, 3902690.907590577378869 ], [ 4982229.542585928924382, 3902736.072708495426923 ], [ 4982166.169765744358301, 3902743.93987528514117 ], [ 4982160.794788401573896, 3902701.32432921230793 ], [ 4982173.469039023853838, 3902699.896533180959523 ], [ 4982170.637152852490544, 3902678.770498024299741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982149.959326112642884, 3904941.072946068365127 ], [ 4982176.764465220272541, 3904929.845621752087027 ], [ 4982200.246054832823575, 3904987.431696657091379 ], [ 4982173.441788733005524, 3904998.294868000317365 ], [ 4982149.959326112642884, 3904941.072946068365127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981774.463058711960912, 3895734.998562458436936 ], [ 4981814.529091795906425, 3895595.262973926030099 ], [ 4981884.480615798383951, 3895615.447803445160389 ], [ 4981844.415069266222417, 3895754.819161421619356 ], [ 4981774.463058711960912, 3895734.998562458436936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981630.488200720399618, 3907377.036547818221152 ], [ 4981643.399038589559495, 3907397.456974177621305 ], [ 4981628.982293307781219, 3907406.527882746886462 ], [ 4981649.353806249797344, 3907438.253180924337357 ], [ 4981619.655771467834711, 3907456.757189700379968 ], [ 4981579.200581401586533, 3907393.307300173211843 ], [ 4981606.592796119861305, 3907375.890464697498828 ], [ 4981613.764769496396184, 3907387.558810374233872 ], [ 4981630.488200720399618, 3907377.036547818221152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981623.665304640308022, 3907722.582833177410066 ], [ 4981629.117008595727384, 3907730.970128719229251 ], [ 4981584.998680093325675, 3907760.365750247612596 ], [ 4981555.440794953145087, 3907716.603505418170244 ], [ 4981598.982499445788562, 3907687.570673358626664 ], [ 4981603.573722098022699, 3907694.499501256737858 ], [ 4981636.445999697782099, 3907672.725414661224931 ], [ 4981655.672978103160858, 3907701.170959481503814 ], [ 4981623.665304640308022, 3907722.582833177410066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981470.28412692155689, 3907172.034668376203626 ], [ 4981486.928453656844795, 3907196.832971569150686 ], [ 4981461.552444970235229, 3907213.890313009731472 ], [ 4981407.887676262296736, 3907134.389275207649916 ], [ 4981436.14709157962352, 3907115.517680912278593 ], [ 4981472.87956131901592, 3907170.219823939260095 ], [ 4981470.28412692155689, 3907172.034668376203626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981221.467021231539547, 3907192.597848569974303 ], [ 4981195.809748743660748, 3907206.741754583548754 ], [ 4981179.747513268142939, 3907179.031872254330665 ], [ 4981205.693544435314834, 3907164.52446314226836 ], [ 4981221.467021231539547, 3907192.597848569974303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981114.612850366160274, 3906431.687433049548417 ], [ 4981174.822360406629741, 3906417.98462024750188 ], [ 4981180.812172773294151, 3906443.487226148601621 ], [ 4981195.792156241834164, 3906440.243451903574169 ], [ 4981196.646216158755124, 3906444.614942514337599 ], [ 4981188.579947059042752, 3906446.417608937714249 ], [ 4981191.431689279153943, 3906458.804461972787976 ], [ 4981107.599367684684694, 3906477.91658627986908 ], [ 4981101.040110314264894, 3906449.499671077355742 ], [ 4981118.037255122326314, 3906445.532082348130643 ], [ 4981114.612850366160274, 3906431.687433049548417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981088.69487031083554, 3901648.397415076848119 ], [ 4981137.698165254667401, 3901628.115228360984474 ], [ 4981155.743174872361124, 3901672.215301007032394 ], [ 4981134.988628246821463, 3901680.908191938884556 ], [ 4981130.978715146891773, 3901671.067718887701631 ], [ 4981103.018822773359716, 3901682.293498581741005 ], [ 4981088.69487031083554, 3901648.397415076848119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981030.036086915060878, 3907432.49858741927892 ], [ 4981048.41955300886184, 3907452.20263915322721 ], [ 4981025.626478489488363, 3907473.271597925573587 ], [ 4981007.243010203354061, 3907453.567561534699053 ], [ 4981030.036086915060878, 3907432.49858741927892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980933.407933283597231, 3905825.004514014348388 ], [ 4980974.62257759552449, 3905807.617752867285162 ], [ 4980987.227302199229598, 3905836.776328249834478 ], [ 4980946.012694326229393, 3905854.163070378825068 ], [ 4980933.407933283597231, 3905825.004514014348388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980945.152977121062577, 3899629.336963181383908 ], [ 4980954.02625476103276, 3899654.117552901152521 ], [ 4980953.161419632844627, 3899654.479762422852218 ], [ 4980967.47286318987608, 3899694.565922913141549 ], [ 4980955.655624105595052, 3899698.545106099452823 ], [ 4980968.248701659031212, 3899734.257883557118475 ], [ 4980939.425268958322704, 3899744.389514106325805 ], [ 4980911.090317685157061, 3899664.217868487350643 ], [ 4980898.119423042982817, 3899668.92277731699869 ], [ 4980890.964456048794091, 3899648.515585966408253 ], [ 4980945.152977121062577, 3899629.336963181383908 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980889.674894565716386, 3901787.053090939763933 ], [ 4980912.949209115467966, 3901810.773269069381058 ], [ 4980923.338522179983556, 3901800.964796411339194 ], [ 4980940.00368561130017, 3901818.115964914206415 ], [ 4980897.578484605997801, 3901859.168583596590906 ], [ 4980857.351826182566583, 3901817.932522122748196 ], [ 4980889.674894565716386, 3901787.053090939763933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980815.926659722812474, 3899328.642550802789629 ], [ 4980836.255248840898275, 3899382.943059441167861 ], [ 4980808.871547841466963, 3899393.078020398970693 ], [ 4980788.542911199852824, 3899338.777532153297216 ], [ 4980815.926659722812474, 3899328.642550802789629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980419.419239677488804, 3916416.865082707256079 ], [ 4980470.972767886705697, 3916402.413321453146636 ], [ 4980481.827575272880495, 3916439.943094769027084 ], [ 4980456.194751639850438, 3916447.169269993435591 ], [ 4980461.905574054457247, 3916467.937517335638404 ], [ 4980435.984953993931413, 3916475.163077476900071 ], [ 4980419.419239677488804, 3916416.865082707256079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980429.258404527790844, 3894819.494565893895924 ], [ 4980450.891815125010908, 3894806.433535496238619 ], [ 4980464.381741715595126, 3894828.675148726906627 ], [ 4980443.036402720957994, 3894841.736802734434605 ], [ 4980429.258404527790844, 3894819.494565893895924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980295.272808921523392, 3898114.57544483570382 ], [ 4980320.751811913214624, 3898185.272696141153574 ], [ 4980288.467474426142871, 3898196.853933828882873 ], [ 4980269.859424776397645, 3898145.106571886688471 ], [ 4980274.759846637025476, 3898143.296681251842529 ], [ 4980267.888822541572154, 3898124.346820783335716 ], [ 4980295.272808921523392, 3898114.57544483570382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980172.702108010649681, 3907643.986395053565502 ], [ 4980236.555496846325696, 3907673.985349467489868 ], [ 4980223.538230453617871, 3907701.630834874231368 ], [ 4980159.684892989695072, 3907671.631910885218531 ], [ 4980172.702108010649681, 3907643.986395053565502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980073.05641960259527, 3903577.143139330670238 ], [ 4980053.391818018630147, 3903614.969772628508508 ], [ 4980032.10620503872633, 3903603.999261531978846 ], [ 4980038.178990300744772, 3903592.360339559614658 ], [ 4980011.716322656720877, 3903578.465468573383987 ], [ 4980025.308098093606532, 3903552.277728765271604 ], [ 4980073.05641960259527, 3903577.143139330670238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979869.05127998162061, 3909177.412488719448447 ], [ 4979904.38987775798887, 3909211.353951852302998 ], [ 4979869.473764470778406, 3909247.69101971341297 ], [ 4979841.604059570468962, 3909221.412674841005355 ], [ 4979860.649559577926993, 3909201.426916779950261 ], [ 4979853.179876300506294, 3909194.127969434019178 ], [ 4979869.05127998162061, 3909177.412488719448447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979607.744903027079999, 3906473.524938235990703 ], [ 4979623.34959327802062, 3906447.705456558149308 ], [ 4979655.26932899095118, 3906466.709684795234352 ], [ 4979639.375892251729965, 3906492.892652913928032 ], [ 4979607.744903027079999, 3906473.524938235990703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979556.962047128006816, 3907053.113046838901937 ], [ 4979572.331378490664065, 3907002.896159908734262 ], [ 4979547.298057625070214, 3906995.195060148369521 ], [ 4979554.546087231487036, 3906972.270459134597331 ], [ 4979613.820982535369694, 3906990.24161994503811 ], [ 4979603.093234268948436, 3907024.446746124420315 ], [ 4979609.998803848400712, 3907026.646536820568144 ], [ 4979601.881417511962354, 3907052.118161143735051 ], [ 4979611.088834009133279, 3907055.051215436775237 ], [ 4979602.38847984932363, 3907083.79876367887482 ], [ 4979582.53401664737612, 3907077.929538721218705 ], [ 4979587.174878045916557, 3907062.281929462682456 ], [ 4979556.962047128006816, 3907053.113046838901937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979427.738008765503764, 3899843.75968313170597 ], [ 4979461.409559469670057, 3899855.484767880756408 ], [ 4979460.250435438938439, 3899858.75943285273388 ], [ 4979472.913258860819042, 3899863.156427985057235 ], [ 4979464.217855714261532, 3899888.626735248137265 ], [ 4979417.59472952131182, 3899872.868177120573819 ], [ 4979427.738008765503764, 3899843.75968313170597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979388.377381573431194, 3909249.194613558705896 ], [ 4979412.331905646249652, 3909222.300640107132494 ], [ 4979437.045314726419747, 3909243.83797819679603 ], [ 4979398.660036152228713, 3909287.086665489245206 ], [ 4979378.832368552684784, 3909269.565391584765166 ], [ 4979393.263114641420543, 3909253.210645605344325 ], [ 4979388.377381573431194, 3909249.194613558705896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979342.734735480509698, 3909719.555383407045156 ], [ 4979359.1828892538324, 3909702.112578876316547 ], [ 4979373.548797240480781, 3909715.616566684562713 ], [ 4979390.574351673014462, 3909697.446764916647226 ], [ 4979415.282609587535262, 3909721.168875858187675 ], [ 4979398.835219018161297, 3909738.247515157330781 ], [ 4979408.029124420136213, 3909747.006602178327739 ], [ 4979390.715689009986818, 3909765.175770426169038 ], [ 4979342.734735480509698, 3909719.555383407045156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979204.168766006827354, 3904152.039544362574816 ], [ 4979054.308651594445109, 3904207.79303100798279 ], [ 4979042.856033167801797, 3904177.181348992045969 ], [ 4979192.716294115409255, 3904121.427799527067691 ], [ 4979204.168766006827354, 3904152.039544362574816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979177.754866648465395, 3906519.931691602338105 ], [ 4979192.364967863075435, 3906554.55573868425563 ], [ 4979089.769250889308751, 3906596.574022559449077 ], [ 4979075.15904067736119, 3906561.950030360836536 ], [ 4979177.754866648465395, 3906519.931691602338105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979057.114701583981514, 3903840.390378236304969 ], [ 4979232.871299266815186, 3903928.524710047990084 ], [ 4979215.519691321067512, 3903962.715637226589024 ], [ 4979039.763261082582176, 3903874.581417091656476 ], [ 4979057.114701583981514, 3903840.390378236304969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978929.371341018006206, 3909555.533311016857624 ], [ 4978997.884347576647997, 3909559.321809936314821 ], [ 4978996.390833151526749, 3909584.443759378511459 ], [ 4978984.300499343313277, 3909583.689510812517256 ], [ 4978982.804651543498039, 3909609.903854619245976 ], [ 4978945.669975075870752, 3909607.63928881008178 ], [ 4978946.270019697025418, 3909596.352462051901966 ], [ 4978937.05793037917465, 3909595.968548495788127 ], [ 4978937.948219478130341, 3909583.589946582447737 ], [ 4978927.87320027500391, 3909582.840050627943128 ], [ 4978929.371341018006206, 3909555.533311016857624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978729.288870615884662, 3901473.56269425759092 ], [ 4978779.072040997445583, 3901491.875759242102504 ], [ 4978769.223522960208356, 3901518.436238317284733 ], [ 4978756.849355001933873, 3901514.040186588652432 ], [ 4978750.186659213155508, 3901532.232478174846619 ], [ 4978712.777721327729523, 3901518.315491998102516 ], [ 4978729.288870615884662, 3901473.56269425759092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978481.700670505873859, 3907653.804259663913399 ], [ 4978470.093797944486141, 3907696.018886816687882 ], [ 4978443.332498910836875, 3907688.679264103528112 ], [ 4978455.227255642414093, 3907646.465238568838686 ], [ 4978481.700670505873859, 3907653.804259663913399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978180.507884610444307, 3901820.503804196137935 ], [ 4978193.095153447240591, 3901860.220749890897423 ], [ 4978154.478933461010456, 3901872.519411881454289 ], [ 4978141.891613424755633, 3901832.802483977749944 ], [ 4978180.507884610444307, 3901820.503804196137935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978084.576413141563535, 3908915.044323899783194 ], [ 4978049.970306322909892, 3908941.916953934822232 ], [ 4978025.851334139704704, 3908910.914707912597805 ], [ 4978060.457456569187343, 3908884.042047332506627 ], [ 4978084.576413141563535, 3908915.044323899783194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977856.155843093059957, 3906779.29016011254862 ], [ 4977832.511647447012365, 3906795.262172423303127 ], [ 4977822.75185030978173, 3906781.040470989886671 ], [ 4977846.68398517370224, 3906765.069056704640388 ], [ 4977856.155843093059957, 3906779.29016011254862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977793.885919158346951, 3911740.466306940186769 ], [ 4977803.30271537322551, 3911643.26256536366418 ], [ 4977835.251291829161346, 3911646.242903432343155 ], [ 4977832.011752724647522, 3911680.828733288217336 ], [ 4977857.627691829577088, 3911683.431628328282386 ], [ 4977854.092576622031629, 3911721.658165591303259 ], [ 4977828.476673644967377, 3911719.055273864418268 ], [ 4977826.122260211966932, 3911743.447240233886987 ], [ 4977793.885919158346951, 3911740.466306940186769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977808.635927321389318, 3903637.825630902778357 ], [ 4977826.273151172325015, 3903603.998538070358336 ], [ 4977857.626976597122848, 3903620.450477125123143 ], [ 4977855.025309443473816, 3903625.178704939782619 ], [ 4977897.596719220280647, 3903647.844555085059255 ], [ 4977897.596719220280647, 3903647.844555085059255 ], [ 4977924.634802702814341, 3903662.46681899856776 ], [ 4977919.720187350176275, 3903671.559739631600678 ], [ 4977930.650596170686185, 3903677.40889385342598 ], [ 4977920.531101048924029, 3903696.686516101937741 ], [ 4977808.635927321389318, 3903637.825630902778357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977772.864224895834923, 3914069.419751434121281 ], [ 4977728.882233374752104, 3914040.924813053105026 ], [ 4977742.455047854222357, 3914020.197730470448732 ], [ 4977752.228325584903359, 3914026.772692325990647 ], [ 4977768.110899960622191, 3914002.773277640342712 ], [ 4977802.031029815785587, 3914025.056822020094842 ], [ 4977772.864224895834923, 3914069.419751434121281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977716.476682019419968, 3909123.280303304549307 ], [ 4977743.000902997329831, 3909105.857695296872407 ], [ 4977757.635937381535769, 3909128.828825457487255 ], [ 4977731.112494964152575, 3909145.887288259807974 ], [ 4977716.476682019419968, 3909123.280303304549307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977721.329815845936537, 3906677.049488405697048 ], [ 4977732.81041593849659, 3906694.551957616582513 ], [ 4977709.455682839266956, 3906709.796421703882515 ], [ 4977698.262242502532899, 3906692.658697653096169 ], [ 4977693.937123295851052, 3906695.562668452505022 ], [ 4977678.724068517796695, 3906672.954528565052897 ], [ 4977716.207462979480624, 3906648.272291308268905 ], [ 4977731.133332150988281, 3906670.515716399997473 ], [ 4977721.329815845936537, 3906677.049488405697048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977676.453557039611042, 3906931.483541078865528 ], [ 4977645.010255851782858, 3906959.455702529288828 ], [ 4977626.913419151678681, 3906939.026328442618251 ], [ 4977646.2406957866624, 3906921.952677114866674 ], [ 4977657.15684403013438, 3906933.99195032985881 ], [ 4977669.272107993252575, 3906923.457554737571627 ], [ 4977676.453557039611042, 3906931.483541078865528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977561.73452018853277, 3912484.26712914602831 ], [ 4977569.846062232740223, 3912459.887197704054415 ], [ 4977576.749634858220816, 3912462.45060501107946 ], [ 4977583.702074302360415, 3912441.709581376984715 ], [ 4977627.428775553591549, 3912456.002510621678084 ], [ 4977612.364722979255021, 3912501.123439533635974 ], [ 4977561.73452018853277, 3912484.26712914602831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977570.19524599891156, 3907761.117905871011317 ], [ 4977546.840766972862184, 3907776.726652056910098 ], [ 4977520.721485822461545, 3907737.709783779457211 ], [ 4977558.203253532759845, 3907713.027309876400977 ], [ 4977574.564452444203198, 3907737.094332959037274 ], [ 4977560.436426316387951, 3907746.532160574570298 ], [ 4977570.19524599891156, 3907761.117905871011317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977312.831638564355671, 3916570.784673793241382 ], [ 4977313.332051588222384, 3916606.83501473814249 ], [ 4977281.669551212340593, 3916607.497215880081058 ], [ 4977281.938388443551958, 3916616.601134495809674 ], [ 4977264.955836261622608, 3916616.929847941268235 ], [ 4977264.186514994129539, 3916571.775589435361326 ], [ 4977312.831638564355671, 3916570.784673793241382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977225.500744153745472, 3911792.803610629402101 ], [ 4977262.699348618276417, 3911763.022219668608159 ], [ 4977283.94771227426827, 3911789.284120069351047 ], [ 4977246.749120433814824, 3911819.065482092555612 ], [ 4977225.500744153745472, 3911792.803610629402101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977163.773017721250653, 3905902.103094858117402 ], [ 4977185.39594061113894, 3905889.039349433034658 ], [ 4977179.083954483270645, 3905878.102255096659064 ], [ 4977198.400333841331303, 3905866.490247034002095 ], [ 4977221.931195301935077, 3905905.137228773441166 ], [ 4977201.749492093920708, 3905917.4756820932962 ], [ 4977210.358167055994272, 3905931.694751806557178 ], [ 4977189.600606352090836, 3905944.032015159726143 ], [ 4977163.773017721250653, 3905902.103094858117402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977061.234633042477071, 3912985.362653000280261 ], [ 4977114.492854752577841, 3912984.016817976720631 ], [ 4977115.56783761177212, 3913020.796534419059753 ], [ 4977088.506964202970266, 3913021.468540156725794 ], [ 4977088.770609786733985, 3913033.121359517332166 ], [ 4977062.573345684446394, 3913033.795186446513981 ], [ 4977061.234633042477071, 3912985.362653000280261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977010.012632175348699, 3908953.939751515630633 ], [ 4977035.093989708460867, 3908937.969982916954905 ], [ 4977048.582621704787016, 3908958.753547509666532 ], [ 4977071.357697868719697, 3908944.235553398728371 ], [ 4977084.84629868902266, 3908965.019136275630444 ], [ 4977063.800955035723746, 3908978.448314609471709 ], [ 4977071.549528544768691, 3908990.48078649584204 ], [ 4977044.738478409126401, 3909007.539327250793576 ], [ 4977010.012632175348699, 3908953.939751515630633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976954.948483793064952, 3913432.298009388148785 ], [ 4976939.720529325306416, 3913418.429361198563129 ], [ 4976920.389302868396044, 3913439.87317403499037 ], [ 4976895.105804125778377, 3913416.516241874080151 ], [ 4976931.747210612520576, 3913376.537473843432963 ], [ 4976972.259426743723452, 3913413.39896573452279 ], [ 4976954.948483793064952, 3913432.298009388148785 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976929.435542590916157, 3904906.08029513945803 ], [ 4976930.576035063713789, 3904911.544632899574935 ], [ 4976952.182279102504253, 3904906.855699522420764 ], [ 4976960.734039057977498, 3904948.748566853348166 ], [ 4976924.436241117306054, 3904956.320104236714542 ], [ 4976922.440945971757174, 3904946.484415820334107 ], [ 4976883.262128474190831, 3904954.778303485829383 ], [ 4976876.704811132512987, 3904923.085275403689593 ], [ 4976896.582568268291652, 3904918.756850972305983 ], [ 4976895.442823219113052, 3904912.928384548518807 ], [ 4976929.435542590916157, 3904906.08029513945803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976921.636698266491294, 3902137.573603343684226 ], [ 4976979.978986267000437, 3902055.765043397899717 ], [ 4977007.585317324846983, 3902075.121247825678438 ], [ 4976949.242232267744839, 3902157.293878272175789 ], [ 4976921.636698266491294, 3902137.573603343684226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976875.922913246788085, 3903909.705606178380549 ], [ 4976847.202684394083917, 3903872.868899533059448 ], [ 4976863.066300623118877, 3903860.521256100852042 ], [ 4976856.4612189354375, 3903851.768434202764183 ], [ 4976868.863255859352648, 3903842.326683016493917 ], [ 4976874.607459315098822, 3903849.621200352441519 ], [ 4976889.317738301120698, 3903837.999448077753186 ], [ 4976882.999869781546295, 3903829.611345840152353 ], [ 4976895.689890364184976, 3903820.170203302521259 ], [ 4976900.859671361744404, 3903826.735273915808648 ], [ 4976915.857184118591249, 3903815.478262508753687 ], [ 4976908.964144201949239, 3903806.724831464700401 ], [ 4976923.96242587082088, 3903795.103694886900485 ], [ 4976961.873324490152299, 3903843.611738753505051 ], [ 4976875.922913246788085, 3903909.705606178380549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976831.510930101387203, 3911875.007966991048306 ], [ 4976790.608944827690721, 3911886.211505376268178 ], [ 4976782.322212169878185, 3911856.335451852995902 ], [ 4976822.937114506959915, 3911844.767173920758069 ], [ 4976831.510930101387203, 3911875.007966991048306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976711.660750819370151, 3910106.894539513159543 ], [ 4976650.83945041988045, 3910143.182335187215358 ], [ 4976635.345591879449785, 3910117.661094149574637 ], [ 4976696.166928906925023, 3910081.373263980727643 ], [ 4976711.660750819370151, 3910106.894539513159543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976483.436957007274032, 3908387.718500771094114 ], [ 4976450.868877951055765, 3908404.037529400084168 ], [ 4976436.531464199535549, 3908375.605749651789665 ], [ 4976469.38748437911272, 3908359.287295651156455 ], [ 4976483.436957007274032, 3908387.718500771094114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976470.727636178955436, 3912889.831779812928289 ], [ 4976454.011150972917676, 3912899.629026093985885 ], [ 4976447.986896758899093, 3912889.42091125017032 ], [ 4976425.21848529484123, 3912902.482942077796906 ], [ 4976409.154766627587378, 3912874.775813647545874 ], [ 4976448.639694330282509, 3912851.916509655304253 ], [ 4976470.727636178955436, 3912889.831779812928289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976380.688275525346398, 3910333.796362259425223 ], [ 4976384.415209450758994, 3910341.450799994636327 ], [ 4976349.257760660722852, 3910358.128785903099924 ], [ 4976329.477425490505993, 3910316.941215428058058 ], [ 4976381.060603772290051, 3910292.650115224532783 ], [ 4976397.113947661593556, 3910326.183283078018576 ], [ 4976380.688275525346398, 3910333.796362259425223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976253.417833129875362, 3901059.462644902057946 ], [ 4976257.503404187038541, 3901033.253591116517782 ], [ 4976283.126666820608079, 3901037.311485191807151 ], [ 4976279.329810592345893, 3901063.156995576806366 ], [ 4976253.417833129875362, 3901059.462644902057946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976176.543807544745505, 3907811.760289759375155 ], [ 4976147.718938168138266, 3907827.723200970329344 ], [ 4976123.619822042994201, 3907785.434630779083818 ], [ 4976167.723183673806489, 3907760.399610680527985 ], [ 4976180.920692468062043, 3907783.36692055221647 ], [ 4976165.642983876168728, 3907792.074865886475891 ], [ 4976176.543807544745505, 3907811.760289759375155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976068.166322380304337, 3906599.707228166051209 ], [ 4976079.622025539167225, 3906629.95355720166117 ], [ 4976054.264523184858263, 3906639.369258827529848 ], [ 4976042.808795562945306, 3906609.122940433211625 ], [ 4976068.166322380304337, 3906599.707228166051209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975882.333286991342902, 3910620.807453804183751 ], [ 4975899.631204375065863, 3910608.826248709112406 ], [ 4975894.464712594635785, 3910601.168949162587523 ], [ 4975931.365955911576748, 3910576.118859412148595 ], [ 4975950.884024024941027, 3910604.925090104807168 ], [ 4975896.397741304710507, 3910641.591632541734725 ], [ 4975882.333286991342902, 3910620.807453804183751 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975725.60648101195693, 3906984.626378431916237 ], [ 4975756.434956795535982, 3906974.857330859638751 ], [ 4975771.88640371710062, 3907022.589980885852128 ], [ 4975741.057238535955548, 3907032.723141607362777 ], [ 4975725.60648101195693, 3906984.626378431916237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975626.899498582817614, 3910941.454491001553833 ], [ 4975631.816440389491618, 3910930.17632147623226 ], [ 4975655.978379492647946, 3910940.420963313896209 ], [ 4975656.267004715278745, 3910940.0574148343876 ], [ 4975689.345328480005264, 3910954.325607365462929 ], [ 4975684.139741552062333, 3910965.967314706649631 ], [ 4975626.899498582817614, 3910941.454491001553833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975617.295766879804432, 3903450.509103481657803 ], [ 4975585.583202719688416, 3903468.287398291286081 ], [ 4975569.515145942568779, 3903439.488543924875557 ], [ 4975639.570272693410516, 3903400.668190611060709 ], [ 4975654.777321619912982, 3903428.008818079251796 ], [ 4975633.731317033059895, 3903439.982551637105644 ], [ 4975639.470782931894064, 3903449.825711715966463 ], [ 4975622.460774042643607, 3903459.62283524312079 ], [ 4975617.295766879804432, 3903450.509103481657803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975568.021494093351066, 3905887.906069813296199 ], [ 4975523.099606204777956, 3905889.271828573662788 ], [ 4975521.469766560941935, 3905840.839005152694881 ], [ 4975566.678941754624248, 3905839.83795607695356 ], [ 4975568.021494093351066, 3905887.906069813296199 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975535.908754834905267, 3910095.389835245907307 ], [ 4975512.326950813643634, 3910082.597550709266216 ], [ 4975520.706856697797775, 3910067.320900538470596 ], [ 4975507.766190961003304, 3910060.012108613736928 ], [ 4975524.815389782190323, 3910028.731127648148686 ], [ 4975582.044418854638934, 3910059.798082877881825 ], [ 4975561.815793151035905, 3910097.262857872527093 ], [ 4975541.110029740259051, 3910085.932893188204616 ], [ 4975535.908754834905267, 3910095.389835245907307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975507.671186360530555, 3904260.843976657837629 ], [ 4975506.640653852373362, 3904200.760206331498921 ], [ 4975531.405952819623053, 3904200.446087705902755 ], [ 4975531.648310512304306, 3904223.02272707503289 ], [ 4975561.597601725719869, 3904222.354976716917008 ], [ 4975562.102135612629354, 3904257.676747648045421 ], [ 4975552.022819742560387, 3904258.020509907510132 ], [ 4975552.284290273673832, 3904271.129770858678967 ], [ 4975520.608033367432654, 3904271.429912321269512 ], [ 4975520.342135167680681, 3904260.505431507714093 ], [ 4975507.671186360530555, 3904260.843976657837629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975469.651277848519385, 3905549.793108018115163 ], [ 4975511.144117904826999, 3905535.675723602529615 ], [ 4975526.029038168489933, 3905579.401594299823046 ], [ 4975484.248312548734248, 3905593.518374951090664 ], [ 4975469.651277848519385, 3905549.793108018115163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975268.414826872758567, 3910399.993967086076736 ], [ 4975246.504907358437777, 3910414.879369836300611 ], [ 4975228.421757047995925, 3910387.897203067317605 ], [ 4975233.610429277643561, 3910384.630432795267552 ], [ 4975222.129058614373207, 3910367.49312284681946 ], [ 4975263.354263111017644, 3910339.537743987515569 ], [ 4975288.900682269595563, 3910377.458928565494716 ], [ 4975264.108867841772735, 3910393.795051722787321 ], [ 4975268.414826872758567, 3910399.993967086076736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975230.422216388396919, 3899070.692331528756768 ], [ 4975233.900336868129671, 3899059.775407732464373 ], [ 4975212.888391482643783, 3899053.178868386894464 ], [ 4975223.90316503867507, 3899018.244475816842169 ], [ 4975273.123089401982725, 3899033.63683222560212 ], [ 4975267.035248978063464, 3899053.287633300293237 ], [ 4975265.59663652908057, 3899052.556481528561562 ], [ 4975257.191515975631773, 3899078.756973820738494 ], [ 4975230.422216388396919, 3899070.692331528756768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975137.016400661319494, 3909167.140950220637023 ], [ 4975161.246603972278535, 3909144.249207486864179 ], [ 4975207.213745471090078, 3909193.135242845397443 ], [ 4975183.560821320861578, 3909215.29983849870041 ], [ 4975164.886368623003364, 3909195.599200474098325 ], [ 4975159.118009712547064, 3909200.685481710359454 ], [ 4975145.902068827301264, 3909186.821930748410523 ], [ 4975151.094614865258336, 3909181.734491545241326 ], [ 4975137.016400661319494, 3909167.140950220637023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975013.719524600543082, 3910785.828054234851152 ], [ 4974982.874567544087768, 3910806.15778943663463 ], [ 4974946.423252846114337, 3910750.736709056887776 ], [ 4974985.915872422046959, 3910724.962234140373766 ], [ 4975000.265940304845572, 3910747.203046709764749 ], [ 4974991.906207635067403, 3910752.648316617123783 ], [ 4975013.719524600543082, 3910785.828054234851152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974979.741887079551816, 3904597.69726039422676 ], [ 4975026.720944273285568, 3904576.671604857780039 ], [ 4975034.175004990771413, 3904593.072441135067493 ], [ 4975045.126802986487746, 3904588.360653172247112 ], [ 4975057.740720449946821, 3904616.424034765455872 ], [ 4974999.809936276637018, 3904642.161438694689423 ], [ 4974979.741887079551816, 3904597.69726039422676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974824.897072899155319, 3899069.880954892374575 ], [ 4974849.976164002902806, 3899059.007046779617667 ], [ 4974866.89133514650166, 3899098.002726667094976 ], [ 4974841.812999523244798, 3899108.512490392196923 ], [ 4974824.897072899155319, 3899069.880954892374575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974570.388151067309082, 3910195.413479571696371 ], [ 4974611.032807265408337, 3910169.640748008619994 ], [ 4974624.808415254577994, 3910191.516077437903732 ], [ 4974613.566012365743518, 3910198.776400531642139 ], [ 4974635.665973183698952, 3910233.048785604070872 ], [ 4974606.551656962372363, 3910251.561721546575427 ], [ 4974570.388151067309082, 3910195.413479571696371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974555.707052365876734, 3902792.218012704048306 ], [ 4974633.85247091576457, 3902739.938250223174691 ], [ 4974654.525215126574039, 3902770.930466785095632 ], [ 4974576.380568661727011, 3902822.846040454693139 ], [ 4974555.707052365876734, 3902792.218012704048306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974467.775967015884817, 3895132.199396166019142 ], [ 4974525.131826406344771, 3895115.927179013844579 ], [ 4974532.284905085340142, 3895140.338028638157994 ], [ 4974526.8089330047369, 3895141.783693132922053 ], [ 4974537.393422309309244, 3895178.945876162499189 ], [ 4974485.225591864436865, 3895193.771823233459145 ], [ 4974467.775967015884817, 3895132.199396166019142 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974372.068116713315248, 3900415.536511089187115 ], [ 4974363.134341387078166, 3900418.431899508927017 ], [ 4974372.01125995721668, 3900444.3027149210684 ], [ 4974348.956129214726388, 3900451.903898409102112 ], [ 4974340.652314862236381, 3900427.490744946990162 ], [ 4974332.29526696074754, 3900430.023152275476605 ], [ 4974318.839053193107247, 3900389.57808489119634 ], [ 4974358.897078349255025, 3900376.548509838525206 ], [ 4974372.068116713315248, 3900415.536511089187115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974373.77702015824616, 3899113.773566782474518 ], [ 4974330.540320293977857, 3899131.166399411857128 ], [ 4974319.076542934402823, 3899102.377468878868967 ], [ 4974362.025266719982028, 3899084.984048983547837 ], [ 4974373.77702015824616, 3899113.773566782474518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974235.927792613394558, 3897304.503137985710055 ], [ 4974293.867883414030075, 3897281.677229255903512 ], [ 4974315.362619032151997, 3897336.339140728116035 ], [ 4974292.013934208080173, 3897345.396304227411747 ], [ 4974289.434565756469965, 3897338.836876061279327 ], [ 4974255.132003430277109, 3897352.242018439806998 ], [ 4974235.927792613394558, 3897304.503137985710055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973968.59060534182936, 3900996.258684899192303 ], [ 4973980.571263303048909, 3900908.162561411503702 ], [ 4974034.124805538915098, 3900915.186168794054538 ], [ 4974030.327950661070645, 3900942.124382832087576 ], [ 4974034.647159892134368, 3900942.496996082365513 ], [ 4974029.384592085145414, 3900982.541037117596716 ], [ 4974021.61016983538866, 3900981.797509403899312 ], [ 4974018.688758324831724, 3901002.911353861447424 ], [ 4973968.59060534182936, 3900996.258684899192303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973832.796114397235215, 3902838.495000635739416 ], [ 4973851.171612183563411, 3902866.569055821280926 ], [ 4973791.196776309981942, 3902905.413762120995671 ], [ 4973772.821242672391236, 3902877.339747265912592 ], [ 4973832.796114397235215, 3902838.495000635739416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973653.285993536002934, 3899050.092910843901336 ], [ 4973671.047064632177353, 3899099.28513151127845 ], [ 4973627.526331866160035, 3899114.857888692989945 ], [ 4973609.477176513522863, 3899065.665135253686458 ], [ 4973653.285993536002934, 3899050.092910843901336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973629.405973804183304, 3900514.943059700541198 ], [ 4973639.431304255500436, 3900543.000655048992485 ], [ 4973595.913633455522358, 3900558.209347743075341 ], [ 4973585.888263341039419, 3900530.151768378447741 ], [ 4973629.405973804183304, 3900514.943059700541198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973569.411344600841403, 3898342.060432237107307 ], [ 4973558.802687184885144, 3898317.278937381226569 ], [ 4973616.45554418861866, 3898292.630350544583052 ], [ 4973631.652658340521157, 3898327.616452500689775 ], [ 4973591.872160989791155, 3898344.653072313405573 ], [ 4973587.284357823431492, 3898334.084365561138839 ], [ 4973569.411344600841403, 3898342.060432237107307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973495.691406590864062, 3899075.639364224858582 ], [ 4973453.608690023422241, 3899092.307588749565184 ], [ 4973446.729570554569364, 3899075.180106141138822 ], [ 4973488.812309606932104, 3899058.511871018446982 ], [ 4973495.691406590864062, 3899075.639364224858582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973487.303414866328239, 3896870.81574586359784 ], [ 4973525.345044124871492, 3896860.329936614260077 ], [ 4973542.793563812039793, 3896922.99419998889789 ], [ 4973505.04005420114845, 3896933.480544891674072 ], [ 4973487.303414866328239, 3896870.81574586359784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973165.946979349479079, 3899207.179715907201171 ], [ 4973088.692630501464009, 3899241.622983756475151 ], [ 4973074.927676324732602, 3899210.645364593248814 ], [ 4973152.182096336968243, 3899176.202057825867087 ], [ 4973165.946979349479079, 3899207.179715907201171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972740.321659752167761, 3903835.555606844369322 ], [ 4972781.543796388432384, 3903813.058481841813773 ], [ 4972798.187746404670179, 3903843.313300281763077 ], [ 4972756.678376377560198, 3903865.445718276314437 ], [ 4972740.321659752167761, 3903835.555606844369322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972411.388870498165488, 3911285.434612500015646 ], [ 4972444.820898310281336, 3911265.835119319614023 ], [ 4972470.647180574946105, 3911309.580300798173994 ], [ 4972453.354716757312417, 3911319.743060644250363 ], [ 4972478.894438384100795, 3911362.759439542423934 ], [ 4972456.414555914700031, 3911375.825370396953076 ], [ 4972431.736380570568144, 3911333.903052778914571 ], [ 4972438.076757768169045, 3911330.273802837822586 ], [ 4972411.388870498165488, 3911285.434612500015646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972280.577941436320543, 3898910.174546359106898 ], [ 4972292.046057729050517, 3898937.870217453688383 ], [ 4972244.198024029843509, 3898957.442426990251988 ], [ 4972232.729866900481284, 3898929.746775996871293 ], [ 4972280.577941436320543, 3898910.174546359106898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972094.965755747631192, 3898064.6768171726726 ], [ 4972118.48326004575938, 3898117.884296285919845 ], [ 4972070.631142019294202, 3898138.913320097606629 ], [ 4972047.113561630249023, 3898085.705882188864052 ], [ 4972094.965755747631192, 3898064.6768171726726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972014.630024517886341, 3903693.620282759424299 ], [ 4972066.525091227144003, 3903661.310683809220791 ], [ 4972090.642576405778527, 3903699.225948888342828 ], [ 4972032.981371263042092, 3903735.165917469188571 ], [ 4972018.05190316028893, 3903711.469177992083132 ], [ 4972023.530123272910714, 3903707.838215306866914 ], [ 4972014.630024517886341, 3903693.620282759424299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971298.378791411407292, 3893372.101612926460803 ], [ 4971253.994079851545393, 3893383.307018743362278 ], [ 4971246.557602229528129, 3893354.526998282875866 ], [ 4971290.942358137108386, 3893343.321580380667001 ], [ 4971298.378791411407292, 3893372.101612926460803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971250.784577710554004, 3902230.930262049194425 ], [ 4971219.969917754642665, 3902231.237079800106585 ], [ 4971218.386236968450248, 3902153.674255425110459 ], [ 4971246.897807405330241, 3902152.999020157381892 ], [ 4971247.960992565378547, 3902200.702144457027316 ], [ 4971259.4802514500916, 3902200.723577322438359 ], [ 4971259.740451907739043, 3902215.653428233694285 ], [ 4971250.524372458457947, 3902216.000411090906709 ], [ 4971250.784577710554004, 3902230.930262049194425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971231.889754418283701, 3905576.89735315553844 ], [ 4971256.103586378507316, 3905562.741268616169691 ], [ 4971271.028623973019421, 3905588.622393842786551 ], [ 4971247.103429917246103, 3905602.414870525710285 ], [ 4971231.889754418283701, 3905576.89735315553844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971014.258399003185332, 3905235.666257352102548 ], [ 4971045.967871376313269, 3905216.790158117655665 ], [ 4971069.220869137905538, 3905255.067071998026222 ], [ 4971037.511425451375544, 3905273.943144232034683 ], [ 4971014.258399003185332, 3905235.666257352102548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970939.729006044566631, 3905053.098438541404903 ], [ 4970966.820644083432853, 3905040.039813407696784 ], [ 4970980.016525972634554, 3905067.009963132906705 ], [ 4970952.924235136248171, 3905080.432705458719283 ], [ 4970939.729006044566631, 3905053.098438541404903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970953.985371037386358, 3896408.665161563083529 ], [ 4970963.518418158404529, 3896393.753475858364254 ], [ 4970959.490519981831312, 3896391.197119560558349 ], [ 4970974.223184746690094, 3896368.284202153794467 ], [ 4970982.567028343677521, 3896373.397452628705651 ], [ 4970992.966931289061904, 3896357.030862958636135 ], [ 4971015.12070962227881, 3896370.908793250098825 ], [ 4970980.454388384707272, 3896425.464080274570733 ], [ 4970953.985371037386358, 3896408.665161563083529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970794.382385513745248, 3904703.263851728290319 ], [ 4970785.998138964176178, 3904721.454966962803155 ], [ 4970761.83009132090956, 3904710.486483780201524 ], [ 4970769.926370118744671, 3904692.294830481521785 ], [ 4970794.382385513745248, 3904703.263851728290319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970694.458369973115623, 3905800.572317298036069 ], [ 4970752.369103125296533, 3905782.108222694136202 ], [ 4970763.820402101613581, 3905818.178357024677098 ], [ 4970705.909738674759865, 3905836.642427355516702 ], [ 4970694.458369973115623, 3905800.572317298036069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970672.440975727513433, 3904307.592617535963655 ], [ 4970727.79210405703634, 3904273.466126049403101 ], [ 4970742.146476443856955, 3904297.161096151452512 ], [ 4970724.84949464071542, 3904307.689054541755468 ], [ 4970728.007656395435333, 3904312.792708003893495 ], [ 4970689.954214638099074, 3904336.027077504433692 ], [ 4970672.440975727513433, 3904307.592617535963655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970664.167649193666875, 3897686.590406062547117 ], [ 4970612.292854434810579, 3897702.516806621104479 ], [ 4970605.708288526162505, 3897680.656921676360071 ], [ 4970615.218625376932323, 3897677.761347027029842 ], [ 4970605.76846338994801, 3897647.885342286899686 ], [ 4970648.133001937530935, 3897634.854489213787019 ], [ 4970664.167649193666875, 3897686.590406062547117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970631.602128306403756, 3904592.996539412532002 ], [ 4970651.702806600369513, 3904623.620523023884743 ], [ 4970613.069946330040693, 3904649.0387282227166 ], [ 4970592.681287621147931, 3904618.414244285319 ], [ 4970631.602128306403756, 3904592.996539412532002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970575.144188425503671, 3903347.928044642321765 ], [ 4970552.657207136042416, 3903361.723763529676944 ], [ 4970538.300161611288786, 3903339.12129781069234 ], [ 4970560.787154375575483, 3903325.325567106716335 ], [ 4970575.144188425503671, 3903347.928044642321765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970457.547863892279565, 3893178.653466828167439 ], [ 4970488.665639270097017, 3893175.797410560306162 ], [ 4970491.208321961574256, 3893203.11173705663532 ], [ 4970460.090577919967473, 3893205.9677904243581 ], [ 4970457.547863892279565, 3893178.653466828167439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970435.364831577986479, 3896800.242971597705036 ], [ 4970499.343589727766812, 3896781.789501115679741 ], [ 4970506.785243180580437, 3896807.65634505264461 ], [ 4970442.806541383266449, 3896826.109798096586019 ], [ 4970435.364831577986479, 3896800.242971597705036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970411.189326673746109, 3905920.944300923030823 ], [ 4970458.155815890058875, 3905903.55194639088586 ], [ 4970465.033073354512453, 3905921.771126191597432 ], [ 4970417.778670051135123, 3905939.162942041642964 ], [ 4970411.189326673746109, 3905920.944300923030823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970370.050895532593131, 3899913.435315479990095 ], [ 4970370.739373815245926, 3899851.898542237933725 ], [ 4970406.738871986977756, 3899852.69261962082237 ], [ 4970406.428888504393399, 3899864.708354553673416 ], [ 4970424.284625532105565, 3899865.10514765419066 ], [ 4970423.618675651960075, 3899914.26152876066044 ], [ 4970370.050895532593131, 3899913.435315479990095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970325.902688511647284, 3904059.348233957309276 ], [ 4970300.248189378529787, 3904073.502515607047826 ], [ 4970284.748105165548623, 3904046.164382326882333 ], [ 4970310.402622156776488, 3904032.010086119640619 ], [ 4970325.902688511647284, 3904059.348233957309276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970267.342709323391318, 3903484.642295009922236 ], [ 4970251.836274172179401, 3903460.581359919626266 ], [ 4970285.568391888402402, 3903438.795020088087767 ], [ 4970282.122738983482122, 3903433.326765983365476 ], [ 4970318.449291374534369, 3903410.088676904793829 ], [ 4970337.688641590997577, 3903439.982566379942 ], [ 4970267.342709323391318, 3903484.642295009922236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970133.466308488510549, 3897926.674020209349692 ], [ 4970180.658369382843375, 3897951.156592692714185 ], [ 4970158.403432964347303, 3897993.355162541847676 ], [ 4970111.211426100693643, 3897968.872628525830805 ], [ 4970133.466308488510549, 3897926.674020209349692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969724.295716624706984, 3905685.195612632669508 ], [ 4969707.637638582848012, 3905661.49701201915741 ], [ 4969750.595244583673775, 3905631.715719548519701 ], [ 4969767.253303349949419, 3905655.414346353150904 ], [ 4969724.295716624706984, 3905685.195612632669508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969677.485439008101821, 3912484.555375672411174 ], [ 4969719.254366389475763, 3912469.33711007097736 ], [ 4969730.140911667607725, 3912498.487407024018466 ], [ 4969688.084152384661138, 3912513.705136930570006 ], [ 4969677.485439008101821, 3912484.555375672411174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969687.111019309610128, 3900434.723007842432708 ], [ 4969690.930497192777693, 3900392.85488827014342 ], [ 4969722.029334722086787, 3900395.824000607710332 ], [ 4969718.209808787330985, 3900437.69211583584547 ], [ 4969687.111019309610128, 3900434.723007842432708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969441.119066423736513, 3892583.64636829122901 ], [ 4969461.386848147958517, 3892526.878619012888521 ], [ 4969486.722006775438786, 3892536.02728286664933 ], [ 4969491.065497310832143, 3892523.654698510654271 ], [ 4969505.173174074850976, 3892528.413690609391779 ], [ 4969480.561823116615415, 3892597.553992708213627 ], [ 4969441.119066423736513, 3892583.64636829122901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969236.429641028866172, 3911215.124526002444327 ], [ 4969205.911894096061587, 3911216.162432701792568 ], [ 4969204.826650965027511, 3911179.018943947274238 ], [ 4969186.400694631971419, 3911179.714326207526028 ], [ 4969186.391598631627858, 3911184.812169947195798 ], [ 4969152.707082204520702, 3911185.844486889895052 ], [ 4969151.346214084886014, 3911141.781985618174076 ], [ 4969159.69554765895009, 3911141.432740735355765 ], [ 4969159.141854005865753, 3911129.051236664410681 ], [ 4969206.933496588841081, 3911127.6799730011262 ], [ 4969208.306624554097652, 3911164.823974552564323 ], [ 4969221.550003875978291, 3911164.483485699165612 ], [ 4969222.101717382669449, 3911177.957386406604201 ], [ 4969235.057855512946844, 3911177.252258471678942 ], [ 4969236.429641028866172, 3911215.124526002444327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969181.918140436522663, 3898356.818469601217657 ], [ 4969170.881094260141253, 3898408.505251108668745 ], [ 4969146.696321236900985, 3898403.364323773421347 ], [ 4969149.891170157119632, 3898388.440686596091837 ], [ 4969117.356968438252807, 3898381.464257705491036 ], [ 4969125.199078731238842, 3898344.701094256248325 ], [ 4969181.918140436522663, 3898356.818469601217657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969001.237257766537368, 3903432.476785975974053 ], [ 4969036.381689365953207, 3903425.620765252504498 ], [ 4969044.948855261318386, 3903466.054554401896894 ], [ 4969009.803827165625989, 3903473.274694064632058 ], [ 4969001.237257766537368, 3903432.476785975974053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968235.502829474397004, 3902458.169085206463933 ], [ 4968268.080736295320094, 3902437.470601672772318 ], [ 4968275.259820725768805, 3902449.13535069162026 ], [ 4968308.990960532799363, 3902427.710672992281616 ], [ 4968326.796546307392418, 3902455.779934933409095 ], [ 4968270.578257080167532, 3902491.3663415373303 ], [ 4968258.228944686241448, 3902472.045800822786987 ], [ 4968248.426848027855158, 3902478.218882081098855 ], [ 4968235.502829474397004, 3902458.169085206463933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968020.961024374701083, 3903118.328388806898147 ], [ 4967936.486018474213779, 3903175.350073410663754 ], [ 4967912.069809312932193, 3903139.986958236433566 ], [ 4967996.833479586057365, 3903082.601569117978215 ], [ 4968020.961024374701083, 3903118.328388806898147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967993.451680765487254, 3902708.997312783729285 ], [ 4967948.477434739470482, 3902737.68546873703599 ], [ 4967927.22415163833648, 3902704.87676257500425 ], [ 4967935.296337348408997, 3902699.792951155919582 ], [ 4967928.691227963194251, 3902689.221681022085249 ], [ 4967941.665342007763684, 3902680.505077057052404 ], [ 4967935.059597810730338, 3902670.297935303300619 ], [ 4967958.700246443971992, 3902655.045514708850533 ], [ 4967993.451680765487254, 3902708.997312783729285 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967949.61539267655462, 3895286.128698529209942 ], [ 4967973.530966507270932, 3895282.164833355229348 ], [ 4967972.103978848084807, 3895274.515637601260096 ], [ 4967991.408775212243199, 3895271.636162873357534 ], [ 4967992.548968199640512, 3895278.556602338794619 ], [ 4968011.277652522549033, 3895275.676140135619789 ], [ 4968012.132951709441841, 3895280.775438319891691 ], [ 4968032.589970536530018, 3895277.89799752831459 ], [ 4968036.862006352283061, 3895305.943389805033803 ], [ 4967954.744087795726955, 3895318.545117791742086 ], [ 4967949.61539267655462, 3895286.128698529209942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967595.778686881996691, 3896682.681049413047731 ], [ 4967653.972945844754577, 3896676.955374216660857 ], [ 4967656.801804116927087, 3896706.818885678891093 ], [ 4967598.895649450831115, 3896712.545051513705403 ], [ 4967595.778686881996691, 3896682.681049413047731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967526.169814433902502, 3905156.606721869669855 ], [ 4967486.976688403636217, 3905175.109960413072258 ], [ 4967472.91851850040257, 3905145.226995372213423 ], [ 4967529.691059190779924, 3905118.378983256407082 ], [ 4967540.880344847217202, 3905142.066800588741899 ], [ 4967523.01302610244602, 3905150.411050955299288 ], [ 4967526.169814433902502, 3905156.606721869669855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967508.659803311340511, 3899938.216908124741167 ], [ 4967510.442989995703101, 3899906.176510421559215 ], [ 4967545.576593186706305, 3899908.057656124699861 ], [ 4967544.984901107847691, 3899917.15989453997463 ], [ 4967572.054949356243014, 3899918.663056607358158 ], [ 4967570.863389934413135, 3899941.601212415378541 ], [ 4967508.659803311340511, 3899938.216908124741167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966988.920773157849908, 3902071.860569034703076 ], [ 4966963.850780502893031, 3902080.921182913240045 ], [ 4966942.923998663201928, 3902024.445327391382307 ], [ 4966984.996214790269732, 3902008.859269086271524 ], [ 4967000.762783230282366, 3902051.489403028506786 ], [ 4966983.761248026043177, 3902057.650688737630844 ], [ 4966988.920773157849908, 3902071.860569034703076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966852.272306783124804, 3899610.834494097158313 ], [ 4966851.635743915103376, 3899646.518176204524934 ], [ 4966860.852026855573058, 3899646.533814596477896 ], [ 4966860.531268196180463, 3899665.832172571215779 ], [ 4966811.859043323434889, 3899665.021360227838159 ], [ 4966812.48382490221411, 3899636.256131195928901 ], [ 4966804.707583199255168, 3899636.242950085084885 ], [ 4966805.040028249844909, 3899610.0261374511756 ], [ 4966852.272306783124804, 3899610.834494097158313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966519.765115361660719, 3905679.605920975096524 ], [ 4966555.215403031557798, 3905660.002563026268035 ], [ 4966570.14245249889791, 3905687.337600630708039 ], [ 4966534.692803546786308, 3905706.57680869102478 ], [ 4966519.765115361660719, 3905679.605920975096524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966306.12601684127003, 3900001.717562915291637 ], [ 4966300.036408237181604, 3900026.46821536263451 ], [ 4966251.095106690190732, 3900014.734057330992073 ], [ 4966257.184672829695046, 3899989.983393973205239 ], [ 4966306.12601684127003, 3900001.717562915291637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966293.439280942082405, 3898635.479991049040109 ], [ 4966366.03246305976063, 3898628.319142216816545 ], [ 4966369.436744297854602, 3898659.275906644761562 ], [ 4966354.745309641584754, 3898660.707768919412047 ], [ 4966357.86341383587569, 3898690.571662195492536 ], [ 4966336.546336690895259, 3898692.720675967633724 ], [ 4966333.425155288539827, 3898664.677430015522987 ], [ 4966296.840593526139855, 3898668.257391330320388 ], [ 4966293.439280942082405, 3898635.479991049040109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966131.069929152727127, 3898418.551047550048679 ], [ 4966124.661102179437876, 3898461.871811251621693 ], [ 4966065.631258122622967, 3898453.034205108415335 ], [ 4966070.584094569087029, 3898419.178378336597234 ], [ 4966108.593274408951402, 3898425.067865247372538 ], [ 4966110.04979263804853, 3898415.238787558861077 ], [ 4966131.069929152727127, 3898418.551047550048679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966097.514848758466542, 3898850.353210614062846 ], [ 4966105.474815190769732, 3898912.996861346531659 ], [ 4966061.687170187942684, 3898918.385773057583719 ], [ 4966054.015120674856007, 3898855.742615194059908 ], [ 4966097.514848758466542, 3898850.353210614062846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965591.140117919072509, 3904110.472035410813987 ], [ 4965602.914066066034138, 3904130.154549349099398 ], [ 4965595.707835490815341, 3904134.512230937834829 ], [ 4965606.332932704128325, 3904152.372194913215935 ], [ 4965572.897677154280245, 3904171.615980935748667 ], [ 4965550.787158944644034, 3904133.709878067020327 ], [ 4965591.140117919072509, 3904110.472035410813987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965400.324129635468125, 3894053.613366710022092 ], [ 4965395.422176920808852, 3894056.518348556477576 ], [ 4965408.064903258346021, 3894076.202078201808035 ], [ 4965379.515634344890714, 3894094.725777171552181 ], [ 4965354.22954148426652, 3894055.722478483337909 ], [ 4965387.968858104199171, 3894034.294241934549063 ], [ 4965400.324129635468125, 3894053.613366710022092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965235.909148351289332, 3900345.868576738983393 ], [ 4965266.446832653135061, 3900340.092485872097313 ], [ 4965275.587723183445632, 3900385.987881844863296 ], [ 4965245.050089014694095, 3900391.763962489552796 ], [ 4965235.909148351289332, 3900345.868576738983393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965162.278368576429784, 3905573.211664583534002 ], [ 4965165.674798334017396, 3905609.266233930829912 ], [ 4965120.172362865880132, 3905613.561486545484513 ], [ 4965116.776467057876289, 3905577.142792330123484 ], [ 4965162.278368576429784, 3905573.211664583534002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964862.730892339721322, 3900301.200661418493837 ], [ 4964855.826528589241207, 3900296.455764385871589 ], [ 4964867.95156349055469, 3900278.63305324036628 ], [ 4964907.077850349247456, 3900304.549832402728498 ], [ 4964882.826585627160966, 3900340.923484386410564 ], [ 4964850.317278693430126, 3900319.387037334963679 ], [ 4964862.730892339721322, 3900301.200661418493837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964748.542506877332926, 3892733.312065416481346 ], [ 4964764.782416276633739, 3892667.066924820654094 ], [ 4964790.123750637285411, 3892673.298141549341381 ], [ 4964787.513308132998645, 3892684.217774546705186 ], [ 4964819.766261741518974, 3892691.916727870237082 ], [ 4964809.617266060784459, 3892732.682695577852428 ], [ 4964777.940524529665709, 3892724.984687098767608 ], [ 4964774.459948192350566, 3892739.544199849944562 ], [ 4964748.542506877332926, 3892733.312065416481346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964274.989366142079234, 3901875.481857158243656 ], [ 4964258.014569578692317, 3901865.259028797503561 ], [ 4964271.007705021649599, 3901844.160246579907835 ], [ 4964318.478595811873674, 3901873.366731024812907 ], [ 4964298.556305171921849, 3901905.378310735803097 ], [ 4964268.059658883139491, 3901886.758814688306302 ], [ 4964274.989366142079234, 3901875.481857158243656 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964233.687306025065482, 3903751.053863717243075 ], [ 4964230.473684519529343, 3903779.815078857820481 ], [ 4964186.998600538820028, 3903775.011877067387104 ], [ 4964190.212176064960659, 3903746.250656811054796 ], [ 4964233.687306025065482, 3903751.053863717243075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964234.854868407361209, 3900320.21631373744458 ], [ 4964242.038017605431378, 3900330.787582235876471 ], [ 4964220.99178469274193, 3900344.590877205599099 ], [ 4964191.110037277452648, 3900300.483349777758121 ], [ 4964231.473967793397605, 3900273.238096252083778 ], [ 4964254.459953393787146, 3900307.138984455261379 ], [ 4964234.854868407361209, 3900320.21631373744458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963692.323349644429982, 3893711.858532845973969 ], [ 4963746.461396944709122, 3893724.324440261814743 ], [ 4963740.949462752789259, 3893748.712363197933882 ], [ 4963720.215754037722945, 3893743.94592458801344 ], [ 4963717.315476002171636, 3893756.321725162677467 ], [ 4963683.623701305128634, 3893748.257688150275499 ], [ 4963692.323349644429982, 3893711.858532845973969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963602.670083824545145, 3903987.465433836448938 ], [ 4963609.929409434087574, 3903949.243109229020774 ], [ 4963629.217170336283743, 3903952.914830363355577 ], [ 4963630.959877289831638, 3903943.450169959571213 ], [ 4963656.00517086032778, 3903948.223384301178157 ], [ 4963647.003068950027227, 3903995.910355944186449 ], [ 4963602.670083824545145, 3903987.465433836448938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963281.592952160164714, 3894409.248418807983398 ], [ 4963321.624294238165021, 3894415.501231802161783 ], [ 4963319.589035357348621, 3894427.514304509852082 ], [ 4963335.716671914793551, 3894430.088451229967177 ], [ 4963331.349531105719507, 3894459.576066139619797 ], [ 4963339.413624639622867, 3894460.681077767163515 ], [ 4963335.338539089076221, 3894487.62024654680863 ], [ 4963282.059201524592936, 3894479.526050460059196 ], [ 4963283.512617594562471, 3894471.153355143498629 ], [ 4963271.992891584523022, 3894469.314700260292739 ], [ 4963281.592952160164714, 3894409.248418807983398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963140.632628473453224, 3904080.322919555939734 ], [ 4963165.336531708948314, 3904119.323471077252179 ], [ 4963139.105978989973664, 3904136.032602750696242 ], [ 4963114.114092013798654, 3904097.031626342330128 ], [ 4963140.632628473453224, 3904080.322919555939734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962934.733437518589199, 3897399.666694327723235 ], [ 4962931.80680719204247, 3897429.520788058638573 ], [ 4962913.376107267104089, 3897427.307436239439994 ], [ 4962916.302152915857732, 3897397.817469327244908 ], [ 4962934.733437518589199, 3897399.666694327723235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962028.158577120862901, 3892360.185883494559675 ], [ 4962090.065735773183405, 3892381.03518230933696 ], [ 4962074.439385103061795, 3892426.891648997087032 ], [ 4962018.579374216496944, 3892407.872197687625885 ], [ 4962025.523822644725442, 3892387.855658063665032 ], [ 4962019.189230010844767, 3892385.661279858089983 ], [ 4962028.158577120862901, 3892360.185883494559675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961984.763337679207325, 3897232.895430146716535 ], [ 4962009.989469110965729, 3897312.67805541632697 ], [ 4961955.237120832316577, 3897329.709177879150957 ], [ 4961951.797257916070521, 3897318.780080338940024 ], [ 4961939.694326869212091, 3897322.403052798006684 ], [ 4961934.535071684978902, 3897305.645280943717808 ], [ 4961942.891914278268814, 3897303.109023625962436 ], [ 4961938.591799025423825, 3897289.629718354903162 ], [ 4961944.93130555562675, 3897287.818667299579829 ], [ 4961932.892290556803346, 3897249.202704923227429 ], [ 4961984.763337679207325, 3897232.895430146716535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961832.804312796331942, 3895433.866315294057131 ], [ 4961824.381496959365904, 3895479.73388205980882 ], [ 4961791.552185445092618, 3895473.858282900881022 ], [ 4961799.686343747191131, 3895428.354399867821485 ], [ 4961832.804312796331942, 3895433.866315294057131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961780.605606460943818, 3899294.65399261796847 ], [ 4961754.906634577549994, 3899338.310857783071697 ], [ 4961733.612383364699781, 3899325.898353902157396 ], [ 4961759.311332436278462, 3899282.241468692198396 ], [ 4961780.605606460943818, 3899294.65399261796847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961716.928486618213356, 3891658.040038192644715 ], [ 4961765.018309728242457, 3891672.677600499708205 ], [ 4961760.964688997715712, 3891686.14424338657409 ], [ 4961769.3155776578933, 3891688.705726704094559 ], [ 4961758.312589352950454, 3891725.466116265859455 ], [ 4961726.636533302254975, 3891715.951069558039308 ], [ 4961723.162414561025798, 3891727.233820390421897 ], [ 4961698.109766622073948, 3891719.549421068280935 ], [ 4961716.928486618213356, 3891658.040038192644715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961636.462396523915231, 3898810.50826145382598 ], [ 4961649.747337704524398, 3898786.495650616008788 ], [ 4961675.071568332612514, 3898800.734793841373175 ], [ 4961661.498593863099813, 3898824.746959330048412 ], [ 4961636.462396523915231, 3898810.50826145382598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961203.976224835962057, 3895049.49633545614779 ], [ 4961204.890189989469945, 3895015.997815482318401 ], [ 4961248.385933957062662, 3895016.790756727568805 ], [ 4961247.759972715750337, 3895050.28970384132117 ], [ 4961203.976224835962057, 3895049.49633545614779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960928.952809881418943, 3893438.910815187264234 ], [ 4960948.47794802300632, 3893482.27096432261169 ], [ 4960902.067813692614436, 3893502.593683043494821 ], [ 4960882.542078793980181, 3893459.597695074975491 ], [ 4960928.952809881418943, 3893438.910815187264234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960834.70677578356117, 3896208.337516760453582 ], [ 4960825.119783131405711, 3896263.671063976828009 ], [ 4960781.924264894798398, 3896255.960787625983357 ], [ 4960793.541954412125051, 3896190.798720021732152 ], [ 4960816.867774343118072, 3896194.838466834742576 ], [ 4960815.124492785893381, 3896205.031522857956588 ], [ 4960834.70677578356117, 3896208.337516760453582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960787.951077708974481, 3909189.895038967486471 ], [ 4960782.489425038918853, 3909184.06088680587709 ], [ 4960757.11883785109967, 3909207.692163783125579 ], [ 4960720.325662180781364, 3909167.583543407265097 ], [ 4960748.866444381885231, 3909141.772099362220615 ], [ 4960757.49027144536376, 3909150.888083990197629 ], [ 4960783.725169980898499, 3909126.893947652541101 ], [ 4960817.069323776289821, 3909162.992120093666017 ], [ 4960787.951077708974481, 3909189.895038967486471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960730.605039314366877, 3908441.883306050207466 ], [ 4960735.447680931538343, 3908477.211231546942145 ], [ 4960719.89710384234786, 3908479.373175662942231 ], [ 4960721.0369922965765, 3908487.385755487252027 ], [ 4960689.360026630572975, 3908491.708824172616005 ], [ 4960683.377960821613669, 3908448.004197259433568 ], [ 4960730.605039314366877, 3908441.883306050207466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960606.738171817734838, 3893735.202138838358223 ], [ 4960611.076314928010106, 3893723.556367819663137 ], [ 4960637.276490904390812, 3893733.426219606772065 ], [ 4960619.924968323670328, 3893779.28103560814634 ], [ 4960572.418700992129743, 3893761.733321966603398 ], [ 4960585.432551414705813, 3893727.160122137516737 ], [ 4960606.738171817734838, 3893735.202138838358223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960406.984026233665645, 3893224.037786283530295 ], [ 4960404.749938794411719, 3893175.605414466932416 ], [ 4960459.488510774448514, 3893173.13629261450842 ], [ 4960461.998893182724714, 3893229.579903735313565 ], [ 4960428.579768520779908, 3893230.987695206422359 ], [ 4960428.302834578789771, 3893223.340588672552258 ], [ 4960406.984026233665645, 3893224.037786283530295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960362.763329419307411, 3907770.250103090424091 ], [ 4960295.941132958047092, 3907786.902982420753688 ], [ 4960283.345580767840147, 3907736.634481085464358 ], [ 4960355.928460733033717, 3907718.533426796551794 ], [ 4960363.085174880921841, 3907746.946130644995719 ], [ 4960357.324614146724343, 3907748.394273292273283 ], [ 4960362.763329419307411, 3907770.250103090424091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960340.582955708727241, 3898670.587121840566397 ], [ 4960370.239404049701989, 3898677.184606894850731 ], [ 4960360.959206997416914, 3898720.866688075009733 ], [ 4960331.302275176160038, 3898714.633342219050974 ], [ 4960340.582955708727241, 3898670.587121840566397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960284.292279339395463, 3906292.125318448059261 ], [ 4960317.381283350288868, 3906308.559326382819563 ], [ 4960295.146606332622468, 3906352.22279679775238 ], [ 4960262.34610843192786, 3906335.42510304460302 ], [ 4960284.292279339395463, 3906292.125318448059261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960275.203924109227955, 3899066.301343057304621 ], [ 4960303.710536940023303, 3899071.076437552925199 ], [ 4960296.157611442729831, 3899115.48932077921927 ], [ 4960267.651044412516057, 3899110.714234159328043 ], [ 4960275.203924109227955, 3899066.301343057304621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959853.949152585119009, 3893171.5316914585419 ], [ 4959815.027773872949183, 3893192.959423262160271 ], [ 4959793.477783515118062, 3893153.966748668346554 ], [ 4959832.399201367981732, 3893132.538986161351204 ], [ 4959853.949152585119009, 3893171.5316914585419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959784.300510170869529, 3909394.89981519524008 ], [ 4959774.501318912021816, 3909402.168407704681158 ], [ 4959782.260112986899912, 3909412.375236861873418 ], [ 4959765.831304006278515, 3909425.096309362445027 ], [ 4959761.808476313948631, 3909419.628558975178748 ], [ 4959734.715759522281587, 3909440.345276757143438 ], [ 4959694.483200304210186, 3909388.580898965708911 ], [ 4959715.811588857322931, 3909372.225474887993187 ], [ 4959725.869999821297824, 3909384.984505631960928 ], [ 4959757.862364430911839, 3909360.633479098789394 ], [ 4959784.300510170869529, 3909394.89981519524008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959696.38278094958514, 3905243.671586892101914 ], [ 4959669.307257929816842, 3905249.458963762968779 ], [ 4959656.434391979128122, 3905190.087158993817866 ], [ 4959660.755195032805204, 3905189.000940907746553 ], [ 4959654.176591609604657, 3905158.040377939585596 ], [ 4959687.300712687894702, 3905151.169243302196264 ], [ 4959700.746301598846912, 3905212.726668857969344 ], [ 4959690.37700517848134, 3905214.896621357183903 ], [ 4959696.38278094958514, 3905243.671586892101914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959682.46937545761466, 3900273.630888730753213 ], [ 4959690.32303074747324, 3900219.386718686204404 ], [ 4959734.954064572229981, 3900226.004932487383485 ], [ 4959726.812319032847881, 3900280.24867738969624 ], [ 4959682.46937545761466, 3900273.630888730753213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959601.562285653315485, 3904899.796168873086572 ], [ 4959633.543742769397795, 3904886.733106879983097 ], [ 4959653.34274694044143, 3904935.55498061561957 ], [ 4959621.361858151853085, 3904948.253888924140483 ], [ 4959601.562285653315485, 3904899.796168873086572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959439.391772897914052, 3900478.653851915150881 ], [ 4959440.879892285913229, 3900444.791852843016386 ], [ 4959518.05930314771831, 3900448.178805502597243 ], [ 4959516.57160512637347, 3900481.676670837216079 ], [ 4959439.391772897914052, 3900478.653851915150881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959250.845471012406051, 3908150.264773921575397 ], [ 4959211.687117814086378, 3908151.301816512830555 ], [ 4959211.128259373828769, 3908139.2846724325791 ], [ 4959198.459360277280211, 3908139.630908425431699 ], [ 4959197.626977276057005, 3908117.417683825362474 ], [ 4959204.249092902988195, 3908117.427037203684449 ], [ 4959203.42031439114362, 3908092.664894216228276 ], [ 4959261.294475531205535, 3908090.926046162843704 ], [ 4959262.125776494853199, 3908113.867534808814526 ], [ 4959249.744782827794552, 3908114.214153945446014 ], [ 4959250.845471012406051, 3908150.264773921575397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959222.237206826917827, 3897014.378659135196358 ], [ 4959266.589762126095593, 3897018.082645555026829 ], [ 4959263.365740888752043, 3897057.404072699137032 ], [ 4959219.012735700234771, 3897054.064220300409943 ], [ 4959222.237206826917827, 3897014.378659135196358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959174.362556195817888, 3907873.052318564616144 ], [ 4959182.388351321220398, 3907898.552880418021232 ], [ 4959156.751618878915906, 3907906.891733845230192 ], [ 4959148.726315545849502, 3907881.02704835543409 ], [ 4959174.362556195817888, 3907873.052318564616144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959130.005721400491893, 3899100.347718549426645 ], [ 4959182.419256843626499, 3899104.062937256880105 ], [ 4959178.602101275697351, 3899155.764004519209266 ], [ 4959126.476680292747915, 3899152.049199022352695 ], [ 4959130.005721400491893, 3899100.347718549426645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959001.614723261445761, 3905615.192905262112617 ], [ 4959042.227754735387862, 3905606.146708441432565 ], [ 4959048.523616990074515, 3905633.829549042973667 ], [ 4959007.622680608183146, 3905642.875331904739141 ], [ 4959001.614723261445761, 3905615.192905262112617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958956.233927165158093, 3905943.939860209356993 ], [ 4958898.893291957676411, 3905972.625844839960337 ], [ 4958899.180212639272213, 3905973.354509770404547 ], [ 4958875.840672120451927, 3905984.97402562154457 ], [ 4958861.770812111906707, 3905956.916205734480172 ], [ 4958896.636187120340765, 3905939.486719853244722 ], [ 4958890.893681220710278, 3905927.826468692626804 ], [ 4958906.742202147841454, 3905919.473650471307337 ], [ 4958909.613453178666532, 3905925.303777552209795 ], [ 4958939.004432004876435, 3905910.415595277678221 ], [ 4958956.233927165158093, 3905943.939860209356993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958911.506879707798362, 3899642.230247914791107 ], [ 4958919.679830688983202, 3899564.681999295484275 ], [ 4958959.131542537361383, 3899568.742751590907574 ], [ 4958955.048325229436159, 3899605.150028513278812 ], [ 4958968.294708352535963, 3899606.62513468042016 ], [ 4958965.960487158037722, 3899628.105532651301473 ], [ 4958951.274069220758975, 3899626.628407602198422 ], [ 4958949.230425847694278, 3899646.288564507383853 ], [ 4958911.506879707798362, 3899642.230247914791107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958705.867439301684499, 3899229.383578054141253 ], [ 4958714.757785237394273, 3899256.705716813914478 ], [ 4958727.147930017672479, 3899252.717560429126024 ], [ 4958735.750741616822779, 3899279.675175648648292 ], [ 4958686.190736288204789, 3899295.263690621126443 ], [ 4958682.749291595071554, 3899284.699127957224846 ], [ 4958673.240308909676969, 3899287.963056317996234 ], [ 4958659.476516940630972, 3899244.248298467136919 ], [ 4958705.867439301684499, 3899229.383578054141253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958632.320013234391809, 3898889.912088663317263 ], [ 4958621.089883603155613, 3898888.075822609942406 ], [ 4958617.603812186978757, 3898909.554639799986035 ], [ 4958591.112342676147819, 3898905.148264094721526 ], [ 4958601.275410014204681, 3898845.80921285180375 ], [ 4958638.709064038470387, 3898852.051466579083353 ], [ 4958632.320013234391809, 3898889.912088663317263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958287.79993533808738, 3900599.025841794442385 ], [ 4958317.200403698720038, 3900581.22399113047868 ], [ 4958354.843292421661317, 3900642.813948360737413 ], [ 4958325.442866330966353, 3900660.615758512634784 ], [ 4958287.79993533808738, 3900599.025841794442385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957977.543904249556363, 3907821.867798236664385 ], [ 4958031.152583038434386, 3907781.52249334519729 ], [ 4958053.569574961438775, 3907811.412001207005233 ], [ 4958039.446970303542912, 3907821.952484726440161 ], [ 4958049.218339096754789, 3907835.074612509459257 ], [ 4958033.366727195680141, 3907846.705127006862313 ], [ 4958024.744547517038882, 3907835.405237032100558 ], [ 4958001.111111482605338, 3907852.851230891421437 ], [ 4957977.543904249556363, 3907821.867798236664385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957587.317273679189384, 3897241.156255563255399 ], [ 4957614.677606577053666, 3897243.378033475019038 ], [ 4957611.169471741653979, 3897281.606887767557055 ], [ 4957583.809177475050092, 3897279.38511337293312 ], [ 4957587.317273679189384, 3897241.156255563255399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957332.036261691711843, 3901163.948349333833903 ], [ 4957350.256583820097148, 3901106.804350082762539 ], [ 4957371.27127795945853, 3901113.386932012625039 ], [ 4957380.815681079402566, 3901083.176941884681582 ], [ 4957410.178274848498404, 3901092.683820791076869 ], [ 4957387.040886311791837, 3901165.478773076552898 ], [ 4957373.223116179928184, 3901161.09063298907131 ], [ 4957368.596149546094239, 3901175.285498838871717 ], [ 4957332.036261691711843, 3901163.948349333833903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957245.486406792886555, 3907511.729215320665389 ], [ 4957271.643119400367141, 3907544.900260577909648 ], [ 4957274.525290648452938, 3907542.719333900138736 ], [ 4957291.196078908629715, 3907564.225465330295265 ], [ 4957253.726925693452358, 3907593.305775850545615 ], [ 4957210.89988392777741, 3907538.264524016529322 ], [ 4957245.486406792886555, 3907511.729215320665389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957122.049541413784027, 3900977.960778062231839 ], [ 4957110.477286114357412, 3901017.27141031017527 ], [ 4957081.689521895721555, 3901008.493886546231806 ], [ 4957093.549247861839831, 3900969.547755874693394 ], [ 4957122.049541413784027, 3900977.960778062231839 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957103.536167693324387, 3899096.111623514909297 ], [ 4957109.315408823080361, 3899081.918266728520393 ], [ 4957104.134055166505277, 3899079.726575063541532 ], [ 4957115.113605417311192, 3899053.523870281875134 ], [ 4957125.18830506876111, 3899057.906874349340796 ], [ 4957137.034848070703447, 3899029.520556656643748 ], [ 4957163.805689006112516, 3899040.480210887733847 ], [ 4957135.200287494808435, 3899109.262557037640363 ], [ 4957103.536167693324387, 3899096.111623514909297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956454.683690818957984, 3893782.607040837407112 ], [ 4956431.052282860502601, 3893789.858680171892047 ], [ 4956411.831973254680634, 3893728.29577520256862 ], [ 4956460.248143159784377, 3893713.065737015102059 ], [ 4956461.395663561299443, 3893716.708527425769717 ], [ 4956477.534397103823721, 3893711.631868110969663 ], [ 4956490.443241974338889, 3893753.15946394065395 ], [ 4956449.5203320030123, 3893765.85035696439445 ], [ 4956454.683690818957984, 3893782.607040837407112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956231.65398904774338, 3895158.359014488756657 ], [ 4956283.475764636881649, 3895180.274243555497378 ], [ 4956271.917443021200597, 3895207.932991050649434 ], [ 4956220.095711410976946, 3895186.017783920280635 ], [ 4956231.65398904774338, 3895158.359014488756657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956029.765515120700002, 3905587.877698014024645 ], [ 4955996.6183897620067, 3905613.688140338286757 ], [ 4955977.357610587961972, 3905589.266442890278995 ], [ 4956010.504747475497425, 3905563.455977194942534 ], [ 4956029.765515120700002, 3905587.877698014024645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955809.765218083746731, 3897309.0890520978719 ], [ 4955841.432076409459114, 3897322.238447521813214 ], [ 4955829.874188191257417, 3897350.62567793391645 ], [ 4955831.889485366642475, 3897351.35652963956818 ], [ 4955820.043586539104581, 3897379.743394210934639 ], [ 4955828.392331585288048, 3897383.031298518180847 ], [ 4955820.013146587647498, 3897403.411773920524865 ], [ 4955771.073277619667351, 3897383.321753185242414 ], [ 4955781.76418281532824, 3897357.118160306941718 ], [ 4955788.673240748234093, 3897360.040073206182569 ], [ 4955809.765218083746731, 3897309.0890520978719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955595.629410343244672, 3896957.065527612343431 ], [ 4955568.469259704463184, 3897023.302394160069525 ], [ 4955535.937804433517158, 3897010.152220428921282 ], [ 4955563.385925875045359, 3896943.915689217858016 ], [ 4955595.629410343244672, 3896957.065527612343431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955154.421841778792441, 3899415.837274266406894 ], [ 4955178.880739907734096, 3899433.346376354340464 ], [ 4955160.127399048767984, 3899459.175936544779688 ], [ 4955169.911036740988493, 3899466.106751070357859 ], [ 4955125.191807143390179, 3899527.588316262699664 ], [ 4955103.322759583592415, 3899511.903173725586385 ], [ 4955120.056723185814917, 3899488.619938129559159 ], [ 4955114.589569696225226, 3899484.607619602698833 ], [ 4955124.398909337818623, 3899471.147172132972628 ], [ 4955117.78062753751874, 3899466.405142316129059 ], [ 4955154.421841778792441, 3899415.837274266406894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955017.476175758056343, 3891960.120687324088067 ], [ 4954958.399216665886343, 3891974.611685953103006 ], [ 4954952.667065751738846, 3891950.936157177668065 ], [ 4954933.070470227859914, 3891956.009395227767527 ], [ 4954925.61704153008759, 3891926.505662667565048 ], [ 4955004.2902686977759, 3891907.305519887711853 ], [ 4955017.476175758056343, 3891960.120687324088067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954626.532724941149354, 3893586.92282694671303 ], [ 4954666.528812663629651, 3893624.11363913398236 ], [ 4954636.240861769765615, 3893656.483461784664541 ], [ 4954596.244780477136374, 3893619.292693952098489 ], [ 4954626.532724941149354, 3893586.92282694671303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954395.589591695927083, 3895381.064179474487901 ], [ 4954398.440053144469857, 3895405.464341775979847 ], [ 4954376.544786245562136, 3895407.986254608724266 ], [ 4954373.694753878749907, 3895383.22196608223021 ], [ 4954395.589591695927083, 3895381.064179474487901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953725.451606765389442, 3901203.408119081985205 ], [ 4953782.195758819580078, 3901195.465878786053509 ], [ 4953786.764401115477085, 3901227.879007703159004 ], [ 4953784.460025147534907, 3901228.240348380990326 ], [ 4953788.457966161891818, 3901256.283223442267627 ], [ 4953721.632478062994778, 3901265.669789721257985 ], [ 4953717.921580758877099, 3901238.355531927198172 ], [ 4953730.019435994327068, 3901236.549498097039759 ], [ 4953725.451606765389442, 3901203.408119081985205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953305.163663192652166, 3900810.006993503775448 ], [ 4953336.835874044336379, 3900816.235001231078058 ], [ 4953328.434000826440752, 3900858.099948158953339 ], [ 4953296.761837395839393, 3900851.871950194239616 ], [ 4953305.163663192652166, 3900810.006993503775448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952785.947466196492314, 3893900.036146499216557 ], [ 4952796.891151044517756, 3893902.59788753092289 ], [ 4952801.812707436271012, 3893881.848326281644404 ], [ 4952831.764351432211697, 3893888.437813034281135 ], [ 4952818.153629001230001, 3893949.231324188876897 ], [ 4952787.913979494012892, 3893942.641514413058758 ], [ 4952793.126155358739197, 3893919.707519680727273 ], [ 4952782.182050027884543, 3893917.509908386040479 ], [ 4952785.947466196492314, 3893900.036146499216557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952212.114914455451071, 3894146.248408203944564 ], [ 4952217.258189429529011, 3894182.667209328152239 ], [ 4952193.056337374262512, 3894186.280629087239504 ], [ 4952194.48451900202781, 3894196.842007467523217 ], [ 4952159.911007564514875, 3894201.535906745586544 ], [ 4952153.339459636248648, 3894154.555740110576153 ], [ 4952212.114914455451071, 3894146.248408203944564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952214.584256472066045, 3890251.170273004099727 ], [ 4952181.730136400088668, 3890259.507398823741823 ], [ 4952167.965785400010645, 3890203.051737245637923 ], [ 4952200.531440841965377, 3890195.078390665818006 ], [ 4952214.584256472066045, 3890251.170273004099727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952179.055570016615093, 3893085.139461745042354 ], [ 4952184.877488175407052, 3893032.711651482619345 ], [ 4952213.39402471948415, 3893035.657508171629161 ], [ 4952211.937690603546798, 3893049.492715052329004 ], [ 4952241.606524410657585, 3893052.439928819425404 ], [ 4952237.240423538722098, 3893091.396649429574609 ], [ 4952179.055570016615093, 3893085.139461745042354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952157.188759598881006, 3890806.035302734002471 ], [ 4952162.050935085862875, 3890836.991777570452541 ], [ 4952124.302720175124705, 3890842.774452647659928 ], [ 4952119.440502295270562, 3890811.817984534893185 ], [ 4952157.188759598881006, 3890806.035302734002471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952062.141041371971369, 3893296.56390313943848 ], [ 4952065.926109990105033, 3893261.61189804924652 ], [ 4952098.187002710998058, 3893264.926054044626653 ], [ 4952094.689969453029335, 3893299.87838517781347 ], [ 4952062.141041371971369, 3893296.56390313943848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951613.964819144457579, 3890681.976922270376235 ], [ 4951655.459749054163694, 3890675.105383877642453 ], [ 4951661.18354516196996, 3890708.975763748865575 ], [ 4951619.688666033558547, 3890715.847293438855559 ], [ 4951613.964819144457579, 3890681.976922270376235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951502.743878731504083, 3890180.811462466605008 ], [ 4951537.894562582485378, 3890179.758652727119625 ], [ 4951538.72320616338402, 3890211.438715111464262 ], [ 4951503.572563697583973, 3890212.491523786913604 ], [ 4951502.743878731504083, 3890180.811462466605008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951343.149836986325681, 3893766.931900624651462 ], [ 4951346.002020386047661, 3893792.424100683070719 ], [ 4951318.055819735862315, 3893795.305858688428998 ], [ 4951315.491681963205338, 3893769.813983717001975 ], [ 4951343.149836986325681, 3893766.931900624651462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951171.006480511277914, 3893655.680514405015856 ], [ 4951173.571982324123383, 3893680.079989301972091 ], [ 4951149.082961512729526, 3893682.601642584893852 ], [ 4951146.517437726259232, 3893658.202169997617602 ], [ 4951171.006480511277914, 3893655.680514405015856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951074.588222535327077, 3896693.501357706263661 ], [ 4951122.402538411319256, 3896693.918580924160779 ], [ 4951121.761713190935552, 3896752.178557022940367 ], [ 4951111.968358063139021, 3896752.167675582226366 ], [ 4951111.648361515253782, 3896780.933535644318908 ], [ 4951073.339909519068897, 3896780.162747002672404 ], [ 4951074.588222535327077, 3896693.501357706263661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950732.619117590598762, 3894913.989334973040968 ], [ 4950719.902583229355514, 3894952.208926976192743 ], [ 4950689.955597882159054, 3894941.980504286009818 ], [ 4950702.959755171090364, 3894904.12534241611138 ], [ 4950732.619117590598762, 3894913.989334973040968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950698.562851850874722, 3899442.9934122399427 ], [ 4950713.466777487657964, 3899509.281386286951602 ], [ 4950698.486650596372783, 3899512.542138184420764 ], [ 4950683.582689846865833, 3899446.254172328859568 ], [ 4950698.562851850874722, 3899442.9934122399427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950572.899466969072819, 3893188.572761089075357 ], [ 4950572.005843640305102, 3893215.517298334743828 ], [ 4950576.614690490998328, 3893215.886454110965133 ], [ 4950575.730994335375726, 3893233.727788814343512 ], [ 4950529.640171146020293, 3893232.221036858856678 ], [ 4950530.535734444856644, 3893203.455857396125793 ], [ 4950542.922686676494777, 3893203.833480013534427 ], [ 4950543.51669686473906, 3893187.44834305671975 ], [ 4950572.899466969072819, 3893188.572761089075357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950516.752445459365845, 3893956.458833524957299 ], [ 4950480.45683656539768, 3893955.326958127319813 ], [ 4950481.940739312209189, 3893915.27441524900496 ], [ 4950518.236005799844861, 3893916.770420880522579 ], [ 4950516.752445459365845, 3893956.458833524957299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950227.30253932159394, 3890692.827015837654471 ], [ 4950250.065566715784371, 3890690.302662721835077 ], [ 4950250.350136714056134, 3890693.580121705774218 ], [ 4950304.807842195034027, 3890688.176996254827827 ], [ 4950309.084943217225373, 3890729.328083589207381 ], [ 4950231.864329976029694, 3890737.255549824796617 ], [ 4950227.30253932159394, 3890692.827015837654471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948912.380651672370732, 3890982.744401427451521 ], [ 4948987.285585698671639, 3890984.27808561688289 ], [ 4948986.677452310919762, 3891015.228342566173524 ], [ 4948911.772229850292206, 3891014.058787719346583 ], [ 4948912.380651672370732, 3890982.744401427451521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948720.530965538695455, 3895467.882796441670507 ], [ 4948684.802654623053968, 3895477.313663101755083 ], [ 4948678.776937772519886, 3895454.36738727428019 ], [ 4948678.776937772519886, 3895454.36738727428019 ], [ 4948671.890391590073705, 3895428.143074086867273 ], [ 4948707.618763275444508, 3895418.712190546561033 ], [ 4948720.530965538695455, 3895467.882796441670507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947574.309880217537284, 3891404.881942129693925 ], [ 4947575.429823662154377, 3891438.018697721883655 ], [ 4947551.51707671303302, 3891438.723550133407116 ], [ 4947550.397103824652731, 3891405.586795517709106 ], [ 4947574.309880217537284, 3891404.881942129693925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947511.248866432346404, 3889896.966398377437145 ], [ 4947510.069384921342134, 3889924.638959346804768 ], [ 4947472.328355144709349, 3889922.781486021820456 ], [ 4947473.507442748174071, 3889895.473050877451897 ], [ 4947511.248866432346404, 3889896.966398377437145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947274.156390026211739, 3896715.770630550570786 ], [ 4947350.507562058977783, 3896694.725161941256374 ], [ 4947363.998769544996321, 3896742.803325897548348 ], [ 4947287.64772340003401, 3896763.84875679621473 ], [ 4947274.156390026211739, 3896715.770630550570786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946728.000534924678504, 3889149.022730091586709 ], [ 4946672.955589449964464, 3889163.535733239725232 ], [ 4946661.184604950249195, 3889119.101035292260349 ], [ 4946702.396341452375054, 3889108.216186376288533 ], [ 4946704.692352932877839, 3889117.685678143519908 ], [ 4946718.814108515158296, 3889113.693646961823106 ], [ 4946728.000534924678504, 3889149.022730091586709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946333.680930461734533, 3891183.398354262579232 ], [ 4946368.251853446476161, 3891184.523014215286821 ], [ 4946367.073942468501627, 3891211.831518160179257 ], [ 4946332.503054556436837, 3891210.706859707832336 ], [ 4946333.680930461734533, 3891183.398354262579232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945291.67147468868643, 3891130.376076201442629 ], [ 4945268.284621453844011, 3891187.159147375728935 ], [ 4945236.893147370778024, 3891174.386640960816294 ], [ 4945248.153734103776515, 3891146.722958904691041 ], [ 4945221.082405521534383, 3891135.410839901771396 ], [ 4945232.920167347416282, 3891106.655282620806247 ], [ 4945291.67147468868643, 3891130.376076201442629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944638.369417742826045, 3891666.888742653187364 ], [ 4944639.544603335671127, 3891640.672539364080876 ], [ 4944665.759946087375283, 3891642.15187124768272 ], [ 4944667.223888630978763, 3891615.207664762623608 ], [ 4944702.657973455265164, 3891617.059191801585257 ], [ 4944702.070984365418553, 3891629.439036129973829 ], [ 4944712.730172343552113, 3891629.812464342918247 ], [ 4944711.849046835675836, 3891649.110486381221563 ], [ 4944698.597333180718124, 3891648.370669138617814 ], [ 4944697.714312987402081, 3891669.853459015488625 ], [ 4944638.369417742826045, 3891666.888742653187364 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944582.635633757337928, 3892150.402548587881029 ], [ 4944639.959992596879601, 3892156.64253988629207 ], [ 4944636.765039036981761, 3892186.498276413418353 ], [ 4944623.513904820196331, 3892185.394367984496057 ], [ 4944620.609910140745342, 3892211.97320560272783 ], [ 4944586.906715448945761, 3892208.302646547555923 ], [ 4944590.391596678644419, 3892176.262386001646519 ], [ 4944580.021344560198486, 3892175.161000233609229 ], [ 4944582.635633757337928, 3892150.402548587881029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944562.991172661073506, 3891216.396829568780959 ], [ 4944560.919860364869237, 3891279.389185781124979 ], [ 4944534.703527466394007, 3891278.638211992103606 ], [ 4944534.708888522349298, 3891272.448039737530053 ], [ 4944518.575998569838703, 3891271.705816430971026 ], [ 4944520.353755210526288, 3891214.903379912953824 ], [ 4944562.991172661073506, 3891216.396829568780959 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943888.946979795582592, 3893482.51930626295507 ], [ 4943891.806568150408566, 3893507.646582101937383 ], [ 4943922.633316727355123, 3893504.395405922550708 ], [ 4943926.920957145281136, 3893544.089031257666647 ], [ 4943894.941956759430468, 3893547.339231949299574 ], [ 4943895.798511110246181, 3893556.443166673649102 ], [ 4943869.86939098034054, 3893559.334365577436984 ], [ 4943861.865183403715491, 3893485.773670674767345 ], [ 4943888.946979795582592, 3893482.51930626295507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942715.287257730960846, 3891369.976702279876918 ], [ 4942701.111502198502421, 3891443.883384467102587 ], [ 4942672.306180362589657, 3891438.398496131878346 ], [ 4942675.199335629120469, 3891423.107422802597284 ], [ 4942662.236712367273867, 3891420.912327627185732 ], [ 4942665.707798337563872, 3891403.43694536248222 ], [ 4942656.778235626406968, 3891401.609193730168045 ], [ 4942661.985154645517468, 3891375.03199198981747 ], [ 4942690.502449075691402, 3891380.516639310866594 ], [ 4942693.395330448634923, 3891365.589696276467294 ], [ 4942715.287257730960846, 3891369.976702279876918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993060.578376797959208, 3908371.197271800599992 ], [ 4993030.046703374013305, 3908375.849416818004102 ], [ 4993025.237741881981492, 3908343.792872804217041 ], [ 4993055.769450851716101, 3908339.140722420066595 ], [ 4993060.578376797959208, 3908371.197271800599992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990819.963055228814483, 3906608.362288551405072 ], [ 4990793.644180545583367, 3906653.446584256365895 ], [ 4990782.719658416695893, 3906646.863928323145956 ], [ 4990765.366382511332631, 3906676.677890731953084 ], [ 4990736.616346797905862, 3906659.853434733115137 ], [ 4990779.999555543065071, 3906585.318505091592669 ], [ 4990819.963055228814483, 3906608.362288551405072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993597.151813175529242, 3908944.689661249518394 ], [ 4993633.210112921893597, 3908918.93333044461906 ], [ 4993630.627756018191576, 3908915.64917602436617 ], [ 4993666.68612679746002, 3908889.89289061492309 ], [ 4993686.190365952439606, 3908917.255446841940284 ], [ 4993644.939835625700653, 3908946.639046717435122 ], [ 4993644.080032548867166, 3908945.180197719484568 ], [ 4993613.213925109244883, 3908967.309166971594095 ], [ 4993597.151813175529242, 3908944.689661249518394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989042.612345753237605, 3907832.402509433217347 ], [ 4989042.013535673730075, 3907841.504315303638577 ], [ 4989016.679240328259766, 3907840.348009958397597 ], [ 4989018.808568855747581, 3907795.200930241495371 ], [ 4989072.356457386165857, 3907797.520836217794567 ], [ 4989070.825858657248318, 3907833.566106504295021 ], [ 4989042.612345753237605, 3907832.402509433217347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988506.39735206682235, 3904997.37716075964272 ], [ 4988538.067458542063832, 3904999.277104544453323 ], [ 4988536.562053952366114, 3905025.49084038939327 ], [ 4988504.891978277824819, 3905023.590898348018527 ], [ 4988506.39735206682235, 3904997.37716075964272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992360.807472649030387, 3913097.972967689856887 ], [ 4992397.075531802140176, 3913099.161398134659976 ], [ 4992394.574924354441464, 3913173.80224292119965 ], [ 4992358.306965884752572, 3913172.613815793767571 ], [ 4992360.807472649030387, 3913097.972967689856887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988412.435234821401536, 3905378.752545739524066 ], [ 4988411.204268117435277, 3905410.42896180646494 ], [ 4988354.196202366612852, 3905408.101747652050108 ], [ 4988355.138245197013021, 3905376.788739771582186 ], [ 4988412.435234821401536, 3905378.752545739524066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988351.697731846012175, 3901449.620212339796126 ], [ 4988343.857473441399634, 3901475.453955505043268 ], [ 4988299.827822752296925, 3901462.235349158756435 ], [ 4988307.956032254733145, 3901436.402311919257045 ], [ 4988351.697731846012175, 3901449.620212339796126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988296.335710644721985, 3907362.98373192595318 ], [ 4988247.069468572735786, 3907375.241352347191423 ], [ 4988241.368142408318818, 3907352.286787562072277 ], [ 4988247.994078355841339, 3907350.846777966246009 ], [ 4988244.001241371966898, 3907335.543256117496639 ], [ 4988286.929536102339625, 3907324.726347110699862 ], [ 4988296.335710644721985, 3907362.98373192595318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987877.290634212084115, 3907987.885309026110917 ], [ 4987883.843248931691051, 3908015.939773636870086 ], [ 4987817.296936131082475, 3908030.704264196567237 ], [ 4987811.31558404956013, 3908004.471894190181047 ], [ 4987833.210082120262086, 3907999.428283859044313 ], [ 4987830.078158902935684, 3907985.219349117483944 ], [ 4987847.651175480335951, 3907981.257440517190844 ], [ 4987850.498780787922442, 3907994.009141901042312 ], [ 4987877.290634212084115, 3907987.885309026110917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987781.543232153169811, 3908632.891256414353848 ], [ 4987788.36836857907474, 3908667.136641706805676 ], [ 4987783.183244287967682, 3908668.216199929825962 ], [ 4987786.027198857627809, 3908682.424422226846218 ], [ 4987767.59181507024914, 3908686.020103929098696 ], [ 4987764.746048285625875, 3908672.540144715923816 ], [ 4987755.24044172372669, 3908674.337278636172414 ], [ 4987748.128253701142967, 3908639.72705846093595 ], [ 4987781.543232153169811, 3908632.891256414353848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991512.51288431044668, 3912198.879209967330098 ], [ 4991504.951019445434213, 3912228.354266999289393 ], [ 4991459.784298980608582, 3912216.948042270261794 ], [ 4991467.346117406152189, 3912187.472972730640322 ], [ 4991512.51288431044668, 3912198.879209967330098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987433.585451534949243, 3905657.433839776087552 ], [ 4987480.563472664915025, 3905640.071244382299483 ], [ 4987494.006205869838595, 3905676.881725257262588 ], [ 4987447.316184270195663, 3905694.245006890036166 ], [ 4987433.585451534949243, 3905657.433839776087552 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987050.462152305059135, 3909247.931951222009957 ], [ 4987093.949337099678814, 3909242.576494549401104 ], [ 4987094.512655967846513, 3909247.675735950469971 ], [ 4987114.672321599908173, 3909245.17621797695756 ], [ 4987121.45083319209516, 3909298.720376253128052 ], [ 4987058.092020965181291, 3909306.576039385981858 ], [ 4987050.462152305059135, 3909247.931951222009957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987040.102504516020417, 3903483.328575588297099 ], [ 4987011.233556901104748, 3903512.752578354906291 ], [ 4986948.317355366423726, 3903451.788710611406714 ], [ 4986976.898330708034337, 3903422.363937044981867 ], [ 4987040.102504516020417, 3903483.328575588297099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986799.458384012803435, 3904623.565292949788272 ], [ 4986888.138897088356316, 3904627.787206550594419 ], [ 4986884.814857293851674, 3904691.86629944993183 ], [ 4986796.134555237367749, 3904687.644396670162678 ], [ 4986799.458384012803435, 3904623.565292949788272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986775.172015405260026, 3909504.701152941677719 ], [ 4986780.229048254899681, 3909556.056236079428345 ], [ 4986700.171708080917597, 3909564.236153054982424 ], [ 4986694.826620748266578, 3909512.88038343237713 ], [ 4986775.172015405260026, 3909504.701152941677719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986551.414988435804844, 3905380.719980956055224 ], [ 4986550.766534236259758, 3905410.577232332434505 ], [ 4986535.218276754952967, 3905410.175321021582931 ], [ 4986534.247393056750298, 3905454.232939884532243 ], [ 4986489.618320755660534, 3905453.032155089080334 ], [ 4986490.272894576191902, 3905420.625992188695818 ], [ 4986476.739387037232518, 3905420.593138318043202 ], [ 4986477.682777126319706, 3905387.823544802609831 ], [ 4986490.351575152948499, 3905388.21843174751848 ], [ 4986490.373676438815892, 3905379.11518455343321 ], [ 4986551.414988435804844, 3905380.719980956055224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986450.883017824031413, 3905870.961785591207445 ], [ 4986402.507854796946049, 3905871.208582760300487 ], [ 4986402.578484973870218, 3905842.07818305445835 ], [ 4986413.809123651124537, 3905841.741283303592354 ], [ 4986413.372756141237915, 3905784.207348953001201 ], [ 4986450.518295989371836, 3905783.93332108668983 ], [ 4986450.883017824031413, 3905870.961785591207445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986303.203548778779805, 3903120.316140190698206 ], [ 4986308.703217971138656, 3903108.677244884893298 ], [ 4986301.799828927963972, 3903105.383349774871022 ], [ 4986313.376884084194899, 3903081.378695625346154 ], [ 4986335.237184426747262, 3903091.991443520411849 ], [ 4986341.025727239437401, 3903079.989123078528792 ], [ 4986386.473239591345191, 3903101.582998883910477 ], [ 4986377.500225983560085, 3903120.496091195847839 ], [ 4986388.142819504253566, 3903125.61972641851753 ], [ 4986379.170695133507252, 3903144.168689052108675 ], [ 4986367.665075340308249, 3903138.678834574762732 ], [ 4986363.032829558476806, 3903148.863293604459614 ], [ 4986303.203548778779805, 3903120.316140190698206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986235.743834452703595, 3914697.391854190733284 ], [ 4986244.608079699799418, 3914721.810287576634437 ], [ 4986215.509963778778911, 3914732.299789418000728 ], [ 4986206.934423583559692, 3914707.517929511144757 ], [ 4986235.743834452703595, 3914697.391854190733284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985926.919644353911281, 3896856.357684011105448 ], [ 4985903.468519317917526, 3896906.187098815105855 ], [ 4985875.560329078696668, 3896893.011301666032523 ], [ 4985899.011413701809943, 3896843.181862905621529 ], [ 4985926.919644353911281, 3896856.357684011105448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985564.630546854808927, 3905373.606380688492209 ], [ 4985591.472436394542456, 3905347.453133323695511 ], [ 4985612.441165215335786, 3905368.987136879470199 ], [ 4985617.63730398286134, 3905363.537603005766869 ], [ 4985635.446430623531342, 3905381.786868527997285 ], [ 4985583.783544573001564, 3905431.91334971645847 ], [ 4985550.175666635856032, 3905397.604500618297607 ], [ 4985569.801399279385805, 3905378.716605114750564 ], [ 4985564.630546854808927, 3905373.606380688492209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985477.536557658575475, 3906031.748859233688563 ], [ 4985424.241491004824638, 3906042.545489908661693 ], [ 4985419.68922866974026, 3906019.594293348956853 ], [ 4985409.894902795553207, 3906021.391566414851695 ], [ 4985403.918568943627179, 3905991.882594210095704 ], [ 4985395.851879013702273, 3905993.683997118845582 ], [ 4985391.868512621149421, 3905973.647221133112907 ], [ 4985446.027526112273335, 3905962.852590406313539 ], [ 4985454.565706699155271, 3906004.748185272794217 ], [ 4985471.562040946446359, 3906001.511611678171903 ], [ 4985477.536557658575475, 3906031.748859233688563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990519.519379924051464, 3900624.53686077799648 ], [ 4990560.318426727317274, 3900662.147550048772246 ], [ 4990539.524370972067118, 3900684.670063295401633 ], [ 4990498.725329509004951, 3900647.059405080974102 ], [ 4990519.519379924051464, 3900624.53686077799648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990271.131313513033092, 3909084.141757901757956 ], [ 4990284.444302167743444, 3909057.230119788087904 ], [ 4990276.968984571285546, 3909053.205450993962586 ], [ 4990286.518602279946208, 3909034.295071666594595 ], [ 4990334.826329533942044, 3909058.087884082924575 ], [ 4990311.674822773784399, 3909104.273255282081664 ], [ 4990271.131313513033092, 3909084.141757901757956 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985213.877461985684931, 3907201.076930744573474 ], [ 4985202.416679134592414, 3907177.381044959183782 ], [ 4985225.476939732208848, 3907166.511968210805207 ], [ 4985234.356759984977543, 3907185.832128857728094 ], [ 4985243.580864280462265, 3907181.484506726730615 ], [ 4985259.909491905011237, 3907216.480110546573997 ], [ 4985218.689882497303188, 3907235.680965529289097 ], [ 4985204.653369234874845, 3907205.424563135020435 ], [ 4985213.877461985684931, 3907201.076930744573474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985181.158798818476498, 3909213.924215338658541 ], [ 4985195.448385813273489, 3909258.382429325953126 ], [ 4985165.483656051568687, 3909267.778584389016032 ], [ 4985151.194024584256113, 3909223.320386074017733 ], [ 4985181.158798818476498, 3909213.924215338658541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985100.257409705780447, 3906184.513498220127076 ], [ 4985106.519375492818654, 3906215.115481001790613 ], [ 4985039.108929031528533, 3906228.79239255329594 ], [ 4985032.846889777109027, 3906198.190425225533545 ], [ 4985100.257409705780447, 3906184.513498220127076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985093.366510727442801, 3901448.96511864149943 ], [ 4985131.088811263442039, 3901450.87541045807302 ], [ 4985129.874538090080023, 3901477.089965165127069 ], [ 4985091.864285031333566, 3901475.178990915883332 ], [ 4985093.366510727442801, 3901448.96511864149943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985054.79554910492152, 3901197.987199288327247 ], [ 4985056.024456463754177, 3901165.582452518399805 ], [ 4985123.408658563159406, 3901168.291430990677327 ], [ 4985122.15976644307375, 3901209.071141960565001 ], [ 4985105.169097781181335, 3901208.666636903770268 ], [ 4985105.477853449061513, 3901199.928224903065711 ], [ 4985054.79554910492152, 3901197.987199288327247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984941.508818684145808, 3905009.082682845648378 ], [ 4984945.706717427819967, 3904938.81517744762823 ], [ 4984976.513277853839099, 3904940.70887609384954 ], [ 4984975.31483998708427, 3904960.369156078435481 ], [ 4985013.031354800797999, 3904962.643415912985802 ], [ 4985010.632701142691076, 3905002.692233158741146 ], [ 4984988.175942973233759, 3905001.182430747430772 ], [ 4984987.574129779823124, 3905012.104960381519049 ], [ 4984941.508818684145808, 3905009.082682845648378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984660.228231238201261, 3916697.821845347993076 ], [ 4984693.072232000529766, 3916684.426423005759716 ], [ 4984711.104630646295846, 3916727.072763656266034 ], [ 4984678.2598130190745, 3916740.832296834327281 ], [ 4984660.228231238201261, 3916697.821845347993076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988549.072746308520436, 3907043.543084144126624 ], [ 4988550.696352486498654, 3907085.058253153692931 ], [ 4988514.989493719302118, 3907086.425372621510178 ], [ 4988513.653762033209205, 3907044.910926497075707 ], [ 4988549.072746308520436, 3907043.543084144126624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988350.206670218147337, 3908389.244024090468884 ], [ 4988359.595094219781458, 3908434.419935817364603 ], [ 4988331.364910478703678, 3908440.175564827863127 ], [ 4988321.687617028132081, 3908395.36307458858937 ], [ 4988350.206670218147337, 3908389.244024090468884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988238.870270018465817, 3906621.830865249503404 ], [ 4988191.624585015699267, 3906631.544695807620883 ], [ 4988185.363509150221944, 3906602.034376909025013 ], [ 4988232.89717810600996, 3906592.321253284346312 ], [ 4988238.870270018465817, 3906621.830865249503404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988231.106809839606285, 3907079.525962749030441 ], [ 4988237.896374200470746, 3907127.97250784933567 ], [ 4988190.94767152518034, 3907134.409888495691121 ], [ 4988184.157117174006999, 3907086.327485273592174 ], [ 4988231.106809839606285, 3907079.525962749030441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989621.535481322556734, 3908320.350743717513978 ], [ 4989582.3798454022035, 3908319.887002160772681 ], [ 4989582.713138085789979, 3908302.045342952013016 ], [ 4989573.787739212624729, 3908302.022645351011306 ], [ 4989574.427461514249444, 3908276.89910974772647 ], [ 4989622.219724309630692, 3908277.748948299791664 ], [ 4989621.535481322556734, 3908320.350743717513978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989405.163639052771032, 3908037.23400556948036 ], [ 4989369.738532648421824, 3908041.513763426803052 ], [ 4989370.864359227009118, 3908051.712334036361426 ], [ 4989355.024211778305471, 3908053.492842925246805 ], [ 4989349.381197211332619, 3908007.961949945427477 ], [ 4989374.437557187862694, 3908005.112404958344996 ], [ 4989373.312653129920363, 3907994.549704124219716 ], [ 4989399.521629429422319, 3907991.338972147088498 ], [ 4989405.163639052771032, 3908037.23400556948036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984514.260076062753797, 3906078.621525659225881 ], [ 4984521.651342744939029, 3906119.057595010381192 ], [ 4984476.713076899759471, 3906127.326857916545123 ], [ 4984469.034661810845137, 3906086.525993187446147 ], [ 4984514.260076062753797, 3906078.621525659225881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984292.221003698185086, 3916522.171030106488615 ], [ 4984308.277823406271636, 3916548.42640470713377 ], [ 4984274.265451668761671, 3916569.102245059795678 ], [ 4984258.209465387277305, 3916542.482757949735969 ], [ 4984292.221003698185086, 3916522.171030106488615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984224.919088651426136, 3916009.676002692431211 ], [ 4984255.610508891753852, 3916055.264773251954466 ], [ 4984228.79935119766742, 3916073.408617525361478 ], [ 4984197.820926427841187, 3916027.455070163588971 ], [ 4984224.919088651426136, 3916009.676002692431211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988181.253023749217391, 3906749.497751077637076 ], [ 4988185.804615944623947, 3906771.721165257040411 ], [ 4988175.145672200247645, 3906773.879409607034177 ], [ 4988182.541213321499527, 3906810.311070937197655 ], [ 4988149.989476504735649, 3906816.420256807934493 ], [ 4988132.644960815086961, 3906728.257038669195026 ], [ 4988163.757135225459933, 3906722.144246969372034 ], [ 4988169.442340742796659, 3906751.653128838632256 ], [ 4988181.253023749217391, 3906749.497751077637076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988158.892827242612839, 3904859.59603397641331 ], [ 4988131.811652892269194, 3904864.990598044823855 ], [ 4988125.26848008017987, 3904832.930700399912894 ], [ 4988137.080908419564366, 3904830.411176081746817 ], [ 4988133.100314654409885, 3904810.009878465905786 ], [ 4988111.228531663306057, 3904804.857602692674845 ], [ 4988118.506200914271176, 3904773.196231219917536 ], [ 4988118.825868207029998, 3904760.45240841852501 ], [ 4988122.901626223698258, 3904742.620085395872593 ], [ 4988174.416414791718125, 3904754.400553727988154 ], [ 4988174.700741490349174, 3904755.857789637986571 ], [ 4988160.730251763947308, 3904815.5406409567222 ], [ 4988150.358488311059773, 3904817.699609524104744 ], [ 4988158.892827242612839, 3904859.59603397641331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988155.155297852121294, 3905319.849605727009475 ], [ 4988152.691249340772629, 3905384.294849323108792 ], [ 4988111.518401132896543, 3905382.735844146460295 ], [ 4988113.982351020909846, 3905318.290596824605018 ], [ 4988155.155297852121294, 3905319.849605727009475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988044.685339702293277, 3908637.549597275909036 ], [ 4988048.372075085528195, 3908660.134997396264225 ], [ 4988030.226362738758326, 3908663.002953497692943 ], [ 4988026.827524986118078, 3908640.418271383270621 ], [ 4988044.685339702293277, 3908637.549597275909036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987987.974107439629734, 3908750.289849512279034 ], [ 4988016.197557332925498, 3908747.0827727150172 ], [ 4988019.29943014215678, 3908773.308045457582921 ], [ 4987991.07600739505142, 3908776.51511904457584 ], [ 4987987.974107439629734, 3908750.289849512279034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984102.636955548077822, 3909345.016306941397488 ], [ 4984109.199134665541351, 3909370.520958437118679 ], [ 4984083.560293201357126, 3909377.015377883333713 ], [ 4984076.998091380111873, 3909351.510732549242675 ], [ 4984102.636955548077822, 3909345.016306941397488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983864.1435039434582, 3916554.305974216666073 ], [ 4983852.057288018986583, 3916553.185399477370083 ], [ 4983850.879669352434576, 3916564.470824202522635 ], [ 4983819.22712036035955, 3916560.755728788673878 ], [ 4983826.872666207142174, 3916491.223852854222059 ], [ 4983878.092526490800083, 3916497.169379789847881 ], [ 4983875.15226879902184, 3916523.744341700337827 ], [ 4983867.670438745990396, 3916522.998629956040531 ], [ 4983864.1435039434582, 3916554.305974216666073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983861.557554646395147, 3906917.509867157787085 ], [ 4983851.46809534355998, 3906922.584211193956435 ], [ 4983838.573122153989971, 3906895.972514630760998 ], [ 4983881.235312092117965, 3906875.316380916163325 ], [ 4983894.991499576717615, 3906903.022502379957587 ], [ 4983904.792194257490337, 3906898.311633669771254 ], [ 4983915.682624624110758, 3906920.184967345092446 ], [ 4983903.287162158638239, 3906926.346310962922871 ], [ 4983914.175883890129626, 3906948.947905051521957 ], [ 4983923.688634597696364, 3906944.236371601931751 ], [ 4983934.576482402160764, 3906967.202104539610445 ], [ 4983923.911167179234326, 3906972.275078129488975 ], [ 4983934.799852789379656, 3906994.876681208610535 ], [ 4983943.160020719282329, 3906990.526598051190376 ], [ 4983953.761602519080043, 3907012.763406941667199 ], [ 4983945.978998740203679, 3907016.386569834314287 ], [ 4983967.184669188223779, 3907059.767803988885134 ], [ 4983928.270031367428601, 3907078.611882873810828 ], [ 4983917.094294323585927, 3907055.645479402504861 ], [ 4983909.022929372265935, 3907059.632111929357052 ], [ 4983895.840998779982328, 3907032.655583875719458 ], [ 4983907.658852866850793, 3907027.221154255326837 ], [ 4983899.061711790971458, 3907009.722756914328784 ], [ 4983889.837767304852605, 3907014.070840151514858 ], [ 4983876.081631901673973, 3906986.364719436503947 ], [ 4983887.900351124815643, 3906980.566150947939605 ], [ 4983879.590263840742409, 3906963.432561873923987 ], [ 4983870.366306669078767, 3906967.7806516722776 ], [ 4983857.184291817247868, 3906940.804144100751728 ], [ 4983869.867667755112052, 3906934.643450163770467 ], [ 4983861.557554646395147, 3906917.509867157787085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988552.390714921057224, 3904799.040377198252827 ], [ 4988551.427450250834227, 3904838.728350105229765 ], [ 4988489.232291331514716, 3904837.480258631519973 ], [ 4988490.195464172400534, 3904797.792283522430807 ], [ 4988552.390714921057224, 3904799.040377198252827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983641.309458838775754, 3917197.21322214230895 ], [ 4983632.630013162270188, 3917216.492198323830962 ], [ 4983610.777630580589175, 3917206.973953997250646 ], [ 4983635.949119977653027, 3917150.5915388436988 ], [ 4983668.152101447805762, 3917164.867604515515268 ], [ 4983651.66000921279192, 3917201.971017109695822 ], [ 4983641.309458838775754, 3917197.21322214230895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987360.952377875335515, 3912121.705540088471025 ], [ 4987360.010794715024531, 3912153.382845046930015 ], [ 4987282.001192446798086, 3912151.370322063099593 ], [ 4987282.655703503638506, 3912119.328175429720432 ], [ 4987360.952377875335515, 3912121.705540088471025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983229.31259083468467, 3914630.933059893548489 ], [ 4983203.674778780899942, 3914639.249001060146838 ], [ 4983190.526121476665139, 3914599.16393648320809 ], [ 4983216.163967638276517, 3914590.847982970997691 ], [ 4983229.31259083468467, 3914630.933059893548489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983069.904196795076132, 3907223.004521005321294 ], [ 4983029.399254103191197, 3907307.754197820089757 ], [ 4982952.892684431746602, 3907271.893431455828249 ], [ 4982968.226424089632928, 3907239.885001588147134 ], [ 4982768.331081287935376, 3907145.844592297915369 ], [ 4982793.501790738664567, 3907093.10304767312482 ], [ 4983069.904196795076132, 3907223.004521005321294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986867.081936706788838, 3899806.636762354057282 ], [ 4986815.188246151432395, 3899827.993839550763369 ], [ 4986791.995543839409947, 3899772.225258219055831 ], [ 4986826.01507620792836, 3899758.107137044426054 ], [ 4986827.447118570096791, 3899761.387808267958462 ], [ 4986845.321363885886967, 3899754.148809112608433 ], [ 4986867.081936706788838, 3899806.636762354057282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986626.695008835755289, 3908406.114809156395495 ], [ 4986571.966375756077468, 3908416.177415573969483 ], [ 4986563.725717448629439, 3908371.36905900714919 ], [ 4986586.480770038440824, 3908367.418922919314355 ], [ 4986588.755757655017078, 3908379.076701731421053 ], [ 4986620.440611612051725, 3908373.327647634316236 ], [ 4986626.695008835755289, 3908406.114809156395495 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987977.151850987225771, 3907775.115524719934911 ], [ 4988049.453701813705266, 3907761.822269252035767 ], [ 4988055.421296614222229, 3907793.5166439358145 ], [ 4987983.118623642250896, 3907807.174013983923942 ], [ 4987977.151850987225771, 3907775.115524719934911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986490.163602114655077, 3909853.211126811336726 ], [ 4986453.874129434116185, 3909858.949160274583846 ], [ 4986452.458491937257349, 3909849.114132690243423 ], [ 4986440.362294697202742, 3909850.905445071402937 ], [ 4986437.242224698886275, 3909831.598823935259134 ], [ 4986445.019051004201174, 3909830.161161622498184 ], [ 4986441.0494185956195, 3909805.026350357569754 ], [ 4986493.755453746765852, 3909796.779228908009827 ], [ 4986498.294647586531937, 3909824.464362368918955 ], [ 4986485.909652250818908, 3909826.619085922837257 ], [ 4986490.163602114655077, 3909853.211126811336726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986473.831476577557623, 3910413.936450074892491 ], [ 4986452.318116448819637, 3910381.476379693020135 ], [ 4986477.40554385446012, 3910364.787150439806283 ], [ 4986464.210148953832686, 3910345.09192752186209 ], [ 4986489.297617632895708, 3910328.402709767222404 ], [ 4986523.147070808336139, 3910378.735301291570067 ], [ 4986510.747292316518724, 3910387.080241330433637 ], [ 4986517.344964776188135, 3910396.927863633725792 ], [ 4986492.834213571622968, 3910413.254323138389736 ], [ 4986487.384573769755661, 3910404.866027033422142 ], [ 4986473.831476577557623, 3910413.936450074892491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986460.568717756308615, 3909591.69177972106263 ], [ 4986447.032009282149374, 3909593.84372581448406 ], [ 4986450.720835529267788, 3909616.064789277967066 ], [ 4986402.620890337042511, 3909624.323164234403521 ], [ 4986394.674412810243666, 3909576.96660830359906 ], [ 4986456.310277289710939, 3909566.920401978772134 ], [ 4986460.568717756308615, 3909591.69177972106263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986362.015467750839889, 3909747.665814103092998 ], [ 4986365.70257752854377, 3909770.615129784680903 ], [ 4986317.892599271610379, 3909778.146093232557178 ], [ 4986313.922840057872236, 3909753.011301566846669 ], [ 4986324.579569953493774, 3909751.216445758007467 ], [ 4986321.175031705759466, 3909730.452618491835892 ], [ 4986326.359891779720783, 3909729.372777408920228 ], [ 4986324.661591365933418, 3909717.352274819277227 ], [ 4986356.34216418210417, 3909712.695297044701874 ], [ 4986358.894446713849902, 3909728.723334177397192 ], [ 4986369.262405898422003, 3909727.291929305996746 ], [ 4986372.384302402846515, 3909745.870279555674642 ], [ 4986362.015467750839889, 3909747.665814103092998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987591.947063949890435, 3906594.008325168397278 ], [ 4987530.013325198553503, 3906605.143587662372738 ], [ 4987522.058035981841385, 3906561.792217975482345 ], [ 4987533.004945430904627, 3906559.634425109252334 ], [ 4987529.31119280308485, 3906539.598035705741495 ], [ 4987580.299054191447794, 3906530.256411040667444 ], [ 4987591.947063949890435, 3906594.008325168397278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987448.219753063283861, 3896207.175840420648456 ], [ 4987440.100676921196282, 3896229.003650671802461 ], [ 4987396.644340866245329, 3896213.239088596310467 ], [ 4987404.763386391103268, 3896191.411265418864787 ], [ 4987448.219753063283861, 3896207.175840420648456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987198.352843580767512, 3905180.206624776124954 ], [ 4987160.042157237417996, 3905185.574611131567508 ], [ 4987156.082309586927295, 3905156.434338229708374 ], [ 4987166.164125377312303, 3905155.002538752742112 ], [ 4987159.09220071695745, 3905103.278448518365622 ], [ 4987196.25030879303813, 3905098.271764243487269 ], [ 4987197.946734266355634, 3905111.020547304768115 ], [ 4987206.299973802641034, 3905109.948652748949826 ], [ 4987212.807526155374944, 3905156.93765435134992 ], [ 4987195.237227114848793, 3905159.079322136938572 ], [ 4987198.352843580767512, 3905180.206624776124954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982399.326544087380171, 3916198.813334161415696 ], [ 4982434.460231294855475, 3916190.88238361896947 ], [ 4982443.581249170936644, 3916230.229673155583441 ], [ 4982435.805661217309535, 3916232.03263204311952 ], [ 4982440.934361550025642, 3916254.984780839178711 ], [ 4982413.576333157718182, 3916261.112755637615919 ], [ 4982399.326544087380171, 3916198.813334161415696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986158.623282220214605, 3909921.957521830219775 ], [ 4986150.681742976419628, 3909872.416243832092732 ], [ 4986176.02655762154609, 3909868.472015589475632 ], [ 4986177.444935101084411, 3909877.214636009186506 ], [ 4986205.381722850725055, 3909872.912566314451396 ], [ 4986211.618659801781178, 3909912.982279996853322 ], [ 4986200.674983133561909, 3909914.412353892344981 ], [ 4986202.376847315579653, 3909924.976326441857964 ], [ 4986178.472455282695591, 3909928.559877760242671 ], [ 4986177.055840843357146, 3909919.088995181024075 ], [ 4986158.623282220214605, 3909921.957521830219775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986122.075542201288044, 3910869.343706652056426 ], [ 4986137.762544728815556, 3910930.19184485077858 ], [ 4986078.997381662018597, 3910944.979442258831114 ], [ 4986076.147498498670757, 3910932.95616756984964 ], [ 4986062.607982765883207, 3910936.564833778887987 ], [ 4986052.909382766112685, 3910899.399845205247402 ], [ 4986097.848076566122472, 3910887.856013316661119 ], [ 4986094.997316782362759, 3910876.196868188213557 ], [ 4986122.075542201288044, 3910869.343706652056426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986064.131196781992912, 3910305.161541108042002 ], [ 4986076.673797640018165, 3910356.898707123007625 ], [ 4986054.780673320405185, 3910362.307887269183993 ], [ 4986050.220038177445531, 3910343.361963854636997 ], [ 4986020.837270771153271, 3910350.573773982003331 ], [ 4986012.85610958468169, 3910317.418418980203569 ], [ 4986064.131196781992912, 3910305.161541108042002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986103.033567280508578, 3894179.335119201801717 ], [ 4986146.269172607921064, 3894168.879698936827481 ], [ 4986157.394789745099843, 3894214.058627001475543 ], [ 4986114.158374039456248, 3894224.878157131839544 ], [ 4986103.033567280508578, 3894179.335119201801717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986021.178466900251806, 3910925.540922017302364 ], [ 4985979.696278214454651, 3910936.364943328779191 ], [ 4985966.2901014033705, 3910884.625723444391042 ], [ 4986007.484475891105831, 3910873.800987872295082 ], [ 4986021.178466900251806, 3910925.540922017302364 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985968.39832509867847, 3909770.383425643201917 ], [ 4985927.225944080390036, 3909771.376679540146142 ], [ 4985926.959957785904408, 3909762.272714209277183 ], [ 4985914.291461799293756, 3909762.606353685259819 ], [ 4985913.520656624808908, 3909724.006401023361832 ], [ 4985967.361624868586659, 3909722.679505750536919 ], [ 4985968.39832509867847, 3909770.383425643201917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985867.819064223207533, 3904544.477095937822014 ], [ 4985871.523968772031367, 3904560.507805513683707 ], [ 4985877.285719630308449, 3904559.429266171529889 ], [ 4985888.969300984404981, 3904610.435824431013316 ], [ 4985844.023711920715868, 3904620.523441627621651 ], [ 4985837.472499050199986, 3904590.648884223308414 ], [ 4985845.539639632217586, 3904588.847615446895361 ], [ 4985836.991105719469488, 3904551.321489308029413 ], [ 4985867.819064223207533, 3904544.477095937822014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985832.535570261999965, 3905925.90900865290314 ], [ 4985837.788536288775504, 3905896.791063743643463 ], [ 4985854.19421907979995, 3905899.743558605667204 ], [ 4985860.901808436959982, 3905864.43886980554089 ], [ 4985904.937691979110241, 3905872.555695339571685 ], [ 4985901.435077713802457, 3905892.210402740631253 ], [ 4985912.659554969519377, 3905894.422203678637743 ], [ 4985909.159566410817206, 3905912.984520264901221 ], [ 4985898.510104014538229, 3905911.138236289843917 ], [ 4985893.840841569006443, 3905936.980384689290076 ], [ 4985832.535570261999965, 3905925.90900865290314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986994.693420350551605, 3901327.559612914454192 ], [ 4986995.743836526758969, 3901369.073134549893439 ], [ 4987007.26434278767556, 3901368.737188336439431 ], [ 4987007.773503943346441, 3901396.048271563369781 ], [ 4986957.371676279231906, 3901397.381523423828185 ], [ 4986956.584266140125692, 3901366.064318192657083 ], [ 4986944.487778592854738, 3901366.398878211621195 ], [ 4986943.716373403556645, 3901328.527352355886251 ], [ 4986994.693420350551605, 3901327.559612914454192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985735.566899140365422, 3905297.548322788439691 ], [ 4985675.849857790395617, 3905344.013978422619402 ], [ 4985652.884723357856274, 3905314.464236979838461 ], [ 4985712.313841694034636, 3905267.997840404510498 ], [ 4985735.566899140365422, 3905297.548322788439691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986628.150613491423428, 3902955.424855964258313 ], [ 4986599.641248342581093, 3902955.355514812283218 ], [ 4986599.705000805668533, 3902929.138202103320509 ], [ 4986588.474027800373733, 3902929.110894168261439 ], [ 4986588.904535186477005, 3902870.486771530471742 ], [ 4986635.556370897218585, 3902870.600235984195024 ], [ 4986635.451830604113638, 3902913.567497016396374 ], [ 4986628.54045859631151, 3902913.550682388711721 ], [ 4986628.150613491423428, 3902955.424855964258313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981619.929448046721518, 3905540.694527611602098 ], [ 4981677.595555228181183, 3905506.595742787700146 ], [ 4981805.819190599024296, 3905723.542896400671452 ], [ 4981748.154204201884568, 3905757.277280470822006 ], [ 4981619.929448046721518, 3905540.694527611602098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985258.742136929184198, 3909761.036574674304575 ], [ 4985293.85557702742517, 3909765.48984767543152 ], [ 4985288.285659826360643, 3909807.351864471100271 ], [ 4985253.461041011847556, 3909802.535153551027179 ], [ 4985258.742136929184198, 3909761.036574674304575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985237.746616307646036, 3903948.342274636030197 ], [ 4985267.948006901890039, 3903962.97947137337178 ], [ 4985259.265763085335493, 3903981.165373740252107 ], [ 4985286.591821142472327, 3903993.975084773264825 ], [ 4985275.30577046610415, 3904017.252621416933835 ], [ 4985207.998057378455997, 3903985.41288785263896 ], [ 4985219.865188850089908, 3903959.95191666437313 ], [ 4985229.932610548101366, 3903964.709595253225416 ], [ 4985237.746616307646036, 3903948.342274636030197 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985174.974355787038803, 3900556.673963150475174 ], [ 4985206.388785306364298, 3900547.281295660417527 ], [ 4985221.820269545540214, 3900597.932220845483243 ], [ 4985190.405893704853952, 3900607.32487059943378 ], [ 4985174.974355787038803, 3900556.673963150475174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985102.343491228297353, 3904700.680542807094753 ], [ 4985090.241609003394842, 3904703.928976396098733 ], [ 4985094.521133434027433, 3904720.689208180177957 ], [ 4985044.387664878740907, 3904732.950628310907632 ], [ 4985038.113173982128501, 3904707.446504732128233 ], [ 4985048.196772285737097, 3904705.285651460755616 ], [ 4985042.208504511043429, 3904680.510470556560904 ], [ 4985047.107195689342916, 3904679.065572641324252 ], [ 4985042.829363778233528, 3904661.577089287340641 ], [ 4985074.234631505794823, 3904654.004892674274743 ], [ 4985080.222875786013901, 3904678.780080320313573 ], [ 4985096.069047618657351, 3904675.176406194455922 ], [ 4985102.343491228297353, 3904700.680542807094753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986137.731825916096568, 3908439.522123157978058 ], [ 4986138.869414148852229, 3908445.350993788335472 ], [ 4986108.912236439995468, 3908451.104786017909646 ], [ 4986102.940738757140934, 3908420.139091936871409 ], [ 4986145.2844462050125, 3908411.866278205066919 ], [ 4986150.118311339989305, 3908437.00311040179804 ], [ 4986137.731825916096568, 3908439.522123157978058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986105.076930535957217, 3906461.475626450031996 ], [ 4986075.993656197562814, 3906462.133711177390069 ], [ 4986075.19485485740006, 3906435.185996915679425 ], [ 4986059.645427353680134, 3906435.51262081740424 ], [ 4986058.880859985947609, 3906394.363832436967641 ], [ 4986103.513659279793501, 3906393.379121722653508 ], [ 4986103.772593875415623, 3906405.396110872272402 ], [ 4986112.410686362534761, 3906405.416960742324591 ], [ 4986112.65643232408911, 3906422.895902055781335 ], [ 4986104.305402832105756, 3906423.23987718578428 ], [ 4986105.076930535957217, 3906461.475626450031996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985934.858688784763217, 3906002.622878991533071 ], [ 4985937.999739213846624, 3906013.554405079688877 ], [ 4985972.287475713528693, 3906004.169533357955515 ], [ 4985987.989993304014206, 3906059.919580279383808 ], [ 4985950.533228603191674, 3906070.025065836962312 ], [ 4985948.25074999500066, 3906061.280398085713387 ], [ 4985936.149376555345953, 3906064.528453447390348 ], [ 4985926.727986326441169, 3906031.00561603391543 ], [ 4985914.04984484333545, 3906034.616425235755742 ], [ 4985907.197978879325092, 3906010.203082804102451 ], [ 4985934.858688784763217, 3906002.622878991533071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985887.891172559000552, 3910444.564077890012413 ], [ 4985927.351816831156611, 3910436.648115027695894 ], [ 4985933.324810666963458, 3910466.885546753183007 ], [ 4985940.813533024862409, 3910465.447044795379043 ], [ 4985945.93334951903671, 3910491.312827610876411 ], [ 4985899.84774642623961, 3910500.669353294651955 ], [ 4985896.435968475416303, 3910482.818618591409177 ], [ 4985884.339218007400632, 3910484.97431307984516 ], [ 4985880.356897657737136, 3910464.937409099191427 ], [ 4985891.589977996423841, 3910462.779634795617312 ], [ 4985887.891172559000552, 3910444.564077890012413 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981202.94904694147408, 3905813.58818524191156 ], [ 4981176.144384692423046, 3905825.180617204401642 ], [ 4981163.824554794467986, 3905797.479116036091 ], [ 4981156.619487223215401, 3905800.376107837539166 ], [ 4981142.868837362155318, 3905768.665975455660373 ], [ 4981192.730941968970001, 3905747.293372988235205 ], [ 4981205.908907657489181, 3905777.545724955853075 ], [ 4981190.344545209780335, 3905784.429509087465703 ], [ 4981202.94904694147408, 3905813.58818524191156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984846.503883812576532, 3899767.915598615072668 ], [ 4984881.858983393758535, 3899797.493868876248598 ], [ 4984861.640737085603178, 3899821.842770338524133 ], [ 4984826.285647470504045, 3899792.264526227023453 ], [ 4984846.503883812576532, 3899767.915598615072668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984768.017440016381443, 3907627.874867483973503 ], [ 4984813.820505237206817, 3907618.151605608873069 ], [ 4984824.927177372388542, 3907669.884695572312921 ], [ 4984774.22778747882694, 3907680.324627358000726 ], [ 4984769.101990782655776, 3907656.279765132348984 ], [ 4984773.999264595098794, 3907655.198945230804384 ], [ 4984768.017440016381443, 3907627.874867483973503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985743.629743373021483, 3906137.256260101683438 ], [ 4985782.36950025241822, 3906192.333228343166411 ], [ 4985748.623860553838313, 3906215.920799545943737 ], [ 4985738.293905857950449, 3906200.966586398892105 ], [ 4985724.449262810871005, 3906210.764932979363948 ], [ 4985716.127001039683819, 3906199.09273552056402 ], [ 4985732.855403414927423, 3906187.480643849819899 ], [ 4985712.480761414393783, 3906158.665315322577953 ], [ 4985743.629743373021483, 3906137.256260101683438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980959.879387173801661, 3907388.646715300157666 ], [ 4980991.903118583373725, 3907359.951445152517408 ], [ 4981011.434317010454834, 3907381.4786839610897 ], [ 4980979.410590243525803, 3907410.173931221012026 ], [ 4980959.879387173801661, 3907388.646715300157666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980795.542635198682547, 3902938.955445593688637 ], [ 4980779.641174986027181, 3902967.322459977120161 ], [ 4980727.869653969071805, 3902938.441455211024731 ], [ 4980743.483102547004819, 3902910.073773179668933 ], [ 4980795.542635198682547, 3902938.955445593688637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980800.728165513835847, 3899298.750169791281223 ], [ 4980774.209236140362918, 3899308.522951220627874 ], [ 4980757.889268055558205, 3899264.791151903569698 ], [ 4980784.408234531991184, 3899255.018354630563408 ], [ 4980800.728165513835847, 3899298.750169791281223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980785.194116810336709, 3905790.083191523794085 ], [ 4980796.964275931939483, 3905806.131077520549297 ], [ 4980778.218144981190562, 3905819.562424746342003 ], [ 4980766.447174095548689, 3905803.878677003551275 ], [ 4980785.194116810336709, 3905790.083191523794085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980735.452285638079047, 3895087.077352546155453 ], [ 4980705.761403389275074, 3895096.479037649929523 ], [ 4980693.747529128566384, 3895058.218860569410026 ], [ 4980723.149585645645857, 3895049.180652925278991 ], [ 4980735.452285638079047, 3895087.077352546155453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980711.843525290489197, 3899769.010074593126774 ], [ 4980702.406934542581439, 3899738.402227698359638 ], [ 4980748.808442586101592, 3899723.939682981930673 ], [ 4980759.960132114589214, 3899760.377433266025037 ], [ 4980734.598537749610841, 3899767.968034259974957 ], [ 4980732.882580447010696, 3899762.502277321647853 ], [ 4980711.843525290489197, 3899769.010074593126774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984191.776928286999464, 3905704.992972232401371 ], [ 4984217.726865094155073, 3905690.124354901723564 ], [ 4984224.036034325137734, 3905701.063100867439061 ], [ 4984251.138623050414026, 3905685.833085056394339 ], [ 4984258.02281391993165, 3905697.137319205328822 ], [ 4984270.709429838694632, 3905689.884429124183953 ], [ 4984293.36389459297061, 3905729.627961574587971 ], [ 4984277.794439123012125, 3905738.330607320182025 ], [ 4984274.927814112044871, 3905732.861903062090278 ], [ 4984224.182321278378367, 3905761.509362292475998 ], [ 4984191.776928286999464, 3905704.992972232401371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985547.095159083604813, 3898620.386150135658681 ], [ 4985569.071801058016717, 3898584.025679091922939 ], [ 4985646.437575633637607, 3898630.819629427511245 ], [ 4985624.460866805166006, 3898667.180038228165358 ], [ 4985547.095159083604813, 3898620.386150135658681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985456.540059889666736, 3909877.666963082738221 ], [ 4985414.496339886449277, 3909881.936117141973227 ], [ 4985409.440239778719842, 3909829.12475693365559 ], [ 4985451.483171440660954, 3909825.219726027920842 ], [ 4985456.540059889666736, 3909877.666963082738221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980581.259339005686343, 3907517.074984509497881 ], [ 4980623.960673921741545, 3907477.114752315916121 ], [ 4980648.377141436561942, 3907503.022111722733825 ], [ 4980605.675811122171581, 3907542.982305750716478 ], [ 4980581.259339005686343, 3907517.074984509497881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980337.02806924469769, 3895759.838540634606034 ], [ 4980397.567545124329627, 3895737.759764773305506 ], [ 4980411.59708346799016, 3895776.388390379957855 ], [ 4980385.939778498373926, 3895785.799308236222714 ], [ 4980389.947647471912205, 3895797.096147564705461 ], [ 4980355.353614507243037, 3895809.764602717012167 ], [ 4980337.02806924469769, 3895759.838540634606034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984083.302579078823328, 3915764.281946683302522 ], [ 4984141.240338698029518, 3915729.096507199574262 ], [ 4984158.444864486344159, 3915757.17513630958274 ], [ 4984100.794978463090956, 3915792.361212792806327 ], [ 4984083.302579078823328, 3915764.281946683302522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984070.569517569616437, 3916901.079910811968148 ], [ 4984082.320043662562966, 3916922.59133586846292 ], [ 4984059.265195867978036, 3916934.91799089871347 ], [ 4984026.877296997234225, 3916876.580742458812892 ], [ 4984059.443155339919031, 3916858.814280147198588 ], [ 4984080.079632523469627, 3916896.004270620178431 ], [ 4984070.569517569616437, 3916901.079910811968148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983824.60482039488852, 3905846.511067176703364 ], [ 4983828.187327820807695, 3905791.899602885823697 ], [ 4983887.495095731690526, 3905795.679105402901769 ], [ 4983886.303431337699294, 3905812.790533774066716 ], [ 4983872.484724316745996, 3905811.665930108167231 ], [ 4983870.093780389986932, 3905849.165959443897009 ], [ 4983824.60482039488852, 3905846.511067176703364 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983608.920004366897047, 3909574.726106165908277 ], [ 4983657.594972538761795, 3909566.464067472144961 ], [ 4983659.866897146217525, 3909579.942261538468301 ], [ 4983669.659808528609574, 3909578.144346598070115 ], [ 4983671.930880076251924, 3909591.986672711092979 ], [ 4983664.154135229997337, 3909593.42513748863712 ], [ 4983666.426900125108659, 3909606.539201414212584 ], [ 4983676.507704397663474, 3909604.741957768797874 ], [ 4983678.777924020774662, 3909618.948415622115135 ], [ 4983670.137480700388551, 3909620.384871813934296 ], [ 4983672.410240338183939, 3909633.49893645895645 ], [ 4983682.491034908220172, 3909631.701695035211742 ], [ 4983685.90185537468642, 3909650.644531945697963 ], [ 4983687.341363583691418, 3909650.647877185605466 ], [ 4983691.035002063028514, 3909671.776169683784246 ], [ 4983682.682476453483105, 3909673.213290986604989 ], [ 4983684.956071555614471, 3909685.963226177729666 ], [ 4983694.748946027830243, 3909684.165320260915905 ], [ 4983697.01745642349124, 3909699.100042248610407 ], [ 4983629.621540032327175, 3909710.595733845606446 ], [ 4983627.634131167083979, 3909698.574733452405781 ], [ 4983638.002799455076456, 3909696.778143679723144 ], [ 4983635.447200257331133, 3909681.47862725192681 ], [ 4983629.110835161991417, 3909682.556313837412745 ], [ 4983624.850645415484905, 3909657.421252581756562 ], [ 4983623.699039143510163, 3909657.418579060118645 ], [ 4983619.155164807103574, 3909630.462196042761207 ], [ 4983618.290613966062665, 3909630.824322022031993 ], [ 4983608.920004366897047, 3909574.726106165908277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984864.554381785914302, 3916832.670639669056982 ], [ 4984836.804253606125712, 3916882.855505840387195 ], [ 4984796.56142330635339, 3916860.548057835083455 ], [ 4984808.701745613478124, 3916838.728706986643374 ], [ 4984816.749632165767252, 3916843.481501354835927 ], [ 4984832.647216241806746, 3916815.116631083656102 ], [ 4984864.554381785914302, 3916832.670639669056982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980143.430519021116197, 3907599.862207458354533 ], [ 4980125.514627163298428, 3907629.317664126399904 ], [ 4980080.946310406550765, 3907601.910119142383337 ], [ 4980098.861373976804316, 3907572.81876383209601 ], [ 4980143.430519021116197, 3907599.862207458354533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980149.904520672746003, 3901755.562883500475436 ], [ 4980173.452331552281976, 3901786.201508507598191 ], [ 4980147.201723924838006, 3901806.171174974180758 ], [ 4980152.083913870155811, 3901812.372102556284517 ], [ 4980132.468181356787682, 3901827.258491277694702 ], [ 4980104.325345708988607, 3901790.783741695806384 ], [ 4980149.904520672746003, 3901755.562883500475436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983351.83325214497745, 3916169.683064816053957 ], [ 4983384.113369560800493, 3916151.186861402820796 ], [ 4983405.613980984315276, 3916188.74244685145095 ], [ 4983421.754462705925107, 3916179.312306250445545 ], [ 4983435.515588368289173, 3916203.012896714732051 ], [ 4983387.095047617331147, 3916230.939190942328423 ], [ 4983351.83325214497745, 3916169.683064816053957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984614.340740513056517, 3903932.663976574782282 ], [ 4984597.892520022578537, 3903947.190464388113469 ], [ 4984579.224710970185697, 3903926.026829556096345 ], [ 4984625.97175186034292, 3903884.990158149972558 ], [ 4984657.851493009366095, 3903920.750261503271759 ], [ 4984627.552684008143842, 3903947.260398488026112 ], [ 4984614.340740513056517, 3903932.663976574782282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984542.074310684576631, 3905761.163840978872031 ], [ 4984509.697789360769093, 3905814.979146677069366 ], [ 4984466.56634269002825, 3905789.388397858012468 ], [ 4984498.942808102816343, 3905735.573041035793722 ], [ 4984542.074310684576631, 3905761.163840978872031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984463.158962856046855, 3909195.839376382529736 ], [ 4984507.236093224026263, 3909184.290864157490432 ], [ 4984515.79955433588475, 3909215.626450356096029 ], [ 4984471.721614767797291, 3909227.539079582784325 ], [ 4984463.158962856046855, 3909195.839376382529736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984367.250715983100235, 3914724.616227617487311 ], [ 4984378.54008403327316, 3914697.696834014728665 ], [ 4984436.341769402846694, 3914721.501449748408049 ], [ 4984425.052353262901306, 3914748.42081946413964 ], [ 4984367.250715983100235, 3914724.616227617487311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984249.908856933936477, 3909034.75593563169241 ], [ 4984255.329588243737817, 3909055.888348163571209 ], [ 4984237.181139649823308, 3909060.215389768593013 ], [ 4984231.759541401639581, 3909039.447111611254513 ], [ 4984249.908856933936477, 3909034.75593563169241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984222.091842054389417, 3916601.751984005328268 ], [ 4984239.389650469645858, 3916589.776103835552931 ], [ 4984253.445357636548579, 3916610.200601803604513 ], [ 4984236.436236852779984, 3916621.813015503343195 ], [ 4984222.091842054389417, 3916601.751984005328268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979823.001007188111544, 3900847.798292059917003 ], [ 4979826.389501529745758, 3900878.756797645241022 ], [ 4979791.532511590048671, 3900883.050419836770743 ], [ 4979787.856774846091866, 3900851.727162196300924 ], [ 4979823.001007188111544, 3900847.798292059917003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979563.894762384705245, 3902132.981277737300843 ], [ 4979581.785223869606853, 3902116.634203295223415 ], [ 4979574.315857613459229, 3902108.24297691276297 ], [ 4979606.922711470164359, 3902078.455010629724711 ], [ 4979632.205078674480319, 3902106.183884378056973 ], [ 4979581.707770715467632, 3902152.318883262574673 ], [ 4979563.894762384705245, 3902132.981277737300843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979518.852670626714826, 3908826.355132824275643 ], [ 4979555.056693973019719, 3908859.933871413115412 ], [ 4979537.453100120648742, 3908878.830572091042995 ], [ 4979529.407419194467366, 3908871.530467038974166 ], [ 4979510.938542455434799, 3908891.153573513031006 ], [ 4979482.779417078010738, 3908865.239113228395581 ], [ 4979518.852670626714826, 3908826.355132824275643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979527.006984296254814, 3902144.917589470744133 ], [ 4979492.389951181598008, 3902172.152379324194044 ], [ 4979469.988111938349903, 3902144.065745083615184 ], [ 4979504.605158341117203, 3902116.830926839727908 ], [ 4979527.006984296254814, 3902144.917589470744133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979528.318500014953315, 3899946.298286650329828 ], [ 4979519.914233983494341, 3899970.312685992568731 ], [ 4979486.818863714113832, 3899958.588775220327079 ], [ 4979495.511109529994428, 3899934.574989829212427 ], [ 4979528.318500014953315, 3899946.298286650329828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982849.879858651198447, 3915655.462003544904292 ], [ 4982891.352661802433431, 3915644.997249578125775 ], [ 4982899.336894755251706, 3915677.787655944935977 ], [ 4982857.864974186755717, 3915687.888265454210341 ], [ 4982849.879858651198447, 3915655.462003544904292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982712.463093420490623, 3915958.471083068288863 ], [ 4982722.444785667583346, 3915998.91283456934616 ], [ 4982663.116927172057331, 3916013.706633880268782 ], [ 4982652.847317364998162, 3915973.264246080536395 ], [ 4982712.463093420490623, 3915958.471083068288863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984153.096003499813378, 3915214.23843712406233 ], [ 4984191.264661656692624, 3915263.121827272232622 ], [ 4984151.758750813081861, 3915293.616561373695731 ], [ 4984113.877906184643507, 3915244.733900043647736 ], [ 4984153.096003499813378, 3915214.23843712406233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984104.635289398021996, 3909106.149851301219314 ], [ 4984147.846983573399484, 3909095.326991162262857 ], [ 4984155.835930429399014, 3909126.29698214866221 ], [ 4984112.623430799692869, 3909137.48396045062691 ], [ 4984104.635289398021996, 3909106.149851301219314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984053.488473582081497, 3914481.367552057374269 ], [ 4984068.747071648947895, 3914480.310828207992017 ], [ 4984070.975784920156002, 3914511.99570019217208 ], [ 4984055.717204749584198, 3914513.05242280010134 ], [ 4984053.488473582081497, 3914481.367552057374269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983979.740643285214901, 3904147.833478008862585 ], [ 4983977.018104571849108, 3904203.90340253058821 ], [ 4983902.156143059954047, 3904200.451577866449952 ], [ 4983906.084703960455954, 3904121.080030977725983 ], [ 4983932.86251902859658, 3904122.234873580746353 ], [ 4983931.943429050967097, 3904145.901288654189557 ], [ 4983979.740643285214901, 3904147.833478008862585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983840.618030429817736, 3909355.328619827516377 ], [ 4983880.661414035595953, 3909344.862081655301154 ], [ 4983888.081575287505984, 3909372.917608628049493 ], [ 4983848.038230530917645, 3909383.384135923348367 ], [ 4983840.618030429817736, 3909355.328619827516377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979342.036338989622891, 3906313.823482664301991 ], [ 4979320.414278797805309, 3906326.157235357444733 ], [ 4979300.335761815309525, 3906290.428913114126772 ], [ 4979322.245779219083488, 3906278.095766825135797 ], [ 4979342.036338989622891, 3906313.823482664301991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979185.413351870141923, 3904436.74998984253034 ], [ 4979337.277152587659657, 3904386.099402006249875 ], [ 4979348.722260591574013, 3904419.988382454030216 ], [ 4979196.57067224662751, 3904470.638285723514855 ], [ 4979185.413351870141923, 3904436.74998984253034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979057.260022684000432, 3895202.486540939193219 ], [ 4979059.756214218214154, 3895247.279848099220544 ], [ 4978998.968579350970685, 3895250.790488097351044 ], [ 4978997.582272751256824, 3895225.662568427156657 ], [ 4979027.544032122008502, 3895223.906301014125347 ], [ 4979026.434068097732961, 3895204.240917859598994 ], [ 4979057.260022684000432, 3895202.486540939193219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979041.582016428932548, 3897671.253193923272192 ], [ 4979068.840693837963045, 3897719.741120617371053 ], [ 4979046.058178013190627, 3897732.800808474887162 ], [ 4979037.737423212267458, 3897717.853583331219852 ], [ 4979007.169521341100335, 3897734.901998858898878 ], [ 4978989.0925053935498, 3897702.819711104035378 ], [ 4979001.203833669424057, 3897696.29138782247901 ], [ 4978994.604181697592139, 3897684.625045356340706 ], [ 4979010.176573486998677, 3897675.919381055980921 ], [ 4979015.628014209680259, 3897685.762609102297574 ], [ 4979041.582016428932548, 3897671.253193923272192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982518.875085981562734, 3904794.074038263875991 ], [ 4982530.337598294951022, 3904818.497004616539925 ], [ 4982487.962806376628578, 3904838.42765343748033 ], [ 4982476.501093820668757, 3904813.640574971213937 ], [ 4982518.875085981562734, 3904794.074038263875991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982386.044628610834479, 3916975.846028043888509 ], [ 4982423.709653954021633, 3916993.410241797566414 ], [ 4982419.370749024674296, 3917002.867858650628477 ], [ 4982432.021683985367417, 3917008.722824890166521 ], [ 4982417.558401376008987, 3917040.369590762536973 ], [ 4982403.757017184048891, 3917034.147877314127982 ], [ 4982395.658197830431163, 3917051.607898448128253 ], [ 4982337.003723306581378, 3917024.52848089998588 ], [ 4982350.019521414302289, 3916996.519724952522665 ], [ 4982372.159514156170189, 3917006.4017299185507 ], [ 4982386.044628610834479, 3916975.846028043888509 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983549.076113102026284, 3897756.69735068641603 ], [ 4983525.172229270450771, 3897755.549567730631679 ], [ 4983459.754227098077536, 3897770.691555250436068 ], [ 4983448.915294108912349, 3897724.786058820784092 ], [ 4983504.247305763885379, 3897711.805464973673224 ], [ 4983504.819991506636143, 3897713.263312374707311 ], [ 4983505.396050624549389, 3897713.264646580442786 ], [ 4983551.474871936254203, 3897715.920321173965931 ], [ 4983549.076113102026284, 3897756.69735068641603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983482.299188606441021, 3901965.893807890824974 ], [ 4983490.689515814185143, 3901949.163203607313335 ], [ 4983483.786327794194221, 3901945.50590547407046 ], [ 4983497.38399594463408, 3901918.591689555440098 ], [ 4983509.753832399845123, 3901924.446441790554672 ], [ 4983525.37671157810837, 3901893.531489177141339 ], [ 4983551.553780931979418, 3901906.336750563699752 ], [ 4983534.77303456608206, 3901939.797923041507602 ], [ 4983544.841511577367783, 3901944.554964564740658 ], [ 4983531.533480488695204, 3901970.74156581517309 ], [ 4983519.164513786323369, 3901964.522674159612507 ], [ 4983511.351828378625214, 3901980.526345580816269 ], [ 4983482.299188606441021, 3901965.893807890824974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978974.536857063882053, 3909840.01800730638206 ], [ 4978923.437928853556514, 3909905.452175601385534 ], [ 4978886.935697045177221, 3909876.971484609879553 ], [ 4978937.746690155938268, 3909811.536629889626056 ], [ 4978974.536857063882053, 3909840.01800730638206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978907.658766087144613, 3907733.003372624516487 ], [ 4978885.711850469000638, 3907763.179270290769637 ], [ 4978864.4384252903983, 3907747.840088427532464 ], [ 4978886.385329433716834, 3907717.664173671975732 ], [ 4978907.658766087144613, 3907733.003372624516487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978857.424159513786435, 3909273.540235648863018 ], [ 4978866.962528502568603, 3909256.082320290151983 ], [ 4978885.94244446605444, 3909266.318743493407965 ], [ 4978876.404066734947264, 3909283.776652216445655 ], [ 4978857.424159513786435, 3909273.540235648863018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978710.021778189577162, 3901056.227498087566346 ], [ 4978718.941797841340303, 3901059.8878786819987 ], [ 4978709.678511545062065, 3901082.080054114107043 ], [ 4978662.201594500802457, 3901062.315527011174709 ], [ 4978680.149794766679406, 3901019.022304141428322 ], [ 4978718.706749803386629, 3901035.126479005906731 ], [ 4978710.021778189577162, 3901056.227498087566346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978699.466096129268408, 3904915.996350591536611 ], [ 4978650.197461143136024, 3904929.363937988877296 ], [ 4978640.200009878724813, 3904891.472889043856412 ], [ 4978665.554624192416668, 3904884.608548110350966 ], [ 4978662.697658102959394, 3904874.042625199072063 ], [ 4978686.611751846969128, 3904867.539358207490295 ], [ 4978699.466096129268408, 3904915.996350591536611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978696.551723810844123, 3897791.40478105423972 ], [ 4978714.994125057011843, 3897787.438771145418286 ], [ 4978722.987301428802311, 3897820.955833094194531 ], [ 4978704.54414363950491, 3897825.285966076888144 ], [ 4978696.551723810844123, 3897791.40478105423972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981971.893064811825752, 3902186.379402997437865 ], [ 4982032.083695057779551, 3902185.423073219135404 ], [ 4982032.808459827676415, 3902246.962884075939655 ], [ 4981972.618790101259947, 3902247.555082927457988 ], [ 4981971.893064811825752, 3902186.379402997437865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978577.720165002159774, 3906643.177997045684606 ], [ 4978616.349169317632914, 3906621.776646908372641 ], [ 4978629.829196901060641, 3906646.56641016760841 ], [ 4978591.488150963559747, 3906667.968355705495924 ], [ 4978577.720165002159774, 3906643.177997045684606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978550.213480315171182, 3905094.466349888127297 ], [ 4978534.492639959789813, 3905039.813074014149606 ], [ 4978561.577123801223934, 3905031.859927271027118 ], [ 4978567.294205811806023, 3905051.535233765374869 ], [ 4978584.581361103802919, 3905046.838399990927428 ], [ 4978595.72985721193254, 3905085.096019873395562 ], [ 4978564.61255678255111, 3905093.76879400992766 ], [ 4978563.755695059895515, 3905090.489780892152339 ], [ 4978550.213480315171182, 3905094.466349888127297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978351.587408807128668, 3904388.356418943498284 ], [ 4978393.935822625644505, 3904379.707280543632805 ], [ 4978399.919443025253713, 3904409.578793819062412 ], [ 4978357.85903200507164, 3904418.228534892667085 ], [ 4978351.587408807128668, 3904388.356418943498284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978327.116381408646703, 3907232.538562942761928 ], [ 4978304.633290368132293, 3907244.143044046126306 ], [ 4978289.434201852418482, 3907215.344331372529268 ], [ 4978311.917310348711908, 3907203.7398377568461 ], [ 4978327.116381408646703, 3907232.538562942761928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978263.46829416975379, 3908325.528664547484368 ], [ 4978229.137583832256496, 3908357.863627083133906 ], [ 4978197.537109970115125, 3908324.660579587798566 ], [ 4978220.615930478088558, 3908303.225690396036953 ], [ 4978241.299546764232218, 3908325.117500853259116 ], [ 4978252.839355978183448, 3908314.218007136136293 ], [ 4978263.46829416975379, 3908325.528664547484368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978231.048689437098801, 3904740.944079502951354 ], [ 4978187.5490807229653, 3904749.59103600634262 ], [ 4978180.9947927640751, 3904717.169433719944209 ], [ 4978224.206497184932232, 3904708.52185625070706 ], [ 4978231.048689437098801, 3904740.944079502951354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978214.983361339196563, 3908515.502973200753331 ], [ 4978196.231148102320731, 3908533.30571439769119 ], [ 4978178.133480251766741, 3908513.968341834843159 ], [ 4978197.17360892239958, 3908496.166198446881026 ], [ 4978214.983361339196563, 3908515.502973200753331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981840.343251847662032, 3905098.042124087922275 ], [ 4981808.637522098608315, 3905111.807662830222398 ], [ 4981789.730424825102091, 3905068.433373629581183 ], [ 4981821.436195908114314, 3905054.667812941595912 ], [ 4981840.343251847662032, 3905098.042124087922275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981785.674960488453507, 3916067.427397828549147 ], [ 4981777.036691983230412, 3916068.86446873145178 ], [ 4981780.737490970641375, 3916087.079524075146765 ], [ 4981728.040336385369301, 3916097.520719044841826 ], [ 4981722.06061442848295, 3916068.740645127370954 ], [ 4981729.547548467293382, 3916067.300964210182428 ], [ 4981720.15399032086134, 3916020.670624022837728 ], [ 4981759.605209748260677, 3916012.74851167248562 ], [ 4981761.027971159666777, 3916020.034402813762426 ], [ 4981775.714037967845798, 3916017.154416305944324 ], [ 4981785.674960488453507, 3916067.427397828549147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981665.579002656042576, 3905344.165898812003434 ], [ 4981692.66738969925791, 3905334.759386386256665 ], [ 4981706.685901780612767, 3905375.209560444578528 ], [ 4981679.597550510428846, 3905384.616058981046081 ], [ 4981665.579002656042576, 3905344.165898812003434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981621.607252669520676, 3905306.561490796040744 ], [ 4981647.835090906359255, 3905295.696472539100796 ], [ 4981659.005318429321051, 3905322.303207689896226 ], [ 4981632.777501571923494, 3905333.168215222656727 ], [ 4981621.607252669520676, 3905306.561490796040744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982828.767473639920354, 3915071.342363351024687 ], [ 4982886.967852069064975, 3915047.078859773930162 ], [ 4982898.4189283112064, 3915074.415196353569627 ], [ 4982840.218598595820367, 3915098.678675537928939 ], [ 4982828.767473639920354, 3915071.342363351024687 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982806.926717934198678, 3905003.379867838229984 ], [ 4982824.380785249173641, 3905051.849390904884785 ], [ 4982788.357734452933073, 3905064.511486682575196 ], [ 4982770.902776903472841, 3905016.406116566620767 ], [ 4982806.926717934198678, 3905003.379867838229984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978078.25600927695632, 3906185.859630980528891 ], [ 4978088.282261297106743, 3906210.277678436134011 ], [ 4978061.768052855506539, 3906221.509698580019176 ], [ 4978051.45384235214442, 3906197.091052192728966 ], [ 4978078.25600927695632, 3906185.859630980528891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977844.291760610416532, 3910907.800017665140331 ], [ 4977743.671776263043284, 3910977.501787725370377 ], [ 4977713.246777296066284, 3910934.105997826438397 ], [ 4977813.866844518110156, 3910864.40411570854485 ], [ 4977844.291760610416532, 3910907.800017665140331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981293.774946132674813, 3907433.450784590095282 ], [ 4981360.995974262244999, 3907373.519249010831118 ], [ 4981386.270714799873531, 3907401.6139926770702 ], [ 4981319.049700158648193, 3907461.545466059818864 ], [ 4981293.774946132674813, 3907433.450784590095282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981242.668389603495598, 3901822.431198736652732 ], [ 4981191.671399329788983, 3901832.877209797035903 ], [ 4981183.693071165122092, 3901794.625653048511595 ], [ 4981211.928680490702391, 3901788.862537976820022 ], [ 4981209.932276591658592, 3901780.118938064668328 ], [ 4981232.98171999771148, 3901775.436668277718127 ], [ 4981242.668389603495598, 3901822.431198736652732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982346.315866116434336, 3902800.060909688938409 ], [ 4982383.466304117813706, 3902799.417130951303989 ], [ 4982384.459163994528353, 3902869.332606835756451 ], [ 4982334.34915142133832, 3902870.311055484693497 ], [ 4982333.829482917673886, 3902845.548942918423563 ], [ 4982347.07714060600847, 3902845.214926116168499 ], [ 4982346.315866116434336, 3902800.060909688938409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977485.705997618846595, 3912911.236367192585021 ], [ 4977523.413484493270516, 3912912.771861909423023 ], [ 4977521.575687426142395, 3912965.567365665454417 ], [ 4977483.867512343451381, 3912964.396005364134908 ], [ 4977485.705997618846595, 3912911.236367192585021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977447.164374525658786, 3908216.025736827403307 ], [ 4977461.22736300341785, 3908237.538965292274952 ], [ 4977438.739394692704082, 3908252.057224645279348 ], [ 4977424.677157170139253, 3908230.179876951966435 ], [ 4977447.164374525658786, 3908216.025736827403307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977425.962738966569304, 3906788.947170452680439 ], [ 4977457.102844062261283, 3906768.25676285661757 ], [ 4977472.028860345482826, 3906790.50004566134885 ], [ 4977440.888769424520433, 3906811.190436246804893 ], [ 4977425.962738966569304, 3906788.947170452680439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977358.334922400303185, 3909253.253617491573095 ], [ 4977326.916699638590217, 3909270.666391110513359 ], [ 4977289.055167787708342, 3909202.494595038238913 ], [ 4977317.302673219703138, 3909186.895824074279517 ], [ 4977338.24156085588038, 3909224.445186543278396 ], [ 4977341.123663675971329, 3909222.994672768283635 ], [ 4977358.334922400303185, 3909253.253617491573095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977355.363060952164233, 3906815.745438741520047 ], [ 4977383.628322277218103, 3906792.864150847773999 ], [ 4977402.583151060156524, 3906816.208208286203444 ], [ 4977374.029966257512569, 3906839.088875177782029 ], [ 4977355.363060952164233, 3906815.745438741520047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977333.470009169541299, 3912061.759115668479353 ], [ 4977308.67241913639009, 3912081.006422792561352 ], [ 4977283.119843957945704, 3912048.181121041066945 ], [ 4977307.917445833794773, 3912028.933790739160031 ], [ 4977333.470009169541299, 3912061.759115668479353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981022.012736478820443, 3895890.618981532752514 ], [ 4980995.780036712996662, 3895899.663908975198865 ], [ 4980963.434334636665881, 3895807.831333400215954 ], [ 4980989.667112929746509, 3895798.786374895833433 ], [ 4981022.012736478820443, 3895890.618981532752514 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980966.982383482158184, 3907172.367921855766326 ], [ 4980988.524377305991948, 3907196.084403765387833 ], [ 4980944.093680155463517, 3907236.404342093039304 ], [ 4980922.551679682917893, 3907212.687895217444748 ], [ 4980966.982383482158184, 3907172.367921855766326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980910.332964241504669, 3906750.576977276243269 ], [ 4980923.307726953178644, 3906742.59488067869097 ], [ 4980914.987591747194529, 3906729.103514664806426 ], [ 4980939.782989227212965, 3906714.229165081400424 ], [ 4980951.258243713527918, 3906733.189531066454947 ], [ 4980955.870833847671747, 3906730.650854689534754 ], [ 4980981.403778598643839, 3906772.582800422329456 ], [ 4980954.589649117551744, 3906788.909155164379627 ], [ 4980943.974982735700905, 3906771.407227572053671 ], [ 4980928.693533547222614, 3906780.840719788335264 ], [ 4980910.332964241504669, 3906750.576977276243269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980834.301942168734968, 3907926.555590386968106 ], [ 4980810.747379912994802, 3907901.74236185895279 ], [ 4980864.124138998799026, 3907851.610461079981178 ], [ 4980887.679504428058863, 3907876.05960500985384 ], [ 4980834.301942168734968, 3907926.555590386968106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981794.133182696998119, 3902986.338881575502455 ], [ 4981795.499215587042272, 3903019.113781489431858 ], [ 4981718.603949232958257, 3903021.853702421765774 ], [ 4981717.525795753113925, 3902989.079454312101007 ], [ 4981794.133182696998119, 3902986.338881575502455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977269.672826902009547, 3912560.488657941110432 ], [ 4977290.449633153155446, 3912536.499188339803368 ], [ 4977327.230956964194775, 3912568.255544589366764 ], [ 4977306.742012366652489, 3912592.245586907956749 ], [ 4977269.672826902009547, 3912560.488657941110432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977223.156137994490564, 3913470.725400874856859 ], [ 4977215.891345449723303, 3913503.482287901453674 ], [ 4977152.878722073510289, 3913489.514008888509125 ], [ 4977158.69125400390476, 3913462.944353641942143 ], [ 4977179.695236135274172, 3913467.721812016330659 ], [ 4977181.147428169846535, 3913461.53456459287554 ], [ 4977223.156137994490564, 3913470.725400874856859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977191.016892150044441, 3901251.838271955959499 ], [ 4977192.205239672213793, 3901234.362465189769864 ], [ 4977212.938376564532518, 3901235.498021823819727 ], [ 4977211.749257403425872, 3901253.337956942152232 ], [ 4977191.016892150044441, 3901251.838271955959499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977066.717911480925977, 3907851.464500971604139 ], [ 4977079.621390809305012, 3907876.980570564512163 ], [ 4977038.692808077670634, 3907898.015233190264553 ], [ 4977025.502135278657079, 3907872.134454507380724 ], [ 4977066.717911480925977, 3907851.464500971604139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977012.674018868245184, 3909336.284498624969274 ], [ 4977053.60115132946521, 3909314.885646499693394 ], [ 4977069.088270684704185, 3909343.684295610059053 ], [ 4977028.161169616505504, 3909365.083124530967325 ], [ 4977012.674018868245184, 3909336.284498624969274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976974.266485918313265, 3906337.939468272961676 ], [ 4976941.419766150414944, 3906348.431198071688414 ], [ 4976940.847665483132005, 3906346.609352551866323 ], [ 4976928.458072884939611, 3906350.589128997176886 ], [ 4976919.590113668702543, 3906322.532594369724393 ], [ 4976964.825715396553278, 3906308.425203138962388 ], [ 4976974.266485918313265, 3906337.939468272961676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976953.107669475488365, 3908488.460384951904416 ], [ 4976929.78511858265847, 3908489.14030840434134 ], [ 4976929.25682898145169, 3908466.198869850486517 ], [ 4976952.579399768263102, 3908465.518945948220789 ], [ 4976953.107669475488365, 3908488.460384951904416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980595.592098111286759, 3895808.109123396221548 ], [ 4980565.610796583816409, 3895818.966843334026635 ], [ 4980551.865535693243146, 3895782.159411726519465 ], [ 4980581.846872625872493, 3895771.301676692441106 ], [ 4980595.592098111286759, 3895808.109123396221548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980543.850247367285192, 3906072.115972272586077 ], [ 4980486.493196790106595, 3906097.842841221019626 ], [ 4980472.451563063077629, 3906067.224802046082914 ], [ 4980530.096605676226318, 3906041.498538837302476 ], [ 4980543.850247367285192, 3906072.115972272586077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980472.861639378592372, 3905227.901659291703254 ], [ 4980395.59191698487848, 3905272.883820962626487 ], [ 4980379.526891192421317, 3905245.538579857908189 ], [ 4980311.771677050739527, 3905285.079942957498133 ], [ 4980309.764041076414287, 3905281.43421221524477 ], [ 4980267.957132510840893, 3905306.103324016090482 ], [ 4980257.055879813618958, 3905287.508661058731377 ], [ 4980231.106956467032433, 3905302.74522956321016 ], [ 4980215.902430968359113, 3905276.858502090908587 ], [ 4980119.603981544263661, 3905333.08779523614794 ], [ 4980090.916033318266273, 3905284.231298130005598 ], [ 4980170.491996169090271, 3905237.796790666412562 ], [ 4980111.681808279827237, 3905137.531661574728787 ], [ 4980168.480610964819789, 3905104.520144504494965 ], [ 4980205.488799308426678, 3905167.231979839969426 ], [ 4980236.050631212070584, 3905149.456590394023806 ], [ 4980197.034024483524263, 3905083.463121793232858 ], [ 4980198.476173744536936, 3905082.373890050221235 ], [ 4980190.730260130017996, 3905069.248155355919152 ], [ 4980274.34394699614495, 3905020.273894029203802 ], [ 4980286.967403461225331, 3905041.421266697347164 ], [ 4980312.339907577261329, 3905026.547618797514588 ], [ 4980337.011634103022516, 3905068.477009855676442 ], [ 4980313.657210879959166, 3905082.262675039935857 ], [ 4980330.869399701245129, 3905111.795186515897512 ], [ 4980381.902302864007652, 3905082.048630077391863 ], [ 4980363.256003395654261, 3905049.964009155984968 ], [ 4980385.457073173485696, 3905036.904112646821886 ], [ 4980429.349998226389289, 3905111.283623388968408 ], [ 4980410.609180010855198, 3905122.166311195120215 ], [ 4980472.861639378592372, 3905227.901659291703254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980452.528130216524005, 3894979.034548725467175 ], [ 4980385.646409267559648, 3895002.555760536342859 ], [ 4980366.179337211884558, 3894947.529378335922956 ], [ 4980433.061177710071206, 3894924.008118852972984 ], [ 4980452.528130216524005, 3894979.034548725467175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980431.11005262285471, 3901173.571075282990932 ], [ 4980441.714448790997267, 3901196.898807236459106 ], [ 4980424.705269194208086, 3901204.8722317321226 ], [ 4980437.031194609589875, 3901231.116800201125443 ], [ 4980412.238244422711432, 3901242.714401418808848 ], [ 4980411.951855799183249, 3901241.985509116202593 ], [ 4980391.771600145846605, 3901251.408497993368655 ], [ 4980375.145787595771253, 3901216.051217084750533 ], [ 4980418.388681533746421, 3901196.119182623922825 ], [ 4980412.082510025240481, 3901182.632456047926098 ], [ 4980431.11005262285471, 3901173.571075282990932 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980373.026710886508226, 3904011.846153585240245 ], [ 4980391.229224462993443, 3903984.212209915742278 ], [ 4980424.297589083202183, 3904005.768766546156257 ], [ 4980406.383017788641155, 3904033.403322078287601 ], [ 4980373.026710886508226, 3904011.846153585240245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980353.12769706454128, 3904025.275248487479985 ], [ 4980379.880914536304772, 3904037.714573893230408 ], [ 4980358.18366579990834, 3904083.183285176288337 ], [ 4980331.718445126898587, 3904070.744614121504128 ], [ 4980353.12769706454128, 3904025.275248487479985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981499.96731096599251, 3904977.113313301000744 ], [ 4981535.723155239596963, 3904954.981466277502477 ], [ 4981546.339793663471937, 3904971.755348241422325 ], [ 4981510.583962870761752, 3904993.887181368656456 ], [ 4981499.96731096599251, 3904977.113313301000744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981438.184619082137942, 3907619.845509329345077 ], [ 4981407.024487674236298, 3907648.542186031583697 ], [ 4981369.396996927447617, 3907608.039275641087443 ], [ 4981386.997005657292902, 3907591.692704020533711 ], [ 4981393.315026119351387, 3907598.989492623135448 ], [ 4981407.163893530145288, 3907586.275861838832498 ], [ 4981438.184619082137942, 3907619.845509329345077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976893.004119923338294, 3906368.722286988049746 ], [ 4976879.751488192938268, 3906372.336166802793741 ], [ 4976878.32160413172096, 3906367.599491029977798 ], [ 4976865.933537844568491, 3906370.851035544183105 ], [ 4976857.92933142837137, 3906342.796308805700392 ], [ 4976904.313598725013435, 3906330.147720638196915 ], [ 4976911.744149575009942, 3906357.108876859769225 ], [ 4976891.288563163019717, 3906362.892623070627451 ], [ 4976893.004119923338294, 3906368.722286988049746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976865.271007848903537, 3900429.319133826065809 ], [ 4976818.017853701487184, 3900439.417053705547005 ], [ 4976811.742819539271295, 3900409.909498063381761 ], [ 4976858.99602313991636, 3900399.81156733026728 ], [ 4976865.271007848903537, 3900429.319133826065809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980239.51301730517298, 3906851.417062558699399 ], [ 4980233.127365631982684, 3906874.707503609824926 ], [ 4980202.625013086013496, 3906866.265524859074503 ], [ 4980209.010640275664628, 3906842.975076684728265 ], [ 4980239.51301730517298, 3906851.417062558699399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980199.294017710722983, 3916518.33870816975832 ], [ 4980212.18233467079699, 3916547.49774670181796 ], [ 4980152.544500324875116, 3916573.58457605028525 ], [ 4980139.65613132994622, 3916544.425565651617944 ], [ 4980199.294017710722983, 3916518.33870816975832 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980086.916623000986874, 3903822.962219000328332 ], [ 4980066.101919408887625, 3903860.058067272882909 ], [ 4980040.791385713033378, 3903846.165686436928809 ], [ 4980061.318100759759545, 3903809.069188674446195 ], [ 4980086.916623000986874, 3903822.962219000328332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980042.034852954559028, 3903804.29328549746424 ], [ 4980024.702044638805091, 3903829.380443856585771 ], [ 4980000.836057910695672, 3903813.306471519172192 ], [ 4980017.881686050444841, 3903787.854538537096232 ], [ 4980042.034852954559028, 3903804.29328549746424 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980036.919673888944089, 3902193.365194001235068 ], [ 4980042.400085752829909, 3902189.371740161441267 ], [ 4980056.46895488910377, 3902208.701471304055303 ], [ 4980051.27652620524168, 3902212.695552410557866 ], [ 4980062.761515041813254, 3902228.378322463482618 ], [ 4980035.93705140799284, 3902247.618583727627993 ], [ 4979996.027089548297226, 3902192.911644357256591 ], [ 4980022.563597191125154, 3902173.670714115723968 ], [ 4980036.919673888944089, 3902193.365194001235068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981091.962745320051908, 3905483.073134328704327 ], [ 4981052.474394159391522, 3905500.82768698874861 ], [ 4981028.689083330333233, 3905449.432167686522007 ], [ 4981068.177494064904749, 3905431.677580629009753 ], [ 4981091.962745320051908, 3905483.073134328704327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976576.29410482943058, 3908175.984496415127069 ], [ 4976607.418446875177324, 3908161.847441032528877 ], [ 4976619.171292710117996, 3908186.996790850069374 ], [ 4976588.04622358083725, 3908201.497963660862297 ], [ 4976576.29410482943058, 3908175.984496415127069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976383.605161591432989, 3905404.179407786112279 ], [ 4976397.198460003361106, 3905375.076762350276113 ], [ 4976436.610618489794433, 3905393.000129434280097 ], [ 4976423.016538707539439, 3905422.466885455884039 ], [ 4976383.605161591432989, 3905404.179407786112279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979818.356083362363279, 3899675.287318704649806 ], [ 4979828.156309532001615, 3899671.667370380368084 ], [ 4979823.005483604967594, 3899656.362660986371338 ], [ 4979853.84623687621206, 3899645.505971814971417 ], [ 4979868.728987141512334, 3899688.505833776202053 ], [ 4979827.80084503442049, 3899702.617694437969476 ], [ 4979818.356083362363279, 3899675.287318704649806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979580.728974999859929, 3907113.610576306469738 ], [ 4979570.310584908351302, 3907137.984819738660008 ], [ 4979525.722722930833697, 3907118.953205307479948 ], [ 4979543.376434036530554, 3907077.48042721953243 ], [ 4979582.210515260696411, 3907094.314785580150783 ], [ 4979574.975931221619248, 3907111.049162456765771 ], [ 4979580.728974999859929, 3907113.610576306469738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980712.125354661606252, 3901724.393262621480972 ], [ 4980681.567373663187027, 3901738.52678082510829 ], [ 4980661.503308548592031, 3901695.51495604403317 ], [ 4980666.403915730305016, 3901693.341003685258329 ], [ 4980657.516566541045904, 3901675.114805140532553 ], [ 4980683.17399195022881, 3901663.15520849917084 ], [ 4980712.125354661606252, 3901724.393262621480972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980581.875414265319705, 3906325.271669296547771 ], [ 4980560.247969675809145, 3906339.789206116460264 ], [ 4980547.04545002989471, 3906320.461068913340569 ], [ 4980568.672902969643474, 3906305.943521629087627 ], [ 4980581.875414265319705, 3906325.271669296547771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980485.749287315644324, 3903822.745997187215835 ], [ 4980507.605652580037713, 3903835.902917409781367 ], [ 4980494.599912050180137, 3903857.358000838663429 ], [ 4980438.807932376861572, 3903824.099093069788069 ], [ 4980455.86038698349148, 3903795.734399925451726 ], [ 4980490.083197218365967, 3903816.201183592900634 ], [ 4980485.749287315644324, 3903822.745997187215835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976081.326102258637547, 3905653.719427826814353 ], [ 4976090.260555300861597, 3905649.732210496906191 ], [ 4976099.718128660693765, 3905671.599420737940818 ], [ 4976053.89562825858593, 3905690.8049121433869 ], [ 4976037.274310184642673, 3905651.80891706654802 ], [ 4976073.87520563043654, 3905636.22589970799163 ], [ 4976081.326102258637547, 3905653.719427826814353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975942.189741945825517, 3910774.59332801727578 ], [ 4975940.717679011635482, 3910790.612180538941175 ], [ 4975873.076989713124931, 3910783.92017921153456 ], [ 4975874.549012663774192, 3910767.901323060505092 ], [ 4975942.189741945825517, 3910774.59332801727578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979393.448004397563636, 3909034.731449098791927 ], [ 4979381.610677524469793, 3909049.999406077899039 ], [ 4979387.358596237376332, 3909054.74556720117107 ], [ 4979374.655194791965187, 3909071.104051330592483 ], [ 4979365.745016132481396, 3909064.166256844997406 ], [ 4979352.175546741113067, 3909081.615276307333261 ], [ 4979330.617887697182596, 3909065.182697471231222 ], [ 4979368.728853792883456, 3909015.743070372845978 ], [ 4979393.448004397563636, 3909034.731449098791927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979360.275782065466046, 3902006.550877467729151 ], [ 4979419.661868516355753, 3901978.277126619592309 ], [ 4979431.417178954929113, 3902002.335223315283656 ], [ 4979413.831266043707728, 3902011.03630329342559 ], [ 4979417.272882184013724, 3902017.598111252766103 ], [ 4979375.183198642916977, 3902037.898387168068439 ], [ 4979360.275782065466046, 3902006.550877467729151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979324.70032227691263, 3901011.304070303682238 ], [ 4979357.854297161102295, 3900995.353973633609712 ], [ 4979367.316379792056978, 3901014.673367914743721 ], [ 4979377.11920740455389, 3901009.59673561481759 ], [ 4979384.001139271073043, 3901023.448592989239842 ], [ 4979373.334333292208612, 3901028.523354320786893 ], [ 4979382.509974415414035, 3901047.113873193971813 ], [ 4979340.130019912496209, 3901067.777698318939656 ], [ 4979327.799801401793957, 3901042.990152098238468 ], [ 4979337.890605146996677, 3901037.914127745199949 ], [ 4979324.70032227691263, 3901011.304070303682238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979183.904011911712587, 3896452.452375306282192 ], [ 4979132.875695640221238, 3896473.097847796976566 ], [ 4979117.402905195020139, 3896435.195029518101364 ], [ 4979168.431281352415681, 3896414.54952812101692 ], [ 4979183.904011911712587, 3896452.452375306282192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979154.695022850297391, 3906264.261300075799227 ], [ 4979137.401489425450563, 3906272.234943469054997 ], [ 4979123.356059304438531, 3906242.709996917750686 ], [ 4979163.708210961893201, 3906223.862072077114135 ], [ 4979174.886000498197973, 3906247.918877520598471 ], [ 4979152.116135726682842, 3906258.429630783386528 ], [ 4979154.695022850297391, 3906264.261300075799227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979121.447228641249239, 3909802.464235442690551 ], [ 4979089.706108193844557, 3909835.896102690603584 ], [ 4979051.492225185967982, 3909800.128848406951874 ], [ 4979075.731471813283861, 3909774.327578334137797 ], [ 4979093.832345847971737, 3909791.480783868115395 ], [ 4979101.334998518228531, 3909783.486016164999455 ], [ 4979121.447228641249239, 3909802.464235442690551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978989.318498885259032, 3906444.514917415566742 ], [ 4979006.517174054868519, 3906480.600951875559986 ], [ 4978978.270539437420666, 3906494.013138436712325 ], [ 4978961.359770886600018, 3906457.927740164566785 ], [ 4978989.318498885259032, 3906444.514917415566742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980431.826622324995697, 3898755.380992006044835 ], [ 4980411.068459858186543, 3898764.802683956455439 ], [ 4980400.463068130426109, 3898741.474998044781387 ], [ 4980420.933226195164025, 3898732.052663991227746 ], [ 4980431.826622324995697, 3898755.380992006044835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980352.600993860512972, 3899943.364538782741874 ], [ 4980290.347777870483696, 3899963.254902093671262 ], [ 4980281.196383167989552, 3899933.740218823775649 ], [ 4980343.160854041576385, 3899914.213330323342234 ], [ 4980352.600993860512972, 3899943.364538782741874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975888.8195272795856, 3916206.993231845088303 ], [ 4975924.374729033559561, 3916132.418074310291559 ], [ 4975982.461182889528573, 3916159.84643238177523 ], [ 4975946.905855705961585, 3916234.421514324843884 ], [ 4975888.8195272795856, 3916206.993231845088303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975871.261572351679206, 3909411.135913378093392 ], [ 4975888.845944226719439, 3909400.247689025942236 ], [ 4975902.047324031591415, 3909421.030098491348326 ], [ 4975884.462219912558794, 3909432.28244547219947 ], [ 4975871.261572351679206, 3909411.135913378093392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975860.813115975819528, 3902651.734873961191624 ], [ 4975872.371406528167427, 3902632.459414856974036 ], [ 4975867.48172037024051, 3902629.536428142338991 ], [ 4975884.530096220783889, 3902601.168855087831616 ], [ 4975891.433404695242643, 3902605.188332197722048 ], [ 4975902.991737114265561, 3902585.912886809557676 ], [ 4975940.096353844739497, 3902607.836235940922052 ], [ 4975929.115439678542316, 3902626.384578255005181 ], [ 4975919.335335658863187, 3902620.902714686468244 ], [ 4975911.533294987864792, 3902633.995564444456249 ], [ 4975923.039034101180732, 3902640.57332910830155 ], [ 4975901.944902583025396, 3902675.851141923572868 ], [ 4975860.813115975819528, 3902651.734873961191624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975833.602032040245831, 3901303.302635099738836 ], [ 4975809.788654037751257, 3901400.841342848725617 ], [ 4975760.278738337568939, 3901388.724561864044517 ], [ 4975784.09194712061435, 3901291.185810949187726 ], [ 4975833.602032040245831, 3901303.302635099738836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975797.510829403996468, 3905746.723669098224491 ], [ 4975829.245258423499763, 3905716.929299977142364 ], [ 4975862.28849040530622, 3905751.588956069666892 ], [ 4975830.553325831890106, 3905781.747417101170868 ], [ 4975797.510829403996468, 3905746.723669098224491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975771.18590575736016, 3909496.139683989342302 ], [ 4975746.379691689275205, 3909519.029713708907366 ], [ 4975697.256742825731635, 3909465.402623329777271 ], [ 4975722.062226026318967, 3909442.876680138986558 ], [ 4975771.18590575736016, 3909496.139683989342302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975697.289440992288291, 3909733.404327979311347 ], [ 4975719.505783409811556, 3909709.780734280589968 ], [ 4975771.805488941259682, 3909758.316463086754084 ], [ 4975749.5884017823264, 3909782.304145439527929 ], [ 4975697.289440992288291, 3909733.404327979311347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975699.191460520960391, 3907658.217311072163284 ], [ 4975710.664835588075221, 3907679.724364914000034 ], [ 4975666.276796509511769, 3907703.303027925547212 ], [ 4975654.515473362058401, 3907681.795409745071083 ], [ 4975699.191460520960391, 3907658.217311072163284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975617.738652544096112, 3897679.039216108620167 ], [ 4975654.574791628867388, 3897694.771339079365134 ], [ 4975641.262055804021657, 3897726.059579389169812 ], [ 4975654.50035407487303, 3897731.548321254085749 ], [ 4975645.239938526414335, 3897753.013251542579383 ], [ 4975594.302217258140445, 3897731.426546092610806 ], [ 4975599.510306123644114, 3897719.78491529636085 ], [ 4975589.438107518479228, 3897715.394991083070636 ], [ 4975601.881544551812112, 3897686.653877766802907 ], [ 4975612.529811513610184, 3897691.044971618801355 ], [ 4975617.738652544096112, 3897679.039216108620167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978960.26141732186079, 3896508.411432103253901 ], [ 4978980.324290960095823, 3896555.063135613221675 ], [ 4978938.519132453948259, 3896573.1798782851547 ], [ 4978932.787989433854818, 3896559.330644115339965 ], [ 4978911.164536878466606, 3896568.7516277898103 ], [ 4978896.833507038652897, 3896535.585072295740247 ], [ 4978960.26141732186079, 3896508.411432103253901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978938.787745390087366, 3895508.46504041692242 ], [ 4978951.546498578041792, 3895469.166423000860959 ], [ 4978977.453338057734072, 3895477.597026336472481 ], [ 4978964.406497825868428, 3895516.895013205241412 ], [ 4978938.787745390087366, 3895508.46504041692242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978846.231798196211457, 3908316.575855483300984 ], [ 4978835.269141190685332, 3908326.748066887259483 ], [ 4978819.469659505411983, 3908309.964116920717061 ], [ 4978830.432317335158587, 3908299.791899166069925 ], [ 4978846.231798196211457, 3908316.575855483300984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978802.379481054842472, 3899887.201386168599129 ], [ 4978770.623980903066695, 3899922.089943321421742 ], [ 4978748.777598598971963, 3899902.380146134644747 ], [ 4978780.821099982596934, 3899867.492180067114532 ], [ 4978802.379481054842472, 3899887.201386168599129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978685.620273766107857, 3904253.611338345333934 ], [ 4978714.989804113283753, 3904254.766520875040442 ], [ 4978713.163160865195096, 3904301.007321898359805 ], [ 4978684.081639965064824, 3904299.852756775915623 ], [ 4978685.620273766107857, 3904253.611338345333934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978685.136536511592567, 3897876.586839247494936 ], [ 4978630.970207212492824, 3897884.482015162706375 ], [ 4978628.985882615670562, 3897869.54844317259267 ], [ 4978623.222993267700076, 3897870.628532192204148 ], [ 4978617.263002384454012, 3897829.104975419119 ], [ 4978676.903534644283354, 3897820.493206598330289 ], [ 4978685.136536511592567, 3897876.586839247494936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978559.28778768889606, 3905430.215189369861037 ], [ 4978519.239116027019918, 3905441.417893170379102 ], [ 4978505.237568382173777, 3905390.773736463859677 ], [ 4978545.285533155314624, 3905379.935142286587507 ], [ 4978559.28778768889606, 3905430.215189369861037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980045.800008016638458, 3901161.801452428102493 ], [ 4980056.979930937290192, 3901185.494421657174826 ], [ 4980059.863041596487164, 3901184.044206698425114 ], [ 4980072.762128870934248, 3901211.746384844649583 ], [ 4980028.942737490870059, 3901232.041845082305372 ], [ 4980017.763605642132461, 3901207.984757676254958 ], [ 4980025.836144315078855, 3901203.996970571111888 ], [ 4980013.223405102267861, 3901177.023703066632152 ], [ 4980045.800008016638458, 3901161.801452428102493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979990.107229781337082, 3902529.720032111275941 ], [ 4979973.966938459314406, 3902535.874989320989698 ], [ 4979965.377721531316638, 3902512.915956675074995 ], [ 4979981.518024636432528, 3902506.760994396172464 ], [ 4979990.107229781337082, 3902529.720032111275941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979975.048850785009563, 3907311.465023213997483 ], [ 4979964.063873798586428, 3907331.468292000703514 ], [ 4979947.959876591339707, 3907322.329800711479038 ], [ 4979959.232772086746991, 3907302.327154548838735 ], [ 4979975.048850785009563, 3907311.465023213997483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979726.309548934921622, 3902401.334696223028004 ], [ 4979695.161060945130885, 3902422.750677515752614 ], [ 4979652.096343752928078, 3902361.847153842449188 ], [ 4979682.957679428160191, 3902340.066367846447974 ], [ 4979726.309548934921622, 3902401.334696223028004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979696.924738740548491, 3908496.109540309291333 ], [ 4979679.298635821789503, 3908525.201806340832263 ], [ 4979655.144754315726459, 3908510.948122769128531 ], [ 4979650.522303426638246, 3908518.220725708641112 ], [ 4979633.557545094750822, 3908507.98814638517797 ], [ 4979655.518944670446217, 3908471.258491346612573 ], [ 4979696.924738740548491, 3908496.109540309291333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979684.23347619920969, 3902547.988042188342661 ], [ 4979712.209300246089697, 3902528.749932187143713 ], [ 4979742.353467459790409, 3902571.783005421515554 ], [ 4979714.664851565845311, 3902591.385840523988008 ], [ 4979684.23347619920969, 3902547.988042188342661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975594.086491513997316, 3905671.300350149162114 ], [ 4975635.01069073099643, 3905653.540688459295779 ], [ 4975654.213766342960298, 3905697.639505494385958 ], [ 4975613.577565227635205, 3905715.399720948655158 ], [ 4975594.086491513997316, 3905671.300350149162114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975434.635976608842611, 3911346.710205778479576 ], [ 4975485.595025652088225, 3911344.992366496939212 ], [ 4975486.14285868499428, 3911358.830528467427939 ], [ 4975435.183835853822529, 3911360.548366725910455 ], [ 4975434.635976608842611, 3911346.710205778479576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975284.755797186866403, 3905566.534865803550929 ], [ 4975311.824130410328507, 3905565.861046480946243 ], [ 4975311.557429716922343, 3905555.300689364317805 ], [ 4975333.729968048632145, 3905554.981174649205059 ], [ 4975334.214981404133141, 3905600.134487502742559 ], [ 4975308.298462242819369, 3905600.810601347591728 ], [ 4975308.563698622398078, 3905612.099219281226397 ], [ 4975285.52737301774323, 3905612.417017692700028 ], [ 4975284.755797186866403, 3905566.534865803550929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975235.776260655373335, 3905724.105471658520401 ], [ 4975233.398827095516026, 3905760.878005320671946 ], [ 4975198.849283595569432, 3905758.987959980964661 ], [ 4975200.93872628826648, 3905722.214845186565071 ], [ 4975235.776260655373335, 3905724.105471658520401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975230.760450030677021, 3906214.21684100991115 ], [ 4975252.539858265779912, 3906265.967331207823008 ], [ 4975216.22969800978899, 3906280.823790744878352 ], [ 4975208.491938697174191, 3906262.601656705606729 ], [ 4975196.676979372277856, 3906267.31164870178327 ], [ 4975190.658790902234614, 3906253.098423136863858 ], [ 4975200.457457619719207, 3906248.74851209204644 ], [ 4975192.721140261739492, 3906229.798122109379619 ], [ 4975230.760450030677021, 3906214.21684100991115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978371.16946866735816, 3906013.518023983109742 ], [ 4978395.379711676388979, 3906002.64554196735844 ], [ 4978405.409617418423295, 3906025.243053560610861 ], [ 4978380.912224463187158, 3906035.750784213654697 ], [ 4978371.16946866735816, 3906013.518023983109742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978341.20778626576066, 3909408.623992950189859 ], [ 4978400.721085786819458, 3909447.712717428803444 ], [ 4978381.080134869553149, 3909477.529827669728547 ], [ 4978321.56687309872359, 3909438.441145975142717 ], [ 4978341.20778626576066, 3909408.623992950189859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978330.989688417874277, 3909610.695938349235803 ], [ 4978313.378939693793654, 3909633.598891926929355 ], [ 4978282.91081568133086, 3909610.229703205637634 ], [ 4978300.521553622558713, 3909587.326730005908757 ], [ 4978330.989688417874277, 3909610.695938349235803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978266.071143558248878, 3906013.2948167915456 ], [ 4978303.828475014306605, 3905995.896625895053148 ], [ 4978315.007129309698939, 3906019.953070296905935 ], [ 4978277.249824319034815, 3906037.351245749741793 ], [ 4978266.071143558248878, 3906013.2948167915456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978233.775256366468966, 3908207.486767287366092 ], [ 4978263.743360380642116, 3908195.898103328421712 ], [ 4978280.06498836632818, 3908238.172102270182222 ], [ 4978250.096924343146384, 3908249.760748336091638 ], [ 4978233.775256366468966, 3908207.486767287366092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978212.756476438604295, 3908479.449136338196695 ], [ 4978180.447592357173562, 3908508.875390219967812 ], [ 4978152.00966649223119, 3908477.863888915162534 ], [ 4978184.030641976743937, 3908448.436991323251277 ], [ 4978212.756476438604295, 3908479.449136338196695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978189.648521740920842, 3904438.262960409279913 ], [ 4978233.442769351415336, 3904426.703580101951957 ], [ 4978241.157390153966844, 3904455.122202862519771 ], [ 4978197.362413805909455, 3904467.04570074332878 ], [ 4978189.648521740920842, 3904438.262960409279913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978169.15827220864594, 3906226.83481070259586 ], [ 4978140.624623972922564, 3906239.883135448209941 ], [ 4978127.440356705337763, 3906211.088799570221454 ], [ 4978156.261967660859227, 3906198.041070839390159 ], [ 4978169.15827220864594, 3906226.83481070259586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978179.340800476260483, 3900196.113763795699924 ], [ 4978125.48039544839412, 3900197.82038641627878 ], [ 4978124.108958078548312, 3900165.409857950173318 ], [ 4978116.908105595968664, 3900165.758751847781241 ], [ 4978116.362916086800396, 3900151.192373224068433 ], [ 4978177.713046198710799, 3900148.77333379117772 ], [ 4978179.340800476260483, 3900196.113763795699924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978152.370343797840178, 3909802.943274678196758 ], [ 4978131.880875248461962, 3909825.840252669528127 ], [ 4978087.339605606161058, 3909786.419649716932327 ], [ 4978107.829066039063036, 3909763.522638326510787 ], [ 4978152.370343797840178, 3909802.943274678196758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979649.975064441561699, 3904398.065220154821873 ], [ 4979655.738180003128946, 3904396.257087198086083 ], [ 4979648.875459517352283, 3904374.030144729185849 ], [ 4979687.2000284017995, 3904362.097114941570908 ], [ 4979703.783593502826989, 3904416.388791674282402 ], [ 4979659.69677663128823, 3904429.765799223445356 ], [ 4979649.975064441561699, 3904398.065220154821873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979632.399063003249466, 3902547.147124437149614 ], [ 4979611.636987810954452, 3902559.846620670519769 ], [ 4979595.279972196556628, 3902533.229527023620903 ], [ 4979616.042060139589012, 3902520.530018361285329 ], [ 4979632.399063003249466, 3902547.147124437149614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979325.066692484542727, 3899642.173433709423989 ], [ 4979342.920882477425039, 3899643.304409485775977 ], [ 4979342.32046708650887, 3899654.591158853378147 ], [ 4979390.124406727962196, 3899657.243437682278454 ], [ 4979388.622926487587392, 3899685.642373288981616 ], [ 4979323.252095221541822, 3899682.223873822949827 ], [ 4979325.066692484542727, 3899642.173433709423989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975178.91223877388984, 3910096.855676795355976 ], [ 4975172.498117792420089, 3910136.897406823467463 ], [ 4975129.903320538811386, 3910129.893429425545037 ], [ 4975136.316649321466684, 3910090.215820692013949 ], [ 4975178.91223877388984, 3910096.855676795355976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978078.989814666099846, 3903932.614176499191672 ], [ 4978064.571653269231319, 3903942.051108001731336 ], [ 4978054.239628249779344, 3903925.643350709229708 ], [ 4978068.369061813689768, 3903916.569934738334268 ], [ 4978078.989814666099846, 3903932.614176499191672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978066.165205333381891, 3908090.973585853818804 ], [ 4978118.918231434188783, 3908060.862199351657182 ], [ 4978136.415741723962128, 3908091.850491609890014 ], [ 4978049.071797333657742, 3908141.187716148793697 ], [ 4978032.14697702601552, 3908111.657219781540334 ], [ 4978038.200184197165072, 3908108.392821189947426 ], [ 4977996.89146825298667, 3908036.571467250585556 ], [ 4978025.717986159026623, 3908020.246407066006213 ], [ 4978066.165205333381891, 3908090.973585853818804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977952.513517582789063, 3904506.946547361556441 ], [ 4977999.1871193991974, 3904495.392860983498394 ], [ 4978006.038098024204373, 3904523.809593150392175 ], [ 4977959.365310968831182, 3904534.999137858860195 ], [ 4977952.513517582789063, 3904506.946547361556441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977888.902754248119891, 3908181.996568181551993 ], [ 4977851.429004856385291, 3908203.037280028685927 ], [ 4977837.085294690914452, 3908178.246064387727529 ], [ 4977874.55906730517745, 3908157.205332848709077 ], [ 4977888.902754248119891, 3908181.996568181551993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977702.049904997460544, 3914207.277535400819033 ], [ 4977677.534227811731398, 3914230.166454664431512 ], [ 4977668.055741540156305, 3914220.314934207126498 ], [ 4977653.63405436463654, 3914234.121732603292912 ], [ 4977632.380352465435863, 3914211.500821126624942 ], [ 4977671.604809607379138, 3914175.169801418669522 ], [ 4977702.049904997460544, 3914207.277535400819033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977692.506363323889673, 3906280.085033508017659 ], [ 4977705.119012303650379, 3906307.057295462116599 ], [ 4977666.497165760956705, 3906325.182778087444603 ], [ 4977653.885250979103148, 3906297.846403587143868 ], [ 4977692.506363323889673, 3906280.085033508017659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977660.902929300442338, 3909126.804891472216696 ], [ 4977636.967653389088809, 3909145.325411650817841 ], [ 4977604.234843514859676, 3909103.017353919800371 ], [ 4977628.458042078651488, 3909084.497409195173532 ], [ 4977660.902929300442338, 3909126.804891472216696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979279.868831467814744, 3901233.691197047010064 ], [ 4979290.747252490371466, 3901263.937552441377193 ], [ 4979231.662644115276635, 3901285.293742196634412 ], [ 4979220.784950824454427, 3901254.683281124569476 ], [ 4979279.868831467814744, 3901233.691197047010064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979116.418497379869223, 3908260.715858259238303 ], [ 4979187.190217443741858, 3908286.72177453013137 ], [ 4979174.156270924024284, 3908322.74278665939346 ], [ 4979295.275241476483643, 3908366.335934952832758 ], [ 4979280.502687788568437, 3908407.45099645620212 ], [ 4979088.324420006945729, 3908337.851449612993747 ], [ 4979116.418497379869223, 3908260.715858259238303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978955.27453276142478, 3899770.279169937595725 ], [ 4978976.02984335552901, 3899761.584605760872364 ], [ 4978970.299406538717449, 3899747.735337347257882 ], [ 4978989.613135650753975, 3899739.765949027612805 ], [ 4979006.518743646331131, 3899780.220764869824052 ], [ 4978966.161737564951181, 3899796.884078456088901 ], [ 4978955.27453276142478, 3899770.279169937595725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978898.082677347585559, 3900921.901816034223884 ], [ 4978872.142813633196056, 3900931.31359003437683 ], [ 4978853.24752073828131, 3900878.838248476851732 ], [ 4978895.038908880203962, 3900863.998488596174866 ], [ 4978910.785713508725166, 3900907.363833814393729 ], [ 4978894.934255331754684, 3900912.791792611125857 ], [ 4978898.082677347585559, 3900921.901816034223884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978836.81083266902715, 3902367.006295654922724 ], [ 4978882.115005120635033, 3902324.500068929977715 ], [ 4978902.515508090145886, 3902346.027561465743929 ], [ 4978898.18721744697541, 3902350.023719060234725 ], [ 4978915.427725222893059, 3902367.903132210019976 ], [ 4978922.353302950970829, 3902361.36363298818469 ], [ 4978933.845919696614146, 3902373.768756857607514 ], [ 4978926.921123824082315, 3902379.944123721681535 ], [ 4978945.310383783653378, 3902399.282546425703913 ], [ 4978948.484410701319575, 3902396.376311561092734 ], [ 4978968.884805805981159, 3902417.903855407610536 ], [ 4978923.29111107904464, 3902461.1375792180188 ], [ 4978874.732801971957088, 3902409.69092433899641 ], [ 4978876.175821276381612, 3902408.237493933178484 ], [ 4978836.81083266902715, 3902367.006295654922724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978825.535030699335039, 3904269.568400753196329 ], [ 4978830.948464712128043, 3904162.16119500156492 ], [ 4978871.834164432249963, 3904164.433621588163078 ], [ 4978870.337366793304682, 3904191.01201413013041 ], [ 4978869.185526217333972, 3904191.009544396772981 ], [ 4978866.769422331824899, 3904243.439306182786822 ], [ 4978865.618364696390927, 3904243.072706739418209 ], [ 4978864.117673854343593, 3904271.471750286407769 ], [ 4978825.535030699335039, 3904269.568400753196329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974769.118618276901543, 3904805.924329521600157 ], [ 4974735.980042358860373, 3904817.874692323617637 ], [ 4974726.814083007164299, 3904793.459635693114251 ], [ 4974712.694210057146847, 3904798.529382151551545 ], [ 4974702.95593664329499, 3904772.292537616565824 ], [ 4974747.909368722699583, 3904755.996074384544045 ], [ 4974754.210283596999943, 3904773.122801986988634 ], [ 4974767.177636728622019, 3904768.414913623593748 ], [ 4974772.332523280754685, 3904782.626310860272497 ], [ 4974761.958210098557174, 3904786.611097157001495 ], [ 4974769.118618276901543, 3904805.924329521600157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974615.711172230541706, 3895921.561358074191958 ], [ 4974578.827928327023983, 3895928.042494123335928 ], [ 4974577.119139947928488, 3895918.20760460710153 ], [ 4974561.558727907948196, 3895921.089777110144496 ], [ 4974557.2878208020702, 3895895.956364189274609 ], [ 4974538.558137188665569, 3895899.19639489101246 ], [ 4974533.712550037540495, 3895873.333587673027068 ], [ 4974586.156302347779274, 3895863.970222745556384 ], [ 4974588.149527672678232, 3895875.626324926037341 ], [ 4974602.845098346471786, 3895873.106580920983106 ], [ 4974605.979671079665422, 3895890.22689393395558 ], [ 4974594.165322713553905, 3895892.388224085792899 ], [ 4974596.159987647086382, 3895903.316070703789592 ], [ 4974611.720413725823164, 3895900.433918263763189 ], [ 4974615.711172230541706, 3895921.561358074191958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977462.894890325143933, 3913219.609699247404933 ], [ 4977495.998418617062271, 3913220.043122631497681 ], [ 4977495.03495579585433, 3913267.74259925680235 ], [ 4977461.931486273184419, 3913267.309177053160965 ], [ 4977462.894890325143933, 3913219.609699247404933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977375.224666949361563, 3892336.502224199008197 ], [ 4977391.342341066338122, 3892343.818455164786428 ], [ 4977402.830079708248377, 3892360.956506197806448 ], [ 4977369.365632900036871, 3892383.098496234975755 ], [ 4977359.312997144646943, 3892368.512356890365481 ], [ 4977368.283972436562181, 3892349.232247916981578 ], [ 4977342.030826151371002, 3892367.019778251647949 ], [ 4977317.044726485386491, 3892329.826508778613061 ], [ 4977319.648902799934149, 3892324.370005998294801 ], [ 4977332.919148842804134, 3892315.658591045066714 ], [ 4977322.580658758059144, 3892299.979483043309301 ], [ 4977314.790904388763011, 3892305.425171105191112 ], [ 4977309.004098569974303, 3892317.429358324967325 ], [ 4977293.750648663379252, 3892310.114978459663689 ], [ 4977287.719786441884935, 3892300.999184385873377 ], [ 4977305.082478943280876, 3892263.894231328275055 ], [ 4977332.136920792981982, 3892276.331036577001214 ], [ 4977325.192433887161314, 3892290.881707610096782 ], [ 4977339.870470722205937, 3892297.830775828100741 ], [ 4977371.604951829649508, 3892276.41339648514986 ], [ 4977376.813337946310639, 3892265.500402113422751 ], [ 4977372.208491704426706, 3892263.306015622802079 ], [ 4977377.128032323904335, 3892252.756547335069627 ], [ 4977394.437649942934513, 3892241.140565009787679 ], [ 4977413.106332242488861, 3892268.489225929137319 ], [ 4977401.531101079657674, 3892293.225813527125865 ], [ 4977394.030176707543433, 3892298.307952965144068 ], [ 4977405.8052600286901, 3892315.810733765363693 ], [ 4977375.224666949361563, 3892336.502224199008197 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977319.397190786898136, 3913563.051902045961469 ], [ 4977341.010999405756593, 3913551.444747491274029 ], [ 4977351.620749172754586, 3913571.13011765293777 ], [ 4977330.006951754912734, 3913582.737263815943152 ], [ 4977319.397190786898136, 3913563.051902045961469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977321.570548591203988, 3907693.597579356282949 ], [ 4977293.727118767797947, 3907652.756675331387669 ], [ 4977317.658163999207318, 3907636.784781252965331 ], [ 4977344.640086360275745, 3907676.531514341477305 ], [ 4977335.701558579690754, 3907682.703103709034622 ], [ 4977350.914326285943389, 3907705.311063441447914 ], [ 4977329.001058228313923, 3907720.194742868188769 ], [ 4977314.362606172449887, 3907698.316258238628507 ], [ 4977321.570548591203988, 3907693.597579356282949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977268.918867770582438, 3907813.287278953939676 ], [ 4977282.794524304568768, 3907786.73455369612202 ], [ 4977323.922480397857726, 3907808.304158372804523 ], [ 4977310.046794221736491, 3907834.856862749904394 ], [ 4977268.918867770582438, 3907813.287278953939676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977248.252962972037494, 3912754.891235764604062 ], [ 4977259.586873922497034, 3912703.57205180125311 ], [ 4977297.568099319003522, 3912712.02633425174281 ], [ 4977289.432572992518544, 3912748.05857051955536 ], [ 4977276.484567980282009, 3912745.118496525567025 ], [ 4977272.998252974823117, 3912760.404829654376954 ], [ 4977248.252962972037494, 3912754.891235764604062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977226.498278788290918, 3908964.949745178688318 ], [ 4977205.737739531323314, 3908979.835936087649316 ], [ 4977189.374697779305279, 3908956.861512049566954 ], [ 4977210.135245646350086, 3908941.975308715831488 ], [ 4977226.498278788290918, 3908964.949745178688318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978787.710869409143925, 3912115.084748868364841 ], [ 4978766.666352954693139, 3912128.876751430798322 ], [ 4978742.849868130870163, 3912092.776573620270938 ], [ 4978764.182276134379208, 3912078.985169009305537 ], [ 4978787.710869409143925, 3912115.084748868364841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978749.965850001201034, 3907556.789546508807689 ], [ 4978770.648833564482629, 3907579.045884990133345 ], [ 4978736.318119655363262, 3907610.651923260185868 ], [ 4978715.635910918936133, 3907588.031480147503316 ], [ 4978749.965850001201034, 3907556.789546508807689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978735.472050445154309, 3908948.108591475058347 ], [ 4978743.903230898082256, 3908909.892709298059344 ], [ 4978768.075942806899548, 3908915.406435047741979 ], [ 4978759.932638764381409, 3908953.622926026117057 ], [ 4978735.472050445154309, 3908948.108591475058347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978627.164740894921124, 3905871.687844545580447 ], [ 4978653.114537009038031, 3905855.357331148348749 ], [ 4978683.246525472030044, 3905903.122996740043163 ], [ 4978657.009593285620213, 3905919.088736118748784 ], [ 4978627.164740894921124, 3905871.687844545580447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978455.840187269262969, 3904788.758790230378509 ], [ 4978427.605225180275738, 3904795.981331528630108 ], [ 4978430.459967629984021, 3904807.639618988148868 ], [ 4978405.10689025465399, 3904813.775921379681677 ], [ 4978397.682824212126434, 3904784.265467688441277 ], [ 4978404.309633639641106, 3904782.458903060760349 ], [ 4978399.17137988191098, 3904761.328339230734855 ], [ 4978445.845509044826031, 3904749.411296837031841 ], [ 4978455.840187269262969, 3904788.758790230378509 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978357.819925433024764, 3904978.62703808862716 ], [ 4978376.547623543068767, 3904973.569000408519059 ], [ 4978372.834438286721706, 3904959.359970819205046 ], [ 4978398.764823757112026, 3904952.496602102182806 ], [ 4978413.907765237614512, 3905008.240960739552975 ], [ 4978369.248984242789447, 3905020.526474985294044 ], [ 4978357.819925433024764, 3904978.62703808862716 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974481.551325658336282, 3899812.388859347440302 ], [ 4974447.848012614995241, 3899815.59930374333635 ], [ 4974444.459671163000166, 3899781.364335254300386 ], [ 4974477.875019278377295, 3899778.153316305484623 ], [ 4974481.551325658336282, 3899812.388859347440302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974466.365393488667905, 3895408.206742112059146 ], [ 4974488.541244466789067, 3895410.435428734868765 ], [ 4974490.603058108128607, 3895387.499353792518377 ], [ 4974530.635413612239063, 3895391.219964737072587 ], [ 4974528.572122701443732, 3895414.884292811620981 ], [ 4974515.323794642463326, 3895413.765649821143597 ], [ 4974510.025552986189723, 3895470.923484821338207 ], [ 4974468.841819809749722, 3895466.836495185270905 ], [ 4974471.787239001132548, 3895434.070670723449439 ], [ 4974464.011223143897951, 3895433.327017459087074 ], [ 4974466.365393488667905, 3895408.206742112059146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974390.407369649969041, 3910072.708287132438272 ], [ 4974337.674709610641003, 3910096.636799154803157 ], [ 4974324.487561186775565, 3910068.208392088767141 ], [ 4974377.220265129581094, 3910044.279854612890631 ], [ 4974390.407369649969041, 3910072.708287132438272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974394.896456551738083, 3899503.070651543326676 ], [ 4974391.197677813470364, 3899480.123124245088547 ], [ 4974426.057769563980401, 3899474.730114988982677 ], [ 4974433.453101134859025, 3899521.717566741630435 ], [ 4974393.983466879464686, 3899527.829712551552802 ], [ 4974390.286850629374385, 3899503.789798161014915 ], [ 4974394.896456551738083, 3899503.070651543326676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974337.072802004404366, 3904134.701291318051517 ], [ 4974301.663693862967193, 3904129.533524950034916 ], [ 4974299.912926497869194, 3904141.182273477781564 ], [ 4974274.291610883548856, 3904137.490392624400556 ], [ 4974276.044522888958454, 3904124.749252520967275 ], [ 4974260.210985606536269, 3904122.533225889317691 ], [ 4974264.887321591377258, 3904087.585837353952229 ], [ 4974309.796335685066879, 3904094.228836131747812 ], [ 4974308.923824738711119, 3904098.596690093632787 ], [ 4974341.742761359550059, 3904103.031085649039596 ], [ 4974337.072802004404366, 3904134.701291318051517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974258.901142594404519, 3900844.623081142548472 ], [ 4974249.00516099575907, 3900897.402513134293258 ], [ 4974224.246883616782725, 3900892.620003114454448 ], [ 4974223.953864146023989, 3900895.168340336997062 ], [ 4974162.057062758132815, 3900883.758359672036022 ], [ 4974171.957897507585585, 3900828.429991306271404 ], [ 4974258.901142594404519, 3900844.623081142548472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974151.392596138641238, 3904106.661138811148703 ], [ 4974157.977704250253737, 3904125.973066610749811 ], [ 4974147.892623860388994, 3904129.230395348742604 ], [ 4974155.049348884262145, 3904150.728236301336437 ], [ 4974113.267845786176622, 3904164.483006236609071 ], [ 4974095.805372673086822, 3904112.013739665038884 ], [ 4974135.8577482085675, 3904098.98380269901827 ], [ 4974139.579026572406292, 3904110.279199435375631 ], [ 4974151.392596138641238, 3904106.661138811148703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977085.932872737757862, 3905532.347433553542942 ], [ 4977070.350519057363272, 3905548.336858375929296 ], [ 4977076.959650882519782, 3905554.904960558284074 ], [ 4977059.069971424527466, 3905572.710257581900805 ], [ 4977018.264860535040498, 3905532.571044355630875 ], [ 4977051.736892180517316, 3905498.776276288088411 ], [ 4977085.932872737757862, 3905532.347433553542942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977044.363582851365209, 3908494.839980342891067 ], [ 4977058.425990198738873, 3908516.717132583726197 ], [ 4977046.894314980134368, 3908523.975831815507263 ], [ 4977069.566119381226599, 3908559.343771592248231 ], [ 4977031.222996010445058, 3908583.661015974823385 ], [ 4977016.013483128510416, 3908559.596701419912279 ], [ 4977036.482547024264932, 3908546.53042445378378 ], [ 4977014.957809197716415, 3908513.349688363261521 ], [ 4977044.363582851365209, 3908494.839980342891067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977028.888510007411242, 3905963.361051134299487 ], [ 4977006.339944585226476, 3906006.281816729810089 ], [ 4976979.590912588872015, 3905992.025183374993503 ], [ 4977002.138691614381969, 3905949.46852602250874 ], [ 4977028.888510007411242, 3905963.361051134299487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976819.848675339482725, 3908048.676651339512318 ], [ 4976801.109862199984491, 3908060.290137701667845 ], [ 4976814.598365389741957, 3908081.43770435359329 ], [ 4976791.534780711866915, 3908095.955313169863075 ], [ 4976764.84489787556231, 3908054.024935356341302 ], [ 4976806.647325851023197, 3908027.89380859117955 ], [ 4976819.848675339482725, 3908048.676651339512318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978236.755523358471692, 3907481.04907972086221 ], [ 4978187.454009121283889, 3907512.259937142021954 ], [ 4978171.096306157298386, 3907486.736021752469242 ], [ 4978220.397848032414913, 3907455.525134803261608 ], [ 4978236.755523358471692, 3907481.04907972086221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978012.62386498786509, 3905495.690996103920043 ], [ 4978045.087898288853467, 3905530.716245155315846 ], [ 4978010.755433057434857, 3905562.323170613497496 ], [ 4977992.656390640884638, 3905542.621828071307391 ], [ 4977994.387140334583819, 3905541.168955575209111 ], [ 4977980.022912085056305, 3905525.480958767235279 ], [ 4978012.62386498786509, 3905495.690996103920043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977985.749199720099568, 3907586.480389134492725 ], [ 4978001.501945089548826, 3907625.83994182664901 ], [ 4977971.82124325633049, 3907637.429501986131072 ], [ 4977956.068461316637695, 3907598.069966416340321 ], [ 4977985.749199720099568, 3907586.480389134492725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974092.333944830112159, 3904852.286193192005157 ], [ 4974043.66558553557843, 3904854.375323706306517 ], [ 4974042.023709699511528, 3904810.676312442868948 ], [ 4974112.290095118805766, 3904807.901394028682262 ], [ 4974113.376724060624838, 3904841.039502449333668 ], [ 4974091.778087507002056, 3904842.089416698552668 ], [ 4974092.333944830112159, 3904852.286193192005157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974079.702873640693724, 3894135.904363951645792 ], [ 4974079.872871027328074, 3894195.986019967589527 ], [ 4974012.46442018263042, 3894196.217763571068645 ], [ 4974012.229952582158148, 3894168.90761146787554 ], [ 4974030.378207467496395, 3894168.943236582912505 ], [ 4974030.17306877207011, 3894126.70384446112439 ], [ 4974069.927166815847158, 3894126.41779513657093 ], [ 4974069.908565316349268, 3894135.885118206962943 ], [ 4974079.702873640693724, 3894135.904363951645792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974059.628575340844691, 3900247.420731179881841 ], [ 4974017.541619925759733, 3900267.001117565669119 ], [ 4973994.595769866369665, 3900218.890847026836127 ], [ 4974015.063263478688896, 3900209.099497054237872 ], [ 4974024.2414591293782, 3900228.416435453109443 ], [ 4974045.861682472750545, 3900218.263241818640381 ], [ 4974059.628575340844691, 3900247.420731179881841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973983.305119669064879, 3899221.15134200360626 ], [ 4973995.410971880890429, 3899216.441401884425431 ], [ 4974004.007779462262988, 3899238.670222816988826 ], [ 4973991.901935728266835, 3899243.380159126129001 ], [ 4973983.305119669064879, 3899221.15134200360626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973886.05944943241775, 3902697.680539525579661 ], [ 4973865.676591604948044, 3902665.232960586436093 ], [ 4973892.491215927526355, 3902648.535443744622171 ], [ 4973934.979701998643577, 3902715.982952727470547 ], [ 4973908.453094097785652, 3902732.68099212879315 ], [ 4973895.534843121655285, 3902711.900211464613676 ], [ 4973884.290229302830994, 3902718.796676605008543 ], [ 4973875.102808189578354, 3902704.57757247146219 ], [ 4973886.05944943241775, 3902697.680539525579661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973829.65207645110786, 3894434.000112248584628 ], [ 4973830.581081446260214, 3894400.866165633779019 ], [ 4973871.484180552884936, 3894402.038588059600443 ], [ 4973870.555125175043941, 3894435.172533270902932 ], [ 4973829.65207645110786, 3894434.000112248584628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976703.001506557688117, 3901466.756512133870274 ], [ 4976669.884985360316932, 3901465.595809938851744 ], [ 4976671.427803506143391, 3901415.71306244796142 ], [ 4976704.544386108405888, 3901416.873766515403986 ], [ 4976703.001506557688117, 3901466.756512133870274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977785.003512993454933, 3911446.956277281511575 ], [ 4977788.67548312433064, 3911480.464253737125546 ], [ 4977746.058987473137677, 3911485.108331997413188 ], [ 4977742.386964861303568, 3911451.600361266639084 ], [ 4977785.003512993454933, 3911446.956277281511575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977692.784032296389341, 3908752.179435735102743 ], [ 4977667.980845492333174, 3908772.51876413449645 ], [ 4977630.647920481860638, 3908726.923833299893886 ], [ 4977655.451120897196233, 3908706.584471012931317 ], [ 4977692.784032296389341, 3908752.179435735102743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977600.742137541994452, 3906512.572781223338097 ], [ 4977576.518173494376242, 3906530.364460610318929 ], [ 4977549.242159560322762, 3906493.16583230253309 ], [ 4977573.466138926334679, 3906475.374128737021238 ], [ 4977600.742137541994452, 3906512.572781223338097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977601.578832640312612, 3905564.375036059413105 ], [ 4977557.526234067045152, 3905562.826163372024894 ], [ 4977559.048368603922427, 3905523.503118479624391 ], [ 4977579.203052622266114, 3905524.273623540531844 ], [ 4977579.510844483971596, 3905514.806842057034373 ], [ 4977603.408831836655736, 3905515.585212420206517 ], [ 4977601.578832640312612, 3905564.375036059413105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977451.472949336282909, 3906844.348591580055654 ], [ 4977470.427682775072753, 3906867.692697633989155 ], [ 4977433.222853478044271, 3906897.109579710289836 ], [ 4977414.556801141239703, 3906873.401970827486366 ], [ 4977451.472949336282909, 3906844.348591580055654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973659.490551065653563, 3900151.599423923064023 ], [ 4973621.449264758266509, 3900164.269838799722493 ], [ 4973606.273046194575727, 3900119.08808898832649 ], [ 4973653.248900125734508, 3900103.15789705561474 ], [ 4973661.553439823910594, 3900127.570833414327353 ], [ 4973652.619645908474922, 3900130.466457505710423 ], [ 4973659.490551065653563, 3900151.599423923064023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973620.748783202841878, 3903774.990512407384813 ], [ 4973603.736880636774004, 3903786.245435342658311 ], [ 4973609.766398046165705, 3903795.360465154983103 ], [ 4973573.72405719384551, 3903819.322930924594402 ], [ 4973553.05158818140626, 3903787.967396112624556 ], [ 4973606.105153529904783, 3903753.114100948907435 ], [ 4973620.748783202841878, 3903774.990512407384813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973571.437629768624902, 3899816.427837485447526 ], [ 4973578.877604114823043, 3899841.203191195148975 ], [ 4973569.367710646241903, 3899844.097720999270678 ], [ 4973574.519222954288125, 3899860.857749595306814 ], [ 4973533.022197376005352, 3899873.157430279999971 ], [ 4973529.015605279244483, 3899860.040940897073597 ], [ 4973518.929710823111236, 3899862.934368175920099 ], [ 4973513.207107252441347, 3899843.624326733406633 ], [ 4973523.869021842256188, 3899840.732017629314214 ], [ 4973521.006658233702183, 3899831.623189920093864 ], [ 4973571.437629768624902, 3899816.427837485447526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973545.816298274323344, 3905434.191759475506842 ], [ 4973549.886532339267433, 3905414.172439360059798 ], [ 4973566.293842104263604, 3905417.117430964950472 ], [ 4973562.223596248775721, 3905437.136748622171581 ], [ 4973545.816298274323344, 3905434.191759475506842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973514.564822851680219, 3900034.067194953560829 ], [ 4973478.256419551558793, 3900044.192268227227032 ], [ 4973468.529349547810853, 3900010.673364508431405 ], [ 4973480.343920602463186, 3900007.419146993663162 ], [ 4973474.62344309873879, 3899987.016724828630686 ], [ 4973499.405339254066348, 3899980.146410883404315 ], [ 4973514.564822851680219, 3900034.067194953560829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976337.511501895263791, 3908083.368391902651638 ], [ 4976341.241749343462288, 3908089.5662897285074 ], [ 4976349.025252497754991, 3908084.848529493901879 ], [ 4976361.364666469395161, 3908104.901114859618247 ], [ 4976344.067921601235867, 3908115.425480741541833 ], [ 4976327.998997191898525, 3908088.810875855851918 ], [ 4976337.511501895263791, 3908083.368391902651638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976312.674306360073388, 3912053.821362760849297 ], [ 4976332.771863514557481, 3912080.080155541189015 ], [ 4976296.730707951821387, 3912107.680409169290215 ], [ 4976276.633136387914419, 3912081.421642887871712 ], [ 4976312.674306360073388, 3912053.821362760849297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976265.668510355986655, 3912093.779716905672103 ], [ 4976284.039578183554113, 3912119.670805059373379 ], [ 4976235.895855842158198, 3912153.072482933755964 ], [ 4976217.813384804874659, 3912126.817884456366301 ], [ 4976265.668510355986655, 3912093.779716905672103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976264.552952932193875, 3908561.324734676629305 ], [ 4976239.470213741064072, 3908578.023480680771172 ], [ 4976200.718859704211354, 3908520.775406903587282 ], [ 4976226.089541958644986, 3908504.077214417047799 ], [ 4976264.552952932193875, 3908561.324734676629305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976274.500204439274967, 3901452.767081806436181 ], [ 4976276.610068459063768, 3901406.890913829673082 ], [ 4976306.846032381989062, 3901408.40936086839065 ], [ 4976304.448127381503582, 3901454.284936566371471 ], [ 4976274.500204439274967, 3901452.767081806436181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976168.109895870089531, 3900948.592441766522825 ], [ 4976178.292415251024067, 3900898.363208133261651 ], [ 4976207.368040062487125, 3900904.248739055823535 ], [ 4976197.185468507930636, 3900954.477961853612214 ], [ 4976168.109895870089531, 3900948.592441766522825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976138.0292335357517, 3901152.808353366330266 ], [ 4976166.819575108587742, 3901157.236736071761698 ], [ 4976159.525277811102569, 3901203.466443517245352 ], [ 4976131.022976805455983, 3901199.038656594697386 ], [ 4976138.0292335357517, 3901152.808353366330266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977373.635103547014296, 3907717.374877305235714 ], [ 4977399.751574132591486, 3907757.848124924115837 ], [ 4977375.245504567399621, 3907773.454613536596298 ], [ 4977349.128252143971622, 3907733.345520034432411 ], [ 4977373.635103547014296, 3907717.374877305235714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977385.693915383890271, 3901254.793105732183903 ], [ 4977383.337506117299199, 3901279.913212632294744 ], [ 4977356.847624072805047, 3901277.308982430491596 ], [ 4977359.49200042616576, 3901252.189474495127797 ], [ 4977385.693915383890271, 3901254.793105732183903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977353.772231596522033, 3905784.884527060203254 ], [ 4977340.212304949760437, 3905797.600833870004863 ], [ 4977347.682857441715896, 3905805.263197584077716 ], [ 4977329.505981480702758, 3905822.703585893847048 ], [ 4977296.464726113714278, 3905788.042124199215323 ], [ 4977328.201532024890184, 3905757.885394404176623 ], [ 4977353.772231596522033, 3905784.884527060203254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977236.054471211507916, 3907971.252206976525486 ], [ 4977259.580386588349938, 3908011.355794725008309 ], [ 4977234.501067332923412, 3908025.868821504060179 ], [ 4977210.975127363577485, 3907985.765255352947861 ], [ 4977236.054471211507916, 3907971.252206976525486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977193.763407564722002, 3901315.93101816251874 ], [ 4977189.983903429470956, 3901333.037301411386579 ], [ 4977156.016141522675753, 3901325.684004231356084 ], [ 4977159.79486754257232, 3901308.941845562309027 ], [ 4977193.763407564722002, 3901315.93101816251874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977161.715405422262847, 3897201.190746758133173 ], [ 4977180.446017627604306, 3897197.224284497089684 ], [ 4977176.454437182284892, 3897177.552961664274335 ], [ 4977226.30653391033411, 3897167.096961711533368 ], [ 4977234.292652701959014, 3897204.983109220862389 ], [ 4977165.421988062560558, 3897219.404954947996885 ], [ 4977161.715405422262847, 3897201.190746758133173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977096.278166621923447, 3900137.765382079873234 ], [ 4977102.256626498885453, 3900171.277820164803416 ], [ 4977071.716941154561937, 3900176.676332758739591 ], [ 4977066.026447965763509, 3900143.164499479811639 ], [ 4977096.278166621923447, 3900137.765382079873234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973105.347470492124557, 3910160.866337535437196 ], [ 4973073.044100211001933, 3910191.391157506499439 ], [ 4973048.622095607221127, 3910165.854770895559341 ], [ 4973080.925468679517508, 3910135.329922046512365 ], [ 4973105.347470492124557, 3910160.866337535437196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973008.551302350126207, 3903466.841789251193404 ], [ 4972947.712319877929986, 3903507.143247782252729 ], [ 4972931.345792130567133, 3903482.350844786968082 ], [ 4972963.927488375455141, 3903460.929781451821327 ], [ 4972956.749307509511709, 3903449.992032751906663 ], [ 4972969.147352310828865, 3903442.005003656726331 ], [ 4972975.751696787774563, 3903451.84925745613873 ], [ 4972991.322303617373109, 3903441.319426754955202 ], [ 4973008.551302350126207, 3903466.841789251193404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973008.305161465890706, 3900005.777716274373233 ], [ 4973016.332832206040621, 3900024.727960559539497 ], [ 4973023.250558516010642, 3900021.82824158994481 ], [ 4973033.285827511921525, 3900045.151924055069685 ], [ 4972987.743254477158189, 3900064.727262169588357 ], [ 4972982.295001115649939, 3900052.336339049041271 ], [ 4972971.053716570138931, 3900057.048400494735688 ], [ 4972963.024622464552522, 3900038.826427597086877 ], [ 4972973.401198388077319, 3900034.476829190738499 ], [ 4972968.527540511451662, 3900022.815275796689093 ], [ 4973008.305161465890706, 3900005.777716274373233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976027.342000428587198, 3906569.036886713001877 ], [ 4976059.905356112867594, 3906555.994537483435124 ], [ 4976072.222662100568414, 3906587.335015960037708 ], [ 4976039.65933832526207, 3906600.377350511495024 ], [ 4976027.342000428587198, 3906569.036886713001877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975980.358443489298224, 3906169.488408707082272 ], [ 4976009.177567459642887, 3906157.166638135444373 ], [ 4976026.086549335159361, 3906196.163214860949665 ], [ 4975996.979520792141557, 3906208.4843809469603 ], [ 4975980.358443489298224, 3906169.488408707082272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975954.761166653595865, 3905023.513609605841339 ], [ 4975918.445236226543784, 3905040.189759556669742 ], [ 4975909.558749717660248, 3905020.508573755156249 ], [ 4975902.354043772444129, 3905023.40697298431769 ], [ 4975892.033706119284034, 3905000.809824016410857 ], [ 4975935.554392479360104, 3904981.235246590338647 ], [ 4975954.761166653595865, 3905023.513609605841339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975883.613417600281537, 3905459.962757956236601 ], [ 4975913.482081688009202, 3905498.257334375288337 ], [ 4975878.009187947027385, 3905525.495078161824495 ], [ 4975848.42845007404685, 3905487.201125598046929 ], [ 4975883.613417600281537, 3905459.962757956236601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975814.839616993442178, 3905579.258232765831053 ], [ 4975776.493391347117722, 3905603.577222988940775 ], [ 4975750.373848657123744, 3905562.377346141729504 ], [ 4975788.720109229907393, 3905538.058319258969277 ], [ 4975814.839616993442178, 3905579.258232765831053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977005.784080629236996, 3900861.105144994333386 ], [ 4977032.560890635475516, 3900864.437884643208236 ], [ 4977029.632566375657916, 3900887.736175240483135 ], [ 4977002.855023873969913, 3900884.767567651811987 ], [ 4977005.784080629236996, 3900861.105144994333386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976991.663449592888355, 3900587.613684124778956 ], [ 4976961.697237658314407, 3900594.47003423795104 ], [ 4976956.273564822040498, 3900571.154428128153086 ], [ 4976946.47707353439182, 3900573.318909090012312 ], [ 4976941.338364239782095, 3900551.460419584996998 ], [ 4976981.101122601889074, 3900542.43957508681342 ], [ 4976991.663449592888355, 3900587.613684124778956 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976953.938575242646039, 3912531.065587626304477 ], [ 4976967.696710219606757, 3912559.860654710792005 ], [ 4976927.643472043797374, 3912578.712548419367522 ], [ 4976913.885303917340934, 3912549.91750149987638 ], [ 4976953.938575242646039, 3912531.065587626304477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976889.699158426374197, 3905878.958022212609649 ], [ 4976877.270160374231637, 3905901.872596647590399 ], [ 4976837.290690827183425, 3905880.306083413306624 ], [ 4976860.125526173040271, 3905838.114035750273615 ], [ 4976900.68017078563571, 3905860.045905347913504 ], [ 4976890.275042543187737, 3905878.95921465056017 ], [ 4976889.699158426374197, 3905878.958022212609649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976851.442069602198899, 3909755.795333822257817 ], [ 4976827.801837937906384, 3909771.404128544032574 ], [ 4976813.165608926676214, 3909748.79762687208131 ], [ 4976836.805098533630371, 3909733.552950651850551 ], [ 4976851.442069602198899, 3909755.795333822257817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976824.708044360391796, 3913632.665863456670195 ], [ 4976848.285349294543266, 3913645.823460271582007 ], [ 4976844.24176128860563, 3913652.369496793951839 ], [ 4976856.893225530162454, 3913659.314220881555229 ], [ 4976832.624192300252616, 3913702.231762792449445 ], [ 4976796.683325278572738, 3913682.130072788801044 ], [ 4976824.708044360391796, 3913632.665863456670195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976813.809737046249211, 3912082.163159944117069 ], [ 4976789.597323349677026, 3912097.042556828353554 ], [ 4976772.668362678959966, 3912070.061703030019999 ], [ 4976809.852526086382568, 3912046.834050278645009 ], [ 4976831.371654503047466, 3912081.471221780404449 ], [ 4976818.688558300957084, 3912089.455916204489768 ], [ 4976813.809737046249211, 3912082.163159944117069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972663.369421939365566, 3910791.787292622495443 ], [ 4972620.697037252597511, 3910825.570020870305598 ], [ 4972603.752648508176208, 3910804.053788555786014 ], [ 4972646.424349308013916, 3910770.635165359359235 ], [ 4972663.369421939365566, 3910791.787292622495443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972571.058393662795424, 3910889.198404442984611 ], [ 4972589.444978605024517, 3910909.260841733310372 ], [ 4972570.122389340773225, 3910927.06643554661423 ], [ 4972551.447914051823318, 3910907.003461529966444 ], [ 4972571.058393662795424, 3910889.198404442984611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975609.129458179697394, 3911329.220183074474335 ], [ 4975662.967388941906393, 3911327.508505332749337 ], [ 4975663.227984991855919, 3911340.981956131756306 ], [ 4975637.029109590686858, 3911341.657172451727092 ], [ 4975637.298564306460321, 3911350.761044334154576 ], [ 4975621.17635564878583, 3911351.092544245999306 ], [ 4975620.903210816904902, 3911343.809330338612199 ], [ 4975609.675754386931658, 3911343.786610550712794 ], [ 4975609.129458179697394, 3911329.220183074474335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975602.752954075112939, 3904945.603410999290645 ], [ 4975625.803855118341744, 3904938.367412361316383 ], [ 4975627.806993715465069, 3904944.561703215353191 ], [ 4975654.604229187592864, 3904935.876784072257578 ], [ 4975668.339657800272107, 3904978.507995276711881 ], [ 4975645.000090905465186, 3904986.107504851650447 ], [ 4975643.569177496246994, 3904981.735028930008411 ], [ 4975617.060679559595883, 3904990.056411762256175 ], [ 4975602.752954075112939, 3904945.603410999290645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975499.710907218977809, 3906349.487286616116762 ], [ 4975592.791149350814521, 3906311.805648913607001 ], [ 4975605.112059119157493, 3906341.689386839978397 ], [ 4975512.031902972608805, 3906379.370982552878559 ], [ 4975499.710907218977809, 3906349.487286616116762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975478.737888591364026, 3909464.960683293640614 ], [ 4975456.528168573975563, 3909485.307292161509395 ], [ 4975451.356925828382373, 3909479.834870039485395 ], [ 4975413.283197282813489, 3909514.714821482542902 ], [ 4975394.323419817723334, 3909493.921046503353864 ], [ 4975431.242601053789258, 3909460.495270843151957 ], [ 4975422.624579611234367, 3909451.01044498803094 ], [ 4975445.988121658563614, 3909429.573738080449402 ], [ 4975478.737888591364026, 3909464.960683293640614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975365.413908136077225, 3899257.398512519430369 ], [ 4975317.199270782060921, 3899315.198208453133702 ], [ 4975287.583775656297803, 3899290.377785673830658 ], [ 4975314.144662214443088, 3899258.751858100760728 ], [ 4975321.333266586065292, 3899264.592404462397099 ], [ 4975343.274280609562993, 3899238.783298048656434 ], [ 4975365.413908136077225, 3899257.398512519430369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975283.233896401710808, 3906036.990085993427783 ], [ 4975314.933711276389658, 3906023.945101259276271 ], [ 4975321.810577838681638, 3906040.709003522526473 ], [ 4975333.337718301452696, 3906035.998487661127001 ], [ 4975339.067940243519843, 3906050.211163685191423 ], [ 4975332.151511949487031, 3906053.110297238919884 ], [ 4975340.462196441367269, 3906072.790145290549845 ], [ 4975295.21826858073473, 3906091.26983364392072 ], [ 4975286.049594727344811, 3906068.675219188909978 ], [ 4975294.694386719726026, 3906065.415418051183224 ], [ 4975283.233896401710808, 3906036.990085993427783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976603.583704331889749, 3908485.917374406009912 ], [ 4976651.10455063264817, 3908478.732668230775744 ], [ 4976655.934516541659832, 3908510.058017312083393 ], [ 4976634.622135323472321, 3908513.291269270703197 ], [ 4976638.600383881479502, 3908538.788741080556065 ], [ 4976612.391997120343149, 3908542.740183067042381 ], [ 4976603.583704331889749, 3908485.917374406009912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976591.886509804055095, 3900323.885193452704698 ], [ 4976600.467315642163157, 3900352.669182901736349 ], [ 4976555.800143484957516, 3900365.685934189707041 ], [ 4976547.218544884584844, 3900337.266087855678052 ], [ 4976591.886509804055095, 3900323.885193452704698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976504.690843185409904, 3911492.722247924655676 ], [ 4976535.448497575707734, 3911514.997645150870085 ], [ 4976538.912819436751306, 3911510.271043912041932 ], [ 4976552.998035527765751, 3911520.495762087870389 ], [ 4976542.027058913372457, 3911535.766771605238318 ], [ 4976497.183449389412999, 3911503.630801868159324 ], [ 4976504.690843185409904, 3911492.722247924655676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976398.672423479147255, 3903253.649695564527065 ], [ 4976452.007493503391743, 3903224.264567208010703 ], [ 4976472.951522370800376, 3903262.177247857209295 ], [ 4976443.833636820316315, 3903278.139205023646355 ], [ 4976448.423953544348478, 3903286.523652236443013 ], [ 4976423.919604282826185, 3903299.582057514693588 ], [ 4976398.672423479147255, 3903253.649695564527065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972314.256759154610336, 3912254.572037232108414 ], [ 4972288.007673540152609, 3912282.196277786511928 ], [ 4972244.327632067725062, 3912241.694546981714666 ], [ 4972270.000963748432696, 3912214.069171014707536 ], [ 4972287.530850243754685, 3912230.124327744357288 ], [ 4972297.05006552208215, 3912219.94668518519029 ], [ 4972315.153603468090296, 3912237.095349584706128 ], [ 4972305.922953215427697, 3912246.909401069860905 ], [ 4972314.256759154610336, 3912254.572037232108414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975193.508370278403163, 3902825.170081286691129 ], [ 4975168.696513475850224, 3902848.060550493653864 ], [ 4975139.672419784590602, 3902817.415318949148059 ], [ 4975164.197035394608974, 3902794.160115990322083 ], [ 4975193.508370278403163, 3902825.170081286691129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975132.072613753378391, 3910627.303215172607452 ], [ 4975156.469571460038424, 3910664.129576856736094 ], [ 4975111.787369368597865, 3910693.534724935889244 ], [ 4975087.3903773650527, 3910656.708403145428747 ], [ 4975132.072613753378391, 3910627.303215172607452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975032.397262646816671, 3911091.008847328834236 ], [ 4975055.990804805420339, 3911097.610482734628022 ], [ 4975041.786688068881631, 3911146.375859642866999 ], [ 4975017.043100054375827, 3911139.043668828438967 ], [ 4975008.345324997790158, 3911169.613434920553118 ], [ 4974980.436465963721275, 3911161.546678212005645 ], [ 4974999.569492990151048, 3911095.31274602515623 ], [ 4975028.62923061195761, 3911103.745958872139454 ], [ 4975032.397262646816671, 3911091.008847328834236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976101.656808306463063, 3912760.536578633822501 ], [ 4976119.161740086041391, 3912787.518197204917669 ], [ 4976096.678297127597034, 3912802.037621129769832 ], [ 4976079.173352317884564, 3912775.056016958318651 ], [ 4976101.656808306463063, 3912760.536578633822501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972081.361735007725656, 3910735.331632573157549 ], [ 4972072.455053731799126, 3910725.84732914250344 ], [ 4972099.852169185876846, 3910700.7740050368011 ], [ 4972131.168087314814329, 3910734.697647131979465 ], [ 4972089.351683449931443, 3910772.852432161103934 ], [ 4972066.941750524565578, 3910748.777268243953586 ], [ 4972081.361735007725656, 3910735.331632573157549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974826.653015797957778, 3903823.248185934498906 ], [ 4974898.434581339359283, 3903784.065206306055188 ], [ 4974913.927947683259845, 3903812.498385475482792 ], [ 4974842.146435253322124, 3903851.681324397213757 ], [ 4974826.653015797957778, 3903823.248185934498906 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974780.229249872267246, 3909490.869861642830074 ], [ 4974798.298942472785711, 3909525.134335171896964 ], [ 4974774.089702509343624, 3909537.830737661570311 ], [ 4974756.019987667910755, 3909503.566280145198107 ], [ 4974780.229249872267246, 3909490.869861642830074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974717.905041689053178, 3896243.290914316661656 ], [ 4974681.850884042680264, 3896267.61591328214854 ], [ 4974656.577434627339244, 3896230.06033072900027 ], [ 4974692.343573857098818, 3896205.734725744929165 ], [ 4974717.905041689053178, 3896243.290914316661656 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974683.524290353059769, 3905131.651772253215313 ], [ 4974729.057358815334737, 3905113.171637913677841 ], [ 4974738.800555523484945, 3905136.859586029313505 ], [ 4974730.442758340388536, 3905140.484267403371632 ], [ 4974741.619168831035495, 3905167.452254128176719 ], [ 4974708.478152820840478, 3905180.859174300916493 ], [ 4974701.599957421422005, 3905164.459568009711802 ], [ 4974691.225077806971967, 3905168.808512748219073 ], [ 4974685.207097912207246, 3905154.231279740575701 ], [ 4974691.835013021714985, 3905151.695538816507906 ], [ 4974683.524290353059769, 3905131.651772253215313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974649.418097919784486, 3896064.002981123048812 ], [ 4974656.566467436030507, 3896090.59864672832191 ], [ 4974646.767084791325033, 3896093.492216521408409 ], [ 4974650.767913593910635, 3896109.52186887525022 ], [ 4974639.240258199162781, 3896112.412008172366768 ], [ 4974643.529858431778848, 3896128.078103505540639 ], [ 4974605.199431056156754, 3896138.197625732049346 ], [ 4974602.055492211133242, 3896125.81097719958052 ], [ 4974594.850714957341552, 3896127.617326754145324 ], [ 4974582.555740665644407, 3896081.712594162672758 ], [ 4974649.418097919784486, 3896064.002981123048812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974578.774631188251078, 3896390.487061775755137 ], [ 4974627.075596669688821, 3896436.099144760053605 ], [ 4974601.386267816647887, 3896462.993745381012559 ], [ 4974569.473448252305388, 3896432.707658019382507 ], [ 4974574.380296742543578, 3896427.619575394783169 ], [ 4974557.99215551186353, 3896412.293622272554785 ], [ 4974578.774631188251078, 3896390.487061775755137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975822.001375826075673, 3911409.396884721238166 ], [ 4975891.387054079212248, 3911406.624852201435715 ], [ 4975891.933195519261062, 3911421.191286121495068 ], [ 4975822.547554817982018, 3911423.963317256420851 ], [ 4975822.001375826075673, 3911409.396884721238166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971604.213928814046085, 3905725.429924700409174 ], [ 4971630.741615365259349, 3905705.816537170670927 ], [ 4971661.760315531864762, 3905748.113987079355866 ], [ 4971635.232647920027375, 3905767.72734450455755 ], [ 4971604.213928814046085, 3905725.429924700409174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974520.020941231399775, 3915559.362343727145344 ], [ 4974441.682768399827182, 3915582.511678442824632 ], [ 4974434.819354608654976, 3915559.921780617907643 ], [ 4974451.811912248842418, 3915554.857554750517011 ], [ 4974447.808857359923422, 3915541.376669018529356 ], [ 4974450.400846380740404, 3915540.653534464072436 ], [ 4974442.680402440950274, 3915514.784732034429908 ], [ 4974501.722006975673139, 3915497.423283106181771 ], [ 4974520.020941231399775, 3915559.362343727145344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974446.814939638599753, 3900483.048512403387576 ], [ 4974432.636656934395432, 3900516.520468454342335 ], [ 4974386.019609154202044, 3900496.765211805235595 ], [ 4974400.19712399225682, 3900463.657360726036131 ], [ 4974446.814939638599753, 3900483.048512403387576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974301.586347794160247, 3898186.919633423443884 ], [ 4974355.777396408841014, 3898165.542970804031938 ], [ 4974370.3939747819677, 3898202.348993028048426 ], [ 4974316.202988573350012, 3898223.725626648869365 ], [ 4974301.586347794160247, 3898186.919633423443884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975414.23251480050385, 3906330.015857281163335 ], [ 4975453.710029913112521, 3906315.166053765453398 ], [ 4975466.313886870630085, 3906347.599222030490637 ], [ 4975456.804619022645056, 3906351.2213563635014 ], [ 4975462.533238518983126, 3906366.162322356365621 ], [ 4975475.212746761739254, 3906361.090059691108763 ], [ 4975488.96315716393292, 3906396.074476903304458 ], [ 4975446.026832749135792, 3906412.737912485841662 ], [ 4975414.23251480050385, 3906330.015857281163335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975385.0287104556337, 3906533.506760310847312 ], [ 4975350.159978186711669, 3906547.637680847197771 ], [ 4975319.502615566365421, 3906472.200659184250981 ], [ 4975354.083493513055146, 3906458.069119759835303 ], [ 4975385.0287104556337, 3906533.506760310847312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975270.638836736790836, 3907575.422548465896398 ], [ 4975236.336387993767858, 3907595.016744422726333 ], [ 4975221.417018776759505, 3907568.76925459317863 ], [ 4975255.718758161179721, 3907549.539170613978058 ], [ 4975270.638836736790836, 3907575.422548465896398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971320.69496311340481, 3905513.703775754198432 ], [ 4971330.147640539333224, 3905540.303000096231699 ], [ 4971285.19895869679749, 3905555.87692777113989 ], [ 4971276.034866040572524, 3905528.914124677423388 ], [ 4971320.69496311340481, 3905513.703775754198432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971198.064435377717018, 3907818.430380147881806 ], [ 4971172.682710864581168, 3907842.415930849034339 ], [ 4971141.935337740927935, 3907809.951059528626502 ], [ 4971167.317065311595798, 3907785.965480261482298 ], [ 4971198.064435377717018, 3907818.430380147881806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974193.272961153648794, 3908134.7700180336833 ], [ 4974153.206490254029632, 3908157.995566561818123 ], [ 4974138.571429909206927, 3908133.2057592459023 ], [ 4974178.637924996204674, 3908109.980189251247793 ], [ 4974193.272961153648794, 3908134.7700180336833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974155.828446499072015, 3895854.016595984809101 ], [ 4974209.438649270683527, 3895837.372200431767851 ], [ 4974217.453815602697432, 3895862.877063682768494 ], [ 4974203.330788122490048, 3895867.21879410604015 ], [ 4974216.497830538079143, 3895909.48376826941967 ], [ 4974173.263972512446344, 3895922.871410552877933 ], [ 4974168.68458257522434, 3895907.93308146763593 ], [ 4974172.432085836306214, 3895906.483940727543086 ], [ 4974155.828446499072015, 3895854.016595984809101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974111.247168526984751, 3899628.136274399701506 ], [ 4974151.000299427658319, 3899624.209053839556873 ], [ 4974156.372841850854456, 3899674.833755595143884 ], [ 4974116.619784999638796, 3899678.760968326590955 ], [ 4974111.247168526984751, 3899628.136274399701506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973996.499939036555588, 3894991.808984314557165 ], [ 4974051.803637092001736, 3894993.738201946951449 ], [ 4974049.960853407159448, 3895051.995287407189608 ], [ 4974040.455651988275349, 3895051.612490171100944 ], [ 4974039.843067758716643, 3895070.181887322571129 ], [ 4974004.126034280285239, 3895069.019383097998798 ], [ 4974005.657792021520436, 3895022.413824634160846 ], [ 4973995.575748290866613, 3895022.39404065720737 ], [ 4973996.499939036555588, 3894991.808984314557165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973917.678907338529825, 3897730.273843030910939 ], [ 4973904.321134791709483, 3897785.595431664492935 ], [ 4973878.410664392635226, 3897779.354477768298239 ], [ 4973883.347083563916385, 3897758.972863878589123 ], [ 4973848.223925538361073, 3897750.529121189378202 ], [ 4973856.645898192189634, 3897715.224994350224733 ], [ 4973887.162767809815705, 3897722.56733705336228 ], [ 4973890.066594780422747, 3897710.556734297424555 ], [ 4973907.052493741735816, 3897714.595434329006821 ], [ 4973904.147946313023567, 3897726.97016387572512 ], [ 4973917.678907338529825, 3897730.273843030910939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974915.084203141741455, 3899916.299910298082978 ], [ 4974936.361731297336519, 3899933.82066661445424 ], [ 4974921.926540281623602, 3899951.270100268069655 ], [ 4974934.290415373630822, 3899961.490446879994124 ], [ 4974906.864471423439682, 3899994.207425397820771 ], [ 4974856.546369260177016, 3899952.59614171506837 ], [ 4974883.395555662922561, 3899920.242092267610133 ], [ 4974900.360283983871341, 3899934.112909330055118 ], [ 4974915.084203141741455, 3899916.299910298082978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970852.429016680456698, 3904456.489838477689773 ], [ 4970795.34029383957386, 3904496.074843812268227 ], [ 4970777.247330251149833, 3904469.824031830299646 ], [ 4970834.623367692343891, 3904430.603650166653097 ], [ 4970852.429016680456698, 3904456.489838477689773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970808.682024956680834, 3912092.990411913953722 ], [ 4970832.807111969217658, 3912123.622107941657305 ], [ 4970777.74307413212955, 3912166.852376927621663 ], [ 4970753.617963431403041, 3912136.220729515422136 ], [ 4970808.682024956680834, 3912092.990411913953722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973892.810669956728816, 3899838.90319569921121 ], [ 4973898.505184243433177, 3899872.41435093106702 ], [ 4973861.916964204050601, 3899878.168792102951556 ], [ 4973856.509699574671686, 3899845.022337272297591 ], [ 4973892.810669956728816, 3899838.90319569921121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973900.149698793888092, 3895650.694438017904758 ], [ 4973858.938357864506543, 3895660.809379861224443 ], [ 4973856.081357711926103, 3895648.787513934075832 ], [ 4973849.740658241324127, 3895650.595753814093769 ], [ 4973841.739326979033649, 3895617.808440683875233 ], [ 4973846.926400585100055, 3895616.726200753822923 ], [ 4973843.210220720618963, 3895602.153748779091984 ], [ 4973902.866263807751238, 3895587.341220581438392 ], [ 4973909.438682759180665, 3895614.299679761752486 ], [ 4973892.147002870216966, 3895618.635366147849709 ], [ 4973900.149698793888092, 3895650.694438017904758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973869.645330229774117, 3899167.037301601376384 ], [ 4973916.342123756185174, 3899147.465725826099515 ], [ 4973931.536219087429345, 3899183.544401852879673 ], [ 4973884.839477023109794, 3899203.115951658692211 ], [ 4973869.645330229774117, 3899167.037301601376384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973748.336739507503808, 3902291.040928948670626 ], [ 4973771.608365442603827, 3902319.124484306201339 ], [ 4973707.575122095644474, 3902371.0701510803774 ], [ 4973684.303474546410143, 3902342.986650299280882 ], [ 4973748.336739507503808, 3902291.040928948670626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973714.918369008228183, 3902592.476144669577479 ], [ 4973741.4457055516541, 3902575.413786003831774 ], [ 4973757.237510986626148, 3902599.477284105028957 ], [ 4973730.709477000869811, 3902616.903757081832737 ], [ 4973714.918369008228183, 3902592.476144669577479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973631.517985565587878, 3899283.457995117176324 ], [ 4973662.647502796724439, 3899271.138250021729618 ], [ 4973658.922505909577012, 3899261.299467973411083 ], [ 4973688.610575049184263, 3899249.705203032586724 ], [ 4973702.366985747590661, 3899284.688555401749909 ], [ 4973683.631952012889087, 3899291.93460663408041 ], [ 4973687.930829424411058, 3899302.866902889218181 ], [ 4973668.619077214971185, 3899310.475969796534628 ], [ 4973664.893377926200628, 3899301.001315627247095 ], [ 4973642.122642232105136, 3899310.060177625156939 ], [ 4973631.517985565587878, 3899283.457995117176324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973628.460923167876899, 3898487.463357433211058 ], [ 4973641.073529834859073, 3898518.43900106055662 ], [ 4973577.370573026128113, 3898544.168148904573172 ], [ 4973564.758613912388682, 3898512.828405937645584 ], [ 4973628.460923167876899, 3898487.463357433211058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974667.283797083422542, 3904610.183072343003005 ], [ 4974689.975811644457281, 3904638.630447665695101 ], [ 4974682.766067472286522, 3904644.07808378059417 ], [ 4974697.128344886936247, 3904661.949090064968914 ], [ 4974667.422644973732531, 3904685.19444200117141 ], [ 4974630.656286433339119, 3904638.876678696833551 ], [ 4974667.283797083422542, 3904610.183072343003005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974585.381740532815456, 3895818.816616020631045 ], [ 4974547.9200976844877, 3895826.389035522006452 ], [ 4974545.638801286928356, 3895814.732365559320897 ], [ 4974537.569794916547835, 3895816.537016862537712 ], [ 4974533.861956797540188, 3895797.959057998843491 ], [ 4974515.419536333531141, 3895801.563803770113736 ], [ 4974509.715529549866915, 3895772.786264854483306 ], [ 4974572.823836823925376, 3895760.166839601006359 ], [ 4974577.386413509957492, 3895783.48018365772441 ], [ 4974591.218605263158679, 3895780.594590986613184 ], [ 4974595.498893295414746, 3895800.99434158205986 ], [ 4974582.243534036912024, 3895803.51694691227749 ], [ 4974585.381740532815456, 3895818.816616020631045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970792.36329347640276, 3897987.233574151527137 ], [ 4970808.137621637433767, 3898023.675649967510253 ], [ 4970767.205697954632342, 3898041.078451722860336 ], [ 4970751.719351081177592, 3898004.636929993052036 ], [ 4970792.36329347640276, 3897987.233574151527137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970739.564817558974028, 3893341.936780903488398 ], [ 4970765.799889941699803, 3893331.061220250558108 ], [ 4970774.403279885649681, 3893352.196547703351825 ], [ 4970748.168224601075053, 3893363.07210008520633 ], [ 4970739.564817558974028, 3893341.936780903488398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970621.188662927597761, 3900699.689000430516899 ], [ 4970631.024066687561572, 3900676.038584083784372 ], [ 4970789.304734655655921, 3900740.41684273025021 ], [ 4970779.469214853830636, 3900764.067202056292444 ], [ 4970621.188662927597761, 3900699.689000430516899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970594.288742837496102, 3893231.338667287956923 ], [ 4970569.212632884271443, 3893238.575231474358588 ], [ 4970562.056112779304385, 3893213.80133602861315 ], [ 4970587.132243876345456, 3893206.564765277784318 ], [ 4970594.288742837496102, 3893231.338667287956923 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970472.528447538614273, 3897740.494140618946403 ], [ 4970479.975193224847317, 3897763.447962344158441 ], [ 4970499.572508544661105, 3897757.293653937522322 ], [ 4970508.452030409127474, 3897784.255538094323128 ], [ 4970449.659497706219554, 3897803.082615825813264 ], [ 4970433.333147604949772, 3897753.166939740069211 ], [ 4970472.528447538614273, 3897740.494140618946403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973468.052503563463688, 3904257.895674285944551 ], [ 4973445.271882355213165, 3904274.237330940086395 ], [ 4973441.539020093157887, 3904268.768109725322574 ], [ 4973424.236717512831092, 3904281.479110562708229 ], [ 4973396.091616345569491, 3904242.826552077196538 ], [ 4973436.174569465219975, 3904213.77385017927736 ], [ 4973468.052503563463688, 3904257.895674285944551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973454.794663271866739, 3903374.487366321031004 ], [ 4973459.390139441005886, 3903380.68652443215251 ], [ 4973442.664610014297068, 3903392.670365764759481 ], [ 4973416.528728513047099, 3903356.934760396834463 ], [ 4973452.57579128164798, 3903330.787311599124223 ], [ 4973474.404145373031497, 3903360.32434970792383 ], [ 4973454.794663271866739, 3903374.487366321031004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973362.741133800707757, 3911786.48954388871789 ], [ 4973392.050348279066384, 3911814.584661995992064 ], [ 4973371.281418947502971, 3911836.028213401790708 ], [ 4973341.972206268459558, 3911807.933117578271776 ], [ 4973362.741133800707757, 3911786.48954388871789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974434.496342021971941, 3899576.70332059264183 ], [ 4974437.624816071242094, 3899596.736683454364538 ], [ 4974407.086460188031197, 3899601.409963975660503 ], [ 4974399.978394789621234, 3899554.787215741816908 ], [ 4974438.871250496245921, 3899549.038067693822086 ], [ 4974442.85078205820173, 3899575.627462238073349 ], [ 4974434.496342021971941, 3899576.70332059264183 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974393.173399062827229, 3896004.142039746511728 ], [ 4974354.559877783991396, 3896011.712451726198196 ], [ 4974351.992623646743596, 3895998.962843266315758 ], [ 4974340.754439485259354, 3896001.125422988086939 ], [ 4974336.191695351153612, 3895977.812116103246808 ], [ 4974339.073615171946585, 3895977.089548383373767 ], [ 4974333.083566365763545, 3895947.219090503640473 ], [ 4974392.733357584103942, 3895935.320671922992915 ], [ 4974397.579788841307163, 3895960.819326496683061 ], [ 4974385.188672023825347, 3895963.343737767543644 ], [ 4974393.173399062827229, 3896004.142039746511728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970076.054426751099527, 3898771.351323619950563 ], [ 4970066.767080659046769, 3898810.29637690866366 ], [ 4970006.597120119258761, 3898795.986087908037007 ], [ 4970016.175044839270413, 3898755.585021066479385 ], [ 4970037.479152461513877, 3898760.72150375507772 ], [ 4970040.961811897344887, 3898746.162621034774929 ], [ 4970059.963097291067243, 3898750.56668118853122 ], [ 4970056.189765066839755, 3898766.581554142292589 ], [ 4970076.054426751099527, 3898771.351323619950563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970041.81578172929585, 3897641.029655915219337 ], [ 4969992.242870193906128, 3897658.417950152419508 ], [ 4969982.212647567503154, 3897630.361763708759099 ], [ 4969973.278423399664462, 3897633.258606443647295 ], [ 4969966.115279792807996, 3897612.490220869891346 ], [ 4970009.347617625258863, 3897597.275155405048281 ], [ 4970017.084811201319098, 3897619.13698344072327 ], [ 4970032.072313212789595, 3897613.702231312170625 ], [ 4970041.81578172929585, 3897641.029655915219337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973188.034199993126094, 3910278.640930368565023 ], [ 4973226.914102137088776, 3910271.433464883826673 ], [ 4973231.759000550024211, 3910296.932130896952003 ], [ 4973192.879837959073484, 3910303.775458095595241 ], [ 4973188.034199993126094, 3910278.640930368565023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974127.023098088800907, 3912830.132273675408214 ], [ 4974068.188576702028513, 3912885.728937891777605 ], [ 4973902.71833636239171, 3912711.348376146517694 ], [ 4973961.552180590108037, 3912656.115487544797361 ], [ 4974127.023098088800907, 3912830.132273675408214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974154.265426919795573, 3896648.18033590586856 ], [ 4974183.958026776090264, 3896635.858379523735493 ], [ 4974195.13855647854507, 3896662.82600115146488 ], [ 4974165.445981212891638, 3896675.147945392411202 ], [ 4974154.265426919795573, 3896648.18033590586856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974140.21789260674268, 3899541.894364732783288 ], [ 4974143.04926479794085, 3899566.660802882164717 ], [ 4974128.357188303023577, 3899568.452545878943056 ], [ 4974131.185702846385539, 3899594.675499125849456 ], [ 4974100.937555967830122, 3899598.25730719184503 ], [ 4974092.43973795324564, 3899525.778651493601501 ], [ 4974117.790359769947827, 3899522.915460818447173 ], [ 4974120.340907510370016, 3899544.040040025487542 ], [ 4974140.21789260674268, 3899541.894364732783288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974021.442790264263749, 3899453.541348854545504 ], [ 4973959.182447523809969, 3899478.9083046996966 ], [ 4973947.142400624230504, 3899450.1183971920982 ], [ 4974009.403513287194073, 3899424.38728494849056 ], [ 4974021.442790264263749, 3899453.541348854545504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973963.442767448723316, 3900684.188608646858484 ], [ 4973982.155475102365017, 3900687.866623224224895 ], [ 4973983.90275145880878, 3900678.038524470292032 ], [ 4974006.645999594591558, 3900682.452725923154503 ], [ 4973997.916736707091331, 3900727.951921784784645 ], [ 4973956.460841939784586, 3900719.859717789571732 ], [ 4973963.442767448723316, 3900684.188608646858484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973905.819245123304427, 3900990.309538377448916 ], [ 4973779.386837556026876, 3900991.51865134621039 ], [ 4973779.15008463896811, 3900965.300778971519321 ], [ 4973905.58261552080512, 3900964.091664915438741 ], [ 4973905.819245123304427, 3900990.309538377448916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969985.421875642612576, 3895065.802889052312821 ], [ 4969937.566008999012411, 3895086.835672188550234 ], [ 4969924.369418485090137, 3895056.953170645982027 ], [ 4969972.225327871739864, 3895035.920364393852651 ], [ 4969985.421875642612576, 3895065.802889052312821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969924.635802425444126, 3897295.986257376149297 ], [ 4969898.696264190599322, 3897305.042542689014226 ], [ 4969881.214471432380378, 3897256.217517264652997 ], [ 4969927.32899824436754, 3897240.279277244582772 ], [ 4969941.944228497333825, 3897281.452413897495717 ], [ 4969922.057342275977135, 3897288.33486275235191 ], [ 4969924.635802425444126, 3897295.986257376149297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969896.571263615041971, 3902297.993858465459198 ], [ 4969931.94536536373198, 3902324.275336858816445 ], [ 4969916.646150981076062, 3902344.274826621171087 ], [ 4969923.54843660350889, 3902349.385159150697291 ], [ 4969908.53722236957401, 3902369.385175403207541 ], [ 4969900.484997693449259, 3902363.180372247938067 ], [ 4969880.566955167800188, 3902389.361747328657657 ], [ 4969846.631470969878137, 3902363.811198604758829 ], [ 4969896.571263615041971, 3902297.993858465459198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969759.844442396424711, 3899230.675157714635134 ], [ 4969749.414858104661107, 3899264.520445723552257 ], [ 4969680.90517820045352, 3899243.641489448025823 ], [ 4969689.596759483218193, 3899215.254996134899557 ], [ 4969710.898594807833433, 3899221.483608435373753 ], [ 4969712.347853424027562, 3899216.388398642186075 ], [ 4969759.844442396424711, 3899230.675157714635134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972670.158995538018644, 3903933.372583747375757 ], [ 4972648.334405342116952, 3903901.651408764068037 ], [ 4972689.567515562288463, 3903873.328062309883535 ], [ 4972696.172552801668644, 3903882.808120011352003 ], [ 4972712.320122475735843, 3903871.550967511255294 ], [ 4972726.9651113813743, 3903893.0627635512501 ], [ 4972696.112602893263102, 3903914.123297476675361 ], [ 4972705.589588413015008, 3903927.614300410728902 ], [ 4972690.307337733916938, 3903938.144851009361446 ], [ 4972681.692146589979529, 3903925.747896666172892 ], [ 4972670.158995538018644, 3903933.372583747375757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972523.842210839502513, 3904100.593424080405384 ], [ 4972498.475244878791273, 3904114.382026868872344 ], [ 4972484.70032627414912, 3904089.594829306472093 ], [ 4972510.067308495752513, 3904075.806213721632957 ], [ 4972523.842210839502513, 3904100.593424080405384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973800.728046445176005, 3909663.719836608041078 ], [ 4973813.702136133797467, 3909654.277767890598625 ], [ 4973843.565495233051479, 3909694.390798599459231 ], [ 4973830.879315411671996, 3909703.833416569977999 ], [ 4973800.728046445176005, 3909663.719836608041078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973668.368341247551143, 3912871.108751926571131 ], [ 4973726.912775050848722, 3912816.238914136774838 ], [ 4973782.356604569591582, 3912874.972745096310973 ], [ 4973723.81218480784446, 3912929.842464081477374 ], [ 4973668.368341247551143, 3912871.108751926571131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973657.030056204646826, 3900379.540338085033 ], [ 4973697.38714365940541, 3900360.684272055979818 ], [ 4973718.32592864241451, 3900404.420807169750333 ], [ 4973701.894253785721958, 3900412.399606859777123 ], [ 4973699.600197028368711, 3900407.29730204353109 ], [ 4973675.674121360294521, 3900418.538668623194098 ], [ 4973657.030056204646826, 3900379.540338085033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973541.50465408153832, 3910312.462654447648674 ], [ 4973526.805027576163411, 3910321.173234578222036 ], [ 4973510.16310425940901, 3910292.374369907658547 ], [ 4973551.089527036994696, 3910269.149512914940715 ], [ 4973565.149586164392531, 3910293.209649123717099 ], [ 4973558.808812003582716, 3910296.838630692102015 ], [ 4973565.694886690936983, 3910308.868419760838151 ], [ 4973546.096082475967705, 3910320.118379346095026 ], [ 4973541.50465408153832, 3910312.462654447648674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972186.70087833236903, 3902548.389376515056938 ], [ 4972161.900301186367869, 3902566.548931901343167 ], [ 4972138.058839865028858, 3902534.460249109659344 ], [ 4972162.860120214521885, 3902515.936542394105345 ], [ 4972186.70087833236903, 3902548.389376515056938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973464.361459762789309, 3900080.578318818006665 ], [ 4973515.650280811823905, 3900068.297570830211043 ], [ 4973517.934487892314792, 3900078.497666417155415 ], [ 4973531.18905642349273, 3900075.24627157766372 ], [ 4973535.472993637435138, 3900093.825259909965098 ], [ 4973524.523882272653282, 3900096.352875587996095 ], [ 4973528.525483003817499, 3900112.018269962631166 ], [ 4973486.169100937433541, 3900122.13156955409795 ], [ 4973481.883011342026293, 3900104.644976115785539 ], [ 4973470.933909463696182, 3900107.172613636124879 ], [ 4973464.361459762789309, 3900080.578318818006665 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973461.077525353059173, 3897916.181738685816526 ], [ 4973483.849378769285977, 3897907.122730869799852 ], [ 4973479.836097897030413, 3897897.283421917818487 ], [ 4973494.248801126144826, 3897891.485351414885372 ], [ 4973497.40153391379863, 3897899.502339699771255 ], [ 4973517.002277266234159, 3897891.893716278485954 ], [ 4973524.742199379950762, 3897910.843528432771564 ], [ 4973531.371788259595633, 3897908.307512408588082 ], [ 4973541.11726060975343, 3897932.723180762957782 ], [ 4973477.989775378257036, 3897958.089547162409872 ], [ 4973461.077525353059173, 3897916.181738685816526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969227.213522925041616, 3899121.208334893919528 ], [ 4969209.900167809799314, 3899139.38394471257925 ], [ 4969195.236122151836753, 3899125.52083625132218 ], [ 4969188.598801418207586, 3899132.791600761469454 ], [ 4969152.656712365336716, 3899099.227544294670224 ], [ 4969176.607382887043059, 3899073.781129161827266 ], [ 4969227.213522925041616, 3899121.208334893919528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969220.316380848176777, 3893947.6425088099204 ], [ 4969262.665258715860546, 3893946.261593347415328 ], [ 4969264.304580660536885, 3893996.150202665943652 ], [ 4969221.955781283788383, 3893997.531115591526031 ], [ 4969220.316380848176777, 3893947.6425088099204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969120.029167310334742, 3896719.216355323325843 ], [ 4969158.285298905335367, 3896749.143142615444958 ], [ 4969136.056279171258211, 3896777.141517104115337 ], [ 4969117.359642861410975, 3896762.543030053842813 ], [ 4969110.142441032454371, 3896771.633420368190855 ], [ 4969090.582315484061837, 3896756.66928495047614 ], [ 4969120.029167310334742, 3896719.216355323325843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969102.919085980392992, 3898563.867692967411131 ], [ 4969090.828060341998935, 3898560.568999134935439 ], [ 4969086.191866659559309, 3898576.218339634593576 ], [ 4969058.268145182169974, 3898568.157796724233776 ], [ 4969063.485547011718154, 3898549.596445054281503 ], [ 4969036.425205761566758, 3898541.901590926107019 ], [ 4969043.380434781312943, 3898517.881374803837389 ], [ 4969063.244163329713047, 3898523.378652825951576 ], [ 4969066.720495091751218, 3898512.096805860754102 ], [ 4969113.932595520280302, 3898525.289518524892628 ], [ 4969102.919085980392992, 3898563.867692967411131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969098.388106722384691, 3898196.816580181475729 ], [ 4969102.725327167659998, 3898187.356922315433621 ], [ 4969126.324525469914079, 3898197.958715547341853 ], [ 4969103.194411681033671, 3898247.439202684443444 ], [ 4969086.790662117302418, 3898239.763274102006108 ], [ 4969083.900054826401174, 3898245.584209403023124 ], [ 4969050.229108594357967, 3898229.866720388643444 ], [ 4969071.623866249807179, 3898184.388530413620174 ], [ 4969098.388106722384691, 3898196.816580181475729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972114.719660454429686, 3905584.015922993421555 ], [ 4972069.179554271511734, 3905607.598317623138428 ], [ 4972056.556791719980538, 3905582.813495206646621 ], [ 4972102.096928705461323, 3905559.2310795430094 ], [ 4972114.719660454429686, 3905584.015922993421555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971927.339156338013709, 3905850.934546651318669 ], [ 4971901.102769606746733, 3905868.727533739525825 ], [ 4971864.059738331474364, 3905814.766240728553385 ], [ 4971890.296153016388416, 3905796.973218067549169 ], [ 4971927.339156338013709, 3905850.934546651318669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973058.032688318751752, 3900205.781158098950982 ], [ 4973048.223047325387597, 3900214.865513330791146 ], [ 4973031.839161417447031, 3900198.08393955649808 ], [ 4973041.360799934715033, 3900188.999023464508355 ], [ 4973026.41480556037277, 3900173.312615615781397 ], [ 4973048.919757726602256, 3900152.236410648096353 ], [ 4973096.9193947147578, 3900202.578969950787723 ], [ 4973074.991154277697206, 3900223.29211689112708 ], [ 4973058.032688318751752, 3900205.781158098950982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973026.116032740101218, 3911088.159831424243748 ], [ 4973037.317625474184752, 3911101.654339866712689 ], [ 4973027.514761066995561, 3911109.282237073872238 ], [ 4973044.173539719544351, 3911129.341659392695874 ], [ 4973019.087480783462524, 3911150.048885923810303 ], [ 4972979.163933461531997, 3911101.906437715515494 ], [ 4973004.538594129495323, 3911080.835597534198314 ], [ 4973017.176825080066919, 3911095.789396783336997 ], [ 4973026.116032740101218, 3911088.159831424243748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972969.565666112117469, 3903374.27740486850962 ], [ 4972988.884819772094488, 3903361.205869300756603 ], [ 4973001.232427737675607, 3903379.436204281635582 ], [ 4972981.913982076570392, 3903392.143601259682328 ], [ 4972969.565666112117469, 3903374.27740486850962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972834.781719741411507, 3908481.330424147192389 ], [ 4972862.167140181176364, 3908463.904663196299225 ], [ 4972873.648733583278954, 3908482.133337347768247 ], [ 4972887.485408722423017, 3908473.420749824494123 ], [ 4972921.069138357415795, 3908526.648635311983526 ], [ 4972879.559189120307565, 3908552.786368376109749 ], [ 4972834.781719741411507, 3908481.330424147192389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968975.726796315051615, 3893146.123453346081078 ], [ 4969003.937791469506919, 3893157.82567392475903 ], [ 4968980.792608962394297, 3893213.496290932875127 ], [ 4968952.582308387383819, 3893201.429966506082565 ], [ 4968975.726796315051615, 3893146.123453346081078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968953.770478643476963, 3894642.290702132508159 ], [ 4968984.307039660401642, 3894641.25252000335604 ], [ 4968985.123379996977746, 3894668.19953044783324 ], [ 4968954.586849545128644, 3894669.237711667083204 ], [ 4968953.770478643476963, 3894642.290702132508159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968910.102504302747548, 3905944.82157930592075 ], [ 4968925.952199758961797, 3905937.567062518559396 ], [ 4968939.14645289350301, 3905966.356877464801073 ], [ 4968923.296770811080933, 3905973.611386604141444 ], [ 4968910.102504302747548, 3905944.82157930592075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968899.419405364431441, 3894427.358096926938742 ], [ 4968898.772280961275101, 3894467.411156937945634 ], [ 4968871.40681373141706, 3894466.998537098523229 ], [ 4968872.053897365927696, 3894426.945476437453181 ], [ 4968899.419405364431441, 3894427.358096926938742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968878.911746883764863, 3892019.337381176184863 ], [ 4968903.637839129194617, 3892047.419102077838033 ], [ 4968875.361130321398377, 3892072.12974454369396 ], [ 4968850.635031408630311, 3892044.048049239907414 ], [ 4968878.911746883764863, 3892019.337381176184863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971709.301506564021111, 3898216.156400216277689 ], [ 4971717.327897065319121, 3898236.562751303892583 ], [ 4971700.897546128369868, 3898243.45037769433111 ], [ 4971692.583804490044713, 3898222.679362149909139 ], [ 4971709.301506564021111, 3898216.156400216277689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971611.498128854669631, 3892306.517002844251692 ], [ 4971639.466502430848777, 3892293.824901951476932 ], [ 4971633.154505329206586, 3892279.976179343648255 ], [ 4971651.031648134812713, 3892271.634726264048368 ], [ 4971657.34432072751224, 3892285.11932552466169 ], [ 4971678.969341265968978, 3892275.328403250314295 ], [ 4971694.749948806129396, 3892309.586112073622644 ], [ 4971667.070335563272238, 3892321.914568329229951 ], [ 4971663.914348258636892, 3892314.99020347231999 ], [ 4971623.835403589531779, 3892333.485645146574825 ], [ 4971611.498128854669631, 3892306.517002844251692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971490.035850880667567, 3898720.429966329596937 ], [ 4971450.834014777094126, 3898737.106706719379872 ], [ 4971444.237467098981142, 3898722.165051408112049 ], [ 4971408.2065843436867, 3898737.391255177091807 ], [ 4971415.375107478350401, 3898754.518750134855509 ], [ 4971401.539353564381599, 3898760.319013124331832 ], [ 4971399.81871687900275, 3898756.310371107421815 ], [ 4971374.452727772295475, 3898767.186959333717823 ], [ 4971342.621817127801478, 3898692.480939759407192 ], [ 4971381.246933150105178, 3898676.167096472810954 ], [ 4971387.842847969383001, 3898691.472864766605198 ], [ 4971424.450498801656067, 3898675.883580560330302 ], [ 4971417.853921316564083, 3898660.941932269837707 ], [ 4971457.34386735688895, 3898644.265682546421885 ], [ 4971490.035850880667567, 3898720.429966329596937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972637.776534617878497, 3913786.369705789722502 ], [ 4972619.03447465505451, 3913802.719869133550674 ], [ 4972598.927628351375461, 3913780.1051483200863 ], [ 4972617.669691778719425, 3913763.754971181042492 ], [ 4972637.776534617878497, 3913786.369705789722502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971389.880626403726637, 3902693.635723405051976 ], [ 4971405.67106696870178, 3902719.518490103539079 ], [ 4971387.219549424014986, 3902730.772121730726212 ], [ 4971392.961400754749775, 3902740.250240826047957 ], [ 4971374.797878321260214, 3902751.504418439697474 ], [ 4971369.917233653366566, 3902743.484433350153267 ], [ 4971350.312487746588886, 3902755.464201744645834 ], [ 4971333.947420780546963, 3902728.852134146727622 ], [ 4971347.209920193068683, 3902720.501840583980083 ], [ 4971342.903856161050498, 3902713.211193695664406 ], [ 4971366.833024485968053, 3902698.690567170735449 ], [ 4971371.1404425855726, 3902705.252958353143185 ], [ 4971389.880626403726637, 3902693.635723405051976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971361.714626990258694, 3904053.613053612411022 ], [ 4971343.837249670177698, 3904066.324318310245872 ], [ 4971351.017278328537941, 3904076.533380187116563 ], [ 4971336.022926982492208, 3904087.429368814919144 ], [ 4971329.992026678286493, 3904078.678977591916919 ], [ 4971298.273554456420243, 3904101.560159088578075 ], [ 4971281.03995318338275, 3904077.859533468727022 ], [ 4971311.893197101540864, 3904055.704982691444457 ], [ 4971308.447154060937464, 3904050.6007250091061 ], [ 4971342.184143204241991, 3904026.2667934037745 ], [ 4971361.714626990258694, 3904053.613053612411022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971109.089541580528021, 3905184.135362433735281 ], [ 4971074.201741601340473, 3905208.831598589662462 ], [ 4971055.246358891949058, 3905182.214856058824807 ], [ 4971090.134175865910947, 3905157.518595694564283 ], [ 4971109.089541580528021, 3905184.135362433735281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971040.92149671074003, 3907784.638565668836236 ], [ 4971071.484401496127248, 3907761.390762245282531 ], [ 4971091.877547260373831, 3907788.010228738188744 ], [ 4971061.314654983580112, 3907811.258009352255613 ], [ 4971040.92149671074003, 3907784.638565668836236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972360.614119002595544, 3902107.756986051332206 ], [ 4972337.534682518802583, 3902129.196826939471066 ], [ 4972286.952150423079729, 3902075.209347554948181 ], [ 4972310.032284481450915, 3902053.405334350187331 ], [ 4972360.614119002595544, 3902107.756986051332206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972173.271164058707654, 3903556.64295461634174 ], [ 4972220.263645076192915, 3903528.329808135982603 ], [ 4972246.387818686664104, 3903570.982722092885524 ], [ 4972222.747605875134468, 3903585.13898942200467 ], [ 4972231.071697833947837, 3903599.355897360481322 ], [ 4972207.719484352506697, 3903613.512724443804473 ], [ 4972173.271164058707654, 3903556.64295461634174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972145.79224041942507, 3903621.042124604806304 ], [ 4972163.310581086203456, 3903646.200363455340266 ], [ 4972117.752680298872292, 3903677.429376419167966 ], [ 4972100.235006525181234, 3903651.907036853022873 ], [ 4972145.79224041942507, 3903621.042124604806304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968308.740393934771419, 3902077.416371655184776 ], [ 4968329.993072819896042, 3902110.589496760163456 ], [ 4968268.008047247305512, 3902149.807109019719064 ], [ 4968253.647794453427196, 3902127.570010146591812 ], [ 4968274.406090860255063, 3902114.133484148886055 ], [ 4968267.513624493964016, 3902103.197500910609961 ], [ 4968308.740393934771419, 3902077.416371655184776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968138.447127701714635, 3903782.344101972877979 ], [ 4968160.638829402625561, 3903771.823027287609875 ], [ 4968170.968681441619992, 3903792.960669079329818 ], [ 4968149.064957406371832, 3903803.482237929943949 ], [ 4968157.96007071621716, 3903821.704321862664074 ], [ 4968129.427486514672637, 3903835.491517431568354 ], [ 4968115.367419376969337, 3903806.700630900450051 ], [ 4968143.612062447704375, 3903792.912918142974377 ], [ 4968138.447127701714635, 3903782.344101972877979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971057.663602169603109, 3896107.357763878069818 ], [ 4971044.589527952484787, 3896167.77905061841011 ], [ 4971020.115046410821378, 3896162.635910844895989 ], [ 4971033.189068052917719, 3896102.21461238572374 ], [ 4971057.663602169603109, 3896107.357763878069818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970809.71905774064362, 3904038.024132817052305 ], [ 4970788.981781741604209, 3904040.170684517361224 ], [ 4970787.850743073970079, 3904028.880529628135264 ], [ 4970761.064250133000314, 3904032.108346277382225 ], [ 4970757.665057550184429, 3904001.515056045725942 ], [ 4970771.20196383446455, 3904000.083473067730665 ], [ 4970770.63476250693202, 3903995.348721222486347 ], [ 4970804.33305932674557, 3903991.769527407828718 ], [ 4970809.71905774064362, 3904038.024132817052305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970704.302645755000412, 3913122.566800621338189 ], [ 4970724.69474846124649, 3913147.729548862203956 ], [ 4970715.757549395784736, 3913154.995757750235498 ], [ 4970725.235604477114975, 3913166.665478807874024 ], [ 4970684.298615319654346, 3913199.362117763608694 ], [ 4970654.429104850627482, 3913162.16556778922677 ], [ 4970704.302645755000412, 3913122.566800621338189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970713.304982787929475, 3893053.134209507144988 ], [ 4970710.135438445955515, 3893053.492507023736835 ], [ 4970702.134852897375822, 3893017.793157112784684 ], [ 4970729.225753732956946, 3893011.652812171727419 ], [ 4970734.084239296615124, 3893032.781230424996465 ], [ 4970739.848514776676893, 3893031.335325445048511 ], [ 4970743.277986922301352, 3893046.270923719275743 ], [ 4970752.788635565899312, 3893044.103661021683365 ], [ 4970759.363502509891987, 3893071.789565095677972 ], [ 4970750.42969211563468, 3893073.593758684117347 ], [ 4970753.859823406673968, 3893088.165230998769403 ], [ 4970723.021956000477076, 3893095.391042408533394 ], [ 4970713.304982787929475, 3893053.134209507144988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967911.117395255714655, 3898712.158006865531206 ], [ 4967839.309182205237448, 3898764.832300956360996 ], [ 4967817.470261226408184, 3898735.664050980471075 ], [ 4967846.597384222783148, 3898714.230857233516872 ], [ 4967839.126566953957081, 3898704.022265435196459 ], [ 4967857.007103033363819, 3898690.580452558584511 ], [ 4967863.615754805505276, 3898699.695163881871849 ], [ 4967888.416978896595538, 3898681.531684378162026 ], [ 4967911.117395255714655, 3898712.158006865531206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967917.032250761054456, 3892815.820656177587807 ], [ 4967914.594234134070575, 3892892.647599476855248 ], [ 4967874.552839825861156, 3892891.485740514472127 ], [ 4967875.178259662352502, 3892863.084779046475887 ], [ 4967867.400689731352031, 3892862.707162775564939 ], [ 4967868.015368649736047, 3892840.496372397523373 ], [ 4967878.097599151544273, 3892840.877985938917845 ], [ 4967878.719234416261315, 3892814.661791516002268 ], [ 4967917.032250761054456, 3892815.820656177587807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970475.880058193579316, 3900471.112629232462496 ], [ 4970429.22605602350086, 3900469.934829075820744 ], [ 4970429.854693514294922, 3900441.169670618604869 ], [ 4970476.796078974381089, 3900442.712128605693579 ], [ 4970475.880058193579316, 3900471.112629232462496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970414.875566942617297, 3913346.705827908124775 ], [ 4970436.393881437368691, 3913385.707490555942059 ], [ 4970409.307569180615246, 3913400.587379198055714 ], [ 4970419.348729657940567, 3913419.176559034269303 ], [ 4970395.144402322359383, 3913432.241070346906781 ], [ 4970363.297001948580146, 3913374.649750872049481 ], [ 4970414.875566942617297, 3913346.705827908124775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971362.902638939209282, 3908357.288842861074954 ], [ 4971316.211475116200745, 3908383.419323085807264 ], [ 4971285.504904051311314, 3908329.470547733362764 ], [ 4971332.196810187771916, 3908302.975884030107409 ], [ 4971362.902638939209282, 3908357.288842861074954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967312.049248624593019, 3899881.074911457486451 ], [ 4967343.146438504569232, 3899885.497787200380117 ], [ 4967338.775767385959625, 3899914.984846049454063 ], [ 4967348.85410253610462, 3899916.094521087128669 ], [ 4967347.685841021127999, 3899925.559905174653977 ], [ 4967361.794379443861544, 3899927.76888859923929 ], [ 4967358.881837838329375, 3899946.698667700402439 ], [ 4967318.283030676655471, 3899940.80296448757872 ], [ 4967320.906914248131216, 3899922.236816595308483 ], [ 4967306.222357771359384, 3899920.026867598295212 ], [ 4967312.049248624593019, 3899881.074911457486451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971225.115346660837531, 3903645.531668062321842 ], [ 4971198.327741658315063, 3903649.123178033623844 ], [ 4971195.482596459798515, 3903630.547198345419019 ], [ 4971187.705480460077524, 3903631.625138982199132 ], [ 4971181.451412612572312, 3903587.917773702647537 ], [ 4971216.304850514046848, 3903582.884717852808535 ], [ 4971225.115346660837531, 3903645.531668062321842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971184.918319191783667, 3902031.992339571006596 ], [ 4971148.331597205251455, 3902038.842871128115803 ], [ 4971143.197923596948385, 3902011.887656958308071 ], [ 4971133.979072357527912, 3902013.691198120824993 ], [ 4971129.131335791200399, 3901987.828910349402577 ], [ 4971174.936986836604774, 3901979.174822631292045 ], [ 4971184.918319191783667, 3902031.992339571006596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971045.272996329702437, 3891910.746772284153849 ], [ 4971069.788458544760942, 3891895.862914355006069 ], [ 4971084.149181941524148, 3891919.557892829645425 ], [ 4971059.633733306080103, 3891934.441737864632159 ], [ 4971045.272996329702437, 3891910.746772284153849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967105.259375588968396, 3894478.493064070586115 ], [ 4967156.834063641726971, 3894472.026763382833451 ], [ 4967162.233280544169247, 3894515.367349867708981 ], [ 4967110.658674292266369, 3894521.833640362136066 ], [ 4967105.259375588968396, 3894478.493064070586115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967020.864306074567139, 3899886.767672007903457 ], [ 4967021.482485834509134, 3899862.007865485269576 ], [ 4967068.425688399933279, 3899863.180240847636014 ], [ 4967067.498354321345687, 3899900.319949183147401 ], [ 4967039.563001128844917, 3899899.544081766158342 ], [ 4967039.872099368833005, 3899887.164178572595119 ], [ 4967020.864306074567139, 3899886.767672007903457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969635.509919241070747, 3906859.3605140093714 ], [ 4969673.231577298603952, 3906857.971938732545823 ], [ 4969675.159819322638214, 3906906.404955779202282 ], [ 4969637.438229143619537, 3906907.793528392910957 ], [ 4969635.509919241070747, 3906859.3605140093714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970988.872424656525254, 3893121.006481318734586 ], [ 4971004.021320600993931, 3893185.485333628486842 ], [ 4970975.777545967139304, 3893191.987398582976311 ], [ 4970960.628586034290493, 3893127.508561940863729 ], [ 4970988.872424656525254, 3893121.006481318734586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970886.276808671653271, 3911541.107975642662495 ], [ 4970898.90523227583617, 3911561.886890537105501 ], [ 4970886.224333158694208, 3911569.510251200757921 ], [ 4970891.390717423520982, 3911577.89485568087548 ], [ 4970868.622563271783292, 3911591.689848449546844 ], [ 4970863.456847032532096, 3911582.941116527654231 ], [ 4970855.38676799274981, 3911588.024076268076897 ], [ 4970842.758323124609888, 3911567.245181486941874 ], [ 4970886.276808671653271, 3911541.107975642662495 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970827.120570746250451, 3893508.869176940061152 ], [ 4970844.280775983817875, 3893576.26469488022849 ], [ 4970805.661423284560442, 3893585.660832648631185 ], [ 4970788.788530885241926, 3893518.629997583571821 ], [ 4970827.120570746250451, 3893508.869176940061152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970723.514978620223701, 3899087.871995380148292 ], [ 4970721.462683273479342, 3899107.531248730607331 ], [ 4970692.378565429709852, 3899104.564690773840994 ], [ 4970699.994231333956122, 3899035.393963932525367 ], [ 4970736.565481725148857, 3899039.10257416125387 ], [ 4970731.29003828857094, 3899088.614568218588829 ], [ 4970723.514978620223701, 3899087.871995380148292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969533.108700676821172, 3912729.72127185575664 ], [ 4969548.688959390856326, 3912710.086085068061948 ], [ 4969574.847689406014979, 3912730.888721113558859 ], [ 4969558.97955512534827, 3912750.523375330027193 ], [ 4969533.108700676821172, 3912729.72127185575664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969535.616368719376624, 3899315.841999973170459 ], [ 4969541.36680294573307, 3899321.314284496475011 ], [ 4969556.659597119316459, 3899305.684165993239731 ], [ 4969576.210402108728886, 3899324.654082695022225 ], [ 4969525.426060323603451, 3899376.997573204338551 ], [ 4969500.124824209138751, 3899352.555415795184672 ], [ 4969535.616368719376624, 3899315.841999973170459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969358.331347020342946, 3898437.970503804739565 ], [ 4969348.483220270834863, 3898468.903931490145624 ], [ 4969294.941819437779486, 3898451.694062740541995 ], [ 4969304.789890768937767, 3898420.760615749750286 ], [ 4969358.331347020342946, 3898437.970503804739565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969318.875652476213872, 3901817.758216780610383 ], [ 4969306.76658486481756, 3901825.383307365700603 ], [ 4969321.69949487131089, 3901849.078513505402952 ], [ 4969287.96682090125978, 3901870.50191257102415 ], [ 4969237.709232405759394, 3901792.124012735672295 ], [ 4969271.442614986561239, 3901770.336422024294734 ], [ 4969287.238242651335895, 3901794.76141117606312 ], [ 4969299.347318468615413, 3901787.136311939451844 ], [ 4969318.875652476213872, 3901817.758216780610383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970572.854908655397594, 3903810.734574371017516 ], [ 4970601.11017466057092, 3903791.851624547038227 ], [ 4970627.531311964616179, 3903830.862200333271176 ], [ 4970625.801520828157663, 3903831.951415749266744 ], [ 4970638.4384760344401, 3903850.181199376937002 ], [ 4970613.066225180402398, 3903867.248749944381416 ], [ 4970605.599234141409397, 3903856.311097624711692 ], [ 4970596.949623840861022, 3903862.121312975883484 ], [ 4970580.867106225341558, 3903838.423254971858114 ], [ 4970588.363527645356953, 3903833.339179756585509 ], [ 4970572.854908655397594, 3903810.734574371017516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970581.433555516414344, 3897096.548116449266672 ], [ 4970583.53334534727037, 3897051.035750237759203 ], [ 4970600.526170890778303, 3897051.795202433131635 ], [ 4970600.225432371720672, 3897058.713115654885769 ], [ 4970637.954878095537424, 3897060.603060074616224 ], [ 4970635.855665806680918, 3897105.75129375141114 ], [ 4970609.64638954680413, 3897104.610763639677316 ], [ 4970609.947130021639168, 3897097.692850338295102 ], [ 4970581.433555516414344, 3897096.548116449266672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970564.181405453942716, 3898022.134574094321579 ], [ 4970599.345343371853232, 3898008.72630262747407 ], [ 4970609.952837843447924, 3898035.691397254820913 ], [ 4970620.90585564635694, 3898031.341953695286065 ], [ 4970631.226631562225521, 3898057.578270545694977 ], [ 4970585.109075505286455, 3898075.700083230156451 ], [ 4970564.181405453942716, 3898022.134574094321579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970497.981178893707693, 3893751.86652580788359 ], [ 4970549.011991766281426, 3893729.019928604830056 ], [ 4970565.365313680842519, 3893765.462827041745186 ], [ 4970514.622627532109618, 3893788.309921595733613 ], [ 4970497.981178893707693, 3893751.86652580788359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970227.746349491178989, 3903880.016579121351242 ], [ 4970222.291632688604295, 3903870.903357217088342 ], [ 4970263.514256366528571, 3903846.945849160663784 ], [ 4970281.600170281715691, 3903877.565865646582097 ], [ 4970222.215985609218478, 3903912.414180947002023 ], [ 4970209.296785066835582, 3903890.906897414475679 ], [ 4970227.746349491178989, 3903880.016579121351242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966406.95979071315378, 3905467.127436617389321 ], [ 4966425.618767854757607, 3905501.387160638347268 ], [ 4966381.523262111470103, 3905524.981613241601735 ], [ 4966362.864245291799307, 3905490.721919343341142 ], [ 4966406.95979071315378, 3905467.127436617389321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969014.047594015486538, 3898492.340131232049316 ], [ 4968997.832375316880643, 3898540.74061567010358 ], [ 4968964.441367010585964, 3898529.757418537512422 ], [ 4968969.363579276017845, 3898515.200955462176353 ], [ 4968937.411987019702792, 3898504.584477715659887 ], [ 4968945.231201055459678, 3898480.565769742242992 ], [ 4968964.517641806975007, 3898486.790210279170424 ], [ 4968967.70332963578403, 3898476.964354974217713 ], [ 4969014.047594015486538, 3898492.340131232049316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969006.945148443803191, 3894870.330008790828288 ], [ 4969008.340812279842794, 3894895.457406557165086 ], [ 4968978.95548496209085, 3894897.22586351679638 ], [ 4968977.560440241359174, 3894871.734339154325426 ], [ 4969006.945148443803191, 3894870.330008790828288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969906.890085885301232, 3899143.18557325610891 ], [ 4969918.478566848672926, 3899105.701144937425852 ], [ 4969951.005747081711888, 3899115.955707410350442 ], [ 4969953.035044846124947, 3899108.676780716050416 ], [ 4969972.32080228254199, 3899114.901946693193167 ], [ 4969958.704273275099695, 3899158.937020315788686 ], [ 4969906.890085885301232, 3899143.18557325610891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966131.442575732246041, 3894227.421191463712603 ], [ 4966127.727491416968405, 3894209.572666238993406 ], [ 4966165.189598930068314, 3894201.624391932040453 ], [ 4966178.054645686410367, 3894260.270666016731411 ], [ 4966133.964655290357769, 3894269.664371916558594 ], [ 4966124.814605459570885, 3894228.866642933804542 ], [ 4966131.442575732246041, 3894227.421191463712603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968891.241717969998717, 3893190.03319863602519 ], [ 4968902.811310077086091, 3893163.836424068082124 ], [ 4968931.596537120640278, 3893176.631973354611546 ], [ 4968920.027568069286644, 3893202.464607981964946 ], [ 4968891.241717969998717, 3893190.03319863602519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968840.520356330089271, 3891573.576001203618944 ], [ 4968867.058663570322096, 3891554.688306072261184 ], [ 4968899.245342558249831, 3891599.897270871326327 ], [ 4968872.419607281684875, 3891618.420297007076442 ], [ 4968840.520356330089271, 3891573.576001203618944 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968742.752092766575515, 3897013.128030597232282 ], [ 4968793.166950767859817, 3897008.483466660603881 ], [ 4968796.279323830269277, 3897040.168256151489913 ], [ 4968805.497788903303444, 3897039.456304222811013 ], [ 4968806.91220373287797, 3897054.023995041381568 ], [ 4968761.106657452881336, 3897058.312550146598369 ], [ 4968757.425250399857759, 3897022.621331992559135 ], [ 4968743.885583220049739, 3897023.689794722478837 ], [ 4968742.752092766575515, 3897013.128030597232282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965915.778861051425338, 3902834.002069578040391 ], [ 4965919.867400063201785, 3902799.78056014329195 ], [ 4965993.287094743922353, 3902808.277707868721336 ], [ 4965989.486438075080514, 3902842.499685717280954 ], [ 4965915.778861051425338, 3902834.002069578040391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965829.934364109300077, 3892430.671909781172872 ], [ 4965872.279404010623693, 3892432.926931300666183 ], [ 4965870.788812440820038, 3892463.147136094048619 ], [ 4965828.443820022046566, 3892460.892116883769631 ], [ 4965829.934364109300077, 3892430.671909781172872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965649.244241841137409, 3892641.203400080557913 ], [ 4965648.334288307465613, 3892668.875678450800478 ], [ 4965637.675795858725905, 3892668.493949867784977 ], [ 4965636.156623762100935, 3892716.192302250768989 ], [ 4965606.773348598740995, 3892715.415549022611231 ], [ 4965608.290065411478281, 3892669.173705844674259 ], [ 4965600.511807974427938, 3892669.160873131360859 ], [ 4965600.823919419199228, 3892654.596240041777492 ], [ 4965608.602181065827608, 3892654.609072843100876 ], [ 4965608.91429703310132, 3892640.044439966790378 ], [ 4965649.244241841137409, 3892641.203400080557913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968648.108350746333599, 3894330.783732172567397 ], [ 4968622.183070070110261, 3894330.373905601445585 ], [ 4968622.492952388711274, 3894317.99406152497977 ], [ 4968648.418244998902082, 3894318.403888388071209 ], [ 4968648.108350746333599, 3894330.783732172567397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968096.271917980164289, 3892620.595238346140832 ], [ 4968117.941706287674606, 3892584.220132373739034 ], [ 4968146.432220530696213, 3892601.383866080082953 ], [ 4968124.474323444999754, 3892637.758447151631117 ], [ 4968096.271917980164289, 3892620.595238346140832 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965106.875269173644483, 3904057.2424605791457 ], [ 4965113.15931000187993, 3904088.567997036967427 ], [ 4965067.3586291866377, 3904097.596557598095387 ], [ 4965061.074537130072713, 3904066.271031674463302 ], [ 4965106.875269173644483, 3904057.2424605791457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965102.84372197277844, 3898585.810111043043435 ], [ 4965118.531718144193292, 3898503.178211924154311 ], [ 4965152.220075287856162, 3898509.42342484742403 ], [ 4965136.81999923940748, 3898592.05577488290146 ], [ 4965102.84372197277844, 3898585.810111043043435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967992.480873634107411, 3905088.228824633639306 ], [ 4968010.856482150964439, 3905118.84783688466996 ], [ 4967963.871858064085245, 3905146.804241082631052 ], [ 4967937.170331448316574, 3905101.969666955992579 ], [ 4967992.225858992896974, 3905069.293545512016863 ], [ 4968000.551723930053413, 3905083.509155771229416 ], [ 4967992.480873634107411, 3905088.228824633639306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967963.698314277455211, 3913029.541125076822937 ], [ 4967968.537566912360489, 3913060.86500012408942 ], [ 4967954.716243773698807, 3913063.025766897480935 ], [ 4967956.423808465711772, 3913074.316866631619632 ], [ 4967939.147481197491288, 3913076.83576794853434 ], [ 4967937.441175068728626, 3913064.816404990851879 ], [ 4967899.72073551081121, 3913070.57700856262818 ], [ 4967894.880139937624335, 3913039.981410018634051 ], [ 4967963.698314277455211, 3913029.541125076822937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968745.80167974345386, 3892026.020340302027762 ], [ 4968729.354799044318497, 3892040.556435364298522 ], [ 4968719.003476957790554, 3892029.250169017817825 ], [ 4968707.173770750872791, 3892039.424886605702341 ], [ 4968682.734272046945989, 3892012.07210978679359 ], [ 4968691.967308877035975, 3892004.077571119181812 ], [ 4968681.041060071438551, 3891992.042047907598317 ], [ 4968701.816378963179886, 3891973.508148085325956 ], [ 4968701.241482181474566, 3891972.778876161202788 ], [ 4968725.767803399823606, 3891950.974458081182092 ], [ 4968735.543613670393825, 3891961.915581349749118 ], [ 4968728.041025139391422, 3891968.820774868596345 ], [ 4968733.791271379217505, 3891975.385245434008539 ], [ 4968720.230418615974486, 3891987.013414062559605 ], [ 4968733.456876506097615, 3892001.601916060317308 ], [ 4968728.262883288785815, 3892006.32641532458365 ], [ 4968745.80167974345386, 3892026.020340302027762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968702.521863676607609, 3913265.701993168331683 ], [ 4968703.909720094874501, 3913294.835110573098063 ], [ 4968657.271482024341822, 3913297.301699589006603 ], [ 4968655.883575169369578, 3913268.168584539555013 ], [ 4968702.521863676607609, 3913265.701993168331683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968649.886662386357784, 3890707.705914440564811 ], [ 4968634.891103434376419, 3890715.690305741038173 ], [ 4968650.686138585209846, 3890744.484288231469691 ], [ 4968619.252625165507197, 3890761.542922384105623 ], [ 4968610.062158872373402, 3890745.140955471433699 ], [ 4968602.564394638873637, 3890749.133161260280758 ], [ 4968581.311991844326258, 3890710.862261971924454 ], [ 4968587.079853558912873, 3890707.595261256210506 ], [ 4968577.314421421848238, 3890690.464037115685642 ], [ 4968625.762867824174464, 3890663.967993654310703 ], [ 4968649.886662386357784, 3890707.705914440564811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964882.47161903232336, 3897365.980695048347116 ], [ 4964889.456539887003601, 3897321.56821246817708 ], [ 4964924.875817072577775, 3897327.087684452533722 ], [ 4964912.36083460226655, 3897406.811755269765854 ], [ 4964879.821397949010134, 3897401.661103311926126 ], [ 4964885.351360714994371, 3897366.349499429576099 ], [ 4964882.47161903232336, 3897365.980695048347116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964885.129490896128118, 3894131.424054529052228 ], [ 4964889.499570775777102, 3894101.208441738504916 ], [ 4964948.539359243586659, 3894110.043442440684885 ], [ 4964949.706429649144411, 3894100.942114742007107 ], [ 4964997.513910657726228, 3894108.302450692281127 ], [ 4964992.853272629901767, 3894139.974089460447431 ], [ 4964920.853464500047266, 3894129.297289727721363 ], [ 4964919.689362579956651, 3894136.577978637535125 ], [ 4964885.129490896128118, 3894131.424054529052228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964819.488108466379344, 3903702.475405251607299 ], [ 4964865.834577879868448, 3903712.38212529849261 ], [ 4964860.029181431978941, 3903740.774928107392043 ], [ 4964813.394793822430074, 3903730.867751094512641 ], [ 4964819.488108466379344, 3903702.475405251607299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964806.833829090930521, 3901027.186047155875713 ], [ 4964815.800010774284601, 3901003.532098285388201 ], [ 4964827.888686436228454, 3901007.921262387186289 ], [ 4964835.698781372047961, 3900986.814359240233898 ], [ 4964877.432564265094697, 3901002.539683118928224 ], [ 4964869.623032046481967, 3901023.282444814220071 ], [ 4964858.685755794867873, 3901019.259260583668947 ], [ 4964849.718950839713216, 3901043.277324898634106 ], [ 4964806.833829090930521, 3901027.186047155875713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964733.60128727555275, 3900187.746906604617834 ], [ 4964752.949356463737786, 3900155.734750213101506 ], [ 4964782.872809060849249, 3900173.625585470348597 ], [ 4964763.812719854526222, 3900205.638186955824494 ], [ 4964733.60128727555275, 3900187.746906604617834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967633.748204591684043, 3894375.622934187762439 ], [ 4967654.777601709589362, 3894375.295097678434104 ], [ 4967655.032353379763663, 3894394.594380387105048 ], [ 4967634.29103646799922, 3894394.922713742591441 ], [ 4967633.748204591684043, 3894375.622934187762439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967566.521259632892907, 3913317.975231112446636 ], [ 4967502.590114521794021, 3913332.794547359459102 ], [ 4967495.730316385626793, 3913304.380339698400348 ], [ 4967519.344448042102158, 3913298.959002057090402 ], [ 4967516.772499156184494, 3913288.030573387630284 ], [ 4967557.377454608678818, 3913278.633071132469922 ], [ 4967566.521259632892907, 3913317.975231112446636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967532.119236828759313, 3902872.421913995407522 ], [ 4967561.25672016479075, 3902842.249240780714899 ], [ 4967588.857075287029147, 3902868.514245931990445 ], [ 4967597.223401919007301, 3902859.789530316367745 ], [ 4967616.198301198892295, 3902878.028808790259063 ], [ 4967574.079373676329851, 3902921.287758035119623 ], [ 4967556.254490020684898, 3902904.142883244901896 ], [ 4967560.581628822721541, 3902899.780768054537475 ], [ 4967532.119236828759313, 3902872.421913995407522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967466.073179091326892, 3899245.932074582204223 ], [ 4967468.643382050096989, 3899258.681049647275358 ], [ 4967476.710877284407616, 3899256.874272789806128 ], [ 4967480.998504019342363, 3899275.816415738780051 ], [ 4967472.931014170870185, 3899277.623191337566823 ], [ 4967478.072657518088818, 3899302.392885441426188 ], [ 4967449.26076443772763, 3899308.533559140283614 ], [ 4967444.117844101972878, 3899284.492128632962704 ], [ 4967434.609670156612992, 3899286.660569871310145 ], [ 4967429.751617311500013, 3899264.440282735507935 ], [ 4967440.123837593942881, 3899262.273324666079134 ], [ 4967437.837254428304732, 3899252.073750788345933 ], [ 4967466.073179091326892, 3899245.932074582204223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967414.901504906825721, 3903549.868137790355831 ], [ 4967354.002405860461295, 3903630.236565586645156 ], [ 4967312.300989049486816, 3903598.849779513664544 ], [ 4967373.488001373596489, 3903518.481752991210669 ], [ 4967414.901504906825721, 3903549.868137790355831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967356.723504851572216, 3905233.147191351745278 ], [ 4967393.623492607846856, 3905208.449589697644114 ], [ 4967410.283265613950789, 3905232.510879620909691 ], [ 4967373.094721748493612, 3905257.572094934992492 ], [ 4967356.723504851572216, 3905233.147191351745278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968393.424727300181985, 3905843.045673829969019 ], [ 4968362.012826158665121, 3905857.919979504309595 ], [ 4968339.63372967671603, 3905812.000167360529304 ], [ 4968370.758367567323148, 3905796.761200504843146 ], [ 4968393.424727300181985, 3905843.045673829969019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968347.673317164182663, 3898594.577151820529252 ], [ 4968319.15358692035079, 3898597.804363748524338 ], [ 4968313.762815938331187, 3898551.186280196532607 ], [ 4968342.570615584030747, 3898547.959567280951887 ], [ 4968347.673317164182663, 3898594.577151820529252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964685.544605404138565, 3903548.595272417645901 ], [ 4964716.927121841348708, 3903552.287324523553252 ], [ 4964714.887795340269804, 3903566.849267756100744 ], [ 4964683.793851030990481, 3903562.793553323950619 ], [ 4964685.544605404138565, 3903548.595272417645901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964684.994047041982412, 3894086.676212718244642 ], [ 4964690.223408112302423, 3894059.374988841358572 ], [ 4964749.835366101935506, 3894070.759380132425576 ], [ 4964744.605946650728583, 3894098.060592602472752 ], [ 4964684.994047041982412, 3894086.676212718244642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964575.399892781861126, 3898812.535983616486192 ], [ 4964565.861270807683468, 3898833.640149897895753 ], [ 4964537.656075786799192, 3898820.850160379894078 ], [ 4964547.194680104963481, 3898799.745984243694693 ], [ 4964575.399892781861126, 3898812.535983616486192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964503.153449522331357, 3900036.625121815595776 ], [ 4964481.209454122930765, 3900071.182191675063223 ], [ 4964451.862281255424023, 3900052.928489897400141 ], [ 4964473.518834442831576, 3900018.006803969852626 ], [ 4964503.153449522331357, 3900036.625121815595776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966848.645313163287938, 3890711.145025856327266 ], [ 4966841.112607235088944, 3890735.89297720650211 ], [ 4966807.70916442386806, 3890726.004891231656075 ], [ 4966815.241842321120203, 3890701.256930663250387 ], [ 4966848.645313163287938, 3890711.145025856327266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967850.868027836084366, 3896416.943347370717674 ], [ 4967864.870389888994396, 3896481.418557929806411 ], [ 4967834.613910466432571, 3896488.284567601047456 ], [ 4967820.612110356800258, 3896423.445244078524411 ], [ 4967850.868027836084366, 3896416.943347370717674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967739.723256062716246, 3897059.803802386857569 ], [ 4967741.96267900429666, 3897097.313033993821591 ], [ 4967750.028321348130703, 3897096.962855942547321 ], [ 4967751.431336278095841, 3897118.448935339227319 ], [ 4967744.229808148927987, 3897118.800607603508979 ], [ 4967745.625898138619959, 3897144.292101768776774 ], [ 4967710.19436567928642, 3897146.051485892385244 ], [ 4967708.513353022746742, 3897118.738852643873543 ], [ 4967690.941274026408792, 3897119.800876448396593 ], [ 4967688.982269197702408, 3897086.661689487285912 ], [ 4967706.266333491541445, 3897085.599166611675173 ], [ 4967704.867056443355978, 3897061.928318381775171 ], [ 4967739.723256062716246, 3897059.803802386857569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964097.688913203775883, 3909036.935995877720416 ], [ 4964124.769717546179891, 3909026.055228914134204 ], [ 4964134.232915082015097, 3909049.738928057253361 ], [ 4964107.152711559087038, 3909060.255554313305765 ], [ 4964097.688913203775883, 3909036.935995877720416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964089.893883633427322, 3901645.055612622760236 ], [ 4964108.668811841867864, 3901610.129008823540062 ], [ 4964127.947728048078716, 3901620.355416900943965 ], [ 4964131.414038170129061, 3901613.806596561335027 ], [ 4964152.419706464745104, 3901624.764038629364222 ], [ 4964130.465832954272628, 3901666.604021582752466 ], [ 4964089.893883633427322, 3901645.055612622760236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963932.759177455678582, 3898313.378041916992515 ], [ 4963958.386292885988951, 3898317.78830781718716 ], [ 4963954.026029109023511, 3898342.906341760419309 ], [ 4963928.399515096098185, 3898338.131950983311981 ], [ 4963932.759177455678582, 3898313.378041916992515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963872.438803041353822, 3904020.663751139305532 ], [ 4963851.133080704137683, 3904018.445180561859161 ], [ 4963850.550229859538376, 3904022.813830098137259 ], [ 4963827.229350576177239, 3904020.227952901273966 ], [ 4963831.326593527570367, 3903978.723497044760734 ], [ 4963856.375282808206975, 3903981.312117021530867 ], [ 4963855.204959631897509, 3903992.96245732717216 ], [ 4963875.07146819960326, 3903994.814617078751326 ], [ 4963872.438803041353822, 3904020.663751139305532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966436.495741900056601, 3891148.495596153661609 ], [ 4966417.963753410615027, 3891204.176102019846439 ], [ 4966387.442343682050705, 3891193.929248324595392 ], [ 4966405.685564344748855, 3891138.612365243490785 ], [ 4966436.495741900056601, 3891148.495596153661609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966395.822152771987021, 3898040.299317698460072 ], [ 4966330.99919069185853, 3898050.386156108230352 ], [ 4966325.014151143841445, 3898012.506612622179091 ], [ 4966371.109981102868915, 3898005.665485414210707 ], [ 4966372.249250178225338, 3898013.314125028438866 ], [ 4966390.975854619406164, 3898010.432529233396053 ], [ 4966395.822152771987021, 3898040.299317698460072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966274.416428577154875, 3895720.225889738183469 ], [ 4966275.80179132707417, 3895752.999853529501706 ], [ 4966235.183615023270249, 3895754.752496285829693 ], [ 4966233.509542622603476, 3895722.342180881649256 ], [ 4966274.416428577154875, 3895720.225889738183469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967341.940816551446915, 3896893.439774222671986 ], [ 4967300.448947345837951, 3896901.743641213048249 ], [ 4967290.454299871809781, 3896851.112500674556941 ], [ 4967332.233658704906702, 3896843.173240868374705 ], [ 4967341.940816551446915, 3896893.439774222671986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965897.158723239786923, 3906587.80094625800848 ], [ 4965933.752437348477542, 3906572.204109258484095 ], [ 4965936.907606937922537, 3906579.491991064045578 ], [ 4965957.94197541102767, 3906570.423686922993511 ], [ 4965967.692364480346441, 3906594.108474935870618 ], [ 4965959.912682931870222, 3906597.372714866884053 ], [ 4965965.649555674754083, 3906610.491003983654082 ], [ 4965918.395656653679907, 3906630.075523938983679 ], [ 4965914.666435653343797, 3906621.694294616580009 ], [ 4965895.073001928627491, 3906630.036763389129192 ], [ 4965885.608076809905469, 3906607.809002476278692 ], [ 4965902.896233759820461, 3906600.555091159883887 ], [ 4965897.158723239786923, 3906587.80094625800848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967049.716013125143945, 3896307.055795202497393 ], [ 4967071.321222186088562, 3896306.000226502772421 ], [ 4967072.149354937486351, 3896327.121149941347539 ], [ 4967050.544162808917463, 3896328.176717984490097 ], [ 4967049.716013125143945, 3896307.055795202497393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965843.508441832847893, 3894494.212756699882448 ], [ 4965878.646815662272274, 3894497.548229933250695 ], [ 4965875.13020652718842, 3894533.591173052322119 ], [ 4965839.70381573215127, 3894530.255226534325629 ], [ 4965843.508441832847893, 3894494.212756699882448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965669.741769717074931, 3897321.753946464508772 ], [ 4965625.558389117009938, 3897390.86561220837757 ], [ 4965594.771295648999512, 3897371.151799239683896 ], [ 4965638.954629244282842, 3897302.040083694271743 ], [ 4965669.741769717074931, 3897321.753946464508772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965622.333430854603648, 3893760.490946330595762 ], [ 4965650.58372307755053, 3893748.885463905986398 ], [ 4965666.938854651525617, 3893788.238406162243336 ], [ 4965631.193327619694173, 3893803.108657289296389 ], [ 4965622.299173158593476, 3893781.246239121537656 ], [ 4965629.505774336867034, 3893778.345103454310447 ], [ 4965622.333430854603648, 3893760.490946330595762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966616.693856120109558, 3904720.647155034355819 ], [ 4966625.287605985067785, 3904747.243252779357135 ], [ 4966599.933504025451839, 3904755.575474081560969 ], [ 4966593.915960524231195, 3904738.087014860473573 ], [ 4966602.847459659911692, 3904735.189036424737424 ], [ 4966599.695324836298823, 3904726.080433128401637 ], [ 4966616.693856120109558, 3904720.647155034355819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963159.387939749285579, 3900177.963514547329396 ], [ 4963181.248342681676149, 3900195.839993674773723 ], [ 4963135.94562254101038, 3900251.117155861575156 ], [ 4963114.085234606638551, 3900233.240712985396385 ], [ 4963159.387939749285579, 3900177.963514547329396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962913.758739206008613, 3896622.945796149782836 ], [ 4962936.623548026196659, 3896552.340126004535705 ], [ 4962990.74830302875489, 3896569.902332673314959 ], [ 4962984.669461668469012, 3896589.191756483633071 ], [ 4962999.352231335826218, 3896593.948240259662271 ], [ 4962993.274520113132894, 3896612.509405180811882 ], [ 4962965.3480708533898, 3896603.726944412104785 ], [ 4962961.297409624792635, 3896615.372802156023681 ], [ 4962948.054286981932819, 3896610.982701783068478 ], [ 4962941.396579345688224, 3896632.091885289177299 ], [ 4962913.758739206008613, 3896622.945796149782836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965458.543381853960454, 3898239.376972533296794 ], [ 4965471.046425813809037, 3898167.663952227216214 ], [ 4965504.735722062177956, 3898173.545476846396923 ], [ 4965492.232590882107615, 3898245.258481731172651 ], [ 4965458.543381853960454, 3898239.376972533296794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965269.682571418583393, 3897484.954180265311152 ], [ 4965279.29439181741327, 3897419.790703295264393 ], [ 4965317.881819376721978, 3897425.315883467905223 ], [ 4965308.269907341338694, 3897490.479346851818264 ], [ 4965269.682571418583393, 3897484.954180265311152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965222.618975553661585, 3899315.35826806910336 ], [ 4965264.926982072182, 3899333.634024402592331 ], [ 4965252.783971517346799, 3899362.016291863750666 ], [ 4965210.47600151412189, 3899343.740554329939187 ], [ 4965222.618975553661585, 3899315.35826806910336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966456.805229331366718, 3898600.797779693733901 ], [ 4966462.216360124759376, 3898637.21988093201071 ], [ 4966452.997281585820019, 3898638.660895115230232 ], [ 4966454.703353050164878, 3898651.772444473113865 ], [ 4966420.42046526260674, 3898656.812628722283989 ], [ 4966419.281237788498402, 3898649.16398414503783 ], [ 4966405.740649486891925, 3898651.326012583915144 ], [ 4966399.186540197581053, 3898609.440052658785135 ], [ 4966456.805229331366718, 3898600.797779693733901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962651.55332997161895, 3897427.631146307103336 ], [ 4962652.436497182585299, 3897415.252098313998431 ], [ 4962634.292115683667362, 3897414.13176790298894 ], [ 4962635.48293041344732, 3897389.008655370213091 ], [ 4962656.79569205082953, 3897390.133867089636624 ], [ 4962659.166148669086397, 3897347.170220676809549 ], [ 4962698.335894619114697, 3897349.051239764783531 ], [ 4962695.074888830073178, 3897409.127603408414871 ], [ 4962689.026761027052999, 3897408.754148985259235 ], [ 4962687.842633187770844, 3897429.507713912986219 ], [ 4962651.55332997161895, 3897427.631146307103336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965084.421544097363949, 3897342.640838602092117 ], [ 4965059.656595254316926, 3897338.959167425520718 ], [ 4965063.440797612071037, 3897314.568646328523755 ], [ 4965087.917140782810748, 3897318.613979906309396 ], [ 4965084.421544097363949, 3897342.640838602092117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966185.579427324235439, 3903370.088501893915236 ], [ 4966196.474135261029005, 3903398.87307299580425 ], [ 4966149.506046012975276, 3903416.272849422413856 ], [ 4966138.611903144977987, 3903387.124167039524764 ], [ 4966185.579427324235439, 3903370.088501893915236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966178.701899521052837, 3898353.815494562033564 ], [ 4966176.373981689102948, 3898368.012670935597271 ], [ 4966157.657383403740823, 3898365.068354145158082 ], [ 4966159.985291592776775, 3898350.871176182292402 ], [ 4966178.701899521052837, 3898353.815494562033564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965961.302911942824721, 3898318.496511253062636 ], [ 4965969.708893287926912, 3898286.467062679119408 ], [ 4965986.118955458514392, 3898290.863928976003081 ], [ 4965977.712955907918513, 3898322.893372498918325 ], [ 4965961.302911942824721, 3898318.496511253062636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962445.910934345796704, 3900613.45268164947629 ], [ 4962466.903552023693919, 3900633.876166591886431 ], [ 4962449.596305304206908, 3900651.692017581313848 ], [ 4962428.603688455186784, 3900631.26854594098404 ], [ 4962445.910934345796704, 3900613.45268164947629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962280.610967312008142, 3900794.536740860901773 ], [ 4962301.096541510894895, 3900769.807157068978995 ], [ 4962325.833658702671528, 3900789.872123028151691 ], [ 4962305.347520713694394, 3900814.965817810036242 ], [ 4962280.610967312008142, 3900794.536740860901773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964692.894719585776329, 3900961.09401634382084 ], [ 4964674.68750952091068, 3901000.390683281235397 ], [ 4964633.24630188010633, 3900981.753102916758507 ], [ 4964651.166056903079152, 3900942.091813763137907 ], [ 4964692.894719585776329, 3900961.09401634382084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964672.039680138230324, 3897469.416899215895683 ], [ 4964676.402518981136382, 3897443.206608563661575 ], [ 4964708.941355172544718, 3897448.721143156755716 ], [ 4964704.578485465608537, 3897474.931428605690598 ], [ 4964672.039680138230324, 3897469.416899215895683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964651.34719239640981, 3899938.184718850068748 ], [ 4964659.181568950414658, 3899902.148477110546082 ], [ 4964708.412949334830046, 3899913.151942692231387 ], [ 4964700.579098577611148, 3899948.824041020125151 ], [ 4964651.34719239640981, 3899938.184718850068748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965566.92829477507621, 3904299.052059646230191 ], [ 4965538.10299061331898, 3904316.846968269441277 ], [ 4965520.009575620293617, 3904287.686657278332859 ], [ 4965508.479217080399394, 3904294.950289170723408 ], [ 4965498.714991371147335, 3904278.912435936741531 ], [ 4965511.397791003808379, 3904271.2865668265149 ], [ 4965498.187038441188633, 3904249.781069385819137 ], [ 4965525.571389486081898, 3904232.712006859946996 ], [ 4965566.92829477507621, 3904299.052059646230191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961966.604249001480639, 3896100.425236804410815 ], [ 4961992.813200078904629, 3896102.649724394548684 ], [ 4961990.467987231910229, 3896129.59174265479669 ], [ 4961964.547108792699873, 3896127.367693583481014 ], [ 4961966.604249001480639, 3896100.425236804410815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964552.101876954548061, 3900223.138644631020725 ], [ 4964568.296930175274611, 3900181.653887554071844 ], [ 4964599.381884893402457, 3900193.720305907540023 ], [ 4964582.899375417269766, 3900234.840450855903327 ], [ 4964552.101876954548061, 3900223.138644631020725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964503.903466770425439, 3900286.419708053581417 ], [ 4964536.803721545264125, 3900244.233559485524893 ], [ 4964566.718416028656065, 3900267.586095577571541 ], [ 4964533.530727384611964, 3900309.407614926807582 ], [ 4964503.903466770425439, 3900286.419708053581417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964360.089168990962207, 3901606.161560904234648 ], [ 4964365.579631223343313, 3901594.518189257476479 ], [ 4964350.615352117456496, 3901587.575705245602876 ], [ 4964365.930709189735353, 3901555.192647994495928 ], [ 4964404.204515328630805, 3901573.096476404927671 ], [ 4964383.68663985747844, 3901617.123341368511319 ], [ 4964360.089168990962207, 3901606.161560904234648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964264.369607362896204, 3907429.923341914545745 ], [ 4964274.117092441767454, 3907456.156444660387933 ], [ 4964236.375595198012888, 3907470.661314918659627 ], [ 4964226.340153315104544, 3907444.427765099331737 ], [ 4964264.369607362896204, 3907429.923341914545745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964276.700676076114178, 3898107.828910883981735 ], [ 4964271.182735810987651, 3898136.222206222824752 ], [ 4964229.143891233019531, 3898128.144097148440778 ], [ 4964234.661788704805076, 3898099.750793316401541 ], [ 4964276.700676076114178, 3898107.828910883981735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965514.817278266884387, 3893450.075879125855863 ], [ 4965542.650189964100718, 3893517.12143396306783 ], [ 4965511.805233193561435, 3893529.815143156796694 ], [ 4965483.972257873974741, 3893462.769619757775217 ], [ 4965514.817278266884387, 3893450.075879125855863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965384.686126528307796, 3902348.102343516424298 ], [ 4965414.633641784079373, 3902349.60806428315118 ], [ 4965411.968224843032658, 3902394.391771989874542 ], [ 4965382.020759359002113, 3902392.886054155882448 ], [ 4965384.686126528307796, 3902348.102343516424298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965218.935071307234466, 3908782.398389926180243 ], [ 4965233.372940364293754, 3908756.568633351009339 ], [ 4965322.544784613884985, 3908805.872605393640697 ], [ 4965308.394766509532928, 3908831.702786948997527 ], [ 4965218.935071307234466, 3908782.398389926180243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961842.680575828999281, 3910440.806055650580674 ], [ 4961871.745123559609056, 3910449.225032966118306 ], [ 4961863.932377634570003, 3910475.430763596203178 ], [ 4961894.435793943703175, 3910484.2160733952187 ], [ 4961881.993627719581127, 3910525.708363072481006 ], [ 4961869.044531571678817, 3910521.683324475307018 ], [ 4961865.283215488307178, 3910534.058144618291408 ], [ 4961833.628827300854027, 3910524.906996389850974 ], [ 4961837.68022286426276, 3910511.076079959515482 ], [ 4961823.003758263774216, 3910507.048454106319696 ], [ 4961842.680575828999281, 3910440.806055650580674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961693.815058058127761, 3892467.827021311968565 ], [ 4961656.016718169674277, 3892507.096072615124285 ], [ 4961624.373264235444367, 3892476.461732190568 ], [ 4961641.108492215164006, 3892459.008698186837137 ], [ 4961630.752714997157454, 3892448.797541774809361 ], [ 4961651.527189706452191, 3892427.345167519059032 ], [ 4961693.815058058127761, 3892467.827021311968565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961686.855913397856057, 3896327.947947340551764 ], [ 4961695.578879216685891, 3896273.705790913663805 ], [ 4961733.015952919609845, 3896279.588216040749103 ], [ 4961724.29236514121294, 3896334.194489088375121 ], [ 4961686.855913397856057, 3896327.947947340551764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961681.0343216964975, 3893495.378946626093239 ], [ 4961683.375612566247582, 3893470.985838821623474 ], [ 4961675.886757237836719, 3893470.246318930760026 ], [ 4961680.56605236697942, 3893423.644871441181749 ], [ 4961707.92939122300595, 3893426.234938771929592 ], [ 4961706.757362313568592, 3893439.341811111196876 ], [ 4961732.680306070484221, 3893441.929736109450459 ], [ 4961726.831628817133605, 3893499.817407118156552 ], [ 4961681.0343216964975, 3893495.378946626093239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961635.463062528520823, 3893723.983346724882722 ], [ 4961661.385191130451858, 3893726.935331420041621 ], [ 4961659.630485254339874, 3893744.41087833000347 ], [ 4961678.06436085794121, 3893746.259237725287676 ], [ 4961677.187550407834351, 3893754.632882677484304 ], [ 4961689.284930226393044, 3893755.743464002851397 ], [ 4961685.482487296685576, 3893793.971274096053094 ], [ 4961641.126579807139933, 3893789.170919291675091 ], [ 4961641.420122334733605, 3893785.530071775894612 ], [ 4961629.322753975167871, 3893784.419511971995234 ], [ 4961635.463062528520823, 3893723.983346724882722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964193.053429510444403, 3898002.461622594390064 ], [ 4964218.392190725542605, 3898007.235804315656424 ], [ 4964206.192662655375898, 3898071.303153872489929 ], [ 4964180.853959721513093, 3898066.528983475174755 ], [ 4964193.053429510444403, 3898002.461622594390064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964170.901788409799337, 3898707.381708482746035 ], [ 4964159.343247326090932, 3898731.031701606698334 ], [ 4964140.061104776337743, 3898721.533546763472259 ], [ 4964151.619632941670716, 3898697.883545475546271 ], [ 4964170.901788409799337, 3898707.381708482746035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964116.577133516781032, 3898637.74619277799502 ], [ 4964164.069563464261591, 3898657.120864662807435 ], [ 4964140.937363211065531, 3898713.888215700164437 ], [ 4964111.00256572663784, 3898701.824175308924168 ], [ 4964117.363373863510787, 3898686.540860758628696 ], [ 4964099.805816957727075, 3898679.230265400372446 ], [ 4964116.577133516781032, 3898637.74619277799502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964091.608587489463389, 3897678.224240528885275 ], [ 4964119.540522096678615, 3897682.638331136666238 ], [ 4964115.468616851605475, 3897707.392659931909293 ], [ 4964123.243674231693149, 3897708.497449461370707 ], [ 4964120.045149471610785, 3897727.427094973158091 ], [ 4964111.118560397066176, 3897725.956340377219021 ], [ 4964108.790520458482206, 3897740.881948165595531 ], [ 4964079.99455673340708, 3897736.466491706203669 ], [ 4964081.449208987876773, 3897727.365565792191774 ], [ 4964067.915307125076652, 3897725.159224823117256 ], [ 4964072.859376570209861, 3897695.308461657725275 ], [ 4964088.697530882433057, 3897697.518477330449969 ], [ 4964091.608587489463389, 3897678.224240528885275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964008.888968087732792, 3897712.684851210564375 ], [ 4964043.447878056205809, 3897715.652886676136404 ], [ 4964040.517151068896055, 3897747.327509387396276 ], [ 4964005.958281517960131, 3897744.359477634076029 ], [ 4964008.888968087732792, 3897712.684851210564375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964007.413353328593075, 3898278.176096649374813 ], [ 4964005.040818954817951, 3898321.139647833071649 ], [ 4963975.952806710265577, 3898319.636874847114086 ], [ 4963978.325294709764421, 3898276.673321126494557 ], [ 4964007.413353328593075, 3898278.176096649374813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965124.631896793842316, 3903587.542314414400607 ], [ 4965158.067555733025074, 3903568.297977508045733 ], [ 4965178.169877727515996, 3903602.195018160622567 ], [ 4965144.733651677146554, 3903621.803460550494492 ], [ 4965124.631896793842316, 3903587.542314414400607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964851.726034277118742, 3902113.824569571763277 ], [ 4964847.350772187113762, 3902148.045760126318783 ], [ 4964829.787410740740597, 3902145.832489647436887 ], [ 4964830.079526081681252, 3902143.284048206172884 ], [ 4964798.983951111324131, 3902139.228203943930566 ], [ 4964803.06703978870064, 3902107.555447363294661 ], [ 4964851.726034277118742, 3902113.824569571763277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963895.345723951235414, 3897386.972509363200516 ], [ 4963900.578851616941392, 3897356.393919974565506 ], [ 4963942.044670284725726, 3897363.378210295923054 ], [ 4963936.811496773734689, 3897393.956791730597615 ], [ 4963895.345723951235414, 3897386.972509363200516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964647.411894735880196, 3904158.453267992008477 ], [ 4964653.135229514911771, 3904180.67451303312555 ], [ 4964642.764544477686286, 3904183.206683301366866 ], [ 4964647.628114081919193, 3904202.877620932646096 ], [ 4964597.215140691958368, 3904215.176715401466936 ], [ 4964590.633759456686676, 3904189.31278621358797 ], [ 4964598.700168292038143, 3904187.141009855549783 ], [ 4964594.693980627693236, 3904171.476907166652381 ], [ 4964647.411894735880196, 3904158.453267992008477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964569.800475562922657, 3897640.392904600594193 ], [ 4964565.137419640086591, 3897674.249456361867487 ], [ 4964490.842087280936539, 3897663.934202023781836 ], [ 4964495.793667639605701, 3897629.713972175959498 ], [ 4964569.800475562922657, 3897640.392904600594193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964556.71014669071883, 3905405.456682278774679 ], [ 4964575.492464360781014, 3905364.704236858990043 ], [ 4964624.982416993938386, 3905387.724356439895928 ], [ 4964606.20004019420594, 3905428.476767838466913 ], [ 4964556.71014669071883, 3905405.456682278774679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961200.543116713874042, 3891738.104259073734283 ], [ 4961253.248530820012093, 3891748.742352865636349 ], [ 4961241.059236194007099, 3891808.805408430751413 ], [ 4961206.786471754312515, 3891801.836010443978012 ], [ 4961209.107992051169276, 3891790.551479624584317 ], [ 4961190.387354930862784, 3891786.882377787493169 ], [ 4961200.543116713874042, 3891738.104259073734283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961125.138189626857638, 3893046.67032079724595 ], [ 4961128.928055164404213, 3893016.453261480201036 ], [ 4961158.594337630085647, 3893020.502699326258153 ], [ 4961162.964188888669014, 3892987.737605448812246 ], [ 4961210.77630006428808, 3892993.99881882686168 ], [ 4961209.028335383161902, 3893007.10485315695405 ], [ 4961219.108969521708786, 3893008.57635306706652 ], [ 4961216.486477105878294, 3893028.599531882908195 ], [ 4961204.965451473370194, 3893027.125892177224159 ], [ 4961201.177125268615782, 3893056.250557302497327 ], [ 4961125.138189626857638, 3893046.67032079724595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963445.404667052440345, 3893553.802045928779989 ], [ 4963483.424159677699208, 3893557.867164096329361 ], [ 4963479.33220829628408, 3893595.36600741930306 ], [ 4963441.313339585438371, 3893590.936766995117068 ], [ 4963445.404667052440345, 3893553.802045928779989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960899.934713860973716, 3894558.200196897611022 ], [ 4960903.144231080077589, 3894530.531126720830798 ], [ 4960896.231777195818722, 3894529.792673392686993 ], [ 4960898.565287007950246, 3894510.133149091619998 ], [ 4960907.781719706952572, 3894511.239130784291774 ], [ 4960910.701037470251322, 3894485.026150106918067 ], [ 4960940.078204739838839, 3894488.710797077510506 ], [ 4960936.283916100859642, 3894522.205062892753631 ], [ 4960942.620243364013731, 3894522.942675857339054 ], [ 4960939.701973689720035, 3894548.427397227846086 ], [ 4960931.061144521459937, 3894547.686383183579892 ], [ 4960929.312340059317648, 3894561.520704044494778 ], [ 4960899.934713860973716, 3894558.200196897611022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960886.788357784971595, 3898589.457821122836322 ], [ 4960898.638543609529734, 3898561.437298736069351 ], [ 4960921.090704381465912, 3898570.573674140032381 ], [ 4960909.239961863495409, 3898598.958315860014409 ], [ 4960886.788357784971595, 3898589.457821122836322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960796.981665837578475, 3898160.016472302842885 ], [ 4960819.804773359559476, 3898113.077320790849626 ], [ 4960849.162966180592775, 3898126.957487704697996 ], [ 4960826.339282926172018, 3898174.260743673890829 ], [ 4960796.981665837578475, 3898160.016472302842885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963327.020467717200518, 3899984.872266409453005 ], [ 4963351.185527404770255, 3900002.38835951173678 ], [ 4963339.063086041249335, 3900019.119363944046199 ], [ 4963347.11809654161334, 3900024.958062936551869 ], [ 4963336.439111997373402, 3900039.506548233795911 ], [ 4963304.219057223759592, 3900016.151779464446008 ], [ 4963327.020467717200518, 3899984.872266409453005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963032.839454800821841, 3895248.906487120315433 ], [ 4963064.259078006260097, 3895235.118432043120265 ], [ 4963074.879762556403875, 3895259.16748142009601 ], [ 4963103.705190604552627, 3895246.467823807615787 ], [ 4963114.32526830304414, 3895270.881017262116075 ], [ 4963093.859141548164189, 3895279.952382262796164 ], [ 4963111.656216438859701, 3895320.034303816966712 ], [ 4963071.588784826919436, 3895337.81427012803033 ], [ 4963066.995198356918991, 3895327.975635195150971 ], [ 4963054.024224163033068, 3895333.417399018071592 ], [ 4963044.55237500090152, 3895311.554918198846281 ], [ 4963050.894121191464365, 3895308.651745123788714 ], [ 4963038.837685388512909, 3895281.687438918743283 ], [ 4963046.043604934588075, 3895278.785608157049865 ], [ 4963032.839454800821841, 3895248.906487120315433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964031.986380770802498, 3896592.294742013327777 ], [ 4964035.865964282304049, 3896507.458744113799185 ], [ 4964066.396147037856281, 3896508.963874361477792 ], [ 4964065.493740576319396, 3896532.994983409997076 ], [ 4964071.542046815156937, 3896533.368747359141707 ], [ 4964070.351014504209161, 3896557.763526307418942 ], [ 4964062.286420127376914, 3896557.386551228351891 ], [ 4964060.500756409950554, 3896593.432528062723577 ], [ 4964031.986380770802498, 3896592.294742013327777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963958.955976200290024, 3899953.097290830686688 ], [ 4963975.939621326513588, 3899958.5862374776043 ], [ 4963969.57108969707042, 3899978.96740758838132 ], [ 4963952.587456168606877, 3899973.478464900981635 ], [ 4963958.955976200290024, 3899953.097290830686688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960552.177114246413112, 3898148.369383049197495 ], [ 4960589.039504515938461, 3898151.700476184021682 ], [ 4960585.825403101742268, 3898183.010933083947748 ], [ 4960549.251079954206944, 3898179.680265407077968 ], [ 4960552.177114246413112, 3898148.369383049197495 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963003.871347202919424, 3894055.246392352506518 ], [ 4962983.135484203696251, 3894051.937033616472036 ], [ 4962979.646440906450152, 3894072.686967123299837 ], [ 4962953.438414661213756, 3894068.640879636164755 ], [ 4962956.349605838768184, 3894048.982433137483895 ], [ 4962918.909689210355282, 3894043.098311918787658 ], [ 4962926.182538190856576, 3893997.229340522550046 ], [ 4962940.293984865769744, 3893999.800123343244195 ], [ 4962942.619999065063894, 3893985.966831436380744 ], [ 4962968.539473034441471, 3893990.376589185558259 ], [ 4962966.794669911265373, 3894000.933620452415198 ], [ 4962994.443106681108475, 3894004.981957348529249 ], [ 4962992.406832758337259, 3894017.723308046348393 ], [ 4963009.398953695781529, 3894020.298600289504975 ], [ 4963003.871347202919424, 3894055.246392352506518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963844.645085495896637, 3900844.306932352948934 ], [ 4963798.587053496390581, 3900830.761151365470141 ], [ 4963812.194376925006509, 3900785.630525236483663 ], [ 4963858.252479517832398, 3900799.176329176872969 ], [ 4963844.645085495896637, 3900844.306932352948934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963777.671239851973951, 3903856.290481845848262 ], [ 4963782.904726587235928, 3903824.61936014983803 ], [ 4963829.830177130177617, 3903832.704554898664355 ], [ 4963824.597213501110673, 3903864.011537430342287 ], [ 4963777.671239851973951, 3903856.290481845848262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960491.097382063046098, 3893030.443966630846262 ], [ 4960440.36509205121547, 3893051.125297872815281 ], [ 4960417.685854997485876, 3892996.837074966169894 ], [ 4960446.22277304250747, 3892985.226548608858138 ], [ 4960452.251749888062477, 3892999.436357216909528 ], [ 4960474.447196989320219, 3892990.365515086334199 ], [ 4960491.097382063046098, 3893030.443966630846262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960482.393014381639659, 3893665.107655046507716 ], [ 4960476.609240493737161, 3893680.392625045962632 ], [ 4960494.172111704945564, 3893686.97257603565231 ], [ 4960478.84474790096283, 3893727.732632979284972 ], [ 4960436.232875527814031, 3893712.012947333976626 ], [ 4960457.055872139520943, 3893655.9674710216932 ], [ 4960482.393014381639659, 3893665.107655046507716 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962643.211686191149056, 3896110.925972465891391 ], [ 4962613.536149465478957, 3896115.249844860751182 ], [ 4962615.245378261432052, 3896127.632873764727265 ], [ 4962597.094525054097176, 3896130.153854428324848 ], [ 4962595.383607872761786, 3896118.86321219895035 ], [ 4962582.418709493242204, 3896120.663920992985368 ], [ 4962577.004604029469192, 3896082.422012911178172 ], [ 4962588.817332265898585, 3896080.619529626797885 ], [ 4962587.389975934289396, 3896072.242359229829162 ], [ 4962607.557757723145187, 3896069.360345726832747 ], [ 4962605.849642004817724, 3896056.249060730449855 ], [ 4962634.948587267659605, 3896052.288421574048698 ], [ 4962643.211686191149056, 3896110.925972465891391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962316.009739010594785, 3894400.837600583210588 ], [ 4962358.348619930446148, 3894405.271858850028366 ], [ 4962355.424541269429028, 3894433.669449964538217 ], [ 4962313.37321315612644, 3894429.599764395970851 ], [ 4962316.009739010594785, 3894400.837600583210588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963438.684319305233657, 3902972.738529589492828 ], [ 4963431.143863563425839, 3903006.590865832753479 ], [ 4963372.705353543162346, 3902993.754624024499208 ], [ 4963380.245739203877747, 3902959.90227164933458 ], [ 4963438.684319305233657, 3902972.738529589492828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960128.763323753140867, 3898956.121874319855124 ], [ 4960126.672948265448213, 3899007.461172828450799 ], [ 4960094.129280233755708, 3899005.957601309288293 ], [ 4960096.507609917782247, 3898954.618716577067971 ], [ 4960128.763323753140867, 3898956.121874319855124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959962.518565208651125, 3893796.89688858250156 ], [ 4959936.30196048039943, 3893798.315664180088788 ], [ 4959933.502982871606946, 3893741.507540800143033 ], [ 4959985.936305613256991, 3893738.670009799301624 ], [ 4959988.460218788124621, 3893786.374521742574871 ], [ 4959962.244126745499671, 3893787.429143966175616 ], [ 4959962.518565208651125, 3893796.89688858250156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962004.535388389602304, 3908504.231337296776474 ], [ 4962008.814326166175306, 3908530.455338686704636 ], [ 4961979.151493069715798, 3908535.508206753525883 ], [ 4961974.872527161613107, 3908509.284210005309433 ], [ 4962004.535388389602304, 3908504.231337296776474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962903.523937989957631, 3898023.008400539401919 ], [ 4962927.230166783556342, 3897966.240901103708893 ], [ 4962959.18080569524318, 3897979.399133079685271 ], [ 4962935.474520897492766, 3898036.166604775935411 ], [ 4962903.523937989957631, 3898023.008400539401919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959904.384138554334641, 3893757.851452922448516 ], [ 4959905.184478128328919, 3893802.276319748256356 ], [ 4959840.942972813732922, 3893803.276410806458443 ], [ 4959840.4128273203969, 3893771.232313606422395 ], [ 4959854.528868376277387, 3893770.888451761100441 ], [ 4959854.251777165569365, 3893763.24134872155264 ], [ 4959879.890698144212365, 3893762.914049431215972 ], [ 4959879.609428229741752, 3893758.17997065698728 ], [ 4959904.384138554334641, 3893757.851452922448516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959833.497653374448419, 3908416.547365070786327 ], [ 4959872.400182513520122, 3908392.934675719588995 ], [ 4959891.358067697845399, 3908423.913155705668032 ], [ 4959876.661850078031421, 3908432.63119301199913 ], [ 4959880.395841088145971, 3908438.826805850490928 ], [ 4959856.189561137929559, 3908453.721427605021745 ], [ 4959833.497653374448419, 3908416.547365070786327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959724.942318545654416, 3892933.570737560745329 ], [ 4959782.550645087845623, 3892939.115174346603453 ], [ 4959780.212078030221164, 3892962.780184296891093 ], [ 4959771.859309876337647, 3892961.675828515551984 ], [ 4959769.809877813793719, 3892984.612996667157859 ], [ 4959720.55441137123853, 3892980.172924305312335 ], [ 4959724.942318545654416, 3892933.570737560745329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961726.98265266045928, 3898564.492606520652771 ], [ 4961804.105652577243745, 3898608.668575307354331 ], [ 4961788.799954514950514, 3898635.591099015437067 ], [ 4961711.388986743055284, 3898591.414739855099469 ], [ 4961726.98265266045928, 3898564.492606520652771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962760.751064024865627, 3894235.113717490807176 ], [ 4962798.224513596855104, 3894219.149932865053415 ], [ 4962793.632322834804654, 3894208.21896680444479 ], [ 4962817.845725622959435, 3894198.060784938745201 ], [ 4962850.280118991620839, 3894273.849783382378519 ], [ 4962814.824304234236479, 3894289.08835740108043 ], [ 4962806.787719365209341, 3894270.141225662548095 ], [ 4962780.268167265690863, 3894281.38824196672067 ], [ 4962760.751064024865627, 3894235.113717490807176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959404.245135733857751, 3906773.699811656028032 ], [ 4959360.147053354419768, 3906804.952553349081427 ], [ 4959331.123189617879689, 3906764.492791134398431 ], [ 4959342.07598364725709, 3906756.497419657185674 ], [ 4959332.880201395601034, 3906743.739777522161603 ], [ 4959349.020442815497518, 3906732.474576785229146 ], [ 4959357.641388562507927, 3906744.503145834431052 ], [ 4959374.358022370375693, 3906732.874646093696356 ], [ 4959378.668748828582466, 3906738.706868872046471 ], [ 4959398.267309862188995, 3906725.261815411038697 ], [ 4959414.072076441720128, 3906747.496288501657546 ], [ 4959395.049388884566724, 3906760.942148115485907 ], [ 4959404.245135733857751, 3906773.699811656028032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959390.157726815901697, 3905338.63761150976643 ], [ 4959424.10039733722806, 3905363.446739791892469 ], [ 4959398.135489269159734, 3905398.366475005634129 ], [ 4959356.426519149914384, 3905367.720263178925961 ], [ 4959369.697933197021484, 3905349.532519794069231 ], [ 4959377.75220313295722, 3905355.370047945529222 ], [ 4959390.157726815901697, 3905338.63761150976643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959354.099873226135969, 3905790.109367405530065 ], [ 4959336.277856739237905, 3905768.600347116589546 ], [ 4959302.837251397781074, 3905796.226959054358304 ], [ 4959284.439827051945031, 3905774.353026854805648 ], [ 4959297.700680673122406, 3905763.447857213206589 ], [ 4959290.514469885267317, 3905754.69852895103395 ], [ 4959317.036212181672454, 3905732.888202556874603 ], [ 4959323.360653318464756, 3905740.17979109287262 ], [ 4959334.315409913659096, 3905731.092029427643865 ], [ 4959371.396600392647088, 3905775.932774425018579 ], [ 4959354.099873226135969, 3905790.109367405530065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961592.175784786231816, 3896845.961900073569268 ], [ 4961596.243854018859565, 3896822.299587773159146 ], [ 4961572.055123743601143, 3896817.893738246522844 ], [ 4961576.704174744896591, 3896790.95512942969799 ], [ 4961596.285937844775617, 3896794.261679262854159 ], [ 4961601.225243284367025, 3896765.866992707829922 ], [ 4961639.52467635832727, 3896772.478843853343278 ], [ 4961625.867579285986722, 3896851.838558401912451 ], [ 4961592.175784786231816, 3896845.961900073569268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961552.357123190537095, 3891896.296955015975982 ], [ 4961556.965501619502902, 3891897.032120525836945 ], [ 4961559.887912534177303, 3891869.362739861477166 ], [ 4961566.801032749935985, 3891870.101362719666213 ], [ 4961567.968144996091723, 3891860.271644884720445 ], [ 4961607.718866555951536, 3891864.336698671337217 ], [ 4961600.706282496452332, 3891929.869294530246407 ], [ 4961549.433631255291402, 3891924.694592209067196 ], [ 4961552.357123190537095, 3891896.296955015975982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961447.949814933352172, 3893901.761320499703288 ], [ 4961453.491221095435321, 3893856.253498122096062 ], [ 4961500.726668898947537, 3893861.786112586036325 ], [ 4961495.185183875262737, 3893907.293925382196903 ], [ 4961447.949814933352172, 3893901.761320499703288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959329.852629291824996, 3907864.168936481233686 ], [ 4959331.221530674956739, 3907914.056946774479002 ], [ 4959303.292235001921654, 3907914.745641380082816 ], [ 4959303.568294087424874, 3907923.121066179126501 ], [ 4959278.230289897881448, 3907923.813456871081144 ], [ 4959276.857167965732515, 3907876.838498304132372 ], [ 4959309.393232822418213, 3907876.156301136594266 ], [ 4959309.121301235631108, 3907864.867827223148197 ], [ 4959329.852629291824996, 3907864.168936481233686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959316.977063115686178, 3900692.224663190543652 ], [ 4959290.773401274345815, 3900689.274519415106624 ], [ 4959293.692034979350865, 3900661.968878264073282 ], [ 4959315.864783582277596, 3900664.18505480280146 ], [ 4959317.031731874682009, 3900653.626929072197527 ], [ 4959358.209257395938039, 3900658.054846852552146 ], [ 4959357.623451816849411, 3900664.972491864580661 ], [ 4959369.717815447598696, 3900666.082033874467015 ], [ 4959366.504393917508423, 3900698.120942810550332 ], [ 4959337.420767141506076, 3900695.166669281199574 ], [ 4959336.543874117545784, 3900704.26868421304971 ], [ 4959315.811147931031883, 3900702.054530022200197 ], [ 4959316.977063115686178, 3900692.224663190543652 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959108.941665928810835, 3904238.927843514364213 ], [ 4959132.506617557257414, 3904272.825243368279189 ], [ 4959091.28844725061208, 3904301.169394886586815 ], [ 4959083.242000918835402, 3904289.505870444700122 ], [ 4959066.812447682954371, 3904300.770808719564229 ], [ 4959047.84556819498539, 3904273.434292523190379 ], [ 4959091.945894514210522, 3904243.273477908689529 ], [ 4959095.394230191595852, 3904248.37616914883256 ], [ 4959108.941665928810835, 3904238.927843514364213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959070.347578780725598, 3907517.513022269587964 ], [ 4959091.671427685767412, 3907505.162563652265817 ], [ 4959110.053966807201505, 3907536.867926598060876 ], [ 4959088.730134550482035, 3907549.218370872084051 ], [ 4959070.347578780725598, 3907517.513022269587964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959053.134658049792051, 3901127.352151247672737 ], [ 4959047.039692863821983, 3901160.843575304374099 ], [ 4959051.934030832722783, 3901161.942850117105991 ], [ 4959047.581367215141654, 3901185.241074034012854 ], [ 4959005.833218173123896, 3901177.535654457286 ], [ 4959007.284946151077747, 3901169.162694685161114 ], [ 4958993.176891933195293, 3901166.593965549021959 ], [ 4958997.238961450755596, 3901145.115976964123547 ], [ 4959011.347026563249528, 3901147.684708205517381 ], [ 4959016.280767544172704, 3901120.745991601608694 ], [ 4959053.134658049792051, 3901127.352151247672737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961224.420904137194157, 3897572.579258994664997 ], [ 4961230.512343204580247, 3897543.822075788863003 ], [ 4961263.913683450780809, 3897550.790241005830467 ], [ 4961257.822210199199617, 3897579.547416750807315 ], [ 4961224.420904137194157, 3897572.579258994664997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958921.538199641741812, 3899060.728693233337253 ], [ 4958952.944617076776922, 3899051.669481541961432 ], [ 4958960.97123737540096, 3899078.626357590314001 ], [ 4958929.276833859272301, 3899087.685156281106174 ], [ 4958921.538199641741812, 3899060.728693233337253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958831.437936921603978, 3904380.549449319019914 ], [ 4958850.413112319074571, 3904402.059728182852268 ], [ 4958829.942641771398485, 3904420.237649217247963 ], [ 4958810.967462885193527, 3904398.727384571917355 ], [ 4958831.437936921603978, 3904380.549449319019914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958784.163868898525834, 3896991.551483953371644 ], [ 4958770.820122844539583, 3897058.896811146754771 ], [ 4958744.039832568727434, 3897053.761629873421043 ], [ 4958751.580602071247995, 3897016.630940661765635 ], [ 4958728.8317696955055, 3897012.229658483993262 ], [ 4958734.923202189616859, 3896981.651275475509465 ], [ 4958784.163868898525834, 3896991.551483953371644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960909.834430384449661, 3899952.794620151165873 ], [ 4960902.904031639918685, 3899965.16482041683048 ], [ 4960879.882389021106064, 3899952.386309506371617 ], [ 4960884.502291282638907, 3899944.382258144207299 ], [ 4960863.207046796567738, 3899932.698698108550161 ], [ 4960882.843522859737277, 3899897.407020996324718 ], [ 4960951.909060253761709, 3899935.378490155562758 ], [ 4960934.583015704527497, 3899966.303966900333762 ], [ 4960909.834430384449661, 3899952.794620151165873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960865.639519897289574, 3908245.086635256186128 ], [ 4960903.947488451376557, 3908234.947447907645255 ], [ 4960913.110299360007048, 3908269.189381330739707 ], [ 4960875.090292439796031, 3908279.328980439342558 ], [ 4960865.639519897289574, 3908245.086635256186128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960876.761017072014511, 3897967.145197622012347 ], [ 4960882.563968778587878, 3897938.387504201382399 ], [ 4960955.988837162964046, 3897953.425186587963253 ], [ 4960949.896707778796554, 3897982.910696902778 ], [ 4960927.725104412063956, 3897978.50840213149786 ], [ 4960924.245672875083983, 3897994.160845152102411 ], [ 4960900.922505389899015, 3897989.392742989584804 ], [ 4960904.402998343110085, 3897973.012039091903716 ], [ 4960876.761017072014511, 3897967.145197622012347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961806.668976230546832, 3896718.83934439253062 ], [ 4961811.029139840975404, 3896692.628600406926125 ], [ 4961834.642962699756026, 3896696.305537563282996 ], [ 4961840.744598045945168, 3896661.358320629224181 ], [ 4961880.484325500205159, 3896667.972689510788769 ], [ 4961870.31045628990978, 3896729.131066692527384 ], [ 4961806.668976230546832, 3896718.83934439253062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961764.9745614817366, 3909087.572875141631812 ], [ 4961757.153293152339756, 3909119.240585549268872 ], [ 4961763.48505828063935, 3909120.706661203876138 ], [ 4961757.690129823051393, 3909145.094783029519022 ], [ 4961698.402654732577503, 3909130.804306293837726 ], [ 4961705.064544453285635, 3909104.232684023212641 ], [ 4961714.561653033830225, 3909106.795911015942693 ], [ 4961721.515860327519476, 3909077.311675725039095 ], [ 4961764.9745614817366, 3909087.572875141631812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961688.114904753863811, 3909270.9797333474271 ], [ 4961712.98502039629966, 3909197.82659420883283 ], [ 4961750.682108687236905, 3909210.263888660818338 ], [ 4961736.800599709153175, 3909251.389911346137524 ], [ 4961741.116993452422321, 3909252.852945032529533 ], [ 4961731.573853733949363, 3909280.876748528797179 ], [ 4961713.444574916735291, 3909275.023323213215917 ], [ 4961712.286920143291354, 3909279.027034632861614 ], [ 4961688.114904753863811, 3909270.9797333474271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958549.013200212270021, 3888558.734429622069001 ], [ 4958521.915572675876319, 3888568.528301939368248 ], [ 4958495.510227440856397, 3888494.573792382609099 ], [ 4958522.896048224531114, 3888484.780293279793113 ], [ 4958549.013200212270021, 3888558.734429622069001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961419.625648167915642, 3891843.299686599057168 ], [ 4961408.622113039717078, 3891880.788477852940559 ], [ 4961368.595247917808592, 3891868.712480579968542 ], [ 4961366.568822667934, 3891875.263768771197647 ], [ 4961345.25923778116703, 3891869.041796744801104 ], [ 4961363.500317571684718, 3891807.895429469645023 ], [ 4961388.552978276275098, 3891815.579517379403114 ], [ 4961383.630397645756602, 3891832.322076574433595 ], [ 4961419.625648167915642, 3891843.299686599057168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958378.97291624546051, 3907565.706563883926719 ], [ 4958406.854712977074087, 3907599.609364742878824 ], [ 4958380.335548855364323, 3907621.420614552218467 ], [ 4958352.453741416335106, 3907587.517840764019638 ], [ 4958378.97291624546051, 3907565.706563883926719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960460.78421220369637, 3908866.794472937472165 ], [ 4960448.108733147382736, 3908871.87382764229551 ], [ 4960435.201640964485705, 3908838.354843837674707 ], [ 4960447.877133366651833, 3908833.275483152363449 ], [ 4960460.78421220369637, 3908866.794472937472165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961210.501228517852724, 3895892.101019104942679 ], [ 4961247.071541273035109, 3895900.166252513416111 ], [ 4961235.469419339671731, 3895954.040129176806659 ], [ 4961198.610586839728057, 3895946.338611722458154 ], [ 4961210.501228517852724, 3895892.101019104942679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961094.849722338840365, 3899292.172128903213888 ], [ 4961081.279671969823539, 3899314.728077501058578 ], [ 4961074.949334084056318, 3899310.71326668234542 ], [ 4961064.266443779692054, 3899328.53981166658923 ], [ 4961039.519491469487548, 3899313.573833706323057 ], [ 4961063.771865685470402, 3899273.555444240570068 ], [ 4961094.849722338840365, 3899292.172128903213888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958089.937444827519357, 3906275.91851800493896 ], [ 4958116.950641722418368, 3906314.553507791366428 ], [ 4958097.928797988221049, 3906327.636151256039739 ], [ 4958094.480541002936661, 3906322.533581514842808 ], [ 4958057.301215109415352, 3906348.335966360289603 ], [ 4958034.024174833670259, 3906314.803991367574781 ], [ 4958089.937444827519357, 3906275.91851800493896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960260.671046691946685, 3899157.312739904504269 ], [ 4960263.838673077523708, 3899157.681467574555427 ], [ 4960265.295128846541047, 3899146.395552191883326 ], [ 4960291.787146137095988, 3899150.075320187490433 ], [ 4960285.675388272851706, 3899193.762041815090925 ], [ 4960256.015790598466992, 3899189.713552623055875 ], [ 4960260.671046691946685, 3899157.312739904504269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960963.015208209864795, 3895341.899113161489367 ], [ 4961046.524734673090279, 3895359.864943135995418 ], [ 4961040.724292974919081, 3895386.437786945607513 ], [ 4961017.975529660470784, 3895381.306314893066883 ], [ 4961016.23589058406651, 3895388.950454265810549 ], [ 4960955.763277248479426, 3895376.116543417330831 ], [ 4960963.015208209864795, 3895341.899113161489367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960843.531605268828571, 3894323.618002635892481 ], [ 4960846.804916054941714, 3894252.617679247166961 ], [ 4960879.353762566111982, 3894254.486286155413836 ], [ 4960877.279326941817999, 3894293.809154176618904 ], [ 4960872.670804437249899, 3894293.438232311513275 ], [ 4960871.183783069252968, 3894325.115259422920644 ], [ 4960843.531605268828571, 3894323.618002635892481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957717.400401974096894, 3894348.689972943626344 ], [ 4957741.308364888653159, 3894349.814802290406078 ], [ 4957740.121998459100723, 3894374.938086280599236 ], [ 4957716.213563904166222, 3894374.177386206574738 ], [ 4957717.400401974096894, 3894348.689972943626344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959991.513865128159523, 3900461.237528637982905 ], [ 4959995.597310016863048, 3900425.558649537619203 ], [ 4960068.737865063361824, 3900433.67505474248901 ], [ 4960064.654324263334274, 3900469.353922896552831 ], [ 4959991.513865128159523, 3900461.237528637982905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960668.895800546742976, 3893583.815623756498098 ], [ 4960721.868768433108926, 3893606.105206035543233 ], [ 4960706.837103056721389, 3893641.403633695561439 ], [ 4960672.577218034304678, 3893627.152348939329386 ], [ 4960676.9138049101457, 3893616.598973330110312 ], [ 4960658.20023943297565, 3893608.924830017611384 ], [ 4960668.895800546742976, 3893583.815623756498098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957528.240229152143002, 3901530.891802887432277 ], [ 4957492.242629973217845, 3901530.114974367432296 ], [ 4957491.335453811101615, 3901562.157231107354164 ], [ 4957458.505767070688307, 3901561.384719788562506 ], [ 4957459.099404877983034, 3901548.2768231369555 ], [ 4957449.596276040188968, 3901547.899890912231058 ], [ 4957450.198247719556093, 3901528.601787724066526 ], [ 4957460.277360716834664, 3901528.979496189393103 ], [ 4957461.177632248960435, 3901502.035056003369391 ], [ 4957529.140077224932611, 3901504.311494729015976 ], [ 4957528.240229152143002, 3901530.891802887432277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959672.689779720269144, 3898854.602053471840918 ], [ 4959674.768367430195212, 3898810.909436543472111 ], [ 4959728.912064005620778, 3898813.53580337530002 ], [ 4959726.542243630625308, 3898859.41277886275202 ], [ 4959703.502424341626465, 3898858.287417189218104 ], [ 4959702.910761690698564, 3898869.210468044504523 ], [ 4959682.751121672801673, 3898868.089244786649942 ], [ 4959683.345379509963095, 3898855.345547690056264 ], [ 4959672.689779720269144, 3898854.602053471840918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959657.091531650163233, 3901304.811705119907856 ], [ 4959667.276880595833063, 3901230.907784275710583 ], [ 4959707.299934054724872, 3901236.426980837713927 ], [ 4959704.387192819267511, 3901259.363030239008367 ], [ 4959711.297948045656085, 3901260.101180013269186 ], [ 4959706.931702384725213, 3901292.502540864981711 ], [ 4959697.429555371403694, 3901291.396554473787546 ], [ 4959694.811069847084582, 3901309.963461270555854 ], [ 4959657.091531650163233, 3901304.811705119907856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959588.624064607545733, 3899233.541287397034466 ], [ 4959584.53579013235867, 3899272.861495405435562 ], [ 4959557.178721500560641, 3899269.909451283048838 ], [ 4959555.718937017023563, 3899283.744310690555722 ], [ 4959530.377447065897286, 3899281.159296450670809 ], [ 4959535.637403501197696, 3899228.003809532150626 ], [ 4959588.624064607545733, 3899233.541287397034466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957281.714360874146223, 3904972.688874410931021 ], [ 4957337.494362129829824, 3905034.301901099272072 ], [ 4957313.566076619550586, 3905055.389388646930456 ], [ 4957258.073528090491891, 3904994.140927236061543 ], [ 4957281.714360874146223, 3904972.688874410931021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960242.205003443174064, 3908904.710248016286641 ], [ 4960206.754105062223971, 3908930.876338256057352 ], [ 4960214.225490540266037, 3908940.718740337062627 ], [ 4960197.797244587913156, 3908952.71128218434751 ], [ 4960191.76276377029717, 3908944.691627928987145 ], [ 4960171.010619337670505, 3908960.319241167511791 ], [ 4960149.172234131023288, 3908930.79291068110615 ], [ 4960160.124390891753137, 3908922.797861953265965 ], [ 4960158.11271592695266, 3908920.24602371500805 ], [ 4960219.791359254159033, 3908874.818894146941602 ], [ 4960242.205003443174064, 3908904.710248016286641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960010.929955075494945, 3906966.465514251962304 ], [ 4960015.22474604472518, 3906983.221768484450877 ], [ 4959938.895973097532988, 3907002.046607041731477 ], [ 4959934.888543549925089, 3906985.65491030504927 ], [ 4960010.929955075494945, 3906966.465514251962304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959072.497577308677137, 3907831.033568141981959 ], [ 4959089.733359829522669, 3907859.095990742091089 ], [ 4959066.680218034423888, 3907872.900546856224537 ], [ 4959049.443908093497157, 3907845.202269958332181 ], [ 4959072.497577308677137, 3907831.033568141981959 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959041.390314792282879, 3907839.364831297658384 ], [ 4959000.471760409884155, 3907863.34001520415768 ], [ 4958994.440257586538792, 3907852.77171709574759 ], [ 4958983.490058585070074, 3907859.310711023863405 ], [ 4958962.521923195570707, 3907823.596348436083645 ], [ 4958990.473297025077045, 3907807.24965986981988 ], [ 4958983.866957335732877, 3907795.952293376903981 ], [ 4959007.495965720154345, 3907782.148476052563637 ], [ 4959041.390314792282879, 3907839.364831297658384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956523.859211237169802, 3900118.914091676473618 ], [ 4956559.824762073345482, 3900145.542817076202482 ], [ 4956539.052175036631525, 3900173.189425169490278 ], [ 4956546.820610146038234, 3900179.025708368513733 ], [ 4956532.10663800034672, 3900198.669416500721127 ], [ 4956488.373160277493298, 3900165.840329307131469 ], [ 4956523.859211237169802, 3900118.914091676473618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959567.857701352797449, 3898850.082840579561889 ], [ 4959525.522258183918893, 3898847.837740699294955 ], [ 4959528.193237030878663, 3898792.493799972347915 ], [ 4959570.528767170384526, 3898794.73890398722142 ], [ 4959567.857701352797449, 3898850.082840579561889 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959563.816374770365655, 3899664.635874639730901 ], [ 4959567.881719628348947, 3899641.337345003150403 ], [ 4959554.060406153090298, 3899639.132863715291023 ], [ 4959557.544538192451, 3899619.474805298727006 ], [ 4959573.668895964510739, 3899622.410832221154124 ], [ 4959575.992180311121047, 3899608.941332363989204 ], [ 4959614.576063487678766, 3899615.550720117986202 ], [ 4959607.316073667258024, 3899657.415317092556506 ], [ 4959612.499191269278526, 3899658.150974690448493 ], [ 4959608.431731536053121, 3899682.906015187036246 ], [ 4959582.805211180821061, 3899678.499893157277256 ], [ 4959584.548323269933462, 3899667.942606807220727 ], [ 4959563.816374770365655, 3899664.635874639730901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956374.138433034531772, 3905375.308812031522393 ], [ 4956400.943267536349595, 3905355.680772952735424 ], [ 4956445.784886909648776, 3905415.456998706795275 ], [ 4956418.979602538980544, 3905435.449124450795352 ], [ 4956374.138433034531772, 3905375.308812031522393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958493.699156309477985, 3900821.429852147120982 ], [ 4958509.60962301492691, 3900770.473661406897008 ], [ 4958521.41244207508862, 3900774.131329720839858 ], [ 4958528.645190179347992, 3900750.47289123153314 ], [ 4958554.841799081303179, 3900758.520106460433453 ], [ 4958531.698498135432601, 3900833.134706621523947 ], [ 4958493.699156309477985, 3900821.429852147120982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958432.420740398578346, 3905145.398134264163673 ], [ 4958445.62712281756103, 3905173.818650249857455 ], [ 4958418.830684300512075, 3905186.162035840097815 ], [ 4958405.624783141538501, 3905157.377402230165899 ], [ 4958432.420740398578346, 3905145.398134264163673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958374.844077279791236, 3899298.473140757065266 ], [ 4958388.049386237747967, 3899329.806562380865216 ], [ 4958355.484901318326592, 3899343.598526024725288 ], [ 4958366.107155778445303, 3899368.374031927902251 ], [ 4958341.90009246673435, 3899378.536254574544728 ], [ 4958316.349404206499457, 3899318.783687802497298 ], [ 4958343.726658794097602, 3899307.169297474902123 ], [ 4958345.449205566197634, 3899311.177104605361819 ], [ 4958374.844077279791236, 3899298.473140757065266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956069.482694942504168, 3889148.573259277269244 ], [ 4956080.754803833551705, 3889121.278276143595576 ], [ 4956140.076201650314033, 3889145.751747312024236 ], [ 4956128.804042702540755, 3889173.04670595517382 ], [ 4956069.482694942504168, 3889148.573259277269244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955987.709005468524992, 3900922.215276034548879 ], [ 4955953.150525134988129, 3900921.44237048085779 ], [ 4955953.759428156539798, 3900895.954036525450647 ], [ 4955988.31794124469161, 3900896.726942836306989 ], [ 4955987.709005468524992, 3900922.215276034548879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959044.58003206923604, 3898609.016231552232057 ], [ 4959052.405734256841242, 3898574.070772097911686 ], [ 4959133.025253878906369, 3898592.754899469669908 ], [ 4959124.91194555722177, 3898627.335800856817514 ], [ 4959044.58003206923604, 3898609.016231552232057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958989.198290385305882, 3889227.887233339250088 ], [ 4959003.948164564557374, 3889188.218005712144077 ], [ 4959041.383923050016165, 3889202.471581812482327 ], [ 4959026.634512958116829, 3889241.776662096846849 ], [ 4958989.198290385305882, 3889227.887233339250088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958928.536561622284353, 3900437.514367759227753 ], [ 4958849.343592458404601, 3900432.305640010163188 ], [ 4958852.28778628911823, 3900386.42934983689338 ], [ 4958900.955349677242339, 3900389.774655108805746 ], [ 4958900.075534286908805, 3900401.061459703370929 ], [ 4958930.888552176766098, 3900403.289423028472811 ], [ 4958928.536561622284353, 3900437.514367759227753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955769.934385221451521, 3905444.803183829411864 ], [ 4955816.798032608814538, 3905500.57551494659856 ], [ 4955796.043442490510643, 3905518.027127416804433 ], [ 4955775.918106007389724, 3905493.968595941085368 ], [ 4955771.306289179250598, 3905497.603983850218356 ], [ 4955744.855910445563495, 3905465.890593953430653 ], [ 4955769.934385221451521, 3905444.803183829411864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955679.197289605624974, 3893329.718986330553889 ], [ 4955719.257668365724385, 3893315.933431694749743 ], [ 4955732.74823163729161, 3893354.184240323957056 ], [ 4955692.68743637483567, 3893368.333903226535767 ], [ 4955679.197289605624974, 3893329.718986330553889 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958081.166199460625648, 3897757.435889598447829 ], [ 4958092.462219947017729, 3897711.571036195848137 ], [ 4958162.429904726333916, 3897728.781121886800975 ], [ 4958153.740030043758452, 3897764.453894442413002 ], [ 4958137.040343903936446, 3897760.061416222713888 ], [ 4958134.43409173283726, 3897770.253469733987004 ], [ 4958081.166199460625648, 3897757.435889598447829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958046.929361682385206, 3899201.89189972775057 ], [ 4958064.853037755005062, 3899153.123030916322023 ], [ 4958075.792086775414646, 3899157.143445798195899 ], [ 4958081.573824469931424, 3899141.493780541233718 ], [ 4958107.482124770060182, 3899150.996674358844757 ], [ 4958083.488626535050571, 3899215.414784070104361 ], [ 4958046.929361682385206, 3899201.89189972775057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958749.318247938528657, 3904830.136706057470292 ], [ 4958770.30528305657208, 3904854.19866063259542 ], [ 4958714.374874800443649, 3904902.550077609252185 ], [ 4958693.388334920629859, 3904878.124035495799035 ], [ 4958749.318247938528657, 3904830.136706057470292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958752.690951260738075, 3899936.589425361249596 ], [ 4958756.22476398665458, 3899880.882448077667505 ], [ 4958786.46288597676903, 3899882.745311930309981 ], [ 4958783.21701651904732, 3899938.452687495853752 ], [ 4958752.690951260738075, 3899936.589425361249596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958689.969108156859875, 3906092.133189075160772 ], [ 4958710.435167704708874, 3906076.139927445910871 ], [ 4958699.800674160011113, 3906062.288107958156615 ], [ 4958735.832299596630037, 3906034.300225312355906 ], [ 4958762.850404309108853, 3906068.930420167278498 ], [ 4958706.064803939312696, 3906112.911115166265517 ], [ 4958689.969108156859875, 3906092.133189075160772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958614.340418625622988, 3904985.068587352521718 ], [ 4958605.694276708178222, 3904990.518535259179771 ], [ 4958614.026645593345165, 3905003.638844219967723 ], [ 4958587.799791258759797, 3905020.352427258621901 ], [ 4958582.915243360213935, 3905012.698884703218937 ], [ 4958556.976873932406306, 3905029.048767425585538 ], [ 4958537.725577844306827, 3904999.163285601884127 ], [ 4958598.537492830306292, 3904960.285694955382496 ], [ 4958614.340418625622988, 3904985.068587352521718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957751.601979640312493, 3900133.298002424184233 ], [ 4957768.423940604552627, 3900046.657879906706512 ], [ 4957800.960036952979863, 3900052.892319386359304 ], [ 4957783.849971365183592, 3900139.532030370552093 ], [ 4957751.601979640312493, 3900133.298002424184233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957675.257302447222173, 3905887.18905035359785 ], [ 4957640.95670248940587, 3905913.360038478858769 ], [ 4957619.974415668286383, 3905885.657642824575305 ], [ 4957654.274537129327655, 3905859.850759108550847 ], [ 4957675.257302447222173, 3905887.18905035359785 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955103.741635390557349, 3892775.148608631920069 ], [ 4955082.699242392554879, 3892784.953589544631541 ], [ 4955071.206181135959923, 3892760.906646248418838 ], [ 4955092.536671456880867, 3892751.102019114885479 ], [ 4955103.741635390557349, 3892775.148608631920069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957395.687494426965714, 3899233.051647596526891 ], [ 4957354.50012902636081, 3899234.088679691776633 ], [ 4957353.117777505889535, 3899191.119489582721144 ], [ 4957394.593712093308568, 3899189.718713440932333 ], [ 4957395.687494426965714, 3899233.051647596526891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957372.4343596175313, 3898104.946188788395375 ], [ 4957408.723595689982176, 3898106.451500893104821 ], [ 4957406.926379257813096, 3898157.791372240521014 ], [ 4957400.013784187845886, 3898157.782074465882033 ], [ 4957399.4122693259269, 3898176.716010740492493 ], [ 4957370.034739573486149, 3898175.948257553391159 ], [ 4957372.4343596175313, 3898104.946188788395375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958151.327614586800337, 3905184.33683575084433 ], [ 4958162.790573546662927, 3905224.407019924838096 ], [ 4958093.079439553432167, 3905244.338571488857269 ], [ 4958082.190287446603179, 3905205.725728289224207 ], [ 4958116.758187883533537, 3905195.577455633319914 ], [ 4958116.472236756235361, 3905194.120538230519742 ], [ 4958151.327614586800337, 3905184.33683575084433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954962.026120932772756, 3892298.690493755973876 ], [ 4954999.984200393781066, 3892354.085638172458857 ], [ 4954957.310803870670497, 3892383.162376117892563 ], [ 4954919.352677766233683, 3892327.767291013151407 ], [ 4954962.026120932772756, 3892298.690493755973876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957027.422375129535794, 3907374.160301127936691 ], [ 4957072.093630235642195, 3907342.176225709263235 ], [ 4957092.211075951345265, 3907370.241197194904089 ], [ 4957047.827769161202013, 3907402.225623325444758 ], [ 4957027.422375129535794, 3907374.160301127936691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957894.343478423543274, 3894085.665407782886177 ], [ 4957866.679981655441225, 3894092.182033034972847 ], [ 4957864.674413880333304, 3894084.168466724921018 ], [ 4957823.179182306863368, 3894093.943461074959487 ], [ 4957813.15324822999537, 3894052.419134925119579 ], [ 4957831.019458811730146, 3894048.073894319590181 ], [ 4957827.582450401037931, 3894033.504064174368978 ], [ 4957850.058771942742169, 3894028.43685157969594 ], [ 4957853.20968309417367, 3894041.54977968800813 ], [ 4957882.314069692976773, 3894034.670975260436535 ], [ 4957894.343478423543274, 3894085.665407782886177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957869.706993267871439, 3901173.050571500323713 ], [ 4957848.321666985750198, 3901227.27686899760738 ], [ 4957814.644448642618954, 3901214.122335951309651 ], [ 4957836.029717332683504, 3901159.896012094803154 ], [ 4957869.706993267871439, 3901173.050571500323713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954706.416753555648029, 3900459.236746919807047 ], [ 4954718.79713174700737, 3900462.165202407632023 ], [ 4954720.823108777403831, 3900454.156861658673733 ], [ 4954753.645144036971033, 3900462.208620372693986 ], [ 4954755.092407478019595, 3900456.384341806638986 ], [ 4954778.700698586180806, 3900462.60399576742202 ], [ 4954765.967847383581102, 3900511.381558110471815 ], [ 4954697.445699896663427, 3900493.817947540432215 ], [ 4954706.416753555648029, 3900459.236746919807047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956900.82477680593729, 3905570.08439805964008 ], [ 4956920.941799485124648, 3905599.605733605567366 ], [ 4956890.968468148261309, 3905619.95731706218794 ], [ 4956870.56348271202296, 3905590.435621893033385 ], [ 4956900.82477680593729, 3905570.08439805964008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956805.114871622994542, 3898906.731793676503003 ], [ 4956818.979671455919743, 3898876.527359284460545 ], [ 4956884.607982540503144, 3898906.47293679555878 ], [ 4956873.053529662080109, 3898931.946711522527039 ], [ 4956850.601746997795999, 3898921.721327947452664 ], [ 4956848.579361251555383, 3898926.452337660361081 ], [ 4956805.114871622994542, 3898906.731793676503003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954542.413642706349492, 3895216.295157780405134 ], [ 4954565.719127460382879, 3895238.171773091424257 ], [ 4954522.454378717578948, 3895283.634318280499429 ], [ 4954496.272393075749278, 3895258.47702084062621 ], [ 4954529.441642013378441, 3895223.925805137027055 ], [ 4954532.318597733974457, 3895226.842399194370955 ], [ 4954542.413642706349492, 3895216.295157780405134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954480.295606934465468, 3895599.646210271399468 ], [ 4954504.493343657813966, 3895598.583746531046927 ], [ 4954504.214750915765762, 3895590.936690546106547 ], [ 4954521.210737984627485, 3895590.229462867137045 ], [ 4954522.884516511112452, 3895634.2911575762555 ], [ 4954481.69130340218544, 3895635.696718157269061 ], [ 4954480.295606934465468, 3895599.646210271399468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954396.92924125213176, 3892425.432779848109931 ], [ 4954407.836099275387824, 3892458.217788856942207 ], [ 4954366.910861337557435, 3892472.004226135089993 ], [ 4954355.716321376152337, 3892438.854750831145793 ], [ 4954396.92924125213176, 3892425.432779848109931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957387.230374685488641, 3898025.585803756956011 ], [ 4957389.298942821100354, 3897986.626708981115371 ], [ 4957421.555965164676309, 3897988.126617041416466 ], [ 4957418.298987794667482, 3898054.029707300011069 ], [ 4957384.313888838514686, 3898052.5274798264727 ], [ 4957384.904626213014126, 3898041.604383278638124 ], [ 4957372.519995856098831, 3898041.223607132211328 ], [ 4957373.406095260754228, 3898024.838962055277079 ], [ 4957387.230374685488641, 3898025.585803756956011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957241.707661937922239, 3899797.974785050842911 ], [ 4957256.142657059244812, 3899772.140884336084127 ], [ 4957313.126123463734984, 3899803.532468326855451 ], [ 4957298.403083425015211, 3899829.365952640306205 ], [ 4957241.707661937922239, 3899797.974785050842911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957231.285690223798156, 3900053.216028176248074 ], [ 4957228.09911852888763, 3900067.048707145731896 ], [ 4957198.73144285287708, 3900060.455068786628544 ], [ 4957202.206004754640162, 3900046.622771640308201 ], [ 4957231.285690223798156, 3900053.216028176248074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957156.284017306752503, 3895831.032271020580083 ], [ 4957125.736167197115719, 3895841.915360737126321 ], [ 4957115.977460450492799, 3895815.685035647358745 ], [ 4957146.525822624564171, 3895804.437806449364871 ], [ 4957156.284017306752503, 3895831.032271020580083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954109.365851819515228, 3893411.503970330581069 ], [ 4954145.387338511645794, 3893401.716549559496343 ], [ 4954149.115390400402248, 3893415.557999809272587 ], [ 4954166.981874263845384, 3893410.846197689883411 ], [ 4954171.857310765422881, 3893428.694471152964979 ], [ 4954140.446838299743831, 3893437.030982892494649 ], [ 4954148.763148261234164, 3893467.992093747481704 ], [ 4954125.998094708658755, 3893473.790303132496774 ], [ 4954109.365851819515228, 3893411.503970330581069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956143.415453005582094, 3897448.981710012536496 ], [ 4956211.350366502068937, 3897480.385125334840268 ], [ 4956198.064437920227647, 3897508.40582341235131 ], [ 4956130.417139424011111, 3897477.3669438441284 ], [ 4956143.415453005582094, 3897448.981710012536496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956888.685915965586901, 3905169.888007551897317 ], [ 4956863.030407056212425, 3905190.973606744315475 ], [ 4956838.306300004012883, 3905161.082089316099882 ], [ 4956863.961817956529558, 3905139.996466896496713 ], [ 4956888.685915965586901, 3905169.888007551897317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956828.046162414364517, 3893984.461783912498504 ], [ 4956835.526811765506864, 3893991.390132454689592 ], [ 4956823.987651403062046, 3894003.755239912308753 ], [ 4956796.366700801067054, 3893978.229687162209302 ], [ 4956824.926065331324935, 3893947.680645749904215 ], [ 4956845.066370284184813, 3893966.277874184772372 ], [ 4956828.046162414364517, 3893984.461783912498504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953734.656752317212522, 3895730.913677849341184 ], [ 4953727.784447159618139, 3895697.041365318465978 ], [ 4953759.765612518414855, 3895690.889828559476882 ], [ 4953757.760702800936997, 3895681.420046838000417 ], [ 4953782.538846016861498, 3895676.716344004962593 ], [ 4953784.257899586111307, 3895684.365135998465121 ], [ 4953810.764793914742768, 3895679.299422389362007 ], [ 4953817.062220584601164, 3895712.078672047238797 ], [ 4953790.26686564181, 3895717.508159436285496 ], [ 4953792.844336329959333, 3895729.891669968608767 ], [ 4953774.981220851652324, 3895733.147212804760784 ], [ 4953772.976319679990411, 3895723.677429706789553 ], [ 4953734.656752317212522, 3895730.913677849341184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953591.63699759170413, 3898246.511231646873057 ], [ 4953578.622493685223162, 3898290.919395436998457 ], [ 4953549.830220923759043, 3898282.509798220358789 ], [ 4953562.844243537634611, 3898238.465749847702682 ], [ 4953591.63699759170413, 3898246.511231646873057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956327.754912992939353, 3905834.781966491602361 ], [ 4956318.266115297563374, 3905824.573902753181756 ], [ 4956334.986756653524935, 3905809.302211202215403 ], [ 4956363.740591949783266, 3905840.290937111247331 ], [ 4956324.821303755044937, 3905876.289115476887673 ], [ 4956305.268318740651011, 3905855.508110911119729 ], [ 4956327.754912992939353, 3905834.781966491602361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953466.330682127736509, 3901143.014759277459234 ], [ 4953464.566935502924025, 3901172.871329883579165 ], [ 4953426.266550466418266, 3901170.640666938852519 ], [ 4953428.030254680663347, 3901140.784093861002475 ], [ 4953466.330682127736509, 3901143.014759277459234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953368.095997494645417, 3892730.051883030682802 ], [ 4953383.947523756884038, 3892724.244769437238574 ], [ 4953398.589683412574232, 3892766.137050548102707 ], [ 4953373.516057703644037, 3892774.846162676811218 ], [ 4953362.605893569067121, 3892743.882207066286355 ], [ 4953371.828023952431977, 3892740.980196348857135 ], [ 4953368.095997494645417, 3892730.051883030682802 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955424.687007112428546, 3893665.120889484416693 ], [ 4955413.789285743609071, 3893626.509395028464496 ], [ 4955443.759566446766257, 3893618.172538051381707 ], [ 4955440.60418853815645, 3893607.608792423736304 ], [ 4955468.268982565030456, 3893599.997288195416331 ], [ 4955485.762642971239984, 3893661.921440877951682 ], [ 4955467.031411429867148, 3893666.995395382866263 ], [ 4955463.302682830020785, 3893654.246144747361541 ], [ 4955424.687007112428546, 3893665.120889484416693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955293.422942271456122, 3899046.785244690254331 ], [ 4955308.156476863659918, 3899011.483312925789505 ], [ 4955347.593833331950009, 3899027.919158295262605 ], [ 4955332.860255870036781, 3899063.221068784594536 ], [ 4955293.422942271456122, 3899046.785244690254331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953200.95993557292968, 3894709.256287202704698 ], [ 4953163.799537784419954, 3894709.576274917926639 ], [ 4953164.071605015546083, 3894723.049367278348655 ], [ 4953145.347168975509703, 3894723.391273520421237 ], [ 4953145.362290044315159, 3894710.646779897622764 ], [ 4953119.436302377842367, 3894710.980160670354962 ], [ 4953118.909821146167815, 3894669.104713534936309 ], [ 4953166.152882934547961, 3894668.432503572199494 ], [ 4953166.436621970497072, 3894672.074129358399659 ], [ 4953200.428387985564768, 3894671.75037905247882 ], [ 4953200.95993557292968, 3894709.256287202704698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955132.991092646494508, 3899052.408600199967623 ], [ 4955139.958552327007055, 3899008.721800657454878 ], [ 4955176.817204926162958, 3899014.594377948436886 ], [ 4955169.849686819128692, 3899058.281168092507869 ], [ 4955132.991092646494508, 3899052.408600199967623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955720.642061834223568, 3904812.972246050834656 ], [ 4955674.825271922163665, 3904838.038562457077205 ], [ 4955656.15167140122503, 3904804.150450364220887 ], [ 4955686.984635720960796, 3904787.07578161964193 ], [ 4955678.366083265282214, 3904771.407099351752549 ], [ 4955693.06246795784682, 3904763.050916013773531 ], [ 4955720.642061834223568, 3904812.972246050834656 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952762.024505520239472, 3891699.21551625430584 ], [ 4952719.663605513982475, 3891708.633233566302806 ], [ 4952719.664031730033457, 3891708.2691057943739 ], [ 4952698.916159311309457, 3891712.614367229864001 ], [ 4952692.325345723889768, 3891682.384013531263918 ], [ 4952755.43418625369668, 3891668.621019571553916 ], [ 4952762.024505520239472, 3891699.21551625430584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954756.114488122984767, 3894783.975431122351438 ], [ 4954731.886075520887971, 3894809.07014090847224 ], [ 4954705.703369131311774, 3894784.276774882804602 ], [ 4954729.644171831198037, 3894758.8175547439605 ], [ 4954756.114488122984767, 3894783.975431122351438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954590.445530378259718, 3891791.360447856131941 ], [ 4954601.408422845415771, 3891778.993682909756899 ], [ 4954615.509622668847442, 3891791.39154151501134 ], [ 4954580.891061154194176, 3891829.582073279190809 ], [ 4954545.494902961887419, 3891797.859051623381674 ], [ 4954568.574377907440066, 3891772.034534418489784 ], [ 4954590.445530378259718, 3891791.360447856131941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955290.549626388587058, 3892444.755826204549521 ], [ 4955242.424529395997524, 3892456.347045186441392 ], [ 4955234.113305245526135, 3892422.108463526703417 ], [ 4955282.238459882326424, 3892410.517229903955013 ], [ 4955290.549626388587058, 3892444.755826204549521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952555.093469215556979, 3892509.523448515683413 ], [ 4952614.756441988050938, 3892484.468126796651632 ], [ 4952627.397784526459873, 3892513.977279845159501 ], [ 4952616.15693617425859, 3892518.697832349222153 ], [ 4952622.764199915342033, 3892534.727192632853985 ], [ 4952574.342152935452759, 3892555.061922515742481 ], [ 4952555.093469215556979, 3892509.523448515683413 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954846.907352643087506, 3895432.602521220222116 ], [ 4954826.716738616116345, 3895454.060910403262824 ], [ 4954805.425758949480951, 3895434.007225518114865 ], [ 4954852.44137067347765, 3895383.816141859162599 ], [ 4954874.307552848942578, 3895404.598841005004942 ], [ 4954862.481391120702028, 3895417.328568879980594 ], [ 4954867.084793319925666, 3895421.703874265775084 ], [ 4954852.085952329449356, 3895437.706801139749587 ], [ 4954846.907352643087506, 3895432.602521220222116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952102.417394074611366, 3889076.000868177507073 ], [ 4952077.638057488948107, 3889076.700702142436057 ], [ 4952076.813350579701364, 3889042.107626208104193 ], [ 4952101.592719020321965, 3889041.407791499979794 ], [ 4952102.417394074611366, 3889076.000868177507073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954045.06947114598006, 3894401.491511684376746 ], [ 4954081.411916076205671, 3894363.666471684351563 ], [ 4954102.704284861683846, 3894383.719570531044155 ], [ 4954066.361836977303028, 3894421.544582196511328 ], [ 4954045.06947114598006, 3894401.491511684376746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954028.234573512338102, 3895923.16611793730408 ], [ 4954010.606797598302364, 3895969.753163781948388 ], [ 4953962.236848883330822, 3895951.487798706162721 ], [ 4953979.864552829414606, 3895904.900721642188728 ], [ 4954028.234573512338102, 3895923.16611793730408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954512.854188195429742, 3905133.706165968440473 ], [ 4954664.922600323334336, 3905109.133909378666431 ], [ 4954676.351834895089269, 3905180.517839609179646 ], [ 4954524.284266918897629, 3905204.725901951547712 ], [ 4954512.854188195429742, 3905133.706165968440473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951911.739971269853413, 3892560.488244244363159 ], [ 4951909.404564148746431, 3892587.431084353011101 ], [ 4951871.669644085690379, 3892583.746793190948665 ], [ 4951874.292683731764555, 3892557.168405972886831 ], [ 4951911.739971269853413, 3892560.488244244363159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954323.662425362505019, 3895076.563718945719302 ], [ 4954301.1679498385638, 3895097.655534779187292 ], [ 4954274.988707163371146, 3895069.949556490872055 ], [ 4954297.483185249380767, 3895048.857719106599689 ], [ 4954323.662425362505019, 3895076.563718945719302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953531.72585135512054, 3898248.259859396610409 ], [ 4953517.270019179210067, 3898293.758710851892829 ], [ 4953486.462876481004059, 3898284.254373755306005 ], [ 4953500.631074535660446, 3898238.391031271312386 ], [ 4953531.72585135512054, 3898248.259859396610409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953514.880032554268837, 3895245.629062998108566 ], [ 4953546.279448975808918, 3895244.57438137056306 ], [ 4953548.227591494098306, 3895301.380850221496075 ], [ 4953532.095614370889962, 3895302.089730700477958 ], [ 4953532.371863133274019, 3895311.921546374913305 ], [ 4953497.803917868062854, 3895312.972442993894219 ], [ 4953496.419114424847066, 3895266.726394980214536 ], [ 4953515.431232567876577, 3895266.385078901890665 ], [ 4953514.880032554268837, 3895245.629062998108566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953457.750502932816744, 3894122.222898506559432 ], [ 4953468.730691222473979, 3894094.198139994870871 ], [ 4953537.259468014352024, 3894120.497629715129733 ], [ 4953519.632243061438203, 3894166.356691598892212 ], [ 4953493.429886465892196, 3894156.493774376343936 ], [ 4953500.364915228448808, 3894138.659782652743161 ], [ 4953457.750502932816744, 3894122.222898506559432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953964.068080703727901, 3891132.247146886773407 ], [ 4953976.424028404988348, 3891158.843539515975863 ], [ 4953943.850154731422663, 3891174.097292006015778 ], [ 4953931.494181876070797, 3891147.50091410567984 ], [ 4953964.068080703727901, 3891132.247146886773407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953923.892989682964981, 3892423.761335073970258 ], [ 4953902.830409810878336, 3892450.317120495717973 ], [ 4953847.858531957492232, 3892406.919127739034593 ], [ 4953870.940349215641618, 3892378.180979455355555 ], [ 4953883.028500165790319, 3892387.6629883274436 ], [ 4953891.683919841423631, 3892377.113771712873131 ], [ 4953906.650276510044932, 3892388.784056418109685 ], [ 4953896.263240562751889, 3892401.880064461845905 ], [ 4953923.892989682964981, 3892423.761335073970258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951379.928648955188692, 3894365.236608506646007 ], [ 4951415.650397160090506, 3894363.820153683889657 ], [ 4951416.765883924439549, 3894396.5929977116175 ], [ 4951381.04458732996136, 3894397.645322727505118 ], [ 4951379.928648955188692, 3894365.236608506646007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951352.821930922567844, 3899534.75069217197597 ], [ 4951360.62145399581641, 3899514.004023764282465 ], [ 4951385.092119709588587, 3899523.134696875233203 ], [ 4951371.804476281628013, 3899558.076274009887129 ], [ 4951338.985219898633659, 3899545.659096102230251 ], [ 4951344.473309172317386, 3899531.464173803571612 ], [ 4951352.821930922567844, 3899534.75069217197597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953176.134122839197516, 3894025.756982672028244 ], [ 4953152.518508550710976, 3894020.631144754122943 ], [ 4953151.359750531613827, 3894026.091700975783169 ], [ 4953098.656483928672969, 3894014.741219848394394 ], [ 4953105.897910218685865, 3893981.249955042731017 ], [ 4953182.217309760861099, 3893997.362165078520775 ], [ 4953176.134122839197516, 3894025.756982672028244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953761.784705854952335, 3890924.448742003180087 ], [ 4953789.458832662552595, 3890911.009480971377343 ], [ 4953803.252479870803654, 3890940.156427095178515 ], [ 4953775.578816619701684, 3890953.231546578463167 ], [ 4953761.784705854952335, 3890924.448742003180087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950905.727533979341388, 3891794.326096689328551 ], [ 4950919.021601462736726, 3891756.471426758449525 ], [ 4950950.123619913123548, 3891767.429614241700619 ], [ 4950953.592405803501606, 3891756.873727466445416 ], [ 4950973.751293865032494, 3891763.814443628769368 ], [ 4950969.127713110297918, 3891776.553820784669369 ], [ 4950995.334120319224894, 3891785.686008334159851 ], [ 4950982.907056580297649, 3891820.992702319752425 ], [ 4950905.727533979341388, 3891794.326096689328551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950673.013357159681618, 3889891.865517976228148 ], [ 4950693.188470368273556, 3889885.333302297629416 ], [ 4950714.150522597134113, 3889949.442766463384032 ], [ 4950693.687339666299522, 3889955.974651149939746 ], [ 4950673.013357159681618, 3889891.865517976228148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953250.786624722182751, 3894958.015612838789821 ], [ 4953222.267043254338205, 3894959.438193750102073 ], [ 4953222.545574555173516, 3894967.449362047947943 ], [ 4953197.194653252139688, 3894968.875738427042961 ], [ 4953196.913950747810304, 3894962.685212593525648 ], [ 4953170.122731250710785, 3894964.109902875497937 ], [ 4953168.432856000959873, 3894931.700419663917273 ], [ 4953219.710887111723423, 3894928.848321776371449 ], [ 4953219.148192355409265, 3894917.559655231889337 ], [ 4953237.2972416812554, 3894916.488857964519411 ], [ 4953237.574469133280218, 3894925.592411511112005 ], [ 4953248.809220324270427, 3894925.241653345990926 ], [ 4953250.786624722182751, 3894958.015612838789821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950370.284604554995894, 3893011.021941023413092 ], [ 4950328.176883200183511, 3893055.400040791835636 ], [ 4950240.113697340711951, 3892972.647766202688217 ], [ 4950282.221402497030795, 3892928.269530643243343 ], [ 4950370.284604554995894, 3893011.021941023413092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952523.7396070221439, 3890982.697161838877946 ], [ 4952575.911042273975909, 3890961.274340165313333 ], [ 4952585.103991704061627, 3890983.860994818154722 ], [ 4952566.079950881190598, 3890991.849647710565478 ], [ 4952580.445143954828382, 3891026.094425595831126 ], [ 4952547.585498141124845, 3891039.893022368196398 ], [ 4952523.7396070221439, 3890982.697161838877946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951935.461983856745064, 3889697.011764567345381 ], [ 4951993.704190370626748, 3889659.573131935205311 ], [ 4952010.960731111466885, 3889686.174199562519789 ], [ 4951952.718558066524565, 3889723.612795390188694 ], [ 4951935.461983856745064, 3889697.011764567345381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949678.577089054509997, 3892219.030578214209527 ], [ 4949670.770216525532305, 3892245.967819961719215 ], [ 4949640.241717171855271, 3892237.560613285284489 ], [ 4949647.760857630521059, 3892210.258930588606745 ], [ 4949678.577089054509997, 3892219.030578214209527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952324.240686966106296, 3893589.624987568706274 ], [ 4952360.24526996165514, 3893593.672043991275132 ], [ 4952360.24569134041667, 3893593.307915838435292 ], [ 4952385.593225399963558, 3893595.886161135975271 ], [ 4952380.935555748641491, 3893637.75556249730289 ], [ 4952319.871605946682394, 3893631.130604174919426 ], [ 4952324.240686966106296, 3893589.624987568706274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952299.284896830096841, 3891252.255954423453659 ], [ 4952334.73788801021874, 3891237.731794864404947 ], [ 4952340.196609517559409, 3891250.846720105968416 ], [ 4952348.267166717909276, 3891247.578900560736656 ], [ 4952370.676496899686754, 3891301.495797721203417 ], [ 4952327.729652220383286, 3891318.924272369593382 ], [ 4952315.087836657650769, 3891289.051153026986867 ], [ 4952303.270334946922958, 3891293.771167225204408 ], [ 4952292.92780408449471, 3891268.634380582720041 ], [ 4952304.168697099201381, 3891264.277824035380036 ], [ 4952299.284896830096841, 3891252.255954423453659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952228.843568373471498, 3893378.32028655288741 ], [ 4952231.200629725120962, 3893332.80692812660709 ], [ 4952258.566216977313161, 3893334.294992896262556 ], [ 4952258.270160629414022, 3893341.213094702456146 ], [ 4952315.017846714705229, 3893344.19163732137531 ], [ 4952312.95671424921602, 3893382.786887302063406 ], [ 4952228.843568373471498, 3893378.32028655288741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949461.951781666837633, 3892202.416613053530455 ], [ 4949470.634572942741215, 3892164.192253529559821 ], [ 4949532.27106708008796, 3892178.093898569233716 ], [ 4949529.087152076885104, 3892192.291553407441825 ], [ 4949543.200050470419228, 3892195.583556668832898 ], [ 4949537.701462171971798, 3892219.24611101532355 ], [ 4949461.951781666837633, 3892202.416613053530455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951485.794205857440829, 3894492.072297679726034 ], [ 4951469.374144243076444, 3894492.417963296640664 ], [ 4951469.379465475678444, 3894487.684294522274286 ], [ 4951416.950160723179579, 3894489.081923901569098 ], [ 4951415.298999957740307, 3894420.259724257513881 ], [ 4951442.377913259901106, 3894419.561865787021816 ], [ 4951442.930322903208435, 3894440.681957432068884 ], [ 4951484.412857571616769, 3894439.636193617712706 ], [ 4951485.794205857440829, 3894492.072297679726034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951308.41511310543865, 3897264.352518975734711 ], [ 4951318.447844381444156, 3897307.695141655858606 ], [ 4951254.20002553332597, 3897322.188526337035 ], [ 4951244.167196153663099, 3897278.845927260350436 ], [ 4951308.41511310543865, 3897264.352518975734711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951912.614986600354314, 3890782.815197591669858 ], [ 4951913.695557289756835, 3890845.810583342332393 ], [ 4951865.581502397544682, 3890846.484008552040905 ], [ 4951864.788922817446291, 3890783.488952761515975 ], [ 4951912.614986600354314, 3890782.815197591669858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951895.472702806815505, 3890403.73839725041762 ], [ 4951898.286124914884567, 3890463.094463883433491 ], [ 4951882.151289304718375, 3890463.804332456085831 ], [ 4951882.991963705979288, 3890484.56058524409309 ], [ 4951851.010426934808493, 3890485.980678342282772 ], [ 4951847.35619980096817, 3890405.86836486402899 ], [ 4951895.472702806815505, 3890403.73839725041762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951082.663080940023065, 3892791.141152468975633 ], [ 4951115.500418246723711, 3892794.818895699456334 ], [ 4951109.975492375902832, 3892841.057073861826211 ], [ 4951077.138210810720921, 3892837.379337275866419 ], [ 4951082.663080940023065, 3892791.141152468975633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951694.022551381029189, 3899361.445039494894445 ], [ 4951690.558573065325618, 3899368.359583883546293 ], [ 4951676.741425357758999, 3899361.789600844494998 ], [ 4951682.515268730930984, 3899349.779851650353521 ], [ 4951653.442118388600647, 3899335.545883882790804 ], [ 4951664.700964145362377, 3899312.254310085903853 ], [ 4951735.225185668095946, 3899346.562415613327175 ], [ 4951721.368407398462296, 3899374.948833370581269 ], [ 4951694.022551381029189, 3899361.445039494894445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951591.181355503387749, 3893255.245850534643978 ], [ 4951592.659551911056042, 3893221.747691128402948 ], [ 4951623.770296549424529, 3893223.239336724858731 ], [ 4951622.292472831904888, 3893256.37336634658277 ], [ 4951591.181355503387749, 3893255.245850534643978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948851.076308136805892, 3899059.060526200104505 ], [ 4948844.408221271820366, 3899101.656863782554865 ], [ 4948777.311615477316082, 3899091.028298798482865 ], [ 4948782.530197434127331, 3899057.533704434987158 ], [ 4948809.023484617471695, 3899061.566283434163779 ], [ 4948810.472521163523197, 3899052.82865463802591 ], [ 4948851.076308136805892, 3899059.060526200104505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951486.758767684921622, 3897219.764625234995037 ], [ 4951481.891252416186035, 3897193.905962083023041 ], [ 4951496.00784155074507, 3897191.372936891857535 ], [ 4951506.888006928376853, 3897249.281758681405336 ], [ 4951469.723774454556406, 3897256.158410005737096 ], [ 4951463.710659194737673, 3897224.472391025628895 ], [ 4951486.758767684921622, 3897219.764625234995037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948528.069545364007354, 3900333.549584149383008 ], [ 4948490.916247230023146, 3900334.6042919177562 ], [ 4948490.638210366480052, 3900324.772498833946884 ], [ 4948486.030185185372829, 3900324.767828813288361 ], [ 4948485.190533495508134, 3900300.734395087696612 ], [ 4948526.952277256175876, 3900299.320226009469479 ], [ 4948528.069545364007354, 3900333.549584149383008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950719.393655471503735, 3889634.47794694127515 ], [ 4950697.773779478855431, 3889644.649837755598128 ], [ 4950692.887769211083651, 3889633.720653243828565 ], [ 4950739.586145750246942, 3889612.288291071075946 ], [ 4950751.082833755761385, 3889637.789847945794463 ], [ 4950726.292075843550265, 3889649.414748093578964 ], [ 4950719.393655471503735, 3889634.47794694127515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951258.740202932618558, 3894029.01020760461688 ], [ 4951264.176519544795156, 3894062.151990937069058 ], [ 4951221.822709895670414, 3894069.02318332856521 ], [ 4951216.674817347899079, 3894035.51760126138106 ], [ 4951258.740202932618558, 3894029.01020760461688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951129.368774205446243, 3893017.680938309058547 ], [ 4951156.606740399263799, 3893134.232351655140519 ], [ 4951077.652592988684773, 3893152.715191622264683 ], [ 4951050.126223819330335, 3893036.163537675514817 ], [ 4951129.368774205446243, 3893017.680938309058547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950510.41700139734894, 3893425.188247272744775 ], [ 4950553.626739860512316, 3893426.691826212219894 ], [ 4950552.730761871673167, 3893455.821136815939099 ], [ 4950538.615474786609411, 3893455.441626493353397 ], [ 4950537.420331841334701, 3893494.7662129602395 ], [ 4950508.037894976325333, 3893493.641833507455885 ], [ 4950510.41700139734894, 3893425.188247272744775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950448.613700309768319, 3892772.238622055388987 ], [ 4950435.723421217873693, 3892969.946382991503924 ], [ 4950376.382806677371264, 3892966.240742711815983 ], [ 4950382.238324294798076, 3892879.584509582724422 ], [ 4950394.336951683275402, 3892880.32587955147028 ], [ 4950395.214222522452474, 3892868.310591162182391 ], [ 4950413.074088972993195, 3892869.422344398219138 ], [ 4950419.519342758692801, 3892770.386396659072489 ], [ 4950448.613700309768319, 3892772.238622055388987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947984.469450231641531, 3898737.750416327267885 ], [ 4947983.060503146611154, 3898706.433861613739282 ], [ 4948004.086971315555274, 3898705.362393565941602 ], [ 4948003.525068532675505, 3898691.160776541568339 ], [ 4948022.247034057043493, 3898690.451158680487424 ], [ 4948022.529612717218697, 3898695.913385409861803 ], [ 4948040.675537378527224, 3898695.203206623904407 ], [ 4948040.955571624450386, 3898703.214338833466172 ], [ 4948063.421776221133769, 3898702.508481982629746 ], [ 4948064.820458368398249, 3898744.020662150811404 ], [ 4948032.561296414583921, 3898745.080887665972114 ], [ 4948032.282348613254726, 3898735.977367341052741 ], [ 4947984.469450231641531, 3898737.750416327267885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950820.583402364514768, 3893508.184816530440003 ], [ 4950868.985153480432928, 3893503.504427688196301 ], [ 4950871.831796700134873, 3893534.458496106788516 ], [ 4950823.718575650826097, 3893538.775068636517972 ], [ 4950820.583402364514768, 3893508.184816530440003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949835.875655922107399, 3891946.101150222588331 ], [ 4949862.088869244791567, 3891949.042060561478138 ], [ 4949853.36283840611577, 3892027.320353883784264 ], [ 4949827.149700474925339, 3892024.379451921675354 ], [ 4949835.875655922107399, 3891946.101150222588331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949806.499038771726191, 3890039.131275590974838 ], [ 4949822.00445066113025, 3890088.669137965887785 ], [ 4949761.192896189168096, 3890107.539233470801264 ], [ 4949745.686997344717383, 3890058.365533079952002 ], [ 4949806.499038771726191, 3890039.131275590974838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949761.045187368057668, 3889431.717874170280993 ], [ 4949742.597513046115637, 3889439.345001400448382 ], [ 4949727.941664586775005, 3889403.280829487368464 ], [ 4949771.466500251553953, 3889385.484705301467329 ], [ 4949786.697764005511999, 3889422.277766784653068 ], [ 4949791.309591034427285, 3889420.462023195810616 ], [ 4949801.367056323215365, 3889445.597514687106013 ], [ 4949771.678140251897275, 3889457.582220411393791 ], [ 4949761.045187368057668, 3889431.717874170280993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949702.132313183508813, 3896638.122483004815876 ], [ 4949718.869161752983928, 3896609.373992130625993 ], [ 4949747.943197952583432, 3896626.51887507038191 ], [ 4949731.206328901462257, 3896655.267348130699247 ], [ 4949702.132313183508813, 3896638.122483004815876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950331.648184346035123, 3891976.855502804275602 ], [ 4950372.816801867447793, 3892003.117302591912448 ], [ 4950356.368034436367452, 3892028.588469716254622 ], [ 4950315.199046274647117, 3892002.690822581294924 ], [ 4950331.648184346035123, 3891976.855502804275602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950220.808107003569603, 3890035.569095238111913 ], [ 4950267.779373776167631, 3890027.244806922972202 ], [ 4950273.794348176568747, 3890060.022807358298451 ], [ 4950227.111248249188066, 3890068.347395827993751 ], [ 4950220.808107003569603, 3890035.569095238111913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950213.332762630656362, 3892160.612569713033736 ], [ 4950231.185256283730268, 3892169.006759496871382 ], [ 4950239.558682733215392, 3892151.53762806719169 ], [ 4950287.069403467699885, 3892173.800727243069559 ], [ 4950272.343850181438029, 3892204.371605841908604 ], [ 4950251.611684454604983, 3892194.881896991282701 ], [ 4950247.569409715011716, 3892203.25248817820102 ], [ 4950202.938420429825783, 3892182.084944436326623 ], [ 4950213.332762630656362, 3892160.612569713033736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949971.492542754858732, 3900911.835448967758566 ], [ 4949975.847109870053828, 3900879.432515806052834 ], [ 4950047.259491896256804, 3900889.340452861040831 ], [ 4950042.616845074109733, 3900921.743066103197634 ], [ 4949971.492542754858732, 3900911.835448967758566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946795.534140962176025, 3890242.926562207285315 ], [ 4946850.277393249794841, 3890240.429735164623708 ], [ 4946852.537194794975221, 3890287.768509761430323 ], [ 4946797.794038668274879, 3890290.265332269016653 ], [ 4946795.534140962176025, 3890242.926562207285315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948927.083881055004895, 3892372.272718778345734 ], [ 4948914.091499488800764, 3892399.933100678957999 ], [ 4948885.008986633270979, 3892386.066313705407083 ], [ 4948898.000970469787717, 3892358.770045924931765 ], [ 4948927.083881055004895, 3892372.272718778345734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949365.580346673727036, 3890692.64034425560385 ], [ 4949322.637905612587929, 3890706.796464576385915 ], [ 4949313.734407155774534, 3890680.20582637283951 ], [ 4949356.96499102935195, 3890666.049993232358247 ], [ 4949365.580346673727036, 3890692.64034425560385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946065.566758126951754, 3892628.374392130877823 ], [ 4946067.605195150710642, 3892604.70793070551008 ], [ 4946095.259268834255636, 3892606.918243084102869 ], [ 4946093.220807628706098, 3892630.584702424239367 ], [ 4946065.566758126951754, 3892628.374392130877823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947927.900898041203618, 3900016.154049861710519 ], [ 4947931.891756982542574, 3900057.668828679248691 ], [ 4947896.751966645009816, 3900060.91113681672141 ], [ 4947892.761053922586143, 3900019.396363125182688 ], [ 4947927.900898041203618, 3900016.154049861710519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947474.310868853703141, 3889367.124479219783098 ], [ 4947473.41739109531045, 3889396.982078454922885 ], [ 4947434.522079519927502, 3889396.215916809160262 ], [ 4947435.415514108724892, 3889366.358316292054951 ], [ 4947474.310868853703141, 3889367.124479219783098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946850.2406260734424, 3899051.254262240603566 ], [ 4946843.914693200960755, 3899040.32434542151168 ], [ 4946862.358084279112518, 3899029.418021678458899 ], [ 4946868.109022742137313, 3899039.255005493294448 ], [ 4946881.077005409635603, 3899031.620644097216427 ], [ 4946897.467825587838888, 3899058.946010453160852 ], [ 4946877.295655973255634, 3899070.578921405598521 ], [ 4946882.759259746409953, 3899079.687375138513744 ], [ 4946862.010735498741269, 3899091.683877796400338 ], [ 4946857.409784138202667, 3899084.032769090030342 ], [ 4946834.932146293111145, 3899097.120034624822438 ], [ 4946818.829647342674434, 3899069.430850339122117 ], [ 4946850.2406260734424, 3899051.254262240603566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947469.61157270334661, 3898614.895675277337432 ], [ 4947479.942267163656652, 3898653.867628828622401 ], [ 4947449.98007776029408, 3898662.213388620875776 ], [ 4947439.361323300749063, 3898623.24116576416418 ], [ 4947469.61157270334661, 3898614.895675277337432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947457.274227531626821, 3889405.705403635278344 ], [ 4947457.824910397641361, 3889431.923134666401893 ], [ 4947434.774737338535488, 3889432.628932581748813 ], [ 4947433.935913447290659, 3889406.41092142323032 ], [ 4947457.274227531626821, 3889405.705403635278344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945842.16872173640877, 3892773.456333443056792 ], [ 4945840.410584512166679, 3892805.862151858396828 ], [ 4945795.472097178921103, 3892803.272186507005244 ], [ 4945797.518262912519276, 3892770.866628240328282 ], [ 4945842.16872173640877, 3892773.456333443056792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946382.062646333128214, 3892128.356099536176771 ], [ 4946378.587195124477148, 3892148.015776797197759 ], [ 4946365.913311628624797, 3892145.819164310581982 ], [ 4946362.728004224598408, 3892163.294345297385007 ], [ 4946331.331735196523368, 3892157.438984743785113 ], [ 4946340.017564742825925, 3892111.20280076796189 ], [ 4946371.413885902613401, 3892117.05817131139338 ], [ 4946369.676843276247382, 3892126.159754605032504 ], [ 4946382.062646333128214, 3892128.356099536176771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944918.065587494522333, 3891061.952650504652411 ], [ 4944914.876286676153541, 3891084.889908039476722 ], [ 4944905.369928484782577, 3891083.789158245082945 ], [ 4944902.47002274915576, 3891105.27016006456688 ], [ 4944863.293169894255698, 3891099.773803153075278 ], [ 4944869.670405863784254, 3891055.355787048116326 ], [ 4944918.065587494522333, 3891061.952650504652411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944792.850803, 3891595.290332309436053 ], [ 4944794.310092250816524, 3891573.808051071595401 ], [ 4944806.697235005907714, 3891574.91128600621596 ], [ 4944809.032309783622622, 3891540.321161090396345 ], [ 4944852.820299576967955, 3891543.272591806948185 ], [ 4944850.776140774600208, 3891574.585815323516726 ], [ 4944859.994552053511143, 3891575.322165297809988 ], [ 4944858.244557360187173, 3891599.717212771531194 ], [ 4944792.850803, 3891595.290332309436053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944607.388022505678236, 3890519.130304975435138 ], [ 4944632.447284100577235, 3890526.070516610983759 ], [ 4944624.356874468736351, 3890553.008946344722062 ], [ 4944599.585742272436619, 3890546.068992353510112 ], [ 4944607.388022505678236, 3890519.130304975435138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944317.674204342998564, 3892056.22881997236982 ], [ 4944345.616449040360749, 3892059.165834992192686 ], [ 4944342.713653997518122, 3892084.652316830120981 ], [ 4944314.771435478702188, 3892081.71530477469787 ], [ 4944317.674204342998564, 3892056.22881997236982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944302.889890659600496, 3890483.182967148721218 ], [ 4944295.944110498763621, 3890519.589801351074129 ], [ 4944261.952824733220041, 3890513.370512924157083 ], [ 4944268.61045335046947, 3890476.963423410896212 ], [ 4944302.889890659600496, 3890483.182967148721218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944106.887965904548764, 3891604.529864432755858 ], [ 4944156.438447366468608, 3891606.756804505363107 ], [ 4944155.558340895920992, 3891625.326588814146817 ], [ 4944161.60833156760782, 3891625.33174389321357 ], [ 4944159.842218450270593, 3891669.389742247760296 ], [ 4944112.02041878644377, 3891667.164265653584152 ], [ 4944112.611780029721558, 3891649.322490209247917 ], [ 4944124.999535311944783, 3891649.697155391331762 ], [ 4944125.879929728806019, 3891630.763241963461041 ], [ 4944106.002012056298554, 3891630.01807964919135 ], [ 4944106.887965904548764, 3891604.529864432755858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943373.960775563493371, 3889169.357927817385644 ], [ 4943364.41743987519294, 3889212.31713403435424 ], [ 4943324.663964677602053, 3889203.545404942240566 ], [ 4943333.919118723832071, 3889160.585948186460882 ], [ 4943373.960775563493371, 3889169.357927817385644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944283.910077154636383, 3892459.653980620671064 ], [ 4944280.720545338466763, 3892483.683716122992337 ], [ 4944255.371817140839994, 3892480.38485830463469 ], [ 4944258.561326679773629, 3892456.355119860731065 ], [ 4944283.910077154636383, 3892459.653980620671064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942863.229274092242122, 3892261.116803713142872 ], [ 4942890.31013051327318, 3892260.410331685561687 ], [ 4942891.425843474455178, 3892305.927260730881244 ], [ 4942864.633120369166136, 3892306.633963257540017 ], [ 4942863.229274092242122, 3892261.116803713142872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943611.692186035215855, 3889131.685319364070892 ], [ 4943637.32924048602581, 3889138.625077225733548 ], [ 4943626.346686383709311, 3889179.398226171266288 ], [ 4943600.421546923927963, 3889172.45823912974447 ], [ 4943611.692186035215855, 3889131.685319364070892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943457.00161561742425, 3890489.753556438256055 ], [ 4943441.678449650295079, 3890554.555667582899332 ], [ 4943398.182801881805062, 3890544.324221371207386 ], [ 4943413.505868785083294, 3890479.522085819393396 ], [ 4943457.00161561742425, 3890489.753556438256055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943338.32185316644609, 3890114.23999753780663 ], [ 4943364.81578444968909, 3890129.19101568358019 ], [ 4943341.156291118822992, 3890171.04626318719238 ], [ 4943314.374277438037097, 3890156.09503155387938 ], [ 4943338.32185316644609, 3890114.23999753780663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942669.808572437614202, 3889872.282401633448899 ], [ 4942659.691543195396662, 3889913.784906259272248 ], [ 4942648.728174546733499, 3889932.71082145627588 ], [ 4942640.0566874621436, 3889968.024313494097441 ], [ 4942645.240105653181672, 3889971.305587489157915 ], [ 4942635.411842666566372, 3890012.08007779577747 ], [ 4942624.448531089350581, 3890031.006003976333886 ], [ 4942614.621478666551411, 3890070.32399310125038 ], [ 4942593.593389054760337, 3890065.209503375459462 ], [ 4942571.130797350779176, 3890052.447209256701171 ], [ 4942574.015668080188334, 3890047.715836036019027 ], [ 4942578.640475505031645, 3890028.784860272891819 ], [ 4942589.604044732637703, 3890009.494787910953164 ], [ 4942593.94017924182117, 3889991.291841592174023 ], [ 4942594.524208611808717, 3889981.460855702869594 ], [ 4942597.992543783038855, 3889967.626754497177899 ], [ 4942595.408492153510451, 3889956.33674252172932 ], [ 4942599.166100337170064, 3889941.046360315289348 ], [ 4942601.75882675498724, 3889941.412546895444393 ], [ 4942605.805132061243057, 3889925.394139514770359 ], [ 4942616.480070885270834, 3889906.832105453591794 ], [ 4942613.88820930942893, 3889905.373534929938614 ], [ 4942614.464725091122091, 3889905.009865266736597 ], [ 4942620.533914959989488, 3889881.346385363023728 ], [ 4942631.20888139680028, 3889862.784357621334493 ], [ 4942669.808572437614202, 3889872.282401633448899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992593.682587279006839, 3910391.256533249281347 ], [ 4992597.084127564914525, 3910411.292901497799903 ], [ 4992576.058235726319253, 3910414.878407127223909 ], [ 4992572.657646888867021, 3910394.477910697460175 ], [ 4992593.682587279006839, 3910391.256533249281347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992255.861174542456865, 3912179.349757643416524 ], [ 4992255.55693884100765, 3912185.539227513130754 ], [ 4992286.068744999356568, 3912186.712290689349174 ], [ 4992285.12424449250102, 3912217.297029863111675 ], [ 4992218.918964063748717, 3912214.937251183670014 ], [ 4992220.167616753838956, 3912178.163039450068027 ], [ 4992255.861174542456865, 3912179.349757643416524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993157.221306312829256, 3911204.412430432159454 ], [ 4993196.506283692084253, 3911154.995441135484725 ], [ 4993227.533533126115799, 3911179.111364877317101 ], [ 4993188.247558550909162, 3911228.892440523020923 ], [ 4993157.221306312829256, 3911204.412430432159454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993104.308401446789503, 3908383.69470191700384 ], [ 4993098.925646273419261, 3908350.908344006631523 ], [ 4993142.420383080840111, 3908343.742028766311705 ], [ 4993150.068407241255045, 3908390.735641487408429 ], [ 4993132.785705330781639, 3908393.602462376002222 ], [ 4993130.520375892519951, 3908379.395217558834702 ], [ 4993104.308401446789503, 3908383.69470191700384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991358.270205125212669, 3912176.264088200870901 ], [ 4991369.576197751797736, 3912146.070495972409844 ], [ 4991394.596594627015293, 3912155.603289691731334 ], [ 4991383.290577808395028, 3912185.796871562954038 ], [ 4991358.270205125212669, 3912176.264088200870901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989700.871583875268698, 3898761.366444552317262 ], [ 4989745.000558476895094, 3898737.082108078058809 ], [ 4989759.909771993756294, 3898763.70164571236819 ], [ 4989715.779899913817644, 3898788.350086429156363 ], [ 4989700.871583875268698, 3898761.366444552317262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989470.089091429486871, 3908094.203478276729584 ], [ 4989477.451068022288382, 3908143.015959204174578 ], [ 4989427.046050717122853, 3908150.534802384674549 ], [ 4989423.08172257617116, 3908124.307185751851648 ], [ 4989432.874630550853908, 3908122.875503539573401 ], [ 4989429.476900735870004, 3908100.290651609189808 ], [ 4989470.089091429486871, 3908094.203478276729584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988935.495493954047561, 3907950.475581018719822 ], [ 4988930.773207600228488, 3907996.344405142124742 ], [ 4988895.656211958266795, 3907992.614644611719996 ], [ 4988894.47794946283102, 3908003.17152651399374 ], [ 4988878.071132114157081, 3908001.309562909416854 ], [ 4988882.791494525037706, 3907956.1689901384525 ], [ 4988908.409938242286444, 3907958.782415856607258 ], [ 4988909.589124996215105, 3907947.861404476687312 ], [ 4988935.495493954047561, 3907950.475581018719822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988742.559774251654744, 3907503.199512740597129 ], [ 4988764.440217953175306, 3907503.982747363392264 ], [ 4988763.183303078636527, 3907545.854836825747043 ], [ 4988725.180052422918379, 3907544.666977857705206 ], [ 4988726.417705192230642, 3907510.441622662823647 ], [ 4988742.252642168663442, 3907510.845525516197085 ], [ 4988742.559774251654744, 3907503.199512740597129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990155.213478266261518, 3908929.087715119123459 ], [ 4990170.565145436674356, 3908893.077928041573614 ], [ 4990205.364845584146678, 3908907.732534412760288 ], [ 4990190.01313999760896, 3908943.742301924154162 ], [ 4990155.213478266261518, 3908929.087715119123459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990068.719052161090076, 3908751.533297300338745 ], [ 4990112.981794508174062, 3908781.141471310053021 ], [ 4990084.369463329203427, 3908823.671705359127373 ], [ 4990055.052945678122342, 3908803.933436951600015 ], [ 4990070.658883492462337, 3908781.033031780738384 ], [ 4990055.712690624408424, 3908771.163163991179317 ], [ 4990068.719052161090076, 3908751.533297300338745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990007.92136481963098, 3908545.278431151527911 ], [ 4990033.186906549148262, 3908573.017196462955326 ], [ 4990003.752673568204045, 3908599.159427738748491 ], [ 4989978.775039446540177, 3908571.421426131390035 ], [ 4990007.92136481963098, 3908545.278431151527911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988310.155790998600423, 3906209.446753168012947 ], [ 4988308.300030989572406, 3906260.784773955121636 ], [ 4988276.629579555243254, 3906259.613359606824815 ], [ 4988278.485279121436179, 3906208.275336673483253 ], [ 4988310.155790998600423, 3906209.446753168012947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989316.193814055994153, 3907128.861720943357795 ], [ 4989309.773607858456671, 3907162.709782728459686 ], [ 4989269.483002823777497, 3907154.960976452566683 ], [ 4989275.903160045854747, 3907121.11290520709008 ], [ 4989316.193814055994153, 3907128.861720943357795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987864.715222618542612, 3907834.190152487251908 ], [ 4987859.043457817286253, 3907799.219359672628343 ], [ 4987925.004583889618516, 3907788.45897984597832 ], [ 4987932.946198713034391, 3907836.908326944801956 ], [ 4987891.757228408940136, 3907843.360524854622781 ], [ 4987889.775195975787938, 3907829.882701752707362 ], [ 4987864.715222618542612, 3907834.190152487251908 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987069.729269147850573, 3894558.558769887313247 ], [ 4987092.911682949401438, 3894502.539568740874529 ], [ 4987134.639013987965882, 3894519.75589799368754 ], [ 4987127.104740059003234, 3894537.943918091244996 ], [ 4987113.867197220213711, 3894532.449536753352731 ], [ 4987098.219000465236604, 3894570.280689970590174 ], [ 4987069.729269147850573, 3894558.558769887313247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987011.508663393557072, 3913869.782386623788625 ], [ 4986959.943171338178217, 3913885.678097909782082 ], [ 4986947.948495868593454, 3913846.686425719875842 ], [ 4986999.226198655553162, 3913830.789987255353481 ], [ 4987011.508663393557072, 3913869.782386623788625 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988776.590268625877798, 3907939.515908145345747 ], [ 4988772.761292445473373, 3907973.734758016653359 ], [ 4988724.691519211046398, 3907968.516142830252647 ], [ 4988728.521349338814616, 3907933.933155838400126 ], [ 4988776.590268625877798, 3907939.515908145345747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988640.507473583333194, 3913177.595482092350721 ], [ 4988605.071917958557606, 3913188.794762110803276 ], [ 4988597.64862366952002, 3913164.379181921947747 ], [ 4988633.083294969983399, 3913153.544023858848959 ], [ 4988640.507473583333194, 3913177.595482092350721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986957.760332303121686, 3895347.354068855755031 ], [ 4986951.344807678833604, 3895379.381815511733294 ], [ 4986901.534488904289901, 3895369.792744355276227 ], [ 4986912.910041738301516, 3895311.923882063478231 ], [ 4986979.132486802525818, 3895324.466137127950788 ], [ 4986974.171449748799205, 3895350.671356708742678 ], [ 4986957.760332303121686, 3895347.354068855755031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986573.55930208414793, 3908471.529462149366736 ], [ 4986639.228569715283811, 3908461.493482514750212 ], [ 4986644.330380595289171, 3908494.641977782826871 ], [ 4986578.661191985011101, 3908504.677945159841329 ], [ 4986573.55930208414793, 3908471.529462149366736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988334.024953316897154, 3908527.938208453822881 ], [ 4988339.436214010231197, 3908551.62035172060132 ], [ 4988314.373204573988914, 3908557.383907161187381 ], [ 4988308.961922980844975, 3908533.70176885696128 ], [ 4988334.024953316897154, 3908527.938208453822881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988150.153745334595442, 3906981.73678781138733 ], [ 4988206.870558359660208, 3906984.062853701412678 ], [ 4988206.56175881344825, 3906992.437130547594279 ], [ 4988194.469600721262395, 3906992.042868828866631 ], [ 4988193.847473747096956, 3907010.612073896918446 ], [ 4988149.221960686147213, 3907009.044401572085917 ], [ 4988150.153745334595442, 3906981.73678781138733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986424.567181066609919, 3908529.064746539108455 ], [ 4986418.599597496911883, 3908496.642458473797888 ], [ 4986473.040094510652125, 3908486.578840242698789 ], [ 4986481.565245197154582, 3908532.844393564388156 ], [ 4986458.521550917997956, 3908537.158050760161132 ], [ 4986455.963908993639052, 3908523.314799554180354 ], [ 4986424.567181066609919, 3908529.064746539108455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987762.677437418140471, 3896592.837603139225394 ], [ 4987737.007513662800193, 3896606.611043821554631 ], [ 4987724.10508091095835, 3896582.546543850563467 ], [ 4987750.063062766566873, 3896568.773803630378097 ], [ 4987762.677437418140471, 3896592.837603139225394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985868.171216929331422, 3905116.529143642168492 ], [ 4985900.773544398136437, 3905090.025928648654372 ], [ 4985926.900793445296586, 3905121.768280377611518 ], [ 4985896.606457582674921, 3905146.456356643233448 ], [ 4985906.081644567660987, 3905157.767243936192244 ], [ 4985886.173695775680244, 3905174.105289618484676 ], [ 4985841.671043458394706, 3905120.106752127408981 ], [ 4985859.271024595946074, 3905105.583784513641149 ], [ 4985868.171216929331422, 3905116.529143642168492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985676.463905683718622, 3910971.685257585253567 ], [ 4985693.914988197386265, 3911017.607904244214296 ], [ 4985645.505460902117193, 3911036.062624607700855 ], [ 4985632.630835585296154, 3911002.531506981700659 ], [ 4985657.699714844115078, 3910993.124129370320588 ], [ 4985652.835309658199549, 3910980.731936932075769 ], [ 4985676.463905683718622, 3910971.685257585253567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987603.925768409855664, 3908855.665449169464409 ], [ 4987600.549077945761383, 3908823.977552706841379 ], [ 4987654.113929821178317, 3908818.647890616673976 ], [ 4987657.489657846279442, 3908850.699924325104803 ], [ 4987603.925768409855664, 3908855.665449169464409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987399.079233615659177, 3906456.983216412365437 ], [ 4987395.697504330426455, 3906427.116043001879007 ], [ 4987453.875864684581757, 3906421.069070693105459 ], [ 4987456.969594182446599, 3906450.935541857965291 ], [ 4987399.079233615659177, 3906456.983216412365437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985512.775880502536893, 3900325.528145487885922 ], [ 4985509.390379594638944, 3900296.025449390523136 ], [ 4985541.079296782612801, 3900292.459923918358982 ], [ 4985546.718252514488995, 3900343.087606388609856 ], [ 4985487.08456133492291, 3900350.227629805915058 ], [ 4985484.543894700706005, 3900328.737835147418082 ], [ 4985512.775880502536893, 3900325.528145487885922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985187.755711188539863, 3908861.459350808989257 ], [ 4985211.34440201241523, 3908869.890548496041447 ], [ 4985208.155722142197192, 3908878.986277251970023 ], [ 4985228.004164723679423, 3908886.316188186407089 ], [ 4985217.280413812957704, 3908916.149543325416744 ], [ 4985173.842463150620461, 3908900.752585224341601 ], [ 4985187.755711188539863, 3908861.459350808989257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985140.035948467440903, 3900836.971721900627017 ], [ 4985164.952190845273435, 3900895.656054160557687 ], [ 4985135.835220973938704, 3900907.967280138283968 ], [ 4985110.630065463483334, 3900849.646419069729745 ], [ 4985140.035948467440903, 3900836.971721900627017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987163.190967333503067, 3913760.185677743516862 ], [ 4987182.214593114331365, 3913750.036611145827919 ], [ 4987193.390987703576684, 3913770.455545716453344 ], [ 4987201.749582752585411, 3913766.106458021327853 ], [ 4987212.065960256382823, 3913785.066753381397575 ], [ 4987184.970726727508008, 3913799.929727856069803 ], [ 4987163.190967333503067, 3913760.185677743516862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987042.355410611256957, 3909148.867947600781918 ], [ 4987036.728332533501089, 3909095.326634010765702 ], [ 4987100.372866587713361, 3909088.564019272103906 ], [ 4987106.566708249971271, 3909145.748064443469048 ], [ 4987088.424102567136288, 3909147.524265350773931 ], [ 4987088.988316856324673, 3909152.259375620633364 ], [ 4987062.781645989976823, 3909155.108233002945781 ], [ 4987061.937547454610467, 3909147.095241640694439 ], [ 4987042.355410611256957, 3909148.867947600781918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984855.709126934409142, 3909383.565969218499959 ], [ 4984847.711583071388304, 3909356.601204398553818 ], [ 4984892.367876749485731, 3909343.598162495531142 ], [ 4984901.222192508168519, 3909373.478033241350204 ], [ 4984867.22530706319958, 3909383.593234708998352 ], [ 4984866.368490954861045, 3909380.678142917342484 ], [ 4984855.709126934409142, 3909383.565969218499959 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984840.978552049025893, 3904415.309710285626352 ], [ 4984795.768325510434806, 3904415.566895450465381 ], [ 4984795.848403821699321, 3904381.702831036411226 ], [ 4984789.225367484614253, 3904381.687170370016247 ], [ 4984789.262389081530273, 3904366.02959242137149 ], [ 4984794.157679661177099, 3904366.041167549323291 ], [ 4984794.228284422308207, 3904336.182530969381332 ], [ 4984840.877575786784291, 3904336.292879980523139 ], [ 4984840.978552049025893, 3904415.309710285626352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984577.848167699761689, 3907198.113858368247747 ], [ 4984545.871870865114033, 3907204.957029781769961 ], [ 4984547.296070047654212, 3907211.514767572283745 ], [ 4984531.451466568745673, 3907215.118770961649716 ], [ 4984530.310903773643076, 3907210.382363886572421 ], [ 4984492.573508298024535, 3907218.304428717587143 ], [ 4984495.139145405963063, 3907229.234438948798925 ], [ 4984476.70235466118902, 3907233.196505744941533 ], [ 4984474.709138575941324, 3907223.724373688921332 ], [ 4984445.900958466343582, 3907230.21098642423749 ], [ 4984447.326037094928324, 3907236.404588655568659 ], [ 4984430.905606880784035, 3907240.007296990603209 ], [ 4984421.792089078575373, 3907197.382380985189229 ], [ 4984445.990881258621812, 3907191.977298249490559 ], [ 4984443.426933287642896, 3907180.319032251369208 ], [ 4984468.489529725164175, 3907174.916001318022609 ], [ 4984470.769823025912046, 3907184.75294043449685 ], [ 4984501.59441199246794, 3907177.906968578696251 ], [ 4984499.029629633761942, 3907166.612827717792243 ], [ 4984523.227607741951942, 3907161.571945001371205 ], [ 4984525.220811442472041, 3907171.044080296065658 ], [ 4984545.386079305782914, 3907166.721986029297113 ], [ 4984543.108384911902249, 3907155.792649663519114 ], [ 4984567.307239163666964, 3907150.387676313985139 ], [ 4984577.848167699761689, 3907198.113858368247747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984536.620582033880055, 3909176.713273156434298 ], [ 4984580.982249241322279, 3909166.622083408292383 ], [ 4984590.673219953663647, 3909208.156070287339389 ], [ 4984571.949006880633533, 3909212.481528705451638 ], [ 4984569.668068059720099, 3909203.008699495345354 ], [ 4984544.029812412336469, 3909209.138548031449318 ], [ 4984536.620582033880055, 3909176.713273156434298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984367.785432405769825, 3916579.517605162691325 ], [ 4984332.344180145300925, 3916595.820400588680059 ], [ 4984312.297152805142105, 3916552.805454924236983 ], [ 4984347.738449471071362, 3916536.502633492927998 ], [ 4984367.785432405769825, 3916579.517605162691325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986490.705529959872365, 3907732.867153567261994 ], [ 4986579.389991307631135, 3907731.261969309765846 ], [ 4986579.888810775242746, 3907762.942715396173298 ], [ 4986491.20445394795388, 3907764.54789804155007 ], [ 4986490.705529959872365, 3907732.867153567261994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984308.629401210695505, 3907568.167498752474785 ], [ 4984301.802109315991402, 3907532.83062941301614 ], [ 4984361.141890791244805, 3907521.317702752538025 ], [ 4984362.280759363435209, 3907526.782364428509027 ], [ 4984387.341305235400796, 3907522.107517511583865 ], [ 4984392.747692466713488, 3907549.430155514273793 ], [ 4984355.012524075806141, 3907556.624154329299927 ], [ 4984358.429127539508045, 3907573.018139133695513 ], [ 4984342.87439651042223, 3907575.894669882021844 ], [ 4984340.027647144161165, 3907562.050952237099409 ], [ 4984308.629401210695505, 3907568.167498752474785 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984104.506031842902303, 3904237.701405271887779 ], [ 4984102.762092412449419, 3904244.615828699432313 ], [ 4984116.001417919062078, 3904247.559851010330021 ], [ 4984108.441220317967236, 3904278.857492839451879 ], [ 4984032.462525798007846, 3904260.473292326088995 ], [ 4984041.766564195044339, 3904222.261202020570636 ], [ 4984104.506031842902303, 3904237.701405271887779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983873.460955926217139, 3903415.681091836187989 ], [ 4983884.33501438703388, 3903445.201086709741503 ], [ 4983902.204319369979203, 3903438.688373225741088 ], [ 4983920.518797773867846, 3903488.252964735496789 ], [ 4983908.413118356838822, 3903492.958446352276951 ], [ 4983926.153312171809375, 3903541.793441365938634 ], [ 4983863.8998170690611, 3903564.224477741867304 ], [ 4983861.896774671971798, 3903558.757837644312531 ], [ 4983835.668888385407627, 3903568.528294544667006 ], [ 4983835.097194815985858, 3903566.706305400002748 ], [ 4983771.979086887091398, 3903589.499672730453312 ], [ 4983761.678357003256679, 3903561.073449150659144 ], [ 4983775.223814675584435, 3903556.371251189615577 ], [ 4983766.066473605111241, 3903531.589002159424126 ], [ 4983756.267965937033296, 3903534.843393468763679 ], [ 4983738.812039900571108, 3903487.465698633342981 ], [ 4983763.021654108539224, 3903478.782847202848643 ], [ 4983755.581920091062784, 3903458.374176768120378 ], [ 4983873.460955926217139, 3903415.681091836187989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983818.021497904323041, 3909168.111719289328903 ], [ 4983819.162949433550239, 3909172.483971035573632 ], [ 4983834.430489812046289, 3909168.878201951272786 ], [ 4983840.988725814037025, 3909196.203439308796078 ], [ 4983800.946831973269582, 3909205.941773977130651 ], [ 4983793.247102408669889, 3909174.24429551884532 ], [ 4983818.021497904323041, 3909168.111719289328903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985924.075748157687485, 3905338.420010230503976 ], [ 4985932.974960072897375, 3905349.729522277135402 ], [ 4985964.99941995088011, 3905323.953254977241158 ], [ 4985993.135856965556741, 3905358.249439232517034 ], [ 4985962.552901336923242, 3905383.300880876835436 ], [ 4985966.285693725571036, 3905387.679454677738249 ], [ 4985943.204322793520987, 3905406.558741735760123 ], [ 4985902.148783648386598, 3905356.209714396856725 ], [ 4985924.075748157687485, 3905338.420010230503976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985654.210422491654754, 3898391.968647848814726 ], [ 4985688.175228335894644, 3898401.153314399998635 ], [ 4985673.935591027140617, 3898453.9180998057127 ], [ 4985639.970847120508552, 3898444.733450967352837 ], [ 4985654.210422491654754, 3898391.968647848814726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983784.97600756585598, 3907656.156116920989007 ], [ 4983808.887182286940515, 3907650.385658274404705 ], [ 4983816.586490664631128, 3907682.447241844143718 ], [ 4983792.675342772156, 3907688.217693748418242 ], [ 4983784.97600756585598, 3907656.156116920989007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983758.018279921263456, 3909218.95064762653783 ], [ 4983685.720805974677205, 3909232.983724528457969 ], [ 4983677.182610664516687, 3909190.360346640460193 ], [ 4983710.307103612460196, 3909183.882940963376313 ], [ 4983710.589931227266788, 3909186.068395254667848 ], [ 4983750.051772932521999, 3909178.1492407345213 ], [ 4983758.018279921263456, 3909218.95064762653783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983739.237758536823094, 3916796.528687204234302 ], [ 4983787.652563310228288, 3916770.78781307535246 ], [ 4983814.877228044904768, 3916821.83004947938025 ], [ 4983781.448013610206544, 3916839.594797680620104 ], [ 4983767.692606673575938, 3916813.709224940743297 ], [ 4983752.707071594893932, 3916821.685310179833323 ], [ 4983739.237758536823094, 3916796.528687204234302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983675.955049240030348, 3897446.024499691091478 ], [ 4983702.439649672247469, 3897452.276234721299261 ], [ 4983696.330908644013107, 3897478.115287022665143 ], [ 4983669.845486717298627, 3897472.227686162106693 ], [ 4983675.955049240030348, 3897446.024499691091478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983633.406258549541235, 3902002.657256880775094 ], [ 4983664.209509700536728, 3902007.462481703609228 ], [ 4983657.777477741241455, 3902048.958501808345318 ], [ 4983626.686289900913835, 3902044.152615828439593 ], [ 4983633.406258549541235, 3902002.657256880775094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983451.341283477842808, 3909864.574762564152479 ], [ 4983465.658675707876682, 3909898.108144478406757 ], [ 4983437.128862546756864, 3909910.058481339830905 ], [ 4983422.811441181227565, 3909876.525114377494901 ], [ 4983451.341283477842808, 3909864.574762564152479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985587.663196711800992, 3907419.356393654830754 ], [ 4985619.06627259682864, 3907411.420690487138927 ], [ 4985627.054034622386098, 3907442.391086579766124 ], [ 4985648.374470469541848, 3907436.616057266946882 ], [ 4985652.939383265562356, 3907454.105356848333031 ], [ 4985637.381825423799455, 3907458.073529129847884 ], [ 4985646.510779202915728, 3907493.416256380733103 ], [ 4985609.344936482608318, 3907503.158786188345402 ], [ 4985587.663196711800992, 3907419.356393654830754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985599.704080147668719, 3901669.01552569726482 ], [ 4985605.242975298315287, 3901640.990687518380582 ], [ 4985671.45041692070663, 3901653.529767856933177 ], [ 4985666.199442256242037, 3901681.555282856337726 ], [ 4985652.670159636996686, 3901678.973940340336412 ], [ 4985651.210155476815999, 3901687.345459044910967 ], [ 4985624.439577672630548, 3901682.183485715184361 ], [ 4985625.898701544851065, 3901674.17609468055889 ], [ 4985599.704080147668719, 3901669.01552569726482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983311.899410862475634, 3916012.648855652660131 ], [ 4983325.950235629454255, 3916035.621787689160556 ], [ 4983318.744308110326529, 3916039.974748010747135 ], [ 4983329.353740833699703, 3916057.477714918088168 ], [ 4983323.876499222591519, 3916061.106400467455387 ], [ 4983339.647550848312676, 3916086.9963907757774 ], [ 4983308.517875855788589, 3916105.85943925473839 ], [ 4983277.83584013953805, 3916055.538027912843972 ], [ 4983297.724074983038008, 3916043.567527620587498 ], [ 4983287.687759810127318, 3916027.158300131559372 ], [ 4983311.899410862475634, 3916012.648855652660131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983289.918695386499166, 3916432.080905157141387 ], [ 4983319.027286037802696, 3916415.762102851178497 ], [ 4983351.995463287457824, 3916473.007414068095386 ], [ 4983349.978137986734509, 3916474.095153442583978 ], [ 4983358.578473021276295, 3916489.044551102910191 ], [ 4983332.639413992874324, 3916503.914098855573684 ], [ 4983305.692083967849612, 3916456.878484113141894 ], [ 4983304.539086666889489, 3916457.604089284315705 ], [ 4983289.918695386499166, 3916432.080905157141387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983150.5613775216043, 3894202.23324669431895 ], [ 4983172.456160723231733, 3894201.555411598179489 ], [ 4983173.553071795962751, 3894225.590484779328108 ], [ 4983151.369402755983174, 3894226.631783256772906 ], [ 4983150.5613775216043, 3894202.23324669431895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985086.410491082817316, 3908861.582505594007671 ], [ 4985098.278837301768363, 3908834.664881560951471 ], [ 4985124.451846993528306, 3908846.015206196345389 ], [ 4985132.847996156662703, 3908826.371998539660126 ], [ 4985150.392348913475871, 3908834.060506345238537 ], [ 4985129.83989764098078, 3908880.620629135519266 ], [ 4985086.410491082817316, 3908861.582505594007671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982676.725796150974929, 3907038.944256633985788 ], [ 4982731.9678068542853, 3906930.923314951825887 ], [ 4982783.447378596290946, 3906957.258678560610861 ], [ 4982728.493143702857196, 3907065.280174936633557 ], [ 4982676.725796150974929, 3907038.944256633985788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984642.962352608330548, 3916208.384331348352134 ], [ 4984678.932675356976688, 3916212.110591510310769 ], [ 4984675.40217620972544, 3916244.51022024685517 ], [ 4984685.473680804483593, 3916245.626406903844327 ], [ 4984683.122877713292837, 3916266.012384411878884 ], [ 4984671.324396081268787, 3916264.892120973672718 ], [ 4984669.554424842819571, 3916283.094664574135095 ], [ 4984635.59815092291683, 3916279.737303679343313 ], [ 4984642.962352608330548, 3916208.384331348352134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984516.735171110369265, 3909796.42062448663637 ], [ 4984503.199581038206816, 3909798.209419285412878 ], [ 4984494.704009017907083, 3909738.107481930870563 ], [ 4984508.240486110560596, 3909735.95455199573189 ], [ 4984516.735171110369265, 3909796.42062448663637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984484.690201272256672, 3909344.456242282409221 ], [ 4984475.169630748219788, 3909352.808892582077533 ], [ 4984456.506357136182487, 3909331.281142002902925 ], [ 4984492.567344130948186, 3909300.414707286283374 ], [ 4984512.952039759606123, 3909324.495465723332018 ], [ 4984486.699536526575685, 3909347.009901465382427 ], [ 4984484.690201272256672, 3909344.456242282409221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984450.595609958283603, 3907560.12600016547367 ], [ 4984492.362594067119062, 3907552.577492382843047 ], [ 4984497.19644907489419, 3907578.442274764180183 ], [ 4984455.428647213615477, 3907586.354905607178807 ], [ 4984450.595609958283603, 3907560.12600016547367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982464.657674674876034, 3904829.999523450154811 ], [ 4982478.407251609489322, 3904861.710313950665295 ], [ 4982404.618371048942208, 3904893.585885003209114 ], [ 4982391.442144041880965, 3904862.968831682577729 ], [ 4982416.23013323917985, 3904852.465420479420573 ], [ 4982413.079225309193134, 3904845.175612863618881 ], [ 4982444.20884448569268, 3904831.773607978597283 ], [ 4982446.787156133912504, 3904837.605588070116937 ], [ 4982464.657674674876034, 3904829.999523450154811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982304.587098343297839, 3899111.319804321974516 ], [ 4982307.663284447044134, 3899025.027860711328685 ], [ 4982327.822714650072157, 3899025.801924537867308 ], [ 4982324.7464638967067, 3899112.093865867704153 ], [ 4982304.587098343297839, 3899111.319804321974516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984164.077079954557121, 3907574.018897129688412 ], [ 4984168.914657539688051, 3907598.42709896992892 ], [ 4984142.413751048967242, 3907603.462910595349967 ], [ 4984137.576150331646204, 3907579.054713448509574 ], [ 4984164.077079954557121, 3907574.018897129688412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984111.708542473614216, 3909282.406681293155998 ], [ 4984156.362895109690726, 3909270.130678367335349 ], [ 4984165.213790045119822, 3909301.830959437880665 ], [ 4984120.559485950507224, 3909314.106947899796069 ], [ 4984111.708542473614216, 3909282.406681293155998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983571.223064901307225, 3905966.814059376250952 ], [ 4983494.287960985675454, 3905990.304321385454386 ], [ 4983479.713445680215955, 3905942.569263827055693 ], [ 4983556.648673232644796, 3905919.078960790298879 ], [ 4983571.223064901307225, 3905966.814059376250952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981671.272881484590471, 3901658.804127383045852 ], [ 4981661.154038816690445, 3901676.259671075735241 ], [ 4981641.882632491178811, 3901665.656558494083583 ], [ 4981639.569734586402774, 3901669.656802942510694 ], [ 4981626.914660090580583, 3901662.345748523715883 ], [ 4981655.248714260756969, 3901612.887593816500157 ], [ 4981689.188689627684653, 3901631.898713388014585 ], [ 4981680.804299641400576, 3901646.445101584773511 ], [ 4981688.858120692893863, 3901650.832784924656153 ], [ 4981681.05134869646281, 3901664.652210062835366 ], [ 4981671.272881484590471, 3901658.804127383045852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981601.212818736210465, 3915024.860263859387487 ], [ 4981605.195182581432164, 3915045.988987549673766 ], [ 4981582.445706092752516, 3915050.307491227518767 ], [ 4981578.175481012091041, 3915029.178124390076846 ], [ 4981601.212818736210465, 3915024.860263859387487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981424.285229535773396, 3903668.982879073824733 ], [ 4981456.029986215755343, 3903638.466934442520142 ], [ 4981512.918251893483102, 3903696.127221209928393 ], [ 4981491.850246960297227, 3903716.835480830166489 ], [ 4981473.17493995744735, 3903697.858784707728773 ], [ 4981462.785340053960681, 3903708.031185782980174 ], [ 4981424.285229535773396, 3903668.982879073824733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983514.733655200339854, 3907107.87341301003471 ], [ 4983530.347646840848029, 3907079.507278035860509 ], [ 4983589.586718059144914, 3907111.688294586259872 ], [ 4983571.079884111881256, 3907145.873803465627134 ], [ 4983546.637199212796986, 3907132.344226832035929 ], [ 4983549.529149330221117, 3907126.888946854509413 ], [ 4983514.733655200339854, 3907107.87341301003471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983493.288385785184801, 3902816.529918571002781 ], [ 4983490.667095647193491, 3902829.2684455527924 ], [ 4983504.771953148767352, 3902831.850035662297159 ], [ 4983499.527680469676852, 3902858.055346827954054 ], [ 4983484.847730569541454, 3902855.108296224847436 ], [ 4983481.934257765300572, 3902869.666804611682892 ], [ 4983449.983437111601233, 3902863.402602443471551 ], [ 4983454.937157270498574, 3902838.289003232028335 ], [ 4983446.878080988302827, 3902836.449693492148072 ], [ 4983449.791538313031197, 3902821.891181602608413 ], [ 4983459.002517951652408, 3902823.733158604241908 ], [ 4983461.625479457899928, 3902810.266369750257581 ], [ 4983493.288385785184801, 3902816.529918571002781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983360.662208563648164, 3909486.759164051618427 ], [ 4983319.762260450981557, 3909494.311435487587005 ], [ 4983313.504089435562491, 3909461.525021727196872 ], [ 4983354.691989387385547, 3909453.973406412173063 ], [ 4983360.662208563648164, 3909486.759164051618427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981022.866667522117496, 3907549.004985324572772 ], [ 4981039.588956069201231, 3907538.846484482288361 ], [ 4981052.21142958290875, 3907559.630118691828102 ], [ 4981035.777073086239398, 3907569.789252441842109 ], [ 4981022.866667522117496, 3907549.004985324572772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981024.980785728432238, 3903491.852104394230992 ], [ 4981038.283194854855537, 3903466.756626731716096 ], [ 4981060.430790320970118, 3903478.458115838468075 ], [ 4981047.128366227261722, 3903503.553582716733217 ], [ 4981024.980785728432238, 3903491.852104394230992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980997.31925555691123, 3901297.171837885864079 ], [ 4980947.739482952281833, 3901317.452997092623264 ], [ 4980932.557633335702121, 3901280.642051896546036 ], [ 4980958.501122088171542, 3901269.775747966952622 ], [ 4980951.625726570375264, 3901253.374581362120807 ], [ 4980975.262078661471605, 3901243.959692575503141 ], [ 4980997.31925555691123, 3901297.171837885864079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980876.657588670030236, 3905576.904681355226785 ], [ 4980870.605082149617374, 3905579.440175126772374 ], [ 4980854.564146713353693, 3905541.534871901851147 ], [ 4980890.59129917062819, 3905526.321269380394369 ], [ 4980911.787722970359027, 3905576.618524596095085 ], [ 4980881.81312997918576, 3905589.29660653648898 ], [ 4980876.657588670030236, 3905576.904681355226785 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980804.332322125323117, 3903390.861947616096586 ], [ 4980789.589445480145514, 3903416.318479496054351 ], [ 4980752.77705265302211, 3903394.753191880416125 ], [ 4980767.519099679775536, 3903369.660769753623754 ], [ 4980804.332322125323117, 3903390.861947616096586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980674.871552964672446, 3906459.11364321783185 ], [ 4980652.098057433962822, 3906471.079648022074252 ], [ 4980639.480393330566585, 3906447.747303472366184 ], [ 4980662.253902941942215, 3906435.781288158148527 ], [ 4980674.871552964672446, 3906459.11364321783185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980591.660691887140274, 3903067.406962633132935 ], [ 4980584.758202962577343, 3903063.386277130339295 ], [ 4980576.954014169052243, 3903076.4777756864205 ], [ 4980534.387161147780716, 3903052.351170824375004 ], [ 4980556.646210633218288, 3903013.802362805698067 ], [ 4980606.115598282776773, 3903041.949691517278552 ], [ 4980591.660691887140274, 3903067.406962633132935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982677.940288151614368, 3917083.567557741887867 ], [ 4982636.471451764926314, 3917093.304385530762374 ], [ 4982621.932311194017529, 3917032.096553143579513 ], [ 4982663.689059307798743, 3917022.360361384693533 ], [ 4982677.940288151614368, 3917083.567557741887867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980403.26900068577379, 3906102.02908828901127 ], [ 4980448.228500763885677, 3906083.557366581168026 ], [ 4980454.816619282588363, 3906099.229557614773512 ], [ 4980446.171208833344281, 3906102.487698653247207 ], [ 4980453.044856559485197, 3906119.252914486452937 ], [ 4980416.443669703789055, 3906134.10171093326062 ], [ 4980403.26900068577379, 3906102.02908828901127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980272.409184383228421, 3907080.892584948334843 ], [ 4980261.686230781488121, 3907112.548536746297032 ], [ 4980222.844607776030898, 3907099.354500920977443 ], [ 4980233.567520782351494, 3907067.698533873539418 ], [ 4980272.409184383228421, 3907080.892584948334843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980202.36627159640193, 3909083.831401605159044 ], [ 4980210.444468013010919, 3909076.202341492753476 ], [ 4980196.943159097805619, 3909062.33567560929805 ], [ 4980223.774545206688344, 3909036.905269099865109 ], [ 4980257.957251512445509, 3909072.665321128908545 ], [ 4980223.047672788612545, 3909105.724748052190989 ], [ 4980202.36627159640193, 3909083.831401605159044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980100.795340117067099, 3902613.712371970526874 ], [ 4980125.803872833959758, 3902634.522628210950643 ], [ 4980085.671460565179586, 3902681.771797472145408 ], [ 4980065.837752665393054, 3902664.978346358519047 ], [ 4980074.499364426359534, 3902654.801629537716508 ], [ 4980063.57617543078959, 3902645.674441616050899 ], [ 4980077.434925340116024, 3902629.318869210779667 ], [ 4980083.183302860707045, 3902634.429290040861815 ], [ 4980100.795340117067099, 3902613.712371970526874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982050.714172275736928, 3916982.367569433059543 ], [ 4982058.52414021641016, 3916965.270926116034389 ], [ 4982043.572989615611732, 3916958.318526323419064 ], [ 4982068.446172120980918, 3916905.211193562485278 ], [ 4982091.160341341979802, 3916915.822535079903901 ], [ 4982080.458907822147012, 3916938.738772379700094 ], [ 4982104.036514198407531, 3916949.352080535609275 ], [ 4982081.766077601350844, 3916997.003258263226599 ], [ 4982050.714172275736928, 3916982.367569433059543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980061.35734951030463, 3907738.052734313998371 ], [ 4980078.988365489989519, 3907707.140080046374351 ], [ 4980104.29523428529501, 3907721.032529579475522 ], [ 4980086.663400846533477, 3907752.309298134874552 ], [ 4980061.35734951030463, 3907738.052734313998371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980053.118926480412483, 3907555.604399692267179 ], [ 4980057.454523731954396, 3907547.967109608463943 ], [ 4980074.132602073252201, 3907557.83518961397931 ], [ 4980055.345814936794341, 3907590.565976574085653 ], [ 4980030.327518201433122, 3907576.310073539614677 ], [ 4980026.281450049951673, 3907583.219736786093563 ], [ 4980004.42631337698549, 3907570.791439100168645 ], [ 4980022.924331373535097, 3907538.424117717891932 ], [ 4980053.118926480412483, 3907555.604399692267179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981838.668881313875318, 3894086.728495779447258 ], [ 4981802.99924873560667, 3894064.072103393729776 ], [ 4981836.244495193473995, 3894012.076501328032464 ], [ 4981871.91334792226553, 3894035.09706469764933 ], [ 4981838.668881313875318, 3894086.728495779447258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981619.31028023082763, 3896969.778312214184552 ], [ 4981680.717120201326907, 3896945.519581854809076 ], [ 4981695.60992778185755, 3896983.422591301612556 ], [ 4981634.203160727396607, 3897007.681288197170943 ], [ 4981619.31028023082763, 3896969.778312214184552 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979438.365938895381987, 3903049.227424343582243 ], [ 4979474.039013132452965, 3903065.690596944186836 ], [ 4979457.257757279090583, 3903102.067375539336354 ], [ 4979421.584721193648875, 3903085.604224850889295 ], [ 4979438.365938895381987, 3903049.227424343582243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979068.347651465795934, 3899957.321167343761772 ], [ 4979040.100406169891357, 3899967.820204149931669 ], [ 4979023.778806690126657, 3899923.725311604328454 ], [ 4979052.025308741256595, 3899913.590386832598597 ], [ 4979068.347651465795934, 3899957.321167343761772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978955.743678770028055, 3908938.749194225762039 ], [ 4978946.73091446608305, 3908979.512690592091531 ], [ 4978906.730340082198381, 3908970.68764029070735 ], [ 4978916.030955937691033, 3908929.924748641904444 ], [ 4978955.743678770028055, 3908938.749194225762039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978918.478977527469397, 3902153.800585850141943 ], [ 4978934.92677622102201, 3902138.542379076592624 ], [ 4978928.318816734477878, 3902131.245574741158634 ], [ 4978945.921691187657416, 3902114.533329559490085 ], [ 4978981.263741106726229, 3902151.750596780795604 ], [ 4978946.924308703280985, 3902184.084519810508937 ], [ 4978918.478977527469397, 3902153.800585850141943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978727.54581974633038, 3902423.212712107691914 ], [ 4978731.572854006662965, 3902425.406111996155232 ], [ 4978745.07748858910054, 3902439.636114766821265 ], [ 4978740.163152405060828, 3902448.364749106112868 ], [ 4978757.977321416139603, 3902467.337682870216668 ], [ 4978764.902835224755108, 3902460.798142662737519 ], [ 4978781.280983630567789, 3902477.947363071143627 ], [ 4978776.078664219006896, 3902486.675374567508698 ], [ 4978793.892782416194677, 3902505.648332572542131 ], [ 4978800.817515382543206, 3902499.472930962685496 ], [ 4978818.057211498729885, 3902517.71641275845468 ], [ 4978812.565349928103387, 3902527.172059520613402 ], [ 4978832.390578661113977, 3902548.334138327743858 ], [ 4978797.475875639356673, 3902580.667026034090668 ], [ 4978792.585717442445457, 3902578.107636735774577 ], [ 4978775.921218805015087, 3902560.229532964993268 ], [ 4978782.280891513451934, 3902548.955080490093678 ], [ 4978768.776331771165133, 3902534.725058084353805 ], [ 4978759.830315944738686, 3902543.445060732308775 ], [ 4978737.993853888474405, 3902520.093946304637939 ], [ 4978747.227848502807319, 3902511.374552635010332 ], [ 4978732.86165292467922, 3902496.050311774481088 ], [ 4978723.916414682753384, 3902504.406196681782603 ], [ 4978700.067932357080281, 3902479.230155170895159 ], [ 4978706.716349327936769, 3902467.592171487398446 ], [ 4978694.073309918865561, 3902454.456422842107713 ], [ 4978727.54581974633038, 3902423.212712107691914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981062.575983797200024, 3907042.585329965688288 ], [ 4981094.286354618147016, 3907025.541720709297806 ], [ 4981106.042806729674339, 3907047.415841140318662 ], [ 4981074.620383520610631, 3907064.460077805910259 ], [ 4981062.575983797200024, 3907042.585329965688288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980961.562201193533838, 3901577.109101796057075 ], [ 4980989.525380960665643, 3901564.426658765412867 ], [ 4981005.28863363713026, 3901598.690018478315324 ], [ 4980956.8573162490502, 3901620.794372012838721 ], [ 4980937.080781983211637, 3901578.147113597020507 ], [ 4980957.836961393244565, 3901568.725811926648021 ], [ 4980961.562201193533838, 3901577.109101796057075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978664.710242373868823, 3906223.155366678722203 ], [ 4978705.918908533640206, 3906207.585773163940758 ], [ 4978715.938352672383189, 3906234.917097681667656 ], [ 4978674.730500686913729, 3906250.122545768041164 ], [ 4978664.710242373868823, 3906223.155366678722203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978608.537946472875774, 3905559.951198257040232 ], [ 4978631.301190271042287, 3905552.717160439584404 ], [ 4978627.582778411917388, 3905541.057001816574484 ], [ 4978652.362441484816372, 3905533.463155690114945 ], [ 4978667.520085699856281, 3905581.925073430407792 ], [ 4978619.689302097074687, 3905596.752319342456758 ], [ 4978608.537946472875774, 3905559.951198257040232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978535.289026600308716, 3895612.835613693110645 ], [ 4978547.05104131065309, 3895635.43672028882429 ], [ 4978506.678802214562893, 3895656.470218689646572 ], [ 4978494.917538300156593, 3895633.505001467186958 ], [ 4978535.289026600308716, 3895612.835613693110645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978346.94556103553623, 3904675.64638651907444 ], [ 4978388.426558896899223, 3904668.451922370586544 ], [ 4978393.548578566871583, 3904697.229212706908584 ], [ 4978369.35186817497015, 3904701.183217806275934 ], [ 4978371.057923957705498, 3904711.382530063390732 ], [ 4978353.773685835301876, 3904714.622980251908302 ], [ 4978346.94556103553623, 3904675.64638651907444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978258.359539239667356, 3904762.121639601886272 ], [ 4978239.345306850038469, 3904766.450888302177191 ], [ 4978234.21078110858798, 3904743.499706188216805 ], [ 4978253.512210741639137, 3904739.535194753669202 ], [ 4978258.359539239667356, 3904762.121639601886272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980486.032011798582971, 3894807.967463315464556 ], [ 4980524.090546821244061, 3894792.393783411942422 ], [ 4980539.278266317211092, 3894828.476100421510637 ], [ 4980500.93171314150095, 3894844.049124246928841 ], [ 4980486.032011798582971, 3894807.967463315464556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978176.607260256074369, 3906516.33553289854899 ], [ 4978202.827888728119433, 3906507.651926531922072 ], [ 4978213.130262536928058, 3906537.5325917173177 ], [ 4978186.908888265490532, 3906546.58031861204654 ], [ 4978176.607260256074369, 3906516.33553289854899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977928.942305402830243, 3907490.593715992290527 ], [ 4977937.014186177402735, 3907485.877024888060987 ], [ 4977952.504495928063989, 3907513.219628096558154 ], [ 4977915.894306927919388, 3907533.897933507803828 ], [ 4977894.953362891450524, 3907497.07642137305811 ], [ 4977923.491703107021749, 3907481.114780609030277 ], [ 4977928.942305402830243, 3907490.593715992290527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977928.058807354420424, 3905998.378590543288738 ], [ 4977938.721834398806095, 3905994.031500779557973 ], [ 4977951.041052925400436, 3906023.552178062964231 ], [ 4977910.694062449038029, 3906040.21713984478265 ], [ 4977880.040227975696325, 3905966.233742 ], [ 4977909.72426856122911, 3905953.915831867139786 ], [ 4977928.058807354420424, 3905998.378590543288738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980150.031505290418863, 3901566.215033862739801 ], [ 4980162.356733177788556, 3901592.823611326981336 ], [ 4980100.089932392351329, 3901620.725278816651553 ], [ 4980088.052643814124167, 3901594.117359939962626 ], [ 4980150.031505290418863, 3901566.215033862739801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980160.618251172825694, 3895946.97818152140826 ], [ 4980140.726951190270483, 3895954.217192125506699 ], [ 4980131.848497248254716, 3895930.893437426537275 ], [ 4980151.740609935484827, 3895923.290292322635651 ], [ 4980160.618251172825694, 3895946.97818152140826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977833.559221334755421, 3902742.115133378654718 ], [ 4977850.531380292028189, 3902750.890021899715066 ], [ 4977853.423407083377242, 3902745.070013985969126 ], [ 4977884.779755032621324, 3902760.793717022053897 ], [ 4977879.864222282543778, 3902770.250769543461502 ], [ 4977895.39877452980727, 3902777.930263735819608 ], [ 4977879.783655989915133, 3902808.484375639352947 ], [ 4977816.208636122755706, 3902776.306939441245049 ], [ 4977833.559221334755421, 3902742.115133378654718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977585.834873797371984, 3907030.701467109378427 ], [ 4977609.184675868600607, 3907017.641675725579262 ], [ 4977622.381321467459202, 3907040.609683024231344 ], [ 4977599.319462340325117, 3907053.670066947117448 ], [ 4977585.834873797371984, 3907030.701467109378427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977567.745584364049137, 3906457.155538138467818 ], [ 4977588.510558471083641, 3906441.177258989773691 ], [ 4977602.007660942152143, 3906458.319765371270478 ], [ 4977581.242691992782056, 3906474.298034255858511 ], [ 4977567.745584364049137, 3906457.155538138467818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977565.438030015677214, 3904260.707926233764738 ], [ 4977575.426549293100834, 3904303.696379743982106 ], [ 4977543.73581038415432, 3904310.91260505001992 ], [ 4977534.035202484577894, 3904267.924766256473958 ], [ 4977565.438030015677214, 3904260.707926233764738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977492.678688739426434, 3904353.044955261982977 ], [ 4977457.809825993143022, 3904365.352472051046789 ], [ 4977450.08064372651279, 3904343.48841458093375 ], [ 4977484.949531238526106, 3904331.180887922644615 ], [ 4977492.678688739426434, 3904353.044955261982977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977422.177558408118784, 3904742.882411111146212 ], [ 4977390.771528967656195, 3904751.920070836320519 ], [ 4977377.620707363821566, 3904706.376148014795035 ], [ 4977409.026785514317453, 3904697.338473170530051 ], [ 4977422.177558408118784, 3904742.882411111146212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977396.64287179056555, 3912138.359057724941522 ], [ 4977423.346720777451992, 3912171.186877004336566 ], [ 4977399.124154650606215, 3912190.799437532201409 ], [ 4977372.132420936599374, 3912157.971040545962751 ], [ 4977396.64287179056555, 3912138.359057724941522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977388.271818679757416, 3908291.27803304977715 ], [ 4977409.314817513339221, 3908279.305637878831476 ], [ 4977413.903972593136132, 3908287.6902756546624 ], [ 4977432.640609102323651, 3908277.169607493560761 ], [ 4977448.41660313308239, 3908305.604927964974195 ], [ 4977408.638523180969059, 3908327.369703131262213 ], [ 4977388.271818679757416, 3908291.27803304977715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979806.183373834006488, 3906450.652188278269023 ], [ 4979823.850652705878019, 3906403.35352629236877 ], [ 4979852.045393874868751, 3906413.974830891005695 ], [ 4979838.43378599639982, 3906449.994223228655756 ], [ 4979856.271518788300455, 3906456.587499590124935 ], [ 4979852.215798513963819, 3906467.866748357191682 ], [ 4979806.183373834006488, 3906450.652188278269023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979785.488228978589177, 3902600.279157066252083 ], [ 4979801.56814509164542, 3902621.797927281819284 ], [ 4979781.089265692047775, 3902636.682697543874383 ], [ 4979765.297319194301963, 3902615.16456640092656 ], [ 4979785.488228978589177, 3902600.279157066252083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979760.373359221033752, 3899585.584913907106966 ], [ 4979734.721498109400272, 3899594.268217090982944 ], [ 4979725.847077194601297, 3899569.488030795939267 ], [ 4979751.787761361338198, 3899560.441217326093465 ], [ 4979760.373359221033752, 3899585.584913907106966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979593.262097045779228, 3903197.400572423357517 ], [ 4979616.982466184534132, 3903148.294349910691381 ], [ 4979646.037502167746425, 3903162.194460220634937 ], [ 4979632.44036372192204, 3903190.931292986962944 ], [ 4979643.660150384530425, 3903196.053508585784584 ], [ 4979633.536081030033529, 3903216.786998568568379 ], [ 4979593.262097045779228, 3903197.400572423357517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979574.556309333071113, 3907834.943243745714426 ], [ 4979589.637311168015003, 3907784.725717518944293 ], [ 4979655.529415706172585, 3907804.167881044093519 ], [ 4979640.736222286708653, 3907854.385996585711837 ], [ 4979574.556309333071113, 3907834.943243745714426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979550.923714657314122, 3902138.415102519560605 ], [ 4979568.447166432626545, 3902158.48033338971436 ], [ 4979547.962535438127816, 3902175.914182888809592 ], [ 4979530.727061772719026, 3902155.849589688703418 ], [ 4979550.923714657314122, 3902138.415102519560605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977297.498669969849288, 3906948.897025594953448 ], [ 4977323.041666326113045, 3906988.64071729592979 ], [ 4977297.093013234436512, 3907005.336657110601664 ], [ 4977271.261304941959679, 3906965.956519901286811 ], [ 4977297.498669969849288, 3906948.897025594953448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977025.76452128496021, 3900669.977969367057085 ], [ 4977044.653701091185212, 3900727.185698504559696 ], [ 4977015.834331011399627, 3900736.593284443020821 ], [ 4976996.94509659614414, 3900679.385575228836387 ], [ 4977025.76452128496021, 3900669.977969367057085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979043.054734613746405, 3907833.430648158770055 ], [ 4979052.319126916117966, 3907809.781973581761122 ], [ 4979086.553552880883217, 3907822.96440664678812 ], [ 4979077.577055885456502, 3907846.613689268007874 ], [ 4979043.054734613746405, 3907833.430648158770055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979048.892542105168104, 3901638.107068152632564 ], [ 4979091.293317252770066, 3901607.247156602330506 ], [ 4979121.729856873862445, 3901649.187741745263338 ], [ 4979100.673858093097806, 3901664.435910765547305 ], [ 4979095.504979142919183, 3901657.506296288687736 ], [ 4979074.448218334466219, 3901673.118615235202014 ], [ 4979048.892542105168104, 3901638.107068152632564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978993.670634168200195, 3902542.854088131338358 ], [ 4979045.8932861154899, 3902497.085818742401898 ], [ 4979076.919725104235113, 3902532.109153949189931 ], [ 4979070.860437338240445, 3902537.558084294665605 ], [ 4979096.428548819385469, 3902566.379469799343497 ], [ 4979104.218836504966021, 3902559.477746754419059 ], [ 4979135.818728818558156, 3902595.594779673498124 ], [ 4979083.884090791456401, 3902641.36349678132683 ], [ 4979053.144981550984085, 3902606.70490012364462 ], [ 4979058.91548973787576, 3902601.619475597515702 ], [ 4979033.921760905534029, 3902573.527622551657259 ], [ 4979026.708233013749123, 3902580.066474759019911 ], [ 4978993.670634168200195, 3902542.854088131338358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976659.427623325958848, 3909468.826222637668252 ], [ 4976687.100177614018321, 3909452.497336815577 ], [ 4976703.455077548511326, 3909479.476904234848917 ], [ 4976675.782541004940867, 3909495.80577348312363 ], [ 4976659.427623325958848, 3909468.826222637668252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978861.466013792902231, 3900269.301005929708481 ], [ 4978847.297723551280797, 3900295.48804804077372 ], [ 4978806.448242148384452, 3900273.552697635721415 ], [ 4978820.616504010744393, 3900247.365634345915169 ], [ 4978861.466013792902231, 3900269.301005929708481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978828.661472909152508, 3904826.332338687498122 ], [ 4978834.662455512210727, 3904847.828966632019728 ], [ 4978844.74705770239234, 3904844.937525418121368 ], [ 4978854.747360588051379, 3904881.372129315976053 ], [ 4978816.427023690193892, 3904891.849830045830458 ], [ 4978800.425669386051595, 3904833.918618434108794 ], [ 4978828.661472909152508, 3904826.332338687498122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978746.203407824039459, 3901778.740625419188291 ], [ 4978776.980496751144528, 3901796.284774770960212 ], [ 4978753.855150777846575, 3901836.653826563619077 ], [ 4978722.790107595734298, 3901819.109087409917265 ], [ 4978746.203407824039459, 3901778.740625419188291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978514.760556996800005, 3907272.628224016632885 ], [ 4978490.25417204760015, 3907287.869560405611992 ], [ 4978465.001113506034017, 3907248.12536501372233 ], [ 4978489.507520234212279, 3907232.884005978237838 ], [ 4978514.760556996800005, 3907272.628224016632885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978469.096176515333354, 3903161.119307726621628 ], [ 4978482.976954222656786, 3903133.839018697850406 ], [ 4978557.481586964800954, 3903171.503316884860396 ], [ 4978536.659181987866759, 3903212.96989095909521 ], [ 4978490.344772906973958, 3903189.930930749513209 ], [ 4978497.575071888044477, 3903175.381079851649702 ], [ 4978469.096176515333354, 3903161.119307726621628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976520.526941662654281, 3903933.004980222787708 ], [ 4976483.927960658445954, 3903946.402593648526818 ], [ 4976471.327185791917145, 3903912.512476208154112 ], [ 4976531.844386676326394, 3903890.789015909656882 ], [ 4976549.026278086937964, 3903937.433187446556985 ], [ 4976525.395347869955003, 3903946.12372456304729 ], [ 4976520.526941662654281, 3903933.004980222787708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976493.172887973487377, 3911914.00062820315361 ], [ 4976508.950719574466348, 3911940.978934686630964 ], [ 4976469.46365625411272, 3911964.202268593013287 ], [ 4976453.685798783786595, 3911937.223984913900495 ], [ 4976493.172887973487377, 3911914.00062820315361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976291.407042357139289, 3901212.839482021518052 ], [ 4976263.766512987203896, 3901209.505711560603231 ], [ 4976267.576751494780183, 3901177.105869762133807 ], [ 4976295.218059523962438, 3901180.075514802709222 ], [ 4976291.407042357139289, 3901212.839482021518052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978285.241586180403829, 3903899.915168371982872 ], [ 4978313.747629667632282, 3903901.068078654818237 ], [ 4978312.215803756378591, 3903944.396469878964126 ], [ 4978283.70903336815536, 3903943.607691019307822 ], [ 4978285.241586180403829, 3903899.915168371982872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978143.597696530632675, 3906059.64411370549351 ], [ 4978167.512923687696457, 3906052.047989116050303 ], [ 4978178.954929958097637, 3906087.757157389540225 ], [ 4978138.904313239268959, 3906100.416953804437071 ], [ 4978130.895186972804368, 3906075.274895033799112 ], [ 4978147.030618573538959, 3906070.211208476219326 ], [ 4978143.597696530632675, 3906059.64411370549351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978051.464253881014884, 3907281.840545928571373 ], [ 4978070.489767841994762, 3907271.320937796495855 ], [ 4978081.387870081700385, 3907291.735389206558466 ], [ 4978062.363136163912714, 3907301.890859168022871 ], [ 4978051.464253881014884, 3907281.840545928571373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976101.519518315792084, 3909443.648679975885898 ], [ 4976066.084313329309225, 3909454.864472493063658 ], [ 4976048.91851969435811, 3909401.666091636754572 ], [ 4976084.35378754325211, 3909390.450276844669133 ], [ 4976101.519518315792084, 3909443.648679975885898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976058.867550957016647, 3911016.615392947569489 ], [ 4976080.84060054179281, 3910970.779472211375833 ], [ 4976094.933707606047392, 3910977.362632133066654 ], [ 4976083.946420922875404, 3911000.644715886097401 ], [ 4976090.561136382631958, 3911003.935414311941713 ], [ 4976079.863237431272864, 3911026.48982482496649 ], [ 4976058.867550957016647, 3911016.615392947569489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976025.261676322668791, 3905188.244734147097915 ], [ 4976030.415816588327289, 3905202.456376319285482 ], [ 4975992.0896290037781, 3905216.579408385790884 ], [ 4975978.056504923850298, 3905179.045261391438544 ], [ 4976020.129053426906466, 3905163.473318383097649 ], [ 4976028.720038968138397, 3905186.795257122255862 ], [ 4976025.261676322668791, 3905188.244734147097915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975995.498369387350976, 3897463.512723840773106 ], [ 4976000.744509673677385, 3897433.300620768219233 ], [ 4976014.852911857888103, 3897435.878271501045674 ], [ 4976017.474139276891947, 3897421.682543058414012 ], [ 4976055.769122202880681, 3897428.314936173148453 ], [ 4976050.815405583009124, 3897456.342844821512699 ], [ 4976072.122370034456253, 3897460.027592651546001 ], [ 4976069.20937220659107, 3897476.043371034320444 ], [ 4975995.498369387350976, 3897463.512723840773106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975861.253177308477461, 3903852.276483847759664 ], [ 4975848.909944913350046, 3903832.952440105378628 ], [ 4975897.926761918701231, 3903802.100906664505601 ], [ 4975914.576102364808321, 3903827.988096301443875 ], [ 4975906.214036556892097, 3903833.433058421127498 ], [ 4975919.418155826628208, 3903854.215405420865864 ], [ 4975887.700684020295739, 3903874.542257218621671 ], [ 4975869.903191966935992, 3903846.832092967815697 ], [ 4975861.253177308477461, 3903852.276483847759664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977819.436266331002116, 3907672.064945982769132 ], [ 4977856.901523804292083, 3907655.393764418084174 ], [ 4977868.365502027794719, 3907680.543046146631241 ], [ 4977862.889599255286157, 3907683.080434062983841 ], [ 4977868.90758666023612, 3907696.566009154543281 ], [ 4977836.630350227467716, 3907710.699173663277179 ], [ 4977819.436266331002116, 3907672.064945982769132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977811.343365583568811, 3908233.904120972380042 ], [ 4977791.159304039552808, 3908248.062803346198052 ], [ 4977773.647710228338838, 3908223.629087238106877 ], [ 4977811.709468658082187, 3908196.763386191800237 ], [ 4977836.397497205063701, 3908231.407946970313787 ], [ 4977818.519820635206997, 3908244.114936550147831 ], [ 4977811.343365583568811, 3908233.904120972380042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977797.832389233633876, 3903024.241628035437316 ], [ 4977838.680800484493375, 3903045.083092799410224 ], [ 4977830.006362734362483, 3903061.814866181463003 ], [ 4977863.087885187938809, 3903078.634573666378856 ], [ 4977868.004123229533434, 3903068.813386673107743 ], [ 4977894.181193131022155, 3903082.341405799146742 ], [ 4977891.001221523620188, 3903088.160803582519293 ], [ 4977902.507050582207739, 3903094.375287826638669 ], [ 4977870.122243703342974, 3903156.93761650333181 ], [ 4977828.986822290346026, 3903135.731366606429219 ], [ 4977837.372497382573783, 3903119.363115419168025 ], [ 4977804.578980947844684, 3903102.544045199174434 ], [ 4977800.530518501996994, 3903110.546413633041084 ], [ 4977763.134012232534587, 3903091.532920964527875 ], [ 4977797.832389233633876, 3903024.241628035437316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977696.881906412541866, 3902003.369834450539201 ], [ 4977696.538857756182551, 3902029.586547603830695 ], [ 4977672.637007811106741, 3902029.172225391492248 ], [ 4977672.980033161118627, 3902002.955511930864304 ], [ 4977696.881906412541866, 3902003.369834450539201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977667.740558749064803, 3911491.862278936430812 ], [ 4977651.015123217366636, 3911505.300087136216462 ], [ 4977630.341127759777009, 3911479.767372468020767 ], [ 4977647.066568761132658, 3911466.329551616217941 ], [ 4977667.740558749064803, 3911491.862278936430812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977693.543162976391613, 3892620.09684184147045 ], [ 4977771.095975201576948, 3892592.585971315857023 ], [ 4977788.565746731124818, 3892641.780119182541966 ], [ 4977711.301141827367246, 3892669.291545127518475 ], [ 4977693.543162976391613, 3892620.09684184147045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977567.069624576717615, 3906917.052908725105226 ], [ 4977588.316199648194015, 3906945.863884562626481 ], [ 4977552.557867229916155, 3906972.006446686107665 ], [ 4977535.904435474425554, 3906949.759497784078121 ], [ 4977551.188408286310732, 3906938.503422536887228 ], [ 4977546.307318496517837, 3906931.938817591872066 ], [ 4977567.069624576717615, 3906917.052908725105226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977522.879463813267648, 3904644.777565598022193 ], [ 4977524.89591333642602, 3904644.417656666133553 ], [ 4977522.331003514118493, 3904631.667679559439421 ], [ 4977554.59574384149164, 3904625.180894247256219 ], [ 4977565.431219580583274, 3904676.182023785542697 ], [ 4977530.862136151641607, 3904683.028101524338126 ], [ 4977522.879463813267648, 3904644.777565598022193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975791.140739074908197, 3905338.519045015797019 ], [ 4975809.023078114725649, 3905323.990078236442059 ], [ 4975833.4394870409742, 3905353.170199739746749 ], [ 4975800.847436128184199, 3905379.685631655622274 ], [ 4975767.81326955370605, 3905340.292366286739707 ], [ 4975782.523733225651085, 3905327.941737150307745 ], [ 4975791.140739074908197, 3905338.519045015797019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975630.226502602919936, 3904033.509553602430969 ], [ 4975680.562295474112034, 3904062.013710587285459 ], [ 4975659.177206076681614, 3904099.47594079002738 ], [ 4975630.127027553506196, 3904082.667093660216779 ], [ 4975619.145452613942325, 3904101.943839129060507 ], [ 4975598.148594182915986, 3904089.885029680095613 ], [ 4975630.226502602919936, 3904033.509553602430969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975530.77338142413646, 3911212.175050173420459 ], [ 4975607.932430708780885, 3911209.417991690803319 ], [ 4975608.47430972289294, 3911226.169207278173417 ], [ 4975531.315308476798236, 3911228.926264231558889 ], [ 4975530.77338142413646, 3911212.175050173420459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975470.945436733774841, 3911756.797330416738987 ], [ 4975488.224797368980944, 3911753.555011736229062 ], [ 4975491.926790121011436, 3911773.589809007477015 ], [ 4975474.935320769436657, 3911776.832706399727613 ], [ 4975470.945436733774841, 3911756.797330416738987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977297.683486520312726, 3916933.430869151372463 ], [ 4977264.298226772807539, 3916932.268823454156518 ], [ 4977266.1557831550017, 3916869.64158405456692 ], [ 4977299.828944955952466, 3916870.80423262482509 ], [ 4977297.683486520312726, 3916933.430869151372463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977311.460983291268349, 3904534.732065307442099 ], [ 4977340.858383884653449, 3904522.412936847656965 ], [ 4977358.624259658157825, 3904564.325156112667173 ], [ 4977328.938940634950995, 3904576.643664526753128 ], [ 4977311.460983291268349, 3904534.732065307442099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977176.077838950790465, 3907875.724634455982596 ], [ 4977192.111178825609386, 3907919.089757134672254 ], [ 4977157.246317122131586, 3907931.76182176405564 ], [ 4977141.500849191099405, 3907888.397318457718939 ], [ 4977176.077838950790465, 3907875.724634455982596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977060.767786346375942, 3912655.820927410386503 ], [ 4977031.386201406829059, 3912664.863238180987537 ], [ 4977034.244479491375387, 3912674.700774970464408 ], [ 4977013.216420089825988, 3912681.211519362404943 ], [ 4976995.484893660992384, 3912625.098177074920386 ], [ 4977018.241723438724875, 3912617.862740904092789 ], [ 4977020.815921366214752, 3912625.879019309300929 ], [ 4977048.469569843262434, 3912617.197241456247866 ], [ 4977060.767786346375942, 3912655.820927410386503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976984.781108435243368, 3909181.106127084698528 ], [ 4976955.663276560604572, 3909199.980636175256222 ], [ 4976930.693894067779183, 3909162.059087931644171 ], [ 4976932.712260792031884, 3909160.606740462128073 ], [ 4976919.510039457120001, 3909140.55209002410993 ], [ 4976946.897446868009865, 3909123.13048551697284 ], [ 4976984.781108435243368, 3909181.106127084698528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976795.500233740545809, 3901022.70791474217549 ], [ 4976789.968899868428707, 3901051.462815400678664 ], [ 4976745.347907833755016, 3901042.631503280252218 ], [ 4976750.878443777561188, 3901014.240722814574838 ], [ 4976795.500233740545809, 3901022.70791474217549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976747.585950962267816, 3909718.803201447241008 ], [ 4976793.127741543576121, 3909693.043889013119042 ], [ 4976808.044389169663191, 3909719.292285935021937 ], [ 4976762.214727992191911, 3909745.050978657789528 ], [ 4976747.585950962267816, 3909718.803201447241008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976725.971702260896564, 3911959.996996400877833 ], [ 4976700.311576520092785, 3911978.878948797471821 ], [ 4976659.260115386918187, 3911923.081865907646716 ], [ 4976679.730206184089184, 3911908.194631372112781 ], [ 4976694.94562684558332, 3911928.617489038500935 ], [ 4976699.847055479884148, 3911924.986272998619825 ], [ 4976725.971702260896564, 3911959.996996400877833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974945.19522662833333, 3905170.04305651364848 ], [ 4974955.218156429007649, 3905197.73709146399051 ], [ 4974897.010950020514429, 3905218.376327849924564 ], [ 4974882.694889737293124, 3905177.565006190445274 ], [ 4974928.22292656917125, 3905161.634120156988502 ], [ 4974932.804662301205099, 3905174.387880423106253 ], [ 4974945.19522662833333, 3905170.04305651364848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976600.065692377276719, 3906699.477392194326967 ], [ 4976568.084110109135509, 3906709.607229569926858 ], [ 4976560.64656778331846, 3906685.923336908221245 ], [ 4976592.627425414510071, 3906676.157621315214783 ], [ 4976600.065692377276719, 3906699.477392194326967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976597.381291108205914, 3901012.103525417856872 ], [ 4976603.776410325430334, 3900983.350365231744945 ], [ 4976625.942234759218991, 3900988.129726881626993 ], [ 4976627.397212634794414, 3900980.850109436083585 ], [ 4976652.154234799556434, 3900985.998962681740522 ], [ 4976644.304083367809653, 3901022.031727999448776 ], [ 4976597.381291108205914, 3901012.103525417856872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976542.862796345725656, 3903154.174016817472875 ], [ 4976565.675483630038798, 3903123.63393927924335 ], [ 4976558.486685724928975, 3903118.521305973641574 ], [ 4976567.438540805131197, 3903106.52340028854087 ], [ 4976576.06420021597296, 3903113.095518950838596 ], [ 4976586.460422772914171, 3903098.915805831085891 ], [ 4976620.677305523306131, 3903124.11133909644559 ], [ 4976592.377355127595365, 3903162.286825556308031 ], [ 4976579.438144457526505, 3903152.79277017340064 ], [ 4976565.578048407100141, 3903170.970800091512501 ], [ 4976542.862796345725656, 3903154.174016817472875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976382.345329483971, 3909385.962244309484959 ], [ 4976396.219303285703063, 3909359.409035312477499 ], [ 4976440.798166171647608, 3909382.076793788466603 ], [ 4976427.211316307075322, 3909408.994702492840588 ], [ 4976382.345329483971, 3909385.962244309484959 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976332.238679526373744, 3906582.40478868689388 ], [ 4976284.693685671314597, 3906599.78570354776457 ], [ 4976269.803860786370933, 3906559.336559512652457 ], [ 4976293.143732700496912, 3906551.009324313607067 ], [ 4976296.580302157439291, 3906560.119663994759321 ], [ 4976320.785478844307363, 3906551.065961467567831 ], [ 4976332.238679526373744, 3906582.40478868689388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976326.274102580733597, 3907806.604803604073822 ], [ 4976284.181641361676157, 3907833.828476675786078 ], [ 4976266.960802570916712, 3907807.211554036475718 ], [ 4976309.053287872113287, 3907779.987854424398392 ], [ 4976326.274102580733597, 3907806.604803604073822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974843.178784483112395, 3899290.21624779002741 ], [ 4974875.153275133110583, 3899287.731110135558993 ], [ 4974879.092454955913126, 3899334.347655002959073 ], [ 4974847.117293250747025, 3899337.196916953660548 ], [ 4974843.178784483112395, 3899290.21624779002741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974743.024552806280553, 3909668.128353020176291 ], [ 4974761.110852996818721, 3909694.017787379212677 ], [ 4974719.595109960995615, 3909723.065746339503676 ], [ 4974701.220163925550878, 3909697.539897909853607 ], [ 4974743.024552806280553, 3909668.128353020176291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974723.438031916506588, 3898529.673767887987196 ], [ 4974739.577342112548649, 3898524.608058493584394 ], [ 4974736.715248322114348, 3898515.499108490999788 ], [ 4974751.989781686104834, 3898510.795815907884389 ], [ 4974759.719230108894408, 3898534.479664219543338 ], [ 4974728.30540644749999, 3898544.248658976517618 ], [ 4974723.438031916506588, 3898529.673767887987196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974678.628797146491706, 3910634.044426890090108 ], [ 4974714.372945188544691, 3910611.175163552630693 ], [ 4974743.075078477151692, 3910654.928240591194481 ], [ 4974707.042348830029368, 3910678.161024975590408 ], [ 4974678.628797146491706, 3910634.044426890090108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974676.561390125192702, 3900522.466206304263324 ], [ 4974660.686686323955655, 3900539.912923973053694 ], [ 4974626.76496425177902, 3900508.530301438178867 ], [ 4974655.626426393166184, 3900477.63653414696455 ], [ 4974682.074642547406256, 3900501.721721549518406 ], [ 4974669.087155198678374, 3900515.532868053764105 ], [ 4974676.561390125192702, 3900522.466206304263324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974565.216524015180767, 3900175.956925796344876 ], [ 4974546.198206045664847, 3900181.017033730167896 ], [ 4974549.059462655335665, 3900190.490101626608521 ], [ 4974526.294954194687307, 3900196.635186537634581 ], [ 4974514.289033586159348, 3900151.095074075274169 ], [ 4974555.783193793147802, 3900140.253422759938985 ], [ 4974565.216524015180767, 3900175.956925796344876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976092.913471586070955, 3903220.980427144560963 ], [ 4976105.823089746758342, 3903245.039437931030989 ], [ 4976082.472236339002848, 3903257.372246030252427 ], [ 4976069.562603268772364, 3903233.313246274832636 ], [ 4976092.913471586070955, 3903220.980427144560963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976011.549978576600552, 3911350.064757643733174 ], [ 4975955.109996778890491, 3911357.232434280682355 ], [ 4975953.695047538727522, 3911345.213161969557405 ], [ 4976010.135796396993101, 3911337.681350865866989 ], [ 4976011.549978576600552, 3911350.064757643733174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975898.691153179854155, 3907532.268446818459779 ], [ 4975897.313739219680429, 3907501.678540884517133 ], [ 4975944.249907400459051, 3907499.589247406460345 ], [ 4975945.627268051728606, 3907530.179155719000846 ], [ 4975898.691153179854155, 3907532.268446818459779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974440.432304640300572, 3911416.457631941419095 ], [ 4974457.668488341383636, 3911435.062547981273383 ], [ 4974438.9215207118541, 3911452.503812200855464 ], [ 4974421.686055973172188, 3911433.534776367712766 ], [ 4974440.432304640300572, 3911416.457631941419095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974363.518975402228534, 3899932.318403308279812 ], [ 4974355.805413371883333, 3899900.62381009850651 ], [ 4974405.078224221244454, 3899888.704906433355063 ], [ 4974412.791011408902705, 3899920.763642603997141 ], [ 4974363.518975402228534, 3899932.318403308279812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974242.045377814210951, 3899314.877589508425444 ], [ 4974290.171471882611513, 3899300.771434521302581 ], [ 4974299.614796878769994, 3899331.741150384303182 ], [ 4974251.488035164773464, 3899346.211417646147311 ], [ 4974242.045377814210951, 3899314.877589508425444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974197.467893186025321, 3909074.2398661240004 ], [ 4974216.418125201016665, 3909100.494757497217506 ], [ 4974170.576277690939605, 3909133.176351910457015 ], [ 4974144.735600143671036, 3909097.076348646078259 ], [ 4974164.629190771840513, 3909082.914352632593364 ], [ 4974171.519611118361354, 3909092.759501337073743 ], [ 4974197.467893186025321, 3909074.2398661240004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975839.172451533377171, 3910467.783912760205567 ], [ 4975778.643258217722178, 3910502.981881972867996 ], [ 4975764.586028454825282, 3910478.55645303754136 ], [ 4975786.203117122873664, 3910466.219807327259332 ], [ 4975779.605230160057545, 3910454.554163705091923 ], [ 4975798.628349331207573, 3910443.6687948461622 ], [ 4975804.079834372736514, 3910452.783185213804245 ], [ 4975823.967383890412748, 3910441.535456711892039 ], [ 4975839.172451533377171, 3910467.783912760205567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975553.09408042114228, 3913130.109942971728742 ], [ 4975506.083939267322421, 3913173.710973107721657 ], [ 4975496.030026477761567, 3913163.130798867437989 ], [ 4975502.663399960845709, 3913156.953925444744527 ], [ 4975485.716177236288786, 3913138.71303208405152 ], [ 4975517.152227848768234, 3913109.645840096287429 ], [ 4975536.110819191671908, 3913129.711484720464796 ], [ 4975561.202133434824646, 3913106.457659066654742 ], [ 4975577.862197410315275, 3913124.333885540720075 ], [ 4975561.711606686003506, 3913139.230700478423387 ], [ 4975553.09408042114228, 3913130.109942971728742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975508.232893377542496, 3904410.503147308714688 ], [ 4975497.594626476988196, 3904402.470777040347457 ], [ 4975509.720472242683172, 3904386.837604070547968 ], [ 4975559.460680144838989, 3904424.807757745496929 ], [ 4975533.476821674965322, 3904458.2553551052697 ], [ 4975494.374903219752014, 3904428.317613610066473 ], [ 4975508.232893377542496, 3904410.503147308714688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974094.059245166368783, 3905585.6506979893893 ], [ 4974086.526847372762859, 3905608.940316224936396 ], [ 4974077.030390786007047, 3905606.008591555524617 ], [ 4974084.563497102819383, 3905582.354840381536633 ], [ 4974094.059245166368783, 3905585.6506979893893 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974075.403770958073437, 3898082.332960470113903 ], [ 4974089.450454751029611, 3898116.224666654597968 ], [ 4974043.040486147627234, 3898135.432366624008864 ], [ 4974039.026729089207947, 3898125.957101528998464 ], [ 4974019.713317831978202, 3898133.930039475671947 ], [ 4974009.966209331527352, 3898110.606580702122301 ], [ 4974028.990894032642245, 3898102.997198967728764 ], [ 4974022.970957546494901, 3898088.420176326297224 ], [ 4974055.833052443340421, 3898074.647773830220103 ], [ 4974061.567095018923283, 3898088.131851827725768 ], [ 4974075.403770958073437, 3898082.332960470113903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973994.905750180594623, 3904903.073202041443437 ], [ 4973939.650995814241469, 3904886.578884302638471 ], [ 4973956.460095250047743, 3904831.627983820158988 ], [ 4974011.42628444544971, 3904848.485900330357254 ], [ 4973994.905750180594623, 3904903.073202041443437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973904.630782834254205, 3903654.653651367872953 ], [ 4973924.121106619015336, 3903701.300651787780225 ], [ 4973896.453601687215269, 3903712.898636762518436 ], [ 4973876.675272638909519, 3903666.251092149876058 ], [ 4973904.630782834254205, 3903654.653651367872953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973908.992277076467872, 3895695.135562726762146 ], [ 4973916.425962168723345, 3895723.552230786997825 ], [ 4973944.669937844388187, 3895715.96086109476164 ], [ 4973952.389488370157778, 3895745.470488579012454 ], [ 4973887.544581523165107, 3895762.457523945719004 ], [ 4973882.969282943755388, 3895745.33447597688064 ], [ 4973869.135724280029535, 3895748.948689348530024 ], [ 4973863.990011637099087, 3895728.911491797771305 ], [ 4973874.653594757430255, 3895726.019328971859068 ], [ 4973869.220543462783098, 3895705.617438626009971 ], [ 4973908.992277076467872, 3895695.135562726762146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973887.734962129965425, 3895518.126979161053896 ], [ 4973825.491995051503181, 3895530.021444844081998 ], [ 4973819.788615377619863, 3895500.515800691209733 ], [ 4973807.97415975201875, 3895502.677475885953754 ], [ 4973804.265773456543684, 3895484.099621098022908 ], [ 4973816.36829040851444, 3895481.938507571816444 ], [ 4973813.800729513168335, 3895469.188954488374293 ], [ 4973855.008071402087808, 3895461.258713211864233 ], [ 4973861.281113805249333, 3895494.042644646950066 ], [ 4973882.316849811933935, 3895490.07839841581881 ], [ 4973887.734962129965425, 3895518.126979161053896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975475.650780999101698, 3910709.196112012024969 ], [ 4975433.278766821138561, 3910734.964060524012893 ], [ 4975408.601702679879963, 3910694.495551289059222 ], [ 4975431.372953685931861, 3910680.704414140433073 ], [ 4975433.956625343300402, 3910684.350953735876828 ], [ 4975453.26880160253495, 3910672.737656561657786 ], [ 4975475.650780999101698, 3910709.196112012024969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975382.143291478045285, 3905393.040040800347924 ], [ 4975378.704060898162425, 3905385.02221526298672 ], [ 4975401.182298845611513, 3905375.964210813399404 ], [ 4975419.809330086223781, 3905420.425822567660362 ], [ 4975376.869291896931827, 3905438.181749355047941 ], [ 4975361.682170907966793, 3905401.373859615530819 ], [ 4975382.143291478045285, 3905393.040040800347924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973538.514808054082096, 3910073.585759109817445 ], [ 4973569.240380740724504, 3910114.428438972681761 ], [ 4973545.310227476991713, 3910132.224352797027677 ], [ 4973514.583930570632219, 3910091.745831187348813 ], [ 4973538.514808054082096, 3910073.585759109817445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973520.849065874703228, 3899172.18280127691105 ], [ 4973492.890482288785279, 3899183.052351997233927 ], [ 4973482.572226288728416, 3899157.179047890473157 ], [ 4973510.81884674821049, 3899146.310046622995287 ], [ 4973515.69030574336648, 3899159.064078936818987 ], [ 4973544.513674506917596, 3899147.832104286178946 ], [ 4973546.519854985177517, 3899152.933831622358412 ], [ 4973564.678919891826808, 3899145.686564250383526 ], [ 4973577.860935698263347, 3899179.940471732988954 ], [ 4973531.167279241606593, 3899198.056120303459466 ], [ 4973520.849065874703228, 3899172.18280127691105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973514.968074428848922, 3899530.475606757681817 ], [ 4973491.908158103935421, 3899540.262295201886445 ], [ 4973474.421621576882899, 3899497.989190230611712 ], [ 4973518.810634314082563, 3899479.868958967737854 ], [ 4973533.717771235853434, 3899515.582728208974004 ], [ 4973512.388020249083638, 3899524.2803736012429 ], [ 4973514.968074428848922, 3899530.475606757681817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973463.805801357142627, 3910147.359406156931072 ], [ 4973447.085176947526634, 3910158.97916337987408 ], [ 4973439.621095891110599, 3910148.040681391023099 ], [ 4973456.341723852790892, 3910136.420919600408524 ], [ 4973463.805801357142627, 3910147.359406156931072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973457.798680208623409, 3911460.775012551806867 ], [ 4973475.897037141956389, 3911480.473372535314411 ], [ 4973453.114025984890759, 3911501.184675517491996 ], [ 4973435.014959082938731, 3911481.85046227183193 ], [ 4973457.798680208623409, 3911460.775012551806867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973469.232894548214972, 3900389.734593505505472 ], [ 4973464.026949248276651, 3900401.012526444625109 ], [ 4973477.550955853424966, 3900407.229022727813572 ], [ 4973459.910764176398516, 3900444.336066720075905 ], [ 4973420.777358362451196, 3900426.417678099591285 ], [ 4973443.335443419404328, 3900378.03211171971634 ], [ 4973469.232894548214972, 3900389.734593505505472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975028.582855829037726, 3905660.695214251987636 ], [ 4975067.699537131935358, 3905682.62143378239125 ], [ 4975043.714884380809963, 3905725.176825158298016 ], [ 4975004.310301723890007, 3905703.250063966959715 ], [ 4975028.582855829037726, 3905660.695214251987636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974938.425904585979879, 3899044.618366200476885 ], [ 4974918.248838654719293, 3899052.588936991989613 ], [ 4974922.833086647093296, 3899064.614390813745558 ], [ 4974903.232797197066247, 3899072.221994401887059 ], [ 4974906.957365419715643, 3899082.06094775814563 ], [ 4974877.557324503548443, 3899093.290311573538929 ], [ 4974868.102231541648507, 3899068.510587568860501 ], [ 4974897.502295549958944, 3899057.281213578768075 ], [ 4974886.040546417236328, 3899027.763784846756607 ], [ 4974925.817222652956843, 3899012.549717674031854 ], [ 4974938.425904585979879, 3899044.618366200476885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974861.166582859121263, 3902833.97245059395209 ], [ 4974890.578521054238081, 3902814.732190658338368 ], [ 4974903.499588663689792, 3902833.692802485544235 ], [ 4974910.708407804369926, 3902828.973490960896015 ], [ 4974943.726560357026756, 3902878.561273706611246 ], [ 4974907.105125281959772, 3902902.884916675742716 ], [ 4974861.166582859121263, 3902833.97245059395209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973414.525058059021831, 3899938.106534102000296 ], [ 4973431.578900059685111, 3899906.460289367008954 ], [ 4973449.704894509166479, 3899915.962878416758031 ], [ 4973454.041250681504607, 3899907.596300355158746 ], [ 4973473.31855271011591, 3899917.465272036381066 ], [ 4973451.927610998041928, 3899957.842197491321713 ], [ 4973414.525058059021831, 3899938.106534102000296 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973141.088048441335559, 3898060.121702628675848 ], [ 4973205.077645624056458, 3898035.484470953699201 ], [ 4973221.126845759339631, 3898077.026321931742132 ], [ 4973195.47285829577595, 3898087.172372865490615 ], [ 4973195.185536446049809, 3898086.807687555905432 ], [ 4973157.426061120815575, 3898101.299943539313972 ], [ 4973141.088048441335559, 3898060.121702628675848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974684.931573022156954, 3910215.304217788390815 ], [ 4974697.836891794577241, 3910240.455049575306475 ], [ 4974673.053276348859072, 3910252.786271982360631 ], [ 4974660.435835829004645, 3910227.636024240870029 ], [ 4974684.931573022156954, 3910215.304217788390815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974614.398950304836035, 3899629.130557900760323 ], [ 4974582.424167849123478, 3899631.98013525037095 ], [ 4974577.907777808606625, 3899585.726611633785069 ], [ 4974609.883337681181729, 3899582.512900016736239 ], [ 4974614.398950304836035, 3899629.130557900760323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974574.632739074528217, 3909362.286351379938424 ], [ 4974587.603632254526019, 3909354.665313860401511 ], [ 4974581.577869249507785, 3909344.457640157081187 ], [ 4974615.87905712146312, 3909324.134324742946774 ], [ 4974636.825949207879603, 3909359.49679821357131 ], [ 4974589.26600070297718, 3909387.440546188969165 ], [ 4974574.632739074528217, 3909362.286351379938424 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972834.214621375314891, 3897975.052857740782201 ], [ 4972855.718753962777555, 3898026.072337682824582 ], [ 4972841.305562286637723, 3898032.234879709314555 ], [ 4972843.886614521965384, 3898038.065914259292185 ], [ 4972808.142045742832124, 3898053.290787981823087 ], [ 4972787.785063493065536, 3898004.822455025743693 ], [ 4972814.593176580034196, 3897993.585839634295553 ], [ 4972810.865595140494406, 3897984.839568617753685 ], [ 4972834.214621375314891, 3897975.052857740782201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974467.460800510831177, 3895000.383919835090637 ], [ 4974477.207208974286914, 3895024.435757607221603 ], [ 4974463.657653552480042, 3895029.870873805135489 ], [ 4974479.996943867765367, 3895070.321588775608689 ], [ 4974435.600729803554714, 3895088.076056974008679 ], [ 4974425.281792961061001, 3895062.202453758567572 ], [ 4974420.380486251786351, 3895064.377535489853472 ], [ 4974413.500221192836761, 3895047.613974329084158 ], [ 4974436.852380868047476, 3895037.828672724310309 ], [ 4974427.965074472129345, 3895016.327454801648855 ], [ 4974467.460800510831177, 3895000.383919835090637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974352.94459037296474, 3901202.749222992453724 ], [ 4974404.1776691544801, 3901217.779862177092582 ], [ 4974383.593458520248532, 3901286.924004721455276 ], [ 4974332.360500268638134, 3901271.893404158297926 ], [ 4974352.94459037296474, 3901202.749222992453724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974228.880653179250658, 3909642.712725500576198 ], [ 4974178.444768278859556, 3909669.55913510452956 ], [ 4974164.389232024550438, 3909643.313900004141033 ], [ 4974214.537249982357025, 3909616.466896890196949 ], [ 4974228.880653179250658, 3909642.712725500576198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974221.649272445589304, 3904840.160320868715644 ], [ 4974207.661557634361088, 3904778.230388479307294 ], [ 4974231.572496176697314, 3904772.815547677222639 ], [ 4974236.996950812637806, 3904796.494793311692774 ], [ 4974264.65271410625428, 3904790.359103142283857 ], [ 4974272.93296077568084, 3904826.060331687796861 ], [ 4974262.850283796899021, 3904828.225228284951299 ], [ 4974265.705391875468194, 3904840.611333730630577 ], [ 4974246.691146065481007, 3904845.307537849992514 ], [ 4974244.119674447923899, 3904835.106783066410571 ], [ 4974221.649272445589304, 3904840.160320868715644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974124.127372480928898, 3898058.396177038550377 ], [ 4974119.254568007774651, 3898046.370300105307251 ], [ 4974137.991303129121661, 3898038.760429288260639 ], [ 4974142.003605418838561, 3898048.963965979870409 ], [ 4974165.929115051403642, 3898039.179545117076486 ], [ 4974174.526879085227847, 3898061.044276336673647 ], [ 4974157.231711292639375, 3898067.928699114359915 ], [ 4974162.677678874693811, 3898081.412231686990708 ], [ 4974113.386627470143139, 3898100.97826868109405 ], [ 4974100.202611174434423, 3898067.816506557166576 ], [ 4974124.127372480928898, 3898058.396177038550377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972573.83371726423502, 3913354.385150753892958 ], [ 4972594.60223173443228, 3913332.212698148097843 ], [ 4972631.095959171652794, 3913366.146882746368647 ], [ 4972610.327440653927624, 3913388.3193076136522 ], [ 4972573.83371726423502, 3913354.385150753892958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972486.133021744899452, 3912397.639500083401799 ], [ 4972459.871404238045216, 3912431.817949321120977 ], [ 4972415.028586775995791, 3912397.503984326962382 ], [ 4972418.779941702261567, 3912392.777397464495152 ], [ 4972403.257026846520603, 3912381.095573004800826 ], [ 4972425.479385668411851, 3912351.643106348346919 ], [ 4972486.133021744899452, 3912397.639500083401799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972444.465171677991748, 3907977.353102253284305 ], [ 4972487.780625632964075, 3908061.550210157874972 ], [ 4972457.23140615504235, 3908077.149657718837261 ], [ 4972441.453469748608768, 3908046.896617640275508 ], [ 4972433.095500134862959, 3908051.250281856860965 ], [ 4972420.472842496819794, 3908027.193513092584908 ], [ 4972414.420995645225048, 3908030.09504616772756 ], [ 4972399.21743555366993, 3908000.571390070952475 ], [ 4972444.465171677991748, 3907977.353102253284305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973896.007521098479629, 3904528.552065998315811 ], [ 4973913.522916933521628, 3904554.075589639600366 ], [ 4973887.572617828845978, 3904571.503057186491787 ], [ 4973878.958182446658611, 3904559.105714276898652 ], [ 4973871.17338259331882, 3904564.188309877179563 ], [ 4973856.243145532906055, 3904541.947057673241943 ], [ 4973863.452036106958985, 3904536.86333022871986 ], [ 4973855.412065957672894, 3904525.195382857695222 ], [ 4973901.834428928792477, 3904493.970992262009531 ], [ 4973915.902926046401262, 3904515.118185861036181 ], [ 4973896.007521098479629, 3904528.552065998315811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973898.496134239248931, 3901494.25215050438419 ], [ 4973889.199180768802762, 3901535.744852002710104 ], [ 4973824.429526455700397, 3901521.416968761943281 ], [ 4973833.726384755223989, 3901479.924245211295784 ], [ 4973898.496134239248931, 3901494.25215050438419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973881.415043869055808, 3896539.134052664041519 ], [ 4973845.672882060520351, 3896551.808634675573558 ], [ 4973823.902759251184762, 3896489.86399432644248 ], [ 4973830.243971491232514, 3896487.691619124263525 ], [ 4973826.521494976244867, 3896476.396316835656762 ], [ 4973855.633771819993854, 3896466.257642164360732 ], [ 4973881.415043869055808, 3896539.134052664041519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973683.763076486065984, 3912358.074983978178352 ], [ 4973760.489837127737701, 3912427.410163089167327 ], [ 4973705.676863227970898, 3912487.385067525319755 ], [ 4973628.950133321806788, 3912418.050042341463268 ], [ 4973683.763076486065984, 3912358.074983978178352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973638.31749330367893, 3909976.192615910898894 ], [ 4973645.489382840692997, 3909989.315378333907574 ], [ 4973607.736424335278571, 3910008.904945637565106 ], [ 4973588.803976360708475, 3909973.547186031006277 ], [ 4973623.675147380679846, 3909955.408505447674543 ], [ 4973626.83067166339606, 3909961.240779871121049 ], [ 4973640.663991747424006, 3909953.985097419004887 ], [ 4973649.268985828384757, 3909970.38784945057705 ], [ 4973638.31749330367893, 3909976.192615910898894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973584.808260414749384, 3905373.093552030622959 ], [ 4973593.796340790577233, 3905341.431604792829603 ], [ 4973658.261143338866532, 3905359.763836509548128 ], [ 4973648.985045729205012, 3905391.425201059319079 ], [ 4973584.808260414749384, 3905373.093552030622959 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973594.247006967663765, 3899935.178774308413267 ], [ 4973556.786417435854673, 3899945.301497308537364 ], [ 4973544.203437226824462, 3899899.396574967540801 ], [ 4973591.749977272003889, 3899886.380430919583887 ], [ 4973598.326604484580457, 3899910.789979370310903 ], [ 4973588.240721542388201, 3899913.683380731381476 ], [ 4973594.247006967663765, 3899935.178774308413267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973496.40067455265671, 3902858.958510061260313 ], [ 4973544.280243377201259, 3902820.089608848560601 ], [ 4973564.678256059996784, 3902844.890223049093038 ], [ 4973516.798701710067689, 3902883.759088507387787 ], [ 4973496.40067455265671, 3902858.958510061260313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972981.106655442155898, 3904409.889066855888814 ], [ 4973004.621716124936938, 3904460.548613741993904 ], [ 4972967.442293155938387, 3904477.591212355531752 ], [ 4972943.927177485078573, 3904426.931697468739003 ], [ 4972981.106655442155898, 3904409.889066855888814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971524.8854452483356, 3912418.399670990649611 ], [ 4971529.730200416408479, 3912444.626328147016466 ], [ 4971504.388635471463203, 3912449.312642557080835 ], [ 4971499.543856434524059, 3912423.085989879444242 ], [ 4971524.8854452483356, 3912418.399670990649611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972702.718961663544178, 3903622.102661899290979 ], [ 4972712.766401134431362, 3903638.507806975860149 ], [ 4972752.841835985891521, 3903613.459525499958545 ], [ 4972769.492923561483622, 3903640.073023376520723 ], [ 4972708.660269850865006, 3903677.461988002527505 ], [ 4972681.961001043207943, 3903634.807519688736647 ], [ 4972702.718961663544178, 3903622.102661899290979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972495.623391336761415, 3900324.137742984108627 ], [ 4972498.45133313164115, 3900351.452923868317157 ], [ 4972459.851528695784509, 3900355.384785335045308 ], [ 4972457.023548104800284, 3900328.06960845226422 ], [ 4972495.623391336761415, 3900324.137742984108627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971305.229968380182981, 3903768.028864881955087 ], [ 4971322.242273915559053, 3903756.044227078557014 ], [ 4971336.029972954653203, 3903774.640614117495716 ], [ 4971319.016994568519294, 3903786.989373307675123 ], [ 4971305.229968380182981, 3903768.028864881955087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971312.195989487692714, 3898327.201774553861469 ], [ 4971323.373939411714673, 3898356.717130239587277 ], [ 4971263.423218063078821, 3898379.181576174218208 ], [ 4971241.353172197937965, 3898321.243841079995036 ], [ 4971286.027924533933401, 3898304.576985952910036 ], [ 4971292.045905624516308, 3898320.974041388370097 ], [ 4971287.43482544273138, 3898322.421977201011032 ], [ 4971292.020144526846707, 3898334.810935258865356 ], [ 4971312.195989487692714, 3898327.201774553861469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971189.577250828966498, 3910680.495781348086894 ], [ 4971225.889398360624909, 3910660.171867196913809 ], [ 4971245.688136748969555, 3910695.52958398591727 ], [ 4971209.376021877862513, 3910715.85347183002159 ], [ 4971189.577250828966498, 3910680.495781348086894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971159.201768254861236, 3907349.720166945829988 ], [ 4971176.136646147817373, 3907378.153927085455507 ], [ 4971123.100138837471604, 3907409.370789099950343 ], [ 4971106.164549048058689, 3907381.301192631479353 ], [ 4971159.201768254861236, 3907349.720166945829988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972283.343787153251469, 3911706.492961093783379 ], [ 4972274.703249286860228, 3911708.661347262561321 ], [ 4972268.989222503267229, 3911685.710113345645368 ], [ 4972300.095467027276754, 3911677.758276965469122 ], [ 4972299.236670691519976, 3911675.207713778596371 ], [ 4972318.246437628753483, 3911670.145979957189411 ], [ 4972328.533270644955337, 3911710.58430439978838 ], [ 4972287.058551959693432, 3911721.065339985303581 ], [ 4972283.343787153251469, 3911706.492961093783379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970864.537988719530404, 3894462.956457909196615 ], [ 4970804.002851975150406, 3894485.420813280623406 ], [ 4970793.3948088362813, 3894458.091570622287691 ], [ 4970854.218734699301422, 3894435.263595295604318 ], [ 4970864.537988719530404, 3894462.956457909196615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970796.277393579483032, 3892112.378167879302055 ], [ 4970776.673215985298157, 3892119.988749305717647 ], [ 4970762.33781202416867, 3892082.457088702358305 ], [ 4970781.65392289403826, 3892074.845966219436377 ], [ 4970796.277393579483032, 3892112.378167879302055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970636.367152984254062, 3912182.613967604935169 ], [ 4970657.9992616456002, 3912160.077489917166531 ], [ 4970696.50812772102654, 3912196.197518934495747 ], [ 4970674.875345755368471, 3912219.098098020069301 ], [ 4970636.367152984254062, 3912182.613967604935169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971845.47403453849256, 3901156.765020008198917 ], [ 4971932.155704539269209, 3901159.113127095624804 ], [ 4971930.921335608698428, 3901202.806481754407287 ], [ 4971844.240491922944784, 3901200.094249199610204 ], [ 4971845.47403453849256, 3901156.765020008198917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970512.751636128872633, 3897481.307358873542398 ], [ 4970504.73544713947922, 3897454.711190136149526 ], [ 4970555.745222136378288, 3897439.511256552767009 ], [ 4970568.913207782432437, 3897483.959254838060588 ], [ 4970533.46590870898217, 3897494.454004808329046 ], [ 4970528.313377150334418, 3897476.966325524728745 ], [ 4970512.751636128872633, 3897481.307358873542398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970401.410163756459951, 3898986.781107061542571 ], [ 4970356.731772820465267, 3899006.362470970954746 ], [ 4970342.964216257445514, 3898975.022126398980618 ], [ 4970363.141307414509356, 3898966.319863545708358 ], [ 4970357.690955226309597, 3898954.293609546031803 ], [ 4970382.192305674776435, 3898943.414481090381742 ], [ 4970401.410163756459951, 3898986.781107061542571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971545.746702716685832, 3908348.16304866084829 ], [ 4971564.983179240487516, 3908376.965514077804983 ], [ 4971539.326686379499733, 3908394.031698463950306 ], [ 4971520.09019467420876, 3908365.229251111857593 ], [ 4971545.746702716685832, 3908348.16304866084829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971417.726610478013754, 3907830.491843250580132 ], [ 4971380.83669713512063, 3907849.721995280589908 ], [ 4971365.631220486015081, 3907820.563058170489967 ], [ 4971402.520483206957579, 3907801.697016496676952 ], [ 4971417.726610478013754, 3907830.491843250580132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970124.918797054328024, 3911016.453116874210536 ], [ 4970156.614870644174516, 3911000.853085202630609 ], [ 4970148.009404349140823, 3910983.723178084474057 ], [ 4970173.366699723526835, 3910971.024692823644727 ], [ 4970206.353661553934216, 3911036.992826367728412 ], [ 4970174.657601544633508, 3911052.592799712438136 ], [ 4970170.928336597979069, 3911045.30335179483518 ], [ 4970145.571775070391595, 3911057.637708312366158 ], [ 4970124.918797054328024, 3911016.453116874210536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970134.518046756274998, 3892754.582268316764385 ], [ 4970165.935623520985246, 3892745.536193530540913 ], [ 4970181.395334262400866, 3892798.727135857567191 ], [ 4970149.977152035571635, 3892808.137320490553975 ], [ 4970134.518046756274998, 3892754.582268316764385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971163.907833083532751, 3900784.805602396838367 ], [ 4971163.839531759731472, 3900821.582664592191577 ], [ 4971149.151046928949654, 3900821.919520160648972 ], [ 4971149.220004206523299, 3900784.778328590560704 ], [ 4971163.907833083532751, 3900784.805602396838367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971144.509643803350627, 3892304.918022149242461 ], [ 4971178.817078397609293, 3892291.508950132410973 ], [ 4971194.014021239243448, 3892330.13482539029792 ], [ 4971159.419217123650014, 3892343.179215990938246 ], [ 4971144.509643803350627, 3892304.918022149242461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971116.607632717117667, 3891971.324349239002913 ], [ 4971099.662245512008667, 3891943.255015956237912 ], [ 4971155.326742578297853, 3891909.494318475015461 ], [ 4971186.920795106329024, 3891961.259255180135369 ], [ 4971162.69409438688308, 3891975.779414280317724 ], [ 4971148.332794537767768, 3891952.448520499747247 ], [ 4971116.607632717117667, 3891971.324349239002913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971015.236609044484794, 3903307.956724325660616 ], [ 4970967.66234194021672, 3903339.912207576446235 ], [ 4970953.590235503390431, 3903319.13070249883458 ], [ 4970949.84191825427115, 3903321.672688110731542 ], [ 4970921.12237005494535, 3903279.744510301854461 ], [ 4970949.379111756570637, 3903260.497802899684757 ], [ 4970976.374861255288124, 3903300.238033958245069 ], [ 4970999.441422147676349, 3903284.623086951673031 ], [ 4971015.236609044484794, 3903307.956724325660616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971017.622733477503061, 3899219.865969511214644 ], [ 4971059.103412914089859, 3899216.301505662035197 ], [ 4971060.510414471849799, 3899234.146494744811207 ], [ 4971098.822931402362883, 3899230.576221090275794 ], [ 4971097.416630396619439, 3899212.367101052310318 ], [ 4971114.98815572168678, 3899210.943173814099282 ], [ 4971115.270764815621078, 3899213.856740010436624 ], [ 4971137.451181886717677, 3899212.077248282264918 ], [ 4971141.966121632605791, 3899262.3356021665968 ], [ 4971126.410719037055969, 3899263.763252941891551 ], [ 4971125.84753137268126, 3899256.84373316494748 ], [ 4971037.701383179984987, 3899264.327044423203915 ], [ 4971038.827803258784115, 3899278.166080384515226 ], [ 4971022.984402636066079, 3899279.59325750824064 ], [ 4971017.622733477503061, 3899219.865969511214644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969651.593408181332052, 3899207.175668533425778 ], [ 4969638.587565707974136, 3899232.277234722860157 ], [ 4969647.220096162520349, 3899236.662339843343943 ], [ 4969637.392247527837753, 3899256.307676461990923 ], [ 4969596.243718602694571, 3899235.478207670152187 ], [ 4969608.672837781719863, 3899210.739713563583791 ], [ 4969600.040292719379067, 3899206.35462089907378 ], [ 4969610.444814870133996, 3899186.346178605221212 ], [ 4969651.593408181332052, 3899207.175668533425778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970897.027591662481427, 3898239.404645011760294 ], [ 4970860.711710778996348, 3898252.810402418486774 ], [ 4970848.960520938038826, 3898221.473534096498042 ], [ 4970858.472037113271654, 3898217.849787038285285 ], [ 4970850.734357671812177, 3898196.715966594405472 ], [ 4970875.232564311474562, 3898188.022065113764256 ], [ 4970884.403624266386032, 3898212.799839490093291 ], [ 4970894.491196800023317, 3898209.177168919239193 ], [ 4970899.937425673939288, 3898223.388299051206559 ], [ 4970892.155395162291825, 3898226.286965542472899 ], [ 4970897.027591662481427, 3898239.404645011760294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970833.308258499018848, 3903738.751754206139594 ], [ 4970847.091600096784532, 3903759.896800115704536 ], [ 4970822.585040187463164, 3903775.873356354888529 ], [ 4970808.514394264668226, 3903754.363661767914891 ], [ 4970833.308258499018848, 3903738.751754206139594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970663.452495539560914, 3896822.144945149775594 ], [ 4970671.738681313581765, 3896858.573149885516614 ], [ 4970656.466605835594237, 3896861.82224256452173 ], [ 4970655.895882623270154, 3896858.908155845012516 ], [ 4970633.419497489929199, 3896863.964669615961611 ], [ 4970625.992027741856873, 3896830.451091686729342 ], [ 4970663.452495539560914, 3896822.144945149775594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970632.968423847109079, 3908236.501983040478081 ], [ 4970659.667680722661316, 3908278.426273805554956 ], [ 4970631.130501350387931, 3908296.5804229862988 ], [ 4970604.431218140758574, 3908254.656160110142082 ], [ 4970632.968423847109079, 3908236.501983040478081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970623.759979344904423, 3912776.856153671629727 ], [ 4970644.234101618640125, 3912757.594728379510343 ], [ 4970675.264928971417248, 3912789.695527680683881 ], [ 4970647.869929480366409, 3912815.498601459898055 ], [ 4970627.470139415934682, 3912794.341369089670479 ], [ 4970634.391019183211029, 3912787.799692157190293 ], [ 4970623.759979344904423, 3912776.856153671629727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969388.210872422903776, 3910535.924272504635155 ], [ 4969420.744644535705447, 3910534.8901865365915 ], [ 4969422.377980221062899, 3910587.328226666897535 ], [ 4969389.844271533191204, 3910588.362310688942671 ], [ 4969388.210872422903776, 3910535.924272504635155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969368.694095799699426, 3905518.512472575064749 ], [ 4969387.072407940402627, 3905546.58352091955021 ], [ 4969302.894613585434854, 3905601.052597614936531 ], [ 4969284.51625107601285, 3905572.981605900917202 ], [ 4969368.694095799699426, 3905518.512472575064749 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969345.394201004877687, 3902609.061998097691685 ], [ 4969374.980202968232334, 3902651.354151759296656 ], [ 4969331.729634027928114, 3902681.499605084769428 ], [ 4969316.792639126069844, 3902660.353289936669171 ], [ 4969309.00750486459583, 3902665.80133103299886 ], [ 4969294.070483337156475, 3902644.655028713867068 ], [ 4969345.394201004877687, 3902609.061998097691685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969256.347761429846287, 3910862.67953652376309 ], [ 4969303.276868359185755, 3910860.942769628483802 ], [ 4969305.20676642563194, 3910908.647617034614086 ], [ 4969285.341181197203696, 3910909.340356639120728 ], [ 4969285.889613132923841, 3910924.63491468410939 ], [ 4969258.82619000133127, 3910925.678938117809594 ], [ 4969256.347761429846287, 3910862.67953652376309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970497.680028186179698, 3893287.237376024015248 ], [ 4970560.808293430134654, 3893265.869485279079527 ], [ 4970568.258221527561545, 3893287.730887832585722 ], [ 4970552.11589402332902, 3893293.163213847670704 ], [ 4970555.269380401819944, 3893301.54396303743124 ], [ 4970507.995424072258174, 3893317.478977287188172 ], [ 4970497.680028186179698, 3893287.237376024015248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970459.084657565690577, 3893598.13284921227023 ], [ 4970378.942288538441062, 3893629.665495547000319 ], [ 4970364.03166030254215, 3893591.768833626993001 ], [ 4970444.173458248376846, 3893560.600271322298795 ], [ 4970459.084657565690577, 3893598.13284921227023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970419.834347773343325, 3903556.65471124695614 ], [ 4970433.042841228656471, 3903577.434358737897128 ], [ 4970439.673407378606498, 3903573.441051664762199 ], [ 4970451.159411290660501, 3903591.304506038315594 ], [ 4970419.157812880352139, 3903611.637281400151551 ], [ 4970394.175324723124504, 3903572.993678633123636 ], [ 4970419.834347773343325, 3903556.65471124695614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970316.437016936019063, 3899149.027915313839912 ], [ 4970337.473356761038303, 3899142.876112543512136 ], [ 4970350.642188680358231, 3899186.595790987368673 ], [ 4970327.012426923029125, 3899193.47110846452415 ], [ 4970330.448643710464239, 3899204.401289373170584 ], [ 4970307.682943305000663, 3899211.278201714158058 ], [ 4970294.514718214981258, 3899167.194414687342942 ], [ 4970319.873243770562112, 3899159.958094591740519 ], [ 4970316.437016936019063, 3899149.027915313839912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970314.071098078042269, 3897289.411682231817394 ], [ 4970328.391027235426009, 3897334.225790380965918 ], [ 4970287.178305258974433, 3897347.259246887639165 ], [ 4970276.294797843322158, 3897313.37532203970477 ], [ 4970294.452224468812346, 3897307.218239024747163 ], [ 4970291.01441899407655, 3897297.016332236118615 ], [ 4970314.071098078042269, 3897289.411682231817394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970268.752083407714963, 3898606.386995014268905 ], [ 4970212.546397345140576, 3898629.22474581329152 ], [ 4970190.466339137405157, 3898575.657411350402981 ], [ 4970226.783438965678215, 3898561.158359197434038 ], [ 4970238.82786947209388, 3898589.946584706194699 ], [ 4970258.715867256745696, 3898581.971978249493986 ], [ 4970268.752083407714963, 3898606.386995014268905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968408.740654240362346, 3897441.484795781318098 ], [ 4968449.370496094226837, 3897431.724604894407094 ], [ 4968458.521028702147305, 3897469.610172507818788 ], [ 4968417.891240718774498, 3897479.370349775999784 ], [ 4968408.740654240362346, 3897441.484795781318098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968352.625430538319051, 3902671.026556441094726 ], [ 4968378.763598172925413, 3902709.67026019282639 ], [ 4968362.329814889468253, 3902720.565373927820474 ], [ 4968359.170377846807241, 3902715.82613323489204 ], [ 4968331.204176543280482, 3902734.347802589181811 ], [ 4968304.778626128099859, 3902695.33951047481969 ], [ 4968324.67258167732507, 3902681.901506019290537 ], [ 4968328.11872932035476, 3902687.369506657589227 ], [ 4968352.625430538319051, 3902671.026556441094726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968253.820194577798247, 3892640.16905229119584 ], [ 4968295.878535168245435, 3892641.3350047795102 ], [ 4968294.048721019178629, 3892699.228275999426842 ], [ 4968287.423442505300045, 3892698.852554704528302 ], [ 4968286.812236704863608, 3892718.87856770073995 ], [ 4968249.075263394974172, 3892717.720183371100575 ], [ 4968249.996168038807809, 3892685.314332969952375 ], [ 4968238.473467028699815, 3892684.930062388069928 ], [ 4968239.087183222174644, 3892663.447538099717349 ], [ 4968253.20264642406255, 3892663.836341829970479 ], [ 4968253.820194577798247, 3892640.16905229119584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968186.293619925156236, 3913481.090281795710325 ], [ 4968162.969916770234704, 3913485.055007500573993 ], [ 4968152.143743541091681, 3913420.584500593598932 ], [ 4968175.467501030303538, 3913416.619765656534582 ], [ 4968186.293619925156236, 3913481.090281795710325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969380.803806177340448, 3905348.848851054906845 ], [ 4969427.476800297386944, 3905334.731358786579221 ], [ 4969436.351601154543459, 3905363.513663784135133 ], [ 4969389.966599707491696, 3905377.631656745448709 ], [ 4969380.803806177340448, 3905348.848851054906845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969310.216262037865818, 3891357.026787952054292 ], [ 4969358.954938462935388, 3891329.076061090454459 ], [ 4969400.313229253515601, 3891400.51928716013208 ], [ 4969351.57463894598186, 3891428.469940199516714 ], [ 4969310.216262037865818, 3891357.026787952054292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969173.288730362430215, 3892533.646098793018609 ], [ 4969149.650833891704679, 3892541.978934588376433 ], [ 4969164.555323886685073, 3892584.608558683656156 ], [ 4969140.053221612237394, 3892592.939862885512412 ], [ 4969134.895590026862919, 3892577.273139096796513 ], [ 4969127.112118364311755, 3892580.172306926455349 ], [ 4969107.623485619202256, 3892523.333521790802479 ], [ 4969162.97023216728121, 3892504.133278638590127 ], [ 4969173.288730362430215, 3892533.646098793018609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969142.06386358756572, 3898740.176364667247981 ], [ 4969146.410745427943766, 3898725.254776879679412 ], [ 4969127.986628358252347, 3898720.124130844138563 ], [ 4969134.365206945687532, 3898696.467038556933403 ], [ 4969169.486648993566632, 3898705.997013048268855 ], [ 4969171.805732181295753, 3898697.626155877951533 ], [ 4969191.381932197138667, 3898702.758886746130884 ], [ 4969188.191642992198467, 3898715.133619318250567 ], [ 4969200.282587157562375, 3898718.432357250247151 ], [ 4969190.715618311427534, 3898753.371779980603606 ], [ 4969142.06386358756572, 3898740.176364667247981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969102.365923301316798, 3898712.795903730671853 ], [ 4969075.304461768828332, 3898705.829267555847764 ], [ 4969073.273428181186318, 3898714.200645548757166 ], [ 4969052.257767264731228, 3898708.701310538686812 ], [ 4969063.858195753768086, 3898663.933945145923644 ], [ 4969092.071131502278149, 3898671.266749144066125 ], [ 4969093.812210305593908, 3898663.98724684631452 ], [ 4969113.38844963349402, 3898669.119920814875513 ], [ 4969102.365923301316798, 3898712.795903730671853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967828.635902794077992, 3895616.184118362143636 ], [ 4967790.884065286256373, 3895625.950223967432976 ], [ 4967784.874686730094254, 3895602.999669509474188 ], [ 4967794.960926092229784, 3895600.468226182740182 ], [ 4967790.383611984550953, 3895582.253832312300801 ], [ 4967817.761205147951841, 3895575.018658093176782 ], [ 4967828.635902794077992, 3895616.184118362143636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968963.294214317575097, 3900149.406564352568239 ], [ 4968975.797335065901279, 3900082.428773269057274 ], [ 4969001.133291974663734, 3900087.207469425629824 ], [ 4968997.063068547286093, 3900108.683930650353432 ], [ 4969042.552790679968894, 3900117.139780629891902 ], [ 4969034.120405327528715, 3900162.276955610141158 ], [ 4969013.39063760638237, 3900158.598804503679276 ], [ 4969015.426722025498748, 3900147.314380844123662 ], [ 4968986.347425215877593, 3900142.164891699329019 ], [ 4968984.023995920084417, 3900153.084676797036082 ], [ 4968963.294214317575097, 3900149.406564352568239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967685.601010021753609, 3913206.756015182472765 ], [ 4967664.295333590358496, 3913208.90399536350742 ], [ 4967661.748598797246814, 3913183.410265769809484 ], [ 4967683.342159045860171, 3913181.262781171128154 ], [ 4967685.601010021753609, 3913206.756015182472765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967652.793674631975591, 3903031.755242884159088 ], [ 4967630.546888602897525, 3903073.956034521106631 ], [ 4967568.112794841639698, 3903041.440696553792804 ], [ 4967590.359509479254484, 3902999.239854067098349 ], [ 4967652.793674631975591, 3903031.755242884159088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967645.381864356808364, 3901653.507221199106425 ], [ 4967669.50802085082978, 3901691.054342557210475 ], [ 4967643.848897565156221, 3901707.395917430054396 ], [ 4967649.880902896635234, 3901716.509598405566067 ], [ 4967626.528221104294062, 3901731.398649328388274 ], [ 4967596.370014521293342, 3901684.737895429134369 ], [ 4967645.381864356808364, 3901653.507221199106425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967534.807366262190044, 3898301.132856332231313 ], [ 4967525.658953960053623, 3898261.426940117031336 ], [ 4967572.048965315334499, 3898250.947078682016581 ], [ 4967566.902811844833195, 3898228.726284119766206 ], [ 4967628.564458490349352, 3898214.631540921516716 ], [ 4967633.138914334587753, 3898234.302451054565609 ], [ 4967644.952296894043684, 3898231.773929674178362 ], [ 4967652.383716916665435, 3898264.922582804225385 ], [ 4967663.333016828633845, 3898262.39257777063176 ], [ 4967667.907438989728689, 3898282.06349438149482 ], [ 4967585.500715125352144, 3898300.491937306243926 ], [ 4967583.214104017242789, 3898290.292356909718364 ], [ 4967534.807366262190044, 3898301.132856332231313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968649.000896665267646, 3899868.470082952640951 ], [ 4968605.601681774482131, 3899980.909854049794376 ], [ 4968581.137906968593597, 3899971.399372827727348 ], [ 4968613.83266575820744, 3899886.250471158884466 ], [ 4968576.704862362705171, 3899871.983986543957144 ], [ 4968586.541972474195063, 3899846.512187878601253 ], [ 4968604.962211578153074, 3899853.463112131226808 ], [ 4968605.252784450538456, 3899852.007102834526449 ], [ 4968649.000896665267646, 3899868.470082952640951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968504.996956197544932, 3898558.076148111373186 ], [ 4968508.977384821511805, 3898587.577679153066128 ], [ 4968462.018581261858344, 3898594.049495765473694 ], [ 4968458.605189329944551, 3898569.646788022480905 ], [ 4968468.400441001169384, 3898568.207473758608103 ], [ 4968464.988970393314958, 3898542.712378865573555 ], [ 4968509.930438674986362, 3898536.965280418284237 ], [ 4968512.48741015791893, 3898556.996927985455841 ], [ 4968504.996956197544932, 3898558.076148111373186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968406.08985207695514, 3906173.699452739208937 ], [ 4968434.628412640653551, 3906155.178833596408367 ], [ 4968453.007901228964329, 3906182.885123464744538 ], [ 4968424.468718057498336, 3906201.769853990990669 ], [ 4968406.08985207695514, 3906173.699452739208937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967279.759859465993941, 3899227.405849639326334 ], [ 4967246.620878161862493, 3899237.544761960860342 ], [ 4967234.879617981612682, 3899198.198615796398371 ], [ 4967268.018019863404334, 3899188.423818310257047 ], [ 4967279.759859465993941, 3899227.405849639326334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966948.354431417770684, 3913391.19973904825747 ], [ 4966927.338680155575275, 3913392.256396891083568 ], [ 4966925.668470299802721, 3913358.753293068613857 ], [ 4966946.396385782398283, 3913357.696144276764244 ], [ 4966948.354431417770684, 3913391.19973904825747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966958.095440419390798, 3895473.043477719649673 ], [ 4966984.309553669765592, 3895472.359804956242442 ], [ 4966986.217511408030987, 3895536.085685020312667 ], [ 4966960.00346024427563, 3895536.769355956930667 ], [ 4966958.095440419390798, 3895473.043477719649673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966907.28917090408504, 3898928.547996893059462 ], [ 4966872.428044893778861, 3898935.043143075890839 ], [ 4966859.006814897060394, 3898866.92804286070168 ], [ 4966893.868644272908568, 3898860.068750529550016 ], [ 4966907.28917090408504, 3898928.547996893059462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966821.83343050442636, 3898538.419708595611155 ], [ 4966838.988064487464726, 3898613.095448563341051 ], [ 4966806.717490535229445, 3898620.3233334091492 ], [ 4966789.562154675833881, 3898546.011742656119168 ], [ 4966821.83343050442636, 3898538.419708595611155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967887.965426559560001, 3902593.020414125639945 ], [ 4967926.308775970712304, 3902568.690212333574891 ], [ 4967948.997625193558633, 3902604.050325702875853 ], [ 4967910.654305523261428, 3902628.380495647899806 ], [ 4967887.965426559560001, 3902593.020414125639945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967876.139749500900507, 3895298.381552138831466 ], [ 4967824.55953109357506, 3895308.851886428892612 ], [ 4967818.560832966119051, 3895279.711149062495679 ], [ 4967869.853049146942794, 3895269.240303879603744 ], [ 4967876.139749500900507, 3895298.381552138831466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967818.409441997297108, 3895367.101922911126167 ], [ 4967759.629273369908333, 3895376.83165145246312 ], [ 4967754.497834675014019, 3895345.871781209949404 ], [ 4967813.278069088235497, 3895336.142041633371264 ], [ 4967818.409441997297108, 3895367.101922911126167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967801.164704401046038, 3904324.313247693702579 ], [ 4967825.924736214801669, 3904326.905069405212998 ], [ 4967823.869267105124891, 3904349.841777835506946 ], [ 4967798.821297768503428, 3904347.249459190294147 ], [ 4967801.164704401046038, 3904324.313247693702579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967591.577674640342593, 3904797.685859479010105 ], [ 4967570.528813820332289, 3904814.035480915103108 ], [ 4967551.278594650328159, 3904789.241371746174991 ], [ 4967572.327463103458285, 3904772.891735482960939 ], [ 4967591.577674640342593, 3904797.685859479010105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966074.26899075973779, 3899145.623921582475305 ], [ 4966127.812274387106299, 3899162.099123689346015 ], [ 4966124.916327517479658, 3899171.561671344097704 ], [ 4966144.779557366855443, 3899177.42092378763482 ], [ 4966136.960615367628634, 3899202.896972763817757 ], [ 4966063.554789298214018, 3899180.198415820021182 ], [ 4966074.26899075973779, 3899145.623921582475305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966056.830658931285143, 3898030.628841472789645 ], [ 4966028.89879443962127, 3898026.576865687500685 ], [ 4966026.567288484424353, 3898042.958825381472707 ], [ 4966002.666584732010961, 3898039.641852170694619 ], [ 4966005.289134119637311, 3898021.439725763630122 ], [ 4965983.404592674225569, 3898018.126126859337091 ], [ 4965988.066346853971481, 3897986.090458507649601 ], [ 4966061.783560335636139, 3897996.773021596483886 ], [ 4966056.830658931285143, 3898030.628841472789645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965974.556648530066013, 3891563.193735548760742 ], [ 4965951.147660846821964, 3891607.214350448921323 ], [ 4965921.787382800132036, 3891591.872154380660504 ], [ 4965945.196335647255182, 3891547.851514311041683 ], [ 4965974.556648530066013, 3891563.193735548760742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965882.441204733215272, 3894814.711002015508711 ], [ 4965897.076658467762172, 3894848.235188613645732 ], [ 4965858.160124620422721, 3894865.284653800074011 ], [ 4965843.524631740525365, 3894831.760488050524145 ], [ 4965882.441204733215272, 3894814.711002015508711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967387.973378716968, 3905480.446117012295872 ], [ 4967406.063961350359023, 3905509.607706790789962 ], [ 4967334.001271469518542, 3905553.908072354737669 ], [ 4967318.20796493254602, 3905528.391784064471722 ], [ 4967332.331672188825905, 3905520.040975902229548 ], [ 4967330.034349162131548, 3905516.395720947999507 ], [ 4967387.973378716968, 3905480.446117012295872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967182.087929913774133, 3905987.692827401217073 ], [ 4967195.555777826346457, 3906025.949674361851066 ], [ 4967166.744307421147823, 3906036.096112519036978 ], [ 4967153.276423649862409, 3905997.839279758743942 ], [ 4967182.087929913774133, 3905987.692827401217073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965332.42212294228375, 3911559.459076805505902 ], [ 4965310.799382560886443, 3911578.722647041548043 ], [ 4965289.24770453106612, 3911554.654541497584432 ], [ 4965310.870448744855821, 3911535.390954222995788 ], [ 4965332.42212294228375, 3911559.459076805505902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965349.017225542105734, 3898286.169810842256993 ], [ 4965355.409308092668653, 3898252.316218430642039 ], [ 4965390.825469603762031, 3898258.928694151807576 ], [ 4965384.145320632494986, 3898292.781805347651243 ], [ 4965349.017225542105734, 3898286.169810842256993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966284.929177292622626, 3891335.767422695178539 ], [ 4966319.170709716156125, 3891360.949662904255092 ], [ 4966287.119897531345487, 3891403.863110856153071 ], [ 4966260.935364464297891, 3891384.520453374367207 ], [ 4966280.570506613701582, 3891357.971956677269191 ], [ 4966272.513528371229768, 3891352.132408338133246 ], [ 4966284.929177292622626, 3891335.767422695178539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966120.450354270637035, 3894945.101339107844979 ], [ 4966136.235851315781474, 3894979.719966324977577 ], [ 4966094.435731429606676, 3894998.584922061301768 ], [ 4966078.650191757827997, 3894963.966318995691836 ], [ 4966120.450354270637035, 3894945.101339107844979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964856.989745050668716, 3907210.578785358928144 ], [ 4964815.499805037863553, 3907227.989812843967229 ], [ 4964818.367272589355707, 3907235.277099424507469 ], [ 4964805.690198018215597, 3907240.354393151123077 ], [ 4964789.340875376947224, 3907201.729918942321092 ], [ 4964843.796463494189084, 3907178.877905903849751 ], [ 4964856.989745050668716, 3907210.578785358928144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965866.541513863950968, 3908379.643379413988441 ], [ 4965888.181134372018278, 3908352.005278841592371 ], [ 4965903.995914527215064, 3908364.412050024140626 ], [ 4965919.864558522589505, 3908344.411159659270197 ], [ 4965952.931843373924494, 3908370.319537081290036 ], [ 4965925.521760483272374, 3908405.230633531697094 ], [ 4965916.320587484166026, 3908397.932692989706993 ], [ 4965906.222378467209637, 3908410.660532955545932 ], [ 4965866.541513863950968, 3908379.643379413988441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964692.948276151902974, 3895581.803325333166867 ], [ 4964734.997446831315756, 3895585.876735837198794 ], [ 4964731.777628695592284, 3895617.550777263008058 ], [ 4964689.728507101535797, 3895613.477371712680906 ], [ 4964692.948276151902974, 3895581.803325333166867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964606.846153101883829, 3893958.376665886957198 ], [ 4964642.846648818813264, 3893963.532556610181928 ], [ 4964640.223460000939667, 3893982.463028357829899 ], [ 4964604.222989147529006, 3893977.307141081430018 ], [ 4964606.846153101883829, 3893958.376665886957198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964473.604465276934206, 3900681.088274209760129 ], [ 4964491.704970848746598, 3900708.063040299341083 ], [ 4964454.80149107426405, 3900732.764559195376933 ], [ 4964436.700965227559209, 3900705.789817564189434 ], [ 4964473.604465276934206, 3900681.088274209760129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964463.820518495514989, 3897451.603117244318128 ], [ 4964469.058964464813471, 3897418.111607348546386 ], [ 4964535.290071757510304, 3897428.413811571896076 ], [ 4964530.051545211113989, 3897461.905308755114675 ], [ 4964463.820518495514989, 3897451.603117244318128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964451.349369492381811, 3898042.565677967853844 ], [ 4964441.783073181286454, 3898080.783936615567654 ], [ 4964411.264051530510187, 3898073.452316329814494 ], [ 4964420.830891838297248, 3898034.869918099138886 ], [ 4964451.349369492381811, 3898042.565677967853844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965545.101785255596042, 3908630.362732672598213 ], [ 4965510.210978722199798, 3908662.713000095449388 ], [ 4965490.380409169010818, 3908641.196541002951562 ], [ 4965524.983306830748916, 3908608.845773817505687 ], [ 4965545.101785255596042, 3908630.362732672598213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964404.422973984852433, 3901975.097055604215711 ], [ 4964408.178459516726434, 3901967.820472492836416 ], [ 4964396.668454274535179, 3901961.975900349207222 ], [ 4964400.713092928752303, 3901953.971519114915282 ], [ 4964386.037591953761876, 3901946.665346533525735 ], [ 4964396.438929067924619, 3901925.562463977839798 ], [ 4964445.068499234504998, 3901950.401465946342796 ], [ 4964426.579598547890782, 3901986.420693815220147 ], [ 4964404.422973984852433, 3901975.097055604215711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965162.565525324083865, 3901872.912012249697 ], [ 4965191.355093414895236, 3901878.421028399374336 ], [ 4965184.383333555422723, 3901915.186829607002437 ], [ 4965155.305818868800998, 3901909.67735033435747 ], [ 4965162.565525324083865, 3901872.912012249697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965158.323310481384397, 3899533.731242126319557 ], [ 4965168.645262488164008, 3899562.150259823538363 ], [ 4965124.553617656230927, 3899578.09997666766867 ], [ 4965113.943615356460214, 3899549.680505596101284 ], [ 4965158.323310481384397, 3899533.731242126319557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965126.265406602993608, 3902057.831119688693434 ], [ 4965132.311860549263656, 3902058.569253265392035 ], [ 4965135.222609728574753, 3902039.63920885277912 ], [ 4965174.378802536055446, 3902045.529268388170749 ], [ 4965166.515789094381034, 3902099.043634680099785 ], [ 4965121.025243662297726, 3902092.414983803406358 ], [ 4965126.265406602993608, 3902057.831119688693434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965119.6832679156214, 3897444.654681798070669 ], [ 4965088.582891141064465, 3897440.234384988434613 ], [ 4965100.528848779387772, 3897356.504038895480335 ], [ 4965131.629320531152189, 3897360.9243493094109 ], [ 4965119.6832679156214, 3897444.654681798070669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964027.786552701145411, 3894163.181864721234888 ], [ 4964021.108857887797058, 3894195.942848535254598 ], [ 4963954.298079559579492, 3894182.72799092438072 ], [ 4963961.849155854433775, 3894144.142314841039479 ], [ 4964013.973209585063159, 3894154.420792007818818 ], [ 4964012.811671287752688, 3894160.245008050929755 ], [ 4964027.786552701145411, 3894163.181864721234888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964012.599984093569219, 3898095.755292813759297 ], [ 4964046.293165207840502, 3898099.450215745251626 ], [ 4964043.663834021426737, 3898122.750338894780725 ], [ 4964036.752389198169112, 3898122.01107648992911 ], [ 4964034.417468960396945, 3898141.306241236627102 ], [ 4964007.923805512487888, 3898138.351044435519725 ], [ 4964012.599984093569219, 3898095.755292813759297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963958.413708664476871, 3896669.009074359200895 ], [ 4963972.581527161411941, 3896635.167543211486191 ], [ 4964004.532661379314959, 3896648.691135993227363 ], [ 4963990.365388670936227, 3896682.168521963991225 ], [ 4963958.413708664476871, 3896669.009074359200895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964761.971966246142983, 3894047.474766683299094 ], [ 4964770.393752599135041, 3894005.613567471969873 ], [ 4964796.311141043901443, 3894011.117471549194306 ], [ 4964787.88931601587683, 3894052.978662779554725 ], [ 4964761.971966246142983, 3894047.474766683299094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964738.426047726534307, 3900231.814479952678084 ], [ 4964711.868573445826769, 3900269.641074118670076 ], [ 4964687.991464803926647, 3900252.852479077875614 ], [ 4964714.548921957612038, 3900215.025861694011837 ], [ 4964738.426047726534307, 3900231.814479952678084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963823.243078892119229, 3893263.094686570111662 ], [ 4963816.538315812125802, 3893312.969714512117207 ], [ 4963777.656024154275656, 3893307.810375017579645 ], [ 4963783.486690830439329, 3893264.124144083820283 ], [ 4963799.327480804175138, 3893266.333983545657247 ], [ 4963800.201509891077876, 3893260.145177491009235 ], [ 4963823.243078892119229, 3893263.094686570111662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964686.996374096721411, 3901937.682688836939633 ], [ 4964640.050231530331075, 3901940.51989854266867 ], [ 4964636.964115300215781, 3901889.900751969311386 ], [ 4964655.396906956098974, 3901888.838123925961554 ], [ 4964654.832111001014709, 3901881.918728994205594 ], [ 4964683.345557284541428, 3901880.144141439814121 ], [ 4964686.996374096721411, 3901937.682688836939633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964494.507736274041235, 3902187.894194593187422 ], [ 4964524.144630066119134, 3902203.599521474447101 ], [ 4964506.235275007784367, 3902237.434848674573004 ], [ 4964457.606866848655045, 3902212.231601933017373 ], [ 4964470.895001081749797, 3902186.763817418832332 ], [ 4964489.885969868861139, 3902196.62589574046433 ], [ 4964494.507736274041235, 3902187.894194593187422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964283.610187431797385, 3904764.510856649372727 ], [ 4964271.481724918819964, 3904785.975183567963541 ], [ 4964279.53743365034461, 3904790.357657306361943 ], [ 4964246.616324379108846, 3904849.294234706554562 ], [ 4964204.324471103027463, 3904825.922195245046169 ], [ 4964217.319051615893841, 3904803.002697223797441 ], [ 4964192.289201168343425, 3904789.12569791637361 ], [ 4964204.70729908067733, 3904766.569404378067702 ], [ 4964232.326418931595981, 3904781.907081675250083 ], [ 4964251.963799417950213, 3904746.617762847803533 ], [ 4964283.610187431797385, 3904764.510856649372727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964266.34552798140794, 3897199.308635232970119 ], [ 4964270.989056061021984, 3897177.468288370873779 ], [ 4964297.190938065759838, 3897183.3363111699 ], [ 4964292.547972765751183, 3897204.812524873763323 ], [ 4964266.34552798140794, 3897199.308635232970119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964235.855134327895939, 3902035.636733283288777 ], [ 4964241.342543107457459, 3902025.813982035033405 ], [ 4964271.265997940674424, 3902042.611878488678485 ], [ 4964252.493489122949541, 3902076.081858734134585 ], [ 4964204.444009398110211, 3902048.695215529296547 ], [ 4964217.728490866720676, 3902025.412086927331984 ], [ 4964235.855134327895939, 3902035.636733283288777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964121.296891474165022, 3892246.192784966900945 ], [ 4964117.235789015889168, 3892263.664481224026531 ], [ 4964085.557137170806527, 3892256.695545945782214 ], [ 4964089.618220064789057, 3892239.223844977095723 ], [ 4964121.296891474165022, 3892246.192784966900945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963906.865105408243835, 3903739.245038466528058 ], [ 4963904.234119286760688, 3903764.00177492806688 ], [ 4963879.185231922194362, 3903761.413110690191388 ], [ 4963881.816195210441947, 3903736.656371816527098 ], [ 4963906.865105408243835, 3903739.245038466528058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963903.60529921296984, 3904160.17542886454612 ], [ 4963900.775395633652806, 3904128.855658016633242 ], [ 4963947.144028714857996, 3904124.559717086143792 ], [ 4963949.973878724500537, 3904155.879492734093219 ], [ 4963903.60529921296984, 3904160.17542886454612 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963890.69003704097122, 3900321.488735232967883 ], [ 4963923.794033887796104, 3900331.736924787517637 ], [ 4963913.951695431955159, 3900363.400637036655098 ], [ 4963880.847156322561204, 3900353.516588821541518 ], [ 4963890.69003704097122, 3900321.488735232967883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962879.78132252022624, 3897173.457030100747943 ], [ 4962831.677730408497155, 3897174.474962389096618 ], [ 4962830.908817812800407, 3897112.93587057525292 ], [ 4962872.387128125876188, 3897112.271806619130075 ], [ 4962872.923731030896306, 3897137.761709293816239 ], [ 4962885.30926719494164, 3897137.78089083917439 ], [ 4962885.564025984145701, 3897159.264931959100068 ], [ 4962879.515280600637197, 3897159.255563457030803 ], [ 4962879.78132252022624, 3897173.457030100747943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962662.09549576882273, 3899371.736752823460847 ], [ 4962706.122546389698982, 3899396.929599729832262 ], [ 4962690.816951924003661, 3899423.487493207212538 ], [ 4962646.789930576458573, 3899398.294670982751995 ], [ 4962662.09549576882273, 3899371.736752823460847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963805.982268872670829, 3893793.967213843483478 ], [ 4963773.980407143011689, 3893810.302374874707311 ], [ 4963756.749668460339308, 3893776.411137067712843 ], [ 4963788.750983785837889, 3893760.440083837136626 ], [ 4963805.982268872670829, 3893793.967213843483478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963760.414278334006667, 3900565.977951042819768 ], [ 4963804.452179435640574, 3900582.433508039917797 ], [ 4963793.461536958813667, 3900611.9106684634462 ], [ 4963749.423677513375878, 3900595.455129183363169 ], [ 4963760.414278334006667, 3900565.977951042819768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963745.119851025752723, 3901495.942970821633935 ], [ 4963765.636771508492529, 3901451.915621552150697 ], [ 4963796.429166054353118, 3901466.165442738682032 ], [ 4963776.200194763019681, 3901510.193224566057324 ], [ 4963745.119851025752723, 3901495.942970821633935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963683.638095006346703, 3903955.549625610932708 ], [ 4963727.976863336749375, 3903960.353379112202674 ], [ 4963724.46778776217252, 3903994.212026156950742 ], [ 4963680.129074699245393, 3903989.408278342336416 ], [ 4963683.638095006346703, 3903955.549625610932708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963668.275612886995077, 3900005.071712225209922 ], [ 4963707.982338354922831, 3900029.167003958020359 ], [ 4963681.994077163748443, 3900072.09333193814382 ], [ 4963642.287391997873783, 3900047.998077971395105 ], [ 4963668.275612886995077, 3900005.071712225209922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962530.809657445177436, 3899340.583737306762487 ], [ 4962516.360972157679498, 3899371.876736138015985 ], [ 4962491.034372752532363, 3899359.821570725180209 ], [ 4962505.482476056553423, 3899328.892687724437565 ], [ 4962530.809657445177436, 3899340.583737306762487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962501.684046760201454, 3901053.043615095783025 ], [ 4962527.057697548530996, 3901033.419528906233609 ], [ 4962553.214226479642093, 3901066.595584033057094 ], [ 4962527.840028547681868, 3901086.583775511011481 ], [ 4962501.684046760201454, 3901053.043615095783025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962422.197851031087339, 3894659.531634594779462 ], [ 4962455.327245824970305, 3894658.125878626480699 ], [ 4962456.161850936710835, 3894677.425998104270548 ], [ 4962476.615376092493534, 3894676.729099532123655 ], [ 4962477.444939383305609, 3894699.306373769883066 ], [ 4962467.362216174602509, 3894699.655041632708162 ], [ 4962468.74613527674228, 3894736.434199729003012 ], [ 4962424.669943748041987, 3894738.187299144919962 ], [ 4962424.116129412315786, 3894723.62128797871992 ], [ 4962413.745354453101754, 3894723.969534750562161 ], [ 4962412.912393120117486, 3894703.577031427528709 ], [ 4962423.859299558214843, 3894703.229666741099209 ], [ 4962422.197851031087339, 3894659.531634594779462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962358.41715048905462, 3896244.12441762117669 ], [ 4962361.022923577576876, 3896235.389297217596322 ], [ 4962423.501444913446903, 3896253.327263684943318 ], [ 4962411.338310305960476, 3896295.911776348482817 ], [ 4962362.967398902401328, 3896282.364963666535914 ], [ 4962362.966285065747797, 3896283.093220766633749 ], [ 4962333.598506916314363, 3896274.673343853093684 ], [ 4962332.72991993278265, 3896277.585051565431058 ], [ 4962319.197370889596641, 3896273.923078759107739 ], [ 4962329.912908016704023, 3896236.069994986057281 ], [ 4962358.41715048905462, 3896244.12441762117669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962352.152736393734813, 3899775.445422561839223 ], [ 4962375.748175859451294, 3899789.318462466821074 ], [ 4962361.888178310357034, 3899812.601589132100344 ], [ 4962338.292195524089038, 3899799.09269050648436 ], [ 4962352.152736393734813, 3899775.445422561839223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963490.083628293126822, 3893903.071806303225458 ], [ 4963514.276961057446897, 3893906.02286221133545 ], [ 4963511.647692520171404, 3893929.322979729622602 ], [ 4963487.453808348625898, 3893926.736054180655628 ], [ 4963490.083628293126822, 3893903.071806303225458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963366.329734758473933, 3893828.595346240792423 ], [ 4963342.362813119776547, 3893864.970699737779796 ], [ 4963303.801199255511165, 3893839.421326361130923 ], [ 4963328.055592853575945, 3893803.410517921671271 ], [ 4963366.329734758473933, 3893828.595346240792423 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962234.019537858664989, 3899997.020308236591518 ], [ 4962221.888353858143091, 3900019.942015703301877 ], [ 4962176.419629479758441, 3899996.20427727419883 ], [ 4962188.550785328261554, 3899973.28254960430786 ], [ 4962234.019537858664989, 3899997.020308236591518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962172.45953331515193, 3896732.86652358667925 ], [ 4962184.834165753796697, 3896740.16795545257628 ], [ 4962189.743600869551301, 3896731.800453794188797 ], [ 4962204.420329969376326, 3896740.56191896321252 ], [ 4962197.4901751447469, 3896751.839375718962401 ], [ 4962219.361225128173828, 3896764.981363493017852 ], [ 4962191.06234372779727, 3896811.546824214048684 ], [ 4962165.45013171993196, 3896796.214387184474617 ], [ 4962173.24659766163677, 3896783.481722749769688 ], [ 4962150.224489709362388, 3896769.60976192029193 ], [ 4962172.45953331515193, 3896732.86652358667925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963218.362540679052472, 3898191.36198387760669 ], [ 4963260.670261844061315, 3898211.819346812553704 ], [ 4963243.332489199005067, 3898247.841108618304133 ], [ 4963219.444136737845838, 3898236.515772783663124 ], [ 4963217.421715199016035, 3898240.518043279647827 ], [ 4963198.713799905031919, 3898231.749723836779594 ], [ 4963218.362540679052472, 3898191.36198387760669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963175.401946269907057, 3900251.178675154689699 ], [ 4963201.664724159985781, 3900216.263148763682693 ], [ 4963221.51416767667979, 3900230.85934983799234 ], [ 4963195.251378169283271, 3900265.774857141077518 ], [ 4963175.401946269907057, 3900251.178675154689699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961854.557337198406458, 3900483.286504602059722 ], [ 4961835.79500568844378, 3900511.296199186239392 ], [ 4961814.216470841318369, 3900497.062540457118303 ], [ 4961832.978789731860161, 3900469.052831041626632 ], [ 4961854.557337198406458, 3900483.286504602059722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961661.674420733936131, 3896217.214744477998465 ], [ 4961655.289252627640963, 3896249.248531425837427 ], [ 4961612.959176854230464, 3896240.80996153736487 ], [ 4961619.34374963119626, 3896209.140293254517019 ], [ 4961661.674420733936131, 3896217.214744477998465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961563.971131191588938, 3893565.115876118652523 ], [ 4961576.356128705665469, 3893566.590966487303376 ], [ 4961578.69404115062207, 3893544.382616452872753 ], [ 4961621.322465393692255, 3893548.816143899224699 ], [ 4961615.185976952314377, 3893606.703410209622234 ], [ 4961560.172662257216871, 3893600.794803699478507 ], [ 4961563.971131191588938, 3893565.115876118652523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962589.518675378523767, 3900868.200318939983845 ], [ 4962613.106306737288833, 3900886.443130852654576 ], [ 4962592.329177628271282, 3900913.35681286547333 ], [ 4962568.453560410998762, 3900895.113576135132462 ], [ 4962589.518675378523767, 3900868.200318939983845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961514.690867082215846, 3899347.053176059853286 ], [ 4961528.552551612257957, 3899322.313102087471634 ], [ 4961555.891333626583219, 3899337.283417381346226 ], [ 4961542.317643482238054, 3899362.023909219074994 ], [ 4961514.690867082215846, 3899347.053176059853286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961509.286966472864151, 3895455.227605453692377 ], [ 4961506.370439257472754, 3895479.255765662994236 ], [ 4961486.786616688594222, 3895476.677540679927915 ], [ 4961485.620777161791921, 3895485.779026022180915 ], [ 4961447.892312264069915, 3895481.35303102247417 ], [ 4961449.348370877094567, 3895470.795461232308298 ], [ 4961429.764536736533046, 3895468.217277806717902 ], [ 4961432.971227720379829, 3895442.733026449102908 ], [ 4961451.978972403332591, 3895445.310350593645126 ], [ 4961453.144257674925029, 3895436.572992391418666 ], [ 4961490.296676777303219, 3895440.998132235836238 ], [ 4961488.838965323753655, 3895452.648084803950042 ], [ 4961509.286966472864151, 3895455.227605453692377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961328.696293581277132, 3897567.272591626271605 ], [ 4961324.342711328528821, 3897589.478010030928999 ], [ 4961341.331645549274981, 3897592.780511008109897 ], [ 4961343.651643323712051, 3897582.22421112889424 ], [ 4961360.928610702045262, 3897585.527154110837728 ], [ 4961355.413102625869215, 3897614.285167971625924 ], [ 4961296.959704598411918, 3897602.909996608272195 ], [ 4961304.796221732161939, 3897562.867410138249397 ], [ 4961328.696293581277132, 3897567.272591626271605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961322.162730874493718, 3896540.053390522487462 ], [ 4961305.88966618757695, 3896635.795181474182755 ], [ 4961265.285627515055239, 3896629.18037581210956 ], [ 4961274.58318786509335, 3896575.303059304133058 ], [ 4961284.374438178725541, 3896576.774157865904272 ], [ 4961291.349816665053368, 3896534.909661709330976 ], [ 4961322.162730874493718, 3896540.053390522487462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962362.448773005977273, 3900764.074850924313068 ], [ 4962386.89841044973582, 3900783.775302947964519 ], [ 4962357.755610857158899, 3900819.779620913323015 ], [ 4962333.306541536934674, 3900799.715065446216613 ], [ 4962362.448773005977273, 3900764.074850924313068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962214.97469462454319, 3897564.23913192935288 ], [ 4962290.100789618678391, 3897597.125402202364057 ], [ 4962266.400029269978404, 3897650.980420315638185 ], [ 4962252.584021114744246, 3897644.769136620685458 ], [ 4962248.5371567113325, 3897654.230335861444473 ], [ 4962230.978973410092294, 3897646.556836890522391 ], [ 4962236.181285647675395, 3897634.912618718575686 ], [ 4962216.60798276308924, 3897626.507797247730196 ], [ 4962213.427994060330093, 3897634.149674401152879 ], [ 4962196.732769714668393, 3897627.205772451125085 ], [ 4962201.068205250427127, 3897617.380875529255718 ], [ 4962193.008895290084183, 3897613.727301429957151 ], [ 4962214.97469462454319, 3897564.23913192935288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961053.874955285340548, 3898177.145637341775 ], [ 4961063.696916495449841, 3898157.497175664175302 ], [ 4961084.42013171967119, 3898167.359383551869541 ], [ 4961052.93053893558681, 3898231.399578026961535 ], [ 4961021.558551310561597, 3898216.059688379988074 ], [ 4961043.225592670962214, 3898172.032052236609161 ], [ 4961053.874955285340548, 3898177.145637341775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961943.887434558942914, 3896264.977314551826566 ], [ 4961949.401088336482644, 3896238.040087213274091 ], [ 4961975.605493240058422, 3896243.17758663604036 ], [ 4961970.091814236715436, 3896270.114808681886643 ], [ 4961943.887434558942914, 3896264.977314551826566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961941.589000655338168, 3897212.43877923861146 ], [ 4961948.297053118236363, 3897157.465366745833308 ], [ 4961938.7935347314924, 3897156.358590603340417 ], [ 4961940.545450079254806, 3897140.703670522663742 ], [ 4961949.472902569919825, 3897141.809575024526566 ], [ 4961950.931275672279298, 3897129.795507073402405 ], [ 4962006.800284771248698, 3897136.434492995031178 ], [ 4961996.881770494394004, 3897219.076872801408172 ], [ 4961941.589000655338168, 3897212.43877923861146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960411.2352752732113, 3907503.41205 ], [ 4960438.066436666995287, 3907466.309722005855292 ], [ 4960483.799198972992599, 3907498.784192866180092 ], [ 4960461.872284856624901, 3907529.339259372092783 ], [ 4960434.547082541510463, 3907510.364540899638087 ], [ 4960429.930732071399689, 3907516.912182215601206 ], [ 4960411.2352752732113, 3907503.41205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961516.661181481555104, 3898608.600547474808991 ], [ 4961489.89931093621999, 3898592.538753751199692 ], [ 4961514.73068125359714, 3898551.429263665340841 ], [ 4961541.492578006349504, 3898567.491081717889756 ], [ 4961516.661181481555104, 3898608.600547474808991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961269.381204245612025, 3893297.405210362747312 ], [ 4961284.438743024133146, 3893245.357219711877406 ], [ 4961329.359279979020357, 3893258.532785752322525 ], [ 4961321.83182036690414, 3893283.646447606850415 ], [ 4961335.941622162237763, 3893287.672898943070322 ], [ 4961328.123916409909725, 3893314.242641672957689 ], [ 4961269.381204245612025, 3893297.405210362747312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961242.486514333635569, 3908850.104164933320135 ], [ 4961226.049626592546701, 3908867.558047610800713 ], [ 4961184.934778457507491, 3908829.627162325195968 ], [ 4961203.679279359988868, 3908809.263629138004035 ], [ 4961211.154666574671865, 3908816.193256968166679 ], [ 4961232.494186951778829, 3908793.284678711090237 ], [ 4961270.446348184719682, 3908828.297867711633444 ], [ 4961246.511294833384454, 3908854.115609673783183 ], [ 4961242.486514333635569, 3908850.104164933320135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960292.50865941401571, 3893496.967847484629601 ], [ 4960291.398135687224567, 3893468.200062356889248 ], [ 4960348.152097193524241, 3893466.097769926302135 ], [ 4960350.093419998884201, 3893517.806878306902945 ], [ 4960314.370592761784792, 3893518.847332232631743 ], [ 4960313.251098753884435, 3893496.269721799064428 ], [ 4960292.50865941401571, 3893496.967847484629601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960223.31469941791147, 3899892.80127664282918 ], [ 4960247.787301576696336, 3899898.298726507462561 ], [ 4960241.409962736070156, 3899926.691625609528273 ], [ 4960216.937385151162744, 3899921.194181468803436 ], [ 4960223.31469941791147, 3899892.80127664282918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960058.480848615989089, 3899359.47632284834981 ], [ 4960057.853826559148729, 3899394.796030310448259 ], [ 4960042.301728973165154, 3899394.409449585713446 ], [ 4960041.999527841806412, 3899404.240524324122816 ], [ 4960013.486920597963035, 3899403.835257755592465 ], [ 4960014.704612562432885, 3899358.32076035765931 ], [ 4960058.480848615989089, 3899359.47632284834981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959830.251045372337103, 3900649.625044828280807 ], [ 4959891.289888253435493, 3900661.364903169218451 ], [ 4959881.423635883256793, 3900713.057224117219448 ], [ 4959820.09638609085232, 3900701.6811040812172 ], [ 4959830.251045372337103, 3900649.625044828280807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959792.585175612010062, 3893575.626537614967674 ], [ 4959829.756113981828094, 3893569.125536941923201 ], [ 4959828.327762345783412, 3893560.748525418806821 ], [ 4959847.0567581737414, 3893557.862378202844411 ], [ 4959849.34252952132374, 3893570.974295840132982 ], [ 4959870.953306486830115, 3893567.364045524038374 ], [ 4959875.808710304088891, 3893596.501323442906141 ], [ 4959798.585647363215685, 3893609.863246233668178 ], [ 4959792.585175612010062, 3893575.626537614967674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960857.043699733912945, 3899033.652478191070259 ], [ 4960862.539068404585123, 3899018.002988016232848 ], [ 4960841.812674209475517, 3899010.68985041230917 ], [ 4960855.116122176870704, 3898973.568193915300071 ], [ 4960911.538253637030721, 3898993.314409431070089 ], [ 4960892.739350458607078, 3899046.085521445143968 ], [ 4960857.043699733912945, 3899033.652478191070259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960846.295230706222355, 3892642.803647128399462 ], [ 4960870.718502341769636, 3892686.170933188870549 ], [ 4960827.182526118122041, 3892710.139295685570687 ], [ 4960797.300079319626093, 3892656.932545371819288 ], [ 4960811.71605459600687, 3892648.942926145624369 ], [ 4960817.175177833065391, 3892658.782432212028652 ], [ 4960846.295230706222355, 3892642.803647128399462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959668.308935021050274, 3908968.334904730319977 ], [ 4959661.390790998004377, 3908974.151127867400646 ], [ 4959675.763321749866009, 3908990.193493771366775 ], [ 4959645.494399808347225, 3909017.096000913064927 ], [ 4959613.586996704339981, 3908981.729603918734938 ], [ 4959650.774591999128461, 3908948.646702457685024 ], [ 4959668.308935021050274, 3908968.334904730319977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959550.307042041793466, 3900858.235455789603293 ], [ 4959553.509766154922545, 3900833.843287277035415 ], [ 4959543.719973373226821, 3900832.372815489768982 ], [ 4959551.288824269548059, 3900775.579269175883383 ], [ 4959590.737105721607804, 3900780.733340232167393 ], [ 4959579.965422268025577, 3900861.919040635228157 ], [ 4959550.307042041793466, 3900858.235455789603293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960560.345583364367485, 3909298.436602232512087 ], [ 4960596.264971065334976, 3909345.462239857763052 ], [ 4960551.589641091413796, 3909379.62528452090919 ], [ 4960521.417145180515945, 3909340.254882257897407 ], [ 4960545.339885413646698, 3909322.083247352391481 ], [ 4960539.305059027858078, 3909314.427644672337919 ], [ 4960560.345583364367485, 3909298.436602232512087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960489.842715945094824, 3897836.583256061188877 ], [ 4960494.802993039600551, 3897792.894934045150876 ], [ 4960525.617275879718363, 3897796.217108998913318 ], [ 4960520.94497749209404, 3897839.905846228823066 ], [ 4960489.842715945094824, 3897836.583256061188877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959469.603354797698557, 3904548.585691945627332 ], [ 4959433.588119666092098, 3904563.099739463534206 ], [ 4959420.962530237622559, 3904531.7665232908912 ], [ 4959413.183567943051457, 3904534.66852404223755 ], [ 4959404.861265996471047, 3904514.629493196029216 ], [ 4959448.943482596427202, 3904497.213824251201004 ], [ 4959469.603354797698557, 3904548.585691945627332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959023.217167516238987, 3899258.958095422945917 ], [ 4959055.774415971711278, 3899250.628880417905748 ], [ 4959061.788881695829332, 3899274.669919915497303 ], [ 4959029.231660470366478, 3899282.999127755872905 ], [ 4959023.217167516238987, 3899258.958095422945917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958860.65389358997345, 3899141.480276360642165 ], [ 4958897.825073452666402, 3899129.151897728443146 ], [ 4958908.15226720366627, 3899158.660891427192837 ], [ 4958900.372316834516823, 3899161.198901927098632 ], [ 4958911.271951308473945, 3899193.257609038613737 ], [ 4958881.592265452258289, 3899203.411677384749055 ], [ 4958860.65389358997345, 3899141.480276360642165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958767.857873550616205, 3904544.683744356036186 ], [ 4958804.76971903629601, 3904506.501534394919872 ], [ 4958832.088945782743394, 3904532.757169098127633 ], [ 4958795.177097395062447, 3904570.939342133235186 ], [ 4958767.857873550616205, 3904544.683744356036186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959738.072781667113304, 3905287.427024788688868 ], [ 4959738.896989019587636, 3905315.10218621045351 ], [ 4959735.729559926316142, 3905315.097649633418769 ], [ 4959736.838587421923876, 3905344.958007405046374 ], [ 4959703.722508443519473, 3905346.367122914176434 ], [ 4959701.789720586501062, 3905288.467475573532283 ], [ 4959738.072781667113304, 3905287.427024788688868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959652.795538409613073, 3907736.090005872771144 ], [ 4959621.98682755138725, 3907736.774254177697003 ], [ 4959622.261749253608286, 3907745.877943580970168 ], [ 4959594.332270893268287, 3907746.566335589624941 ], [ 4959592.969564399681985, 3907692.672874759417027 ], [ 4959651.707860923372209, 3907691.300231826025993 ], [ 4959652.795538409613073, 3907736.090005872771144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958541.008960347622633, 3897235.908083357848227 ], [ 4958582.472298646345735, 3897245.797135852277279 ], [ 4958573.780700749717653, 3897282.198020051699132 ], [ 4958532.31741545535624, 3897272.308980748057365 ], [ 4958541.008960347622633, 3897235.908083357848227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958457.695923263207078, 3899367.772405188530684 ], [ 4958478.482201910577714, 3899332.11644902639091 ], [ 4958523.088242283090949, 3899358.031499536707997 ], [ 4958502.301924359053373, 3899393.687421769835055 ], [ 4958457.695923263207078, 3899367.772405188530684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959476.935355846770108, 3898785.866512925829738 ], [ 4959476.33549792598933, 3898802.615634781774133 ], [ 4959494.767606323584914, 3898803.370115068741143 ], [ 4959492.974219549447298, 3898849.247930506709963 ], [ 4959482.030076851136982, 3898848.868231256492436 ], [ 4959481.72652128431946, 3898859.791696595028043 ], [ 4959465.886606756597757, 3898859.040910684503615 ], [ 4959466.192226802930236, 3898846.660928496625274 ], [ 4959449.775751763954759, 3898846.273462229408324 ], [ 4959452.167354903183877, 3898784.738909045234323 ], [ 4959476.935355846770108, 3898785.866512925829738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959429.042032543569803, 3897424.317340800072998 ], [ 4959397.36774237267673, 3897417.718037612736225 ], [ 4959395.336527811363339, 3897428.274913177359849 ], [ 4959371.149018181487918, 3897423.142784907482564 ], [ 4959373.758354974910617, 3897411.130209147930145 ], [ 4959362.816206539981067, 3897408.929914467968047 ], [ 4959370.647315211594105, 3897370.70741299027577 ], [ 4959413.551341580227017, 3897379.871533017605543 ], [ 4959415.001330353319645, 3897372.95512967184186 ], [ 4959438.612810552120209, 3897378.086478813085705 ], [ 4959429.042032543569803, 3897424.317340800072998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958144.975246659480035, 3904987.333106990437955 ], [ 4958154.15069273672998, 3905015.747942354064435 ], [ 4958089.621644799597561, 3905036.050749507732689 ], [ 4958080.44663657899946, 3905007.271805287804455 ], [ 4958144.975246659480035, 3904987.333106990437955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958139.12304484192282, 3898970.795769531279802 ], [ 4958154.733409084379673, 3898928.942260139621794 ], [ 4958194.172154411673546, 3898943.197505990508944 ], [ 4958188.390308790840209, 3898958.84714517602697 ], [ 4958183.496534976176918, 3898957.01977063389495 ], [ 4958173.667467017658055, 3898983.587749276775867 ], [ 4958139.12304484192282, 3898970.795769531279802 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958099.449283502064645, 3896816.914349413011223 ], [ 4958102.645171253941953, 3896796.89161182474345 ], [ 4958119.923538285307586, 3896799.828341336920857 ], [ 4958116.727638008072972, 3896819.851076903752983 ], [ 4958099.449283502064645, 3896816.914349413011223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959215.613332950510085, 3905576.168213714379817 ], [ 4959230.261487558484077, 3905602.406372984871268 ], [ 4959212.106547535397112, 3905612.576397663913667 ], [ 4959217.850525386631489, 3905623.144323226995766 ], [ 4959184.998601706698537, 3905641.66862634755671 ], [ 4959182.413782518357038, 3905636.931269325315952 ], [ 4959166.852953838184476, 3905645.28432980645448 ], [ 4959150.194796327501535, 3905615.037924166303128 ], [ 4959164.315398653969169, 3905607.046953436452895 ], [ 4959156.84834881965071, 3905593.19942627241835 ], [ 4959177.308384609408677, 3905581.940223642159253 ], [ 4959183.626216848380864, 3905593.96547715133056 ], [ 4959215.613332950510085, 3905576.168213714379817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959155.856132210232317, 3897516.783751659560949 ], [ 4959159.650358106009662, 3897481.468530986458063 ], [ 4959182.113260381855071, 3897484.049128128681332 ], [ 4959183.277207433246076, 3897475.675789882428944 ], [ 4959216.395756174810231, 3897479.363844140898436 ], [ 4959210.270461674779654, 3897533.610504507087171 ], [ 4959175.999852866865695, 3897529.920832055155188 ], [ 4959177.16739257145673, 3897518.998591126874089 ], [ 4959155.856132210232317, 3897516.783751659560949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958987.640893833711743, 3905313.672519396059215 ], [ 4958941.809643764980137, 3905347.472407593391836 ], [ 4958926.00263895560056, 3905325.966492546722293 ], [ 4958942.72098786663264, 3905313.609473220538348 ], [ 4958936.685823077335954, 3905305.225988215766847 ], [ 4958965.510796715505421, 3905283.782682252582163 ], [ 4958987.640893833711743, 3905313.672519396059215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958942.058711539022624, 3907017.379859174136072 ], [ 4958910.648838915862143, 3907035.542402127757668 ], [ 4958882.498538953252137, 3906987.801709956489503 ], [ 4958913.908448217436671, 3906969.639134622644633 ], [ 4958942.058711539022624, 3907017.379859174136072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958863.595975512638688, 3904447.230435378383845 ], [ 4958879.166070410050452, 3904432.686988526489586 ], [ 4958869.390806056559086, 3904421.749368717428297 ], [ 4958886.97917356621474, 3904405.388096514623612 ], [ 4958897.04290458932519, 3904415.961995624471456 ], [ 4958923.569729080423713, 3904391.238255589269102 ], [ 4958948.297848783433437, 3904417.126243040431291 ], [ 4958888.324101238511503, 3904473.118368526455015 ], [ 4958863.595975512638688, 3904447.230435378383845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957512.457573068328202, 3905756.973949590697885 ], [ 4957534.879295104183257, 3905785.042333879508078 ], [ 4957509.801715428009629, 3905804.671578215435147 ], [ 4957487.379983662627637, 3905776.603214515838772 ], [ 4957512.457573068328202, 3905756.973949590697885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958706.066762029193342, 3898672.993352428544313 ], [ 4958696.237581486813724, 3898699.197006301023066 ], [ 4958703.434504562057555, 3898701.755942810792476 ], [ 4958687.823661694303155, 3898743.244998665526509 ], [ 4958679.187162574380636, 3898740.319931684993207 ], [ 4958671.960336476564407, 3898759.244622048456222 ], [ 4958646.339875450357795, 3898749.741587049327791 ], [ 4958654.145256976597011, 3898728.997045738622546 ], [ 4958643.782157144509256, 3898724.977197886444628 ], [ 4958650.430908005684614, 3898707.508215402718633 ], [ 4958659.930463806726038, 3898711.162733988836408 ], [ 4958678.143089805729687, 3898662.758818500675261 ], [ 4958706.066762029193342, 3898672.993352428544313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957140.496966757811606, 3905494.299995192792267 ], [ 4957101.01579093746841, 3905518.64409072091803 ], [ 4957085.787678217515349, 3905493.862848202232271 ], [ 4957125.268876558169723, 3905469.518730669282377 ], [ 4957140.496966757811606, 3905494.299995192792267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957121.370231564156711, 3904723.044496607966721 ], [ 4957135.737805284559727, 3904745.639810956548899 ], [ 4957100.866199255920947, 3904767.441134977154434 ], [ 4957077.01602325309068, 3904729.903817555401474 ], [ 4957098.630574209615588, 3904716.45979083282873 ], [ 4957108.113151653669775, 3904731.401819753460586 ], [ 4957121.370231564156711, 3904723.044496607966721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957000.667035273276269, 3895666.966723689809442 ], [ 4957006.082861007191241, 3895709.941169566009194 ], [ 4956964.3082056902349, 3895715.347573435865343 ], [ 4956958.892798, 3895672.009007296990603 ], [ 4957000.667035273276269, 3895666.966723689809442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956956.39952602237463, 3899283.442669606301934 ], [ 4957036.246442254632711, 3899232.934799933806062 ], [ 4957051.766662223264575, 3899257.352174940053374 ], [ 4956971.919789176434278, 3899307.859999235719442 ], [ 4956956.39952602237463, 3899283.442669606301934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957985.803012654185295, 3907888.151088597252965 ], [ 4957941.706419699825346, 3907920.862704461906105 ], [ 4957937.10814899392426, 3907914.666183643974364 ], [ 4957928.750011725351214, 3907920.845014714170247 ], [ 4957919.265541899949312, 3907908.451585380826145 ], [ 4957911.195823892019689, 3907914.266683629248291 ], [ 4957893.664967424236238, 3907890.574197734240443 ], [ 4957921.910001249983907, 3907869.493084067944437 ], [ 4957927.370554042980075, 3907876.783174738753587 ], [ 4957959.650003499351442, 3907853.158685206435621 ], [ 4957985.803012654185295, 3907888.151088597252965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957971.432284032925963, 3901758.711127623450011 ], [ 4958042.281377635896206, 3901755.530851948540658 ], [ 4958043.675445683300495, 3901789.032767853233963 ], [ 4957972.826440217904747, 3901792.213039927650243 ], [ 4957971.432284032925963, 3901758.711127623450011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957571.020816730335355, 3905675.123483130242676 ], [ 4957538.447712106630206, 3905701.29693396948278 ], [ 4957501.939743335358799, 3905656.095366671681404 ], [ 4957534.512867012061179, 3905629.921872300561517 ], [ 4957571.020816730335355, 3905675.123483130242676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956604.135294696316123, 3901272.220079606864601 ], [ 4956563.515107643790543, 3901282.362326592672616 ], [ 4956553.773626218549907, 3901244.115838964935392 ], [ 4956548.300348764285445, 3901245.201041009742767 ], [ 4956543.143275595270097, 3901224.802967542782426 ], [ 4956611.131888238713145, 3901207.77820832002908 ], [ 4956617.147138711065054, 3901232.546988422516733 ], [ 4956595.540566968731582, 3901237.980519620701671 ], [ 4956604.135294696316123, 3901272.220079606864601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957496.267981998622417, 3899612.97467855643481 ], [ 4957498.049073729664087, 3899573.651037491392344 ], [ 4957517.34424442704767, 3899574.769456706009805 ], [ 4957516.751519899815321, 3899587.149077796377242 ], [ 4957558.510434699244797, 3899589.026107140816748 ], [ 4957556.733190461061895, 3899625.436709587462246 ], [ 4957515.261849891394377, 3899623.924200930632651 ], [ 4957515.563615850172937, 3899613.728967140894383 ], [ 4957496.267981998622417, 3899612.97467855643481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957445.496137527748942, 3899246.227355274837464 ], [ 4957473.149324000813067, 3899243.351569514255971 ], [ 4957476.847361205145717, 3899277.584769409149885 ], [ 4957449.194209540262818, 3899280.460551424417645 ], [ 4957445.496137527748942, 3899246.227355274837464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957346.408411300741136, 3898396.579142011702061 ], [ 4957382.121700056828558, 3898397.719515767879784 ], [ 4957380.018420736305416, 3898462.531788107939065 ], [ 4957344.305218013003469, 3898461.391417111735791 ], [ 4957346.408411300741136, 3898396.579142011702061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957234.609217904508114, 3907033.973826297093183 ], [ 4957182.442816803231835, 3907072.137840803246945 ], [ 4957169.509364321827888, 3907054.642228045966476 ], [ 4957176.426487369462848, 3907049.553632247727364 ], [ 4957164.067906081676483, 3907032.787054345011711 ], [ 4957182.513910222798586, 3907018.974711991846561 ], [ 4957171.879491161555052, 3907004.759358163457364 ], [ 4957198.395356985740364, 3906985.131709988228977 ], [ 4957234.609217904508114, 3907033.973826297093183 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956063.897831452079117, 3900133.243700002320111 ], [ 4956118.031648107804358, 3900141.68886724114418 ], [ 4956111.932091950438917, 3900181.371138784568757 ], [ 4956089.760100510902703, 3900178.065217537339777 ], [ 4956088.599120019935071, 3900184.982185120694339 ], [ 4956056.637380870990455, 3900179.842952575534582 ], [ 4956063.897831452079117, 3900133.243700002320111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956044.156510338187218, 3895804.444852853193879 ], [ 4956038.950404106639326, 3895820.823928070254624 ], [ 4956004.110967784188688, 3895809.490857748314738 ], [ 4956009.605105083435774, 3895793.112148361746222 ], [ 4956044.156510338187218, 3895804.444852853193879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955436.898462812416255, 3900597.433072267565876 ], [ 4955439.006167031824589, 3900525.337973006535321 ], [ 4955481.916689946316183, 3900526.484983268193901 ], [ 4955479.808870700187981, 3900598.580079211387783 ], [ 4955436.898462812416255, 3900597.433072267565876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956386.072539448738098, 3897567.275783264543861 ], [ 4956391.8874322893098, 3897525.772614618763328 ], [ 4956450.347349672578275, 3897533.859958057291806 ], [ 4956444.532368267886341, 3897575.363114264328033 ], [ 4956386.072539448738098, 3897567.275783264543861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956149.853848237544298, 3905354.625233108177781 ], [ 4956117.285049862228334, 3905378.251486843451858 ], [ 4956083.366255936212838, 3905332.691087876446545 ], [ 4956115.64760384708643, 3905308.700289427302778 ], [ 4956149.853848237544298, 3905354.625233108177781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956140.673560886643827, 3900670.435274617280811 ], [ 4956141.581517538055778, 3900636.572341396473348 ], [ 4956177.004353757016361, 3900637.346611885819584 ], [ 4956176.384350360371172, 3900671.209918191190809 ], [ 4956140.673560886643827, 3900670.435274617280811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954999.512379417195916, 3895254.006309922318906 ], [ 4955031.149568064138293, 3895293.007856822572649 ], [ 4954990.204098345711827, 3895326.092177997343242 ], [ 4954965.181663318537176, 3895295.473942223004997 ], [ 4954985.366109304130077, 3895279.113457745406777 ], [ 4954978.750880774110556, 3895271.094317635521293 ], [ 4954999.512379417195916, 3895254.006309922318906 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955938.420145815238357, 3905639.46627363935113 ], [ 4955898.643878598697484, 3905670.366119434125721 ], [ 4955881.970797880552709, 3905648.860877017490566 ], [ 4955893.788259634748101, 3905639.772826614789665 ], [ 4955876.827211139723659, 3905618.267216569278389 ], [ 4955904.497623023577034, 3905596.81913890177384 ], [ 4955938.420145815238357, 3905639.46627363935113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954451.392454233020544, 3900109.355577303562313 ], [ 4954464.116823252290487, 3900067.132209110073745 ], [ 4954527.166328864172101, 3900086.144962756894529 ], [ 4954512.12927817273885, 3900135.283911280333996 ], [ 4954487.370424471795559, 3900127.606549877673388 ], [ 4954489.394556185230613, 3900121.054711429402232 ], [ 4954451.392454233020544, 3900109.355577303562313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955219.836932198144495, 3894828.61701819114387 ], [ 4955226.760968632996082, 3894820.250802610535175 ], [ 4955211.79654030688107, 3894808.579766486305743 ], [ 4955208.622353033162653, 3894812.945304019376636 ], [ 4955197.686624954454601, 3894804.556525894906372 ], [ 4955224.807591868564487, 3894770.362667300738394 ], [ 4955264.520399333909154, 3894801.727976869791746 ], [ 4955234.225685499608517, 3894839.923202222213149 ], [ 4955219.836932198144495, 3894828.61701819114387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954059.517037300392985, 3895309.282603210303932 ], [ 4954061.206702368333936, 3895340.963892578147352 ], [ 4954022.028561733663082, 3895343.100875534582883 ], [ 4954020.338850636035204, 3895311.419588587246835 ], [ 4954059.517037300392985, 3895309.282603210303932 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954748.355716723948717, 3893612.927486184518784 ], [ 4954720.668019907549024, 3893639.110265984199941 ], [ 4954694.775405442342162, 3893611.768389359116554 ], [ 4954722.750725513324142, 3893585.950070121791214 ], [ 4954748.355716723948717, 3893612.927486184518784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954600.21771627664566, 3900168.164780330378562 ], [ 4954608.324741572141647, 3900133.582481640391052 ], [ 4954632.510261867195368, 3900139.074461840093136 ], [ 4954633.668155797757208, 3900134.342208768706769 ], [ 4954680.311153877526522, 3900145.324087131302804 ], [ 4954671.046140659600496, 3900184.638615897390991 ], [ 4954600.21771627664566, 3900168.164780330378562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954565.938646140508354, 3896223.141374330036342 ], [ 4954583.252533415332437, 3896198.037920673843473 ], [ 4954608.578873286955059, 3896215.547541924286634 ], [ 4954591.26497358456254, 3896240.650979527737945 ], [ 4954565.938646140508354, 3896223.141374330036342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954479.591722666285932, 3895003.930216716136783 ], [ 4954459.400181412696838, 3895026.117133234627545 ], [ 4954435.518308800645173, 3895004.239901614375412 ], [ 4954455.99745574221015, 3894982.417451679240912 ], [ 4954479.591722666285932, 3895003.930216716136783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953411.038060861639678, 3892474.485043383669108 ], [ 4953484.823362516239285, 3892445.079008638393134 ], [ 4953498.3232217207551, 3892478.595013736281544 ], [ 4953424.537997145205736, 3892508.001011997461319 ], [ 4953411.038060861639678, 3892474.485043383669108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953858.709034476429224, 3900797.200085477903485 ], [ 4953856.649323934689164, 3900833.246479611378163 ], [ 4953884.58317949809134, 3900834.736904826480895 ], [ 4953883.112692238762975, 3900859.86010592058301 ], [ 4953820.621566332876682, 3900856.507129672914743 ], [ 4953821.796938479878008, 3900837.209651414770633 ], [ 4953810.853528471663594, 3900836.832260884810239 ], [ 4953812.030217918567359, 3900816.442393326200545 ], [ 4953824.41317639220506, 3900817.185659261420369 ], [ 4953825.591642340645194, 3900795.339273767080158 ], [ 4953858.709034476429224, 3900797.200085477903485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953802.58589699678123, 3891014.801884273532778 ], [ 4953789.370253627188504, 3890984.199124234262854 ], [ 4953831.1666165208444, 3890966.407463698647916 ], [ 4953842.945686255581677, 3890993.731349366251379 ], [ 4953835.739616643637419, 3890996.635639681480825 ], [ 4953845.507698635570705, 3891019.223424064461142 ], [ 4953822.1591423926875, 3891029.390715023502707 ], [ 4953813.827582415193319, 3891010.081831970252097 ], [ 4953802.58589699678123, 3891014.801884273532778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952881.252288051880896, 3901037.814401521813124 ], [ 4952963.61296711396426, 3901042.645154040772468 ], [ 4952960.675457539968193, 3901091.43514466797933 ], [ 4952878.314927499741316, 3901086.604401014279574 ], [ 4952881.252288051880896, 3901037.814401521813124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952832.787391292862594, 3891300.942284501623362 ], [ 4952823.846509644761682, 3891309.306731070391834 ], [ 4952796.798179202713072, 3891281.237110890448093 ], [ 4952805.739061743021011, 3891272.872655460610986 ], [ 4952832.787391292862594, 3891300.942284501623362 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953715.510271278209984, 3894173.146850946359336 ], [ 4953695.611201045103371, 3894191.693395548034459 ], [ 4953668.568004068918526, 3894162.530466486234218 ], [ 4953688.754705582745373, 3894144.348378042690456 ], [ 4953715.510271278209984, 3894173.146850946359336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953561.562129058875144, 3893793.539214946795255 ], [ 4953588.055076335556805, 3893801.581902079284191 ], [ 4953582.271312220953405, 3893820.145509849768132 ], [ 4953600.989372299052775, 3893825.629959191195667 ], [ 4953593.469730814918876, 3893850.381664243526757 ], [ 4953579.647579938173294, 3893845.995493554044515 ], [ 4953562.004785660654306, 3893904.599007532000542 ], [ 4953520.537513657473028, 3893892.16882136464119 ], [ 4953527.767694012261927, 3893868.509134034160525 ], [ 4953537.55860111489892, 3893871.433921249117702 ], [ 4953561.562129058875144, 3893793.539214946795255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953355.479550436139107, 3901121.034292393829674 ], [ 4953358.111074372194707, 3901087.901579834986478 ], [ 4953381.148369445465505, 3901089.749763238243759 ], [ 4953381.150981421582401, 3901087.564984648022801 ], [ 4953415.131152097135782, 3901090.154542555101216 ], [ 4953412.208950554952025, 3901125.471683572977781 ], [ 4953355.479550436139107, 3901121.034292393829674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952889.631733530201018, 3895141.837374300695956 ], [ 4952948.109474122524261, 3895140.085620357189327 ], [ 4952948.932425291277468, 3895175.042974087875336 ], [ 4952890.742817416787148, 3895176.795065328478813 ], [ 4952889.631733530201018, 3895141.837374300695956 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952777.710004853084683, 3893800.619346538092941 ], [ 4952773.35819021333009, 3893826.831509864889085 ], [ 4952740.236399699933827, 3893821.330761020071805 ], [ 4952744.58818291965872, 3893795.118592420592904 ], [ 4952777.710004853084683, 3893800.619346538092941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951936.549064865335822, 3891521.294343212153763 ], [ 4951975.356705156154931, 3891595.984948853962123 ], [ 4951946.818659499287605, 3891610.517478920519352 ], [ 4951908.010545823723078, 3891536.191041566897184 ], [ 4951936.549064865335822, 3891521.294343212153763 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951814.506372476927936, 3892691.463762239087373 ], [ 4951840.430975482799113, 3892694.04214722616598 ], [ 4951837.519899304956198, 3892720.620212103705853 ], [ 4951868.340639407746494, 3892724.296580454800278 ], [ 4951866.59513948392123, 3892739.223859387915581 ], [ 4951891.655027972534299, 3892742.165437612682581 ], [ 4951888.161101627163589, 3892774.568888989742845 ], [ 4951806.356023939326406, 3892765.37257429305464 ], [ 4951814.506372476927936, 3892691.463762239087373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952204.074104784987867, 3893624.078579102177173 ], [ 4952206.418524782173336, 3893589.489056836348027 ], [ 4952285.056772513315082, 3893594.677525089588016 ], [ 4952282.712251770310104, 3893629.267040590755641 ], [ 4952204.074104784987867, 3893624.078579102177173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951421.043586271815002, 3894178.484657031483948 ], [ 4951423.606766706332564, 3894204.704804779961705 ], [ 4951396.813662957400084, 3894207.223646655213088 ], [ 4951394.250456637702882, 3894181.003501416184008 ], [ 4951421.043586271815002, 3894178.484657031483948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951894.517972924746573, 3892505.121088694781065 ], [ 4951888.726802369579673, 3892530.967605619225651 ], [ 4951812.690966098569334, 3892514.495281001552939 ], [ 4951819.640619797632098, 3892483.188139186706394 ], [ 4951876.379379803314805, 3892495.633080787025392 ], [ 4951875.220816062763333, 3892501.093687148299068 ], [ 4951894.517972924746573, 3892505.121088694781065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951786.487613780423999, 3901124.303628474008292 ], [ 4951846.692246440798044, 3901111.991671349853277 ], [ 4951854.99802094977349, 3901152.419588365126401 ], [ 4951795.081467557698488, 3901164.731854490470141 ], [ 4951786.487613780423999, 3901124.303628474008292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951520.855649762786925, 3895588.50401169853285 ], [ 4951556.828937780112028, 3895618.03899920033291 ], [ 4951526.830926693975925, 3895654.053973742295057 ], [ 4951490.857654053717852, 3895624.519025749526918 ], [ 4951520.855649762786925, 3895588.50401169853285 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950739.547541320323944, 3891223.554442794062197 ], [ 4950747.065682851709425, 3891198.437849747482687 ], [ 4950782.778005246073008, 3891209.400897782761604 ], [ 4950775.260233259759843, 3891234.153353314381093 ], [ 4950739.547541320323944, 3891223.554442794062197 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950623.262320225127041, 3895080.640668913722038 ], [ 4950670.816958549432456, 3895057.752549483440816 ], [ 4950676.277704465202987, 3895069.046523599419743 ], [ 4950700.487332844175398, 3895057.420909431297332 ], [ 4950727.790954491123557, 3895113.890821953304112 ], [ 4950700.411139241419733, 3895126.969454420730472 ], [ 4950693.800578685477376, 3895113.489441886078566 ], [ 4950649.416639272123575, 3895134.56034399010241 ], [ 4950623.262320225127041, 3895080.640668913722038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950938.421974944882095, 3889319.384261062834412 ], [ 4950938.676723546348512, 3889349.607143851928413 ], [ 4950881.628323280252516, 3889350.27246859902516 ], [ 4950881.371504151262343, 3889321.870222758967429 ], [ 4950900.675910655409098, 3889321.527376179117709 ], [ 4950900.135408413596451, 3889289.119412856642157 ], [ 4950937.30326824914664, 3889288.796297158580273 ], [ 4950937.287990747950971, 3889302.633133682888001 ], [ 4950949.677539334632456, 3889302.282688338309526 ], [ 4950949.946755091659725, 3889319.396988748107105 ], [ 4950938.421974944882095, 3889319.384261062834412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950486.861337835900486, 3893363.98901806678623 ], [ 4950487.750515087507665, 3893341.049885154236108 ], [ 4950518.861577951349318, 3893342.176124080084264 ], [ 4950517.971977762877941, 3893365.479384123813361 ], [ 4950486.861337835900486, 3893363.98901806678623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950382.062301442958415, 3892776.171836949884892 ], [ 4950378.524434200488031, 3892850.814336651004851 ], [ 4950276.260161562822759, 3892846.334188347216696 ], [ 4950279.797745423391461, 3892771.691675384994596 ], [ 4950382.062301442958415, 3892776.171836949884892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949677.10642421990633, 3894427.104566922411323 ], [ 4949686.942225962877274, 3894387.789060949347913 ], [ 4949736.764385142363608, 3894400.222188354935497 ], [ 4949742.25961927883327, 3894379.472671539057046 ], [ 4949792.36983354575932, 3894391.906207267194986 ], [ 4949777.326688839122653, 3894451.971489655785263 ], [ 4949677.10642421990633, 3894427.104566922411323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950154.628936113789678, 3894510.271003404166549 ], [ 4950175.081863394007087, 3894509.928873738273978 ], [ 4950175.628997793421149, 3894536.874994798563421 ], [ 4950155.176091006025672, 3894537.217124064918607 ], [ 4950154.628936113789678, 3894510.271003404166549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950130.53812023345381, 3894679.200888539664447 ], [ 4950148.398359997197986, 3894678.855953390710056 ], [ 4950148.668807297945023, 3894695.242042379453778 ], [ 4950155.582684384658933, 3894694.885346859693527 ], [ 4950156.138056521303952, 3894714.184773300308734 ], [ 4950110.047012518160045, 3894715.227638494223356 ], [ 4950109.778496466577053, 3894697.020907537546009 ], [ 4950130.807404820807278, 3894696.679362647701055 ], [ 4950130.53812023345381, 3894679.200888539664447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949410.409092988818884, 3892178.330107213463634 ], [ 4949359.995063859038055, 3892176.820835440419614 ], [ 4949360.602842072956264, 3892146.59882187563926 ], [ 4949411.305398453958333, 3892147.744268641341478 ], [ 4949410.409092988818884, 3892178.330107213463634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950058.918843407183886, 3891889.899347890168428 ], [ 4950008.798243041150272, 3891882.927250924054533 ], [ 4950012.573824708350003, 3891854.529286479577422 ], [ 4950061.542498223483562, 3891861.136027578264475 ], [ 4950064.154060749337077, 3891843.660670577082783 ], [ 4950090.942752858623862, 3891847.330677052494138 ], [ 4950082.524811439216137, 3891906.3104248335585 ], [ 4950057.17663608957082, 3891902.64197001978755 ], [ 4950058.918843407183886, 3891889.899347890168428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949926.310254617594182, 3890890.225815671961755 ], [ 4949963.486776554957032, 3890879.705779981333762 ], [ 4949974.96848351880908, 3890919.408001235220581 ], [ 4949947.590208915993571, 3890927.389581508934498 ], [ 4949950.461514160037041, 3890936.4958476703614 ], [ 4949931.729046063497663, 3890941.937778417021036 ], [ 4949929.432774249464273, 3890933.924511759076267 ], [ 4949911.853105386719108, 3890939.003557998221368 ], [ 4949903.815738345496356, 3890911.321259340737015 ], [ 4949930.041217710822821, 3890903.702532874420285 ], [ 4949926.310254617594182, 3890890.225815671961755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949261.244528827257454, 3895985.868189002852887 ], [ 4949320.579388876445591, 3895988.843116866890341 ], [ 4949319.692430986091495, 3896010.689937869552523 ], [ 4949339.278920539654791, 3896011.43865580484271 ], [ 4949337.514108505100012, 3896046.393207874614745 ], [ 4949311.590981087647378, 3896045.2737463763915 ], [ 4949312.469188272953033, 3896031.801885422784835 ], [ 4949259.183042533695698, 3896029.197406298946589 ], [ 4949261.244528827257454, 3895985.868189002852887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949351.538274236023426, 3900540.495590527076274 ], [ 4949401.351848757825792, 3900550.379233583342284 ], [ 4949402.510710887610912, 3900543.826105503365397 ], [ 4949426.409684067592025, 3900548.584841114934534 ], [ 4949424.383001865819097, 3900558.77835953515023 ], [ 4949447.417960846796632, 3900563.536208159290254 ], [ 4949441.918097094632685, 3900590.111936905886978 ], [ 4949345.458696250803769, 3900570.712033533956856 ], [ 4949351.538274236023426, 3900540.495590527076274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948337.392021546140313, 3898639.060491720214486 ], [ 4948379.155236481688917, 3898638.738482352811843 ], [ 4948379.414588809013367, 3898667.140859202947468 ], [ 4948337.651418000459671, 3898667.462868166156113 ], [ 4948337.392021546140313, 3898639.060491720214486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948403.575841625221074, 3898699.208669422194362 ], [ 4948403.897335997782648, 3898666.073192668147385 ], [ 4948478.205958831124008, 3898666.512495285365731 ], [ 4948477.884372851811349, 3898699.647971152793616 ], [ 4948403.575841625221074, 3898699.208669422194362 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947091.098114053718746, 3898672.061591824050993 ], [ 4947102.84911566413939, 3898732.154288155026734 ], [ 4947059.638277656398714, 3898740.487743360456079 ], [ 4947047.887532623484731, 3898680.030936291441321 ], [ 4947091.098114053718746, 3898672.061591824050993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947003.898404902778566, 3889878.633384156506509 ], [ 4947011.064261730760336, 3889917.237794981803745 ], [ 4947022.302766702137887, 3889915.063798347488046 ], [ 4947028.034307694062591, 3889947.112539274152368 ], [ 4947019.96575393807143, 3889948.561315971892327 ], [ 4947022.545156511478126, 3889962.764772736467421 ], [ 4946985.948232860304415, 3889969.648146134801209 ], [ 4946970.183202597312629, 3889884.791283607948571 ], [ 4947003.898404902778566, 3889878.633384156506509 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947679.661290596239269, 3898823.383577012456954 ], [ 4947599.580957378260791, 3898834.95710318069905 ], [ 4947593.858793757855892, 3898795.989615714643151 ], [ 4947673.651580450125039, 3898784.051660264842212 ], [ 4947679.661290596239269, 3898823.383577012456954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947022.534896430559456, 3896584.441679048351943 ], [ 4947096.859796764329076, 3896573.953295928891748 ], [ 4947108.592095804400742, 3896654.437137844506651 ], [ 4947034.267413339577615, 3896664.925489023793489 ], [ 4947022.534896430559456, 3896584.441679048351943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944560.892403783276677, 3889649.552760519087315 ], [ 4944562.062862953171134, 3889628.798495905008167 ], [ 4944587.415823305957019, 3889630.277000298723578 ], [ 4944586.245344626717269, 3889651.031263844110072 ], [ 4944560.892403783276677, 3889649.552760519087315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944318.319793373346329, 3892982.571803401224315 ], [ 4944353.786834275349975, 3892944.004648588132113 ], [ 4944384.874791517853737, 3892972.797527219634503 ], [ 4944349.408056759275496, 3893011.000513525214046 ], [ 4944318.319793373346329, 3892982.571803401224315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944697.600623393431306, 3891800.211238190531731 ], [ 4944739.082822561264038, 3891803.888729943428189 ], [ 4944739.664098538458347, 3891798.063187143299729 ], [ 4944758.100773342885077, 3891799.535814241040498 ], [ 4944754.030545677989721, 3891841.771123384125531 ], [ 4944722.631009169854224, 3891838.830665735062212 ], [ 4944722.048148250207305, 3891846.476848538033664 ], [ 4944693.529538332484663, 3891843.538940207101405 ], [ 4944697.600623393431306, 3891800.211238190531731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943911.984915715642273, 3892125.068156041204929 ], [ 4943916.306257301010191, 3892125.07179895369336 ], [ 4943915.130262455902994, 3892153.108681097626686 ], [ 4943873.359175779856741, 3892150.888729376718402 ], [ 4943876.28909916151315, 3892092.630679157562554 ], [ 4943886.947808076627553, 3892093.367908029817045 ], [ 4943888.413092571310699, 3892063.874756393488497 ], [ 4943914.916153398342431, 3892065.353599098045379 ], [ 4943911.984915715642273, 3892125.068156041204929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944539.366151185706258, 3890552.206936449743807 ], [ 4944596.97412976436317, 3890567.550270648207515 ], [ 4944588.591869318857789, 3890598.857993252575397 ], [ 4944573.90194852091372, 3890594.839838791638613 ], [ 4944572.456681444309652, 3890600.300503726117313 ], [ 4944554.598226236179471, 3890595.551355652976781 ], [ 4944556.332227105274796, 3890589.362684247083962 ], [ 4944530.984583675861359, 3890582.786421463359147 ], [ 4944539.366151185706258, 3890552.206936449743807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944494.172498071566224, 3890507.015968262217939 ], [ 4944501.976888249628246, 3890477.528357622679323 ], [ 4944541.438727772794664, 3890487.758094621822238 ], [ 4944533.634297255426645, 3890517.245693993289024 ], [ 4944494.172498071566224, 3890507.015968262217939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943566.737169045954943, 3893306.375840036198497 ], [ 4943574.009842515923083, 3893221.175817816518247 ], [ 4943608.86482070479542, 3893224.117811171337962 ], [ 4943601.592037552967668, 3893309.317824102006853 ], [ 4943566.737169045954943, 3893306.375840036198497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943408.795887387357652, 3889902.011494195554405 ], [ 4943396.363528175279498, 3889954.79977575968951 ], [ 4943355.459309098310769, 3889945.298793162219226 ], [ 4943362.109560746699572, 3889916.538168758153915 ], [ 4943357.78876238130033, 3889915.442232406232506 ], [ 4943363.282676973380148, 3889891.414318731520325 ], [ 4943408.795887387357652, 3889902.011494195554405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943649.523784001357853, 3892484.606923602055758 ], [ 4943656.796027355827391, 3892400.499348702374846 ], [ 4943691.363974285311997, 3892403.441207520663738 ], [ 4943684.091623554937541, 3892487.54877321049571 ], [ 4943649.523784001357853, 3892484.606923602055758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943546.489460268057883, 3889236.864048830699176 ], [ 4943537.233388934284449, 3889280.551689045503736 ], [ 4943483.364598897285759, 3889268.855007447302341 ], [ 4943487.413939288817346, 3889249.92372002126649 ], [ 4943483.669279357418418, 3889248.828240444418043 ], [ 4943488.875321170315146, 3889224.800123409833759 ], [ 4943546.489460268057883, 3889236.864048830699176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943222.709833947010338, 3889858.891703382600099 ], [ 4943229.365620349533856, 3889823.212625266984105 ], [ 4943222.739888652227819, 3889822.114826593548059 ], [ 4943226.211841341108084, 3889804.275405359920114 ], [ 4943270.286769685335457, 3889812.32227601017803 ], [ 4943260.447068026289344, 3889865.840996473561972 ], [ 4943222.709833947010338, 3889858.891703382600099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989488.943716777488589, 3907812.41263985959813 ], [ 4989542.20731342304498, 3907813.276229684706777 ], [ 4989541.829619865864515, 3907848.59614000050351 ], [ 4989513.902212640270591, 3907848.161040504463017 ], [ 4989513.876309604384005, 3907858.356689943931997 ], [ 4989488.252278956584632, 3907857.927469142246991 ], [ 4989488.943716777488589, 3907812.41263985959813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988623.157237255014479, 3908272.31217718264088 ], [ 4988622.357400830835104, 3908246.820879202801734 ], [ 4988642.51248202752322, 3908246.507291941903532 ], [ 4988641.969527641311288, 3908233.397151284385473 ], [ 4988676.810205123387277, 3908232.392162399832159 ], [ 4988678.126426712609828, 3908281.553386718500406 ], [ 4988652.212131700478494, 3908282.216631970833987 ], [ 4988651.950705209746957, 3908271.656126307789236 ], [ 4988623.157237255014479, 3908272.31217718264088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988550.355679323896766, 3907795.844161166809499 ], [ 4988550.957059940323234, 3907785.649953520391136 ], [ 4988527.638143428601325, 3907784.499157603830099 ], [ 4988528.85638818051666, 3907757.920525565743446 ], [ 4988586.148288071155548, 3907759.884704600088298 ], [ 4988584.615602225996554, 3907797.022392845246941 ], [ 4988550.355679323896766, 3907795.844161166809499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988471.5118218511343, 3905359.965396143496037 ], [ 4988499.15114813297987, 3905361.49108045687899 ], [ 4988498.239919842220843, 3905380.42366910725832 ], [ 4988540.56271649710834, 3905382.714410672429949 ], [ 4988538.746586733497679, 3905418.030677100643516 ], [ 4988491.816693229600787, 3905415.728409324772656 ], [ 4988492.734294218942523, 3905394.246911305468529 ], [ 4988469.701246700249612, 3905393.096887814346701 ], [ 4988471.5118218511343, 3905359.965396143496037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988085.58352586068213, 3907590.04152840655297 ], [ 4988110.361275347881019, 3907583.548785917460918 ], [ 4988120.060063113458455, 3907619.986179924104363 ], [ 4988095.282344816252589, 3907626.478913608007133 ], [ 4988085.58352586068213, 3907590.04152840655297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988080.287920820526779, 3907288.162475773598999 ], [ 4988043.991925971582532, 3907294.990742980036885 ], [ 4988037.738992054946721, 3907262.203274129889905 ], [ 4988025.063859317451715, 3907264.720699298195541 ], [ 4988021.086264986544847, 3907243.226997087243944 ], [ 4988073.225581431761384, 3907233.525035435333848 ], [ 4988076.067727150395513, 3907248.461536340881139 ], [ 4988072.89962038397789, 3907248.817789856344461 ], [ 4988080.287920820526779, 3907288.162475773598999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987802.120116363279521, 3908462.163939848542213 ], [ 4987793.859879454597831, 3908426.094337444286793 ], [ 4987835.056054688058794, 3908416.364812416024506 ], [ 4987846.454417631030083, 3908464.094453923869878 ], [ 4987823.119821519590914, 3908469.498618555255234 ], [ 4987820.55746263731271, 3908457.840021272655576 ], [ 4987802.120116363279521, 3908462.163939848542213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987587.577072563581169, 3906731.275434355251491 ], [ 4987619.552017485722899, 3906725.528275239281356 ], [ 4987623.242978259921074, 3906746.65706978738308 ], [ 4987629.580197570845485, 3906745.580327173229307 ], [ 4987641.793962026946247, 3906813.339125791098922 ], [ 4987592.535106346942484, 3906822.320770597085357 ], [ 4987587.706786930561066, 3906795.363053184002638 ], [ 4987600.09326795861125, 3906793.208841618616134 ], [ 4987598.103816309943795, 3906782.644090054556727 ], [ 4987585.717330574989319, 3906784.798302521929145 ], [ 4987582.026345698162913, 3906763.669512629508972 ], [ 4987593.261110462248325, 3906761.512454822193831 ], [ 4987587.577072563581169, 3906731.275434355251491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987492.248009333387017, 3903937.05498803127557 ], [ 4987529.637379496358335, 3903955.717897937167436 ], [ 4987503.882121060043573, 3904006.996965298429132 ], [ 4987466.492804612964392, 3903988.334090639837086 ], [ 4987492.248009333387017, 3903937.05498803127557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987338.32462308742106, 3908095.794037911109626 ], [ 4987312.398546583019197, 3908101.192271367181093 ], [ 4987306.990764514543116, 3908075.689689204562455 ], [ 4987332.916864502243698, 3908070.291450610384345 ], [ 4987338.32462308742106, 3908095.794037911109626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987306.509427888318896, 3901477.253852964844555 ], [ 4987322.886320032179356, 3901492.951751636806875 ], [ 4987298.343714508228004, 3901518.744740928988904 ], [ 4987257.831199971027672, 3901480.411433492321521 ], [ 4987291.035854551009834, 3901445.536411763168871 ], [ 4987315.170586912892759, 3901468.535993578843772 ], [ 4987306.509427888318896, 3901477.253852964844555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987237.257474200800061, 3910912.114270651713014 ], [ 4987206.719878319650888, 3910920.778482472058386 ], [ 4987197.300016816705465, 3910887.983361233025789 ], [ 4987235.616001702845097, 3910877.153442257083952 ], [ 4987253.844224441796541, 3910840.056622692383826 ], [ 4987289.211595647037029, 3910857.621932972222567 ], [ 4987283.135503467172384, 3910869.987530167214572 ], [ 4987297.512923902831972, 3910876.941404198762029 ], [ 4987288.544522730633616, 3910894.761889556888491 ], [ 4987283.934729805216193, 3910896.207092040218413 ], [ 4987268.59969871211797, 3910927.484868885949254 ], [ 4987237.257474200800061, 3910912.114270651713014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987131.149466204456985, 3896061.108995145186782 ], [ 4987118.975639437325299, 3896092.030213215854019 ], [ 4987093.076388988643885, 3896081.771121855825186 ], [ 4987104.962143151089549, 3896050.849186564330012 ], [ 4987131.149466204456985, 3896061.108995145186782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986965.256643136963248, 3904650.187728424090892 ], [ 4987031.134211761876941, 3904676.56640581227839 ], [ 4987006.21683133020997, 3904739.136108859907836 ], [ 4986985.216656406410038, 3904730.709696123376489 ], [ 4986988.985005103982985, 3904720.523221217095852 ], [ 4986968.559828849509358, 3904712.462360194418579 ], [ 4986965.374519403092563, 3904719.737208477221429 ], [ 4986935.456625504419208, 3904707.647709337994456 ], [ 4986950.811697764322162, 3904669.451397954951972 ], [ 4986956.565456059761345, 3904671.650257364846766 ], [ 4986965.256643136963248, 3904650.187728424090892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986673.304019216448069, 3908183.379050507675856 ], [ 4986680.143985236994922, 3908212.1621870608069 ], [ 4986640.388390813022852, 3908221.532854557968676 ], [ 4986633.548384668305516, 3908192.749727953691036 ], [ 4986673.304019216448069, 3908183.379050507675856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986059.578619899228215, 3903239.526780857238919 ], [ 4986089.575855458155274, 3903219.571904736571014 ], [ 4986104.210507615469396, 3903241.090979390311986 ], [ 4986074.212406750768423, 3903261.409968864172697 ], [ 4986059.578619899228215, 3903239.526780857238919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985934.600337420590222, 3909339.168617210350931 ], [ 4985906.329568202607334, 3909362.405075666029006 ], [ 4985869.869884497486055, 3909318.985545904841274 ], [ 4985915.73883185070008, 3909280.861950845457613 ], [ 4985932.10211396496743, 3909300.564515405334532 ], [ 4985914.504829852841794, 3909315.087472939863801 ], [ 4985934.600337420590222, 3909339.168617210350931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985864.150987086817622, 3909422.385538189671934 ], [ 4985877.393699218519032, 3909422.781521823257208 ], [ 4985877.71050743944943, 3909410.7658975077793 ], [ 4985896.999213476665318, 3909411.176434548571706 ], [ 4985896.682396628893912, 3909423.192058646585792 ], [ 4985917.698517928831279, 3909423.606766994576901 ], [ 4985916.714737025089562, 3909473.490610366221517 ], [ 4985890.228487394750118, 3909473.06274166284129 ], [ 4985890.538292403332889, 3909463.960163705982268 ], [ 4985863.188322083093226, 3909463.530243678949773 ], [ 4985864.150987086817622, 3909422.385538189671934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985818.702395017258823, 3909405.526162913069129 ], [ 4985832.441274990327656, 3909439.059412488713861 ], [ 4985805.063281740061939, 3909450.281737914774567 ], [ 4985814.509854979813099, 3909472.880678476300091 ], [ 4985789.437755134887993, 3909483.016162462066859 ], [ 4985766.252230108715594, 3909426.884007368702441 ], [ 4985818.702395017258823, 3909405.526162913069129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985595.630126279778779, 3910704.946008232887834 ], [ 4985560.205667955800891, 3910710.687320398632437 ], [ 4985551.121289124712348, 3910657.137996636331081 ], [ 4985586.258797083981335, 3910651.03185218013823 ], [ 4985595.630126279778779, 3910704.946008232887834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985597.727981948293746, 3904899.585816674865782 ], [ 4985663.915172534994781, 3904917.22272032359615 ], [ 4985657.233794108964503, 3904941.603543278295547 ], [ 4985625.291173992678523, 3904933.15196823887527 ], [ 4985621.224080650135875, 3904948.071633575018495 ], [ 4985614.31759269721806, 3904946.234430683776736 ], [ 4985605.891986631788313, 3904977.529595359228551 ], [ 4985571.359570180997252, 3904968.343618183862418 ], [ 4985582.689940706826746, 3904926.495571642182767 ], [ 4985590.172340366058052, 3904928.334145277738571 ], [ 4985597.727981948293746, 3904899.585816674865782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985549.559390343725681, 3909866.237162835430354 ], [ 4985507.515637342818081, 3909870.506171299144626 ], [ 4985502.455363714136183, 3909819.5154485469684 ], [ 4985544.49832427315414, 3909815.610563222784549 ], [ 4985549.559390343725681, 3909866.237162835430354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984962.393535541370511, 3909316.454160118941218 ], [ 4984973.557067175395787, 3909343.790600258857012 ], [ 4984921.396225391887128, 3909364.786645216401666 ], [ 4984910.231786796823144, 3909337.81435721879825 ], [ 4984962.393535541370511, 3909316.454160118941218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984929.091145846992731, 3907454.200800960417837 ], [ 4984924.45327858440578, 3907467.298578114248812 ], [ 4984900.575339720584452, 3907458.866957496851683 ], [ 4984921.73624614905566, 3907398.835240336600691 ], [ 4984955.108872804790735, 3907410.202448041178286 ], [ 4984938.584908880293369, 3907457.500494204927236 ], [ 4984929.091145846992731, 3907454.200800960417837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984559.705814306624234, 3916117.154365044087172 ], [ 4984575.904262309893966, 3916083.328048608731478 ], [ 4984636.569940336979926, 3916111.87362297065556 ], [ 4984620.659264934249222, 3916145.700582487974316 ], [ 4984559.705814306624234, 3916117.154365044087172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984518.249917996115983, 3909886.729168790858239 ], [ 4984526.526954893022776, 3909917.335832179058343 ], [ 4984500.311020905151963, 3909924.556762011256069 ], [ 4984491.746914508752525, 3909893.585297924932092 ], [ 4984518.249917996115983, 3909886.729168790858239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984454.331912502646446, 3915761.511068045161664 ], [ 4984489.211523995734751, 3915739.745102392975241 ], [ 4984507.563593976199627, 3915769.283195155207068 ], [ 4984472.684005805291235, 3915791.049137385562062 ], [ 4984454.331912502646446, 3915761.511068045161664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984429.022954712621868, 3907673.320464805699885 ], [ 4984419.306343642994761, 3907642.346358979586512 ], [ 4984488.171398639678955, 3907620.66039862530306 ], [ 4984500.458674045279622, 3907660.379759825300425 ], [ 4984452.916266970336437, 3907675.197319053579122 ], [ 4984450.056737864390016, 3907666.815545876976103 ], [ 4984429.022954712621868, 3907673.320464805699885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984311.731920897960663, 3914341.416825995314866 ], [ 4984306.242230855859816, 3914350.143155107740313 ], [ 4984336.134296421892941, 3914369.148306866642088 ], [ 4984317.932995783165097, 3914397.508020296692848 ], [ 4984254.125775757245719, 3914356.575282021891326 ], [ 4984273.77141988184303, 3914326.034110832959414 ], [ 4984290.154176467098296, 3914336.632437818683684 ], [ 4984294.199478921480477, 3914330.08751957770437 ], [ 4984311.731920897960663, 3914341.416825995314866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984329.626107323914766, 3905615.011472050566226 ], [ 4984355.402849330566823, 3905551.348892326001078 ], [ 4984393.951618088409305, 3905566.732992603909224 ], [ 4984368.46274397149682, 3905630.396212297957391 ], [ 4984329.626107323914766, 3905615.011472050566226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984081.236443301662803, 3909139.595339819323272 ], [ 4984040.905619295313954, 3909149.696774053853005 ], [ 4984028.924131123349071, 3909102.331512269563973 ], [ 4984068.967113974504173, 3909092.229387206025422 ], [ 4984081.236443301662803, 3909139.595339819323272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984028.877256807871163, 3909738.471513651777059 ], [ 4984035.712842646054924, 3909770.167052351869643 ], [ 4983993.371080983430147, 3909778.80732865864411 ], [ 4983986.823348071426153, 3909747.112472819630057 ], [ 4984028.877256807871163, 3909738.471513651777059 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983909.47657598555088, 3909581.251499012112617 ], [ 4983939.717371478676796, 3909576.588314929045737 ], [ 4983946.240560751408339, 3909618.842952643986791 ], [ 4983915.999811638146639, 3909623.506129492539912 ], [ 4983909.47657598555088, 3909581.251499012112617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983847.82273967191577, 3894762.786695891991258 ], [ 4983864.715724834240973, 3894806.885723958257586 ], [ 4983824.927748955786228, 3894822.086523424368352 ], [ 4983808.034708244726062, 3894777.987519961316139 ], [ 4983847.82273967191577, 3894762.786695891991258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983749.520245410501957, 3908787.797690943814814 ], [ 4983777.766866248100996, 3908774.390501209534705 ], [ 4983803.263785463757813, 3908829.069756945595145 ], [ 4983775.018056572414935, 3908842.112789579667151 ], [ 4983749.520245410501957, 3908787.797690943814814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983530.422046436928213, 3905680.875811530277133 ], [ 4983540.887639816850424, 3905637.932493607979268 ], [ 4983569.378114059567451, 3905644.917060656473041 ], [ 4983571.703627845272422, 3905635.455022040754557 ], [ 4983606.813442455604672, 3905643.911509537603706 ], [ 4983603.033830748870969, 3905659.560415100306273 ], [ 4983625.480815990827978, 3905665.074491031933576 ], [ 4983616.469184183515608, 3905701.830907252151519 ], [ 4983530.422046436928213, 3905680.875811530277133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992545.238449782133102, 3905537.601603541057557 ], [ 4992550.487172517925501, 3905512.85453546512872 ], [ 4992530.917470826767385, 3905508.797161802649498 ], [ 4992535.877273584716022, 3905484.41345719108358 ], [ 4992555.44699231442064, 3905488.470834408886731 ], [ 4992558.36413963790983, 3905474.277417195960879 ], [ 4992605.274261915124953, 3905483.869380914606154 ], [ 4992596.234811898320913, 3905526.448854314628989 ], [ 4992581.845252947881818, 3905523.497594507411122 ], [ 4992577.470005558803678, 3905544.605652446858585 ], [ 4992545.238449782133102, 3905537.601603541057557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982598.222594612278044, 3908255.331318549346179 ], [ 4982575.134415287524462, 3908279.311361200641841 ], [ 4982565.653950190171599, 3908270.186410771217197 ], [ 4982588.742128838784993, 3908246.206360100302845 ], [ 4982598.222594612278044, 3908255.331318549346179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982462.121634144335985, 3907839.181590782944113 ], [ 4982330.657458587549627, 3907914.621969658415765 ], [ 4982303.698862484656274, 3907867.951743771787733 ], [ 4982435.163189792074263, 3907792.511235173325986 ], [ 4982462.121634144335985, 3907839.181590782944113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982299.620797544717789, 3907635.261852953583002 ], [ 4982347.762765143066645, 3907609.517877832520753 ], [ 4982419.441072180867195, 3907742.589293974451721 ], [ 4982371.299273448064923, 3907768.333142791874707 ], [ 4982299.620797544717789, 3907635.261852953583002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981787.261872010305524, 3910636.741106444504112 ], [ 4981795.266201127320528, 3910661.884325550869107 ], [ 4981772.506421769037843, 3910669.115706049371511 ], [ 4981764.501253380440176, 3910644.336624825373292 ], [ 4981787.261872010305524, 3910636.741106444504112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981693.627291809767485, 3910539.67089309124276 ], [ 4981720.800012717954814, 3910618.384779107291251 ], [ 4981693.429042371921241, 3910627.790646372362971 ], [ 4981666.256250970065594, 3910549.07678758399561 ], [ 4981693.627291809767485, 3910539.67089309124276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981674.257755598053336, 3908399.25471365917474 ], [ 4981697.941337276250124, 3908366.1719227777794 ], [ 4981765.493201423436403, 3908414.389480622950941 ], [ 4981741.52166413795203, 3908447.471564742270857 ], [ 4981674.257755598053336, 3908399.25471365917474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991145.545155646279454, 3902429.700140967499465 ], [ 4991147.086384615860879, 3902390.742075568065047 ], [ 4991206.404461140744388, 3902393.081207708921283 ], [ 4991205.777318876236677, 3902412.742677953094244 ], [ 4991207.216267013922334, 3902413.110555159859359 ], [ 4991206.895112818107009, 3902425.854322906583548 ], [ 4991203.727343160659075, 3902425.846077136229724 ], [ 4991203.423251327127218, 3902432.035521739628166 ], [ 4991145.545155646279454, 3902429.700140967499465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981559.103360826149583, 3903775.247368545271456 ], [ 4981523.942278219386935, 3903788.277217880357057 ], [ 4981515.641120912507176, 3903766.046577671077102 ], [ 4981499.502035821788013, 3903771.836493609473109 ], [ 4981489.769191196188331, 3903745.961336752865463 ], [ 4981541.358208391815424, 3903726.778058897703886 ], [ 4981559.103360826149583, 3903775.247368545271456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981322.254529401659966, 3906929.555371516384184 ], [ 4981345.610313894227147, 3906914.678176071960479 ], [ 4981360.243474063463509, 3906937.651237209327519 ], [ 4981337.17563190497458, 3906952.529064008966088 ], [ 4981322.254529401659966, 3906929.555371516384184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981318.811422791332006, 3895069.439819995779544 ], [ 4981335.171309257857502, 3895096.057844194117934 ], [ 4981286.422890251502395, 3895125.807558027561754 ], [ 4981270.063786815851927, 3895098.825435208156705 ], [ 4981318.811422791332006, 3895069.439819995779544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981256.921409003436565, 3894792.198979255743325 ], [ 4981262.756598952226341, 3894759.0762157458812 ], [ 4981303.933083582669497, 3894766.450761733110994 ], [ 4981298.386718584224582, 3894799.210032166913152 ], [ 4981256.921409003436565, 3894792.198979255743325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981152.215231088921428, 3916167.96486914018169 ], [ 4981125.146866251714528, 3916173.366532753687352 ], [ 4981118.884365001693368, 3916142.037022568285465 ], [ 4981146.240592245943844, 3916136.635994584765285 ], [ 4981152.215231088921428, 3916167.96486914018169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981123.655777018517256, 3907283.776922556106001 ], [ 4981097.110531653277576, 3907308.842913560103625 ], [ 4981073.842783816158772, 3907284.394235619809479 ], [ 4981100.388031471520662, 3907259.328222011215985 ], [ 4981123.655777018517256, 3907283.776922556106001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990200.264994614757597, 3909212.134619985241443 ], [ 4990225.340890125371516, 3909201.274992748629302 ], [ 4990245.37745823059231, 3909246.843065846245736 ], [ 4990206.755069186910987, 3909263.494032329879701 ], [ 4990195.019142111763358, 3909236.882203552871943 ], [ 4990208.853586915880442, 3909231.091579040978104 ], [ 4990200.264994614757597, 3909212.134619985241443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990177.678022468462586, 3908477.256405766122043 ], [ 4990142.210422485135496, 3908498.285147382877767 ], [ 4990122.429294479079545, 3908465.098345691803843 ], [ 4990157.896922585554421, 3908444.069578412454575 ], [ 4990177.678022468462586, 3908477.256405766122043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980627.765812328085303, 3895587.153423822019249 ], [ 4980614.580539361573756, 3895557.629796249326319 ], [ 4980657.831087859347463, 3895538.426470371428877 ], [ 4980669.583304055035114, 3895564.669783842749894 ], [ 4980677.367968598380685, 3895561.409825028851628 ], [ 4980686.254124106839299, 3895581.092475506477058 ], [ 4980660.591707769781351, 3895592.687897708266973 ], [ 4980653.139362583868206, 3895575.921461697667837 ], [ 4980627.765812328085303, 3895587.153423822019249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989768.889236583374441, 3908908.436559186317027 ], [ 4989801.671910385601223, 3908923.813764491118491 ], [ 4989784.591443607583642, 3908960.547617790754884 ], [ 4989751.520895808935165, 3908945.16969893919304 ], [ 4989768.889236583374441, 3908908.436559186317027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980448.65530070848763, 3898830.064782794099301 ], [ 4980412.042602622881532, 3898845.641776676289737 ], [ 4980399.433941291645169, 3898816.483594218268991 ], [ 4980436.046671674586833, 3898800.906583436764777 ], [ 4980448.65530070848763, 3898830.064782794099301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980439.613983603194356, 3899142.832918241620064 ], [ 4980448.200677587650716, 3899167.248570812866092 ], [ 4980430.330181281082332, 3899173.399435397237539 ], [ 4980421.743473061360419, 3899148.983788449317217 ], [ 4980439.613983603194356, 3899142.832918241620064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980433.450054103508592, 3899064.53129512257874 ], [ 4980476.986066177487373, 3899043.871757586020976 ], [ 4980488.452908639796078, 3899068.293768277391791 ], [ 4980444.917729122564197, 3899088.589158842340112 ], [ 4980433.450054103508592, 3899064.53129512257874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980346.536717234179378, 3899557.73689579917118 ], [ 4980303.871265495195985, 3899575.849647756665945 ], [ 4980307.023369330912828, 3899583.139184862375259 ], [ 4980279.63687383942306, 3899594.731201499234885 ], [ 4980260.438577295280993, 3899549.900985079817474 ], [ 4980330.48980999737978, 3899520.560300971847028 ], [ 4980346.536717234179378, 3899557.73689579917118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980209.838752970099449, 3899640.094319360796362 ], [ 4980226.171366362832487, 3899678.363863270264119 ], [ 4980199.361019521020353, 3899689.957226309925318 ], [ 4980183.029173521324992, 3899651.323569598607719 ], [ 4980209.838752970099449, 3899640.094319360796362 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980176.306319057010114, 3907050.822816421277821 ], [ 4980169.330538249574602, 3907080.666361042298377 ], [ 4980129.904188331216574, 3907071.476632224395871 ], [ 4980136.879927666857839, 3907041.633077539503574 ], [ 4980176.306319057010114, 3907050.822816421277821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989315.190672290511429, 3909911.562274660449475 ], [ 4989311.946299638599157, 3909942.141240070108324 ], [ 4989271.363671279512346, 3909937.668865831568837 ], [ 4989274.895897135138512, 3909907.090624538250268 ], [ 4989315.190672290511429, 3909911.562274660449475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989242.752482312731445, 3908046.654112961143255 ], [ 4989190.355858921073377, 3908044.700909527949989 ], [ 4989191.88476593233645, 3908009.383902121800929 ], [ 4989219.523169592022896, 3908010.182068988215178 ], [ 4989219.835959280841053, 3908000.351277026813477 ], [ 4989244.594256843440235, 3908001.506316814571619 ], [ 4989242.752482312731445, 3908046.654112961143255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979926.269139176234603, 3899980.664136888924986 ], [ 4979937.443302528001368, 3900007.270070895086974 ], [ 4979908.03977525793016, 3900019.586324914824218 ], [ 4979896.865588, 3899992.980402933433652 ], [ 4979926.269139176234603, 3899980.664136888924986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979849.568544203415513, 3909265.85423343302682 ], [ 4979812.343776968307793, 3909304.735270266421139 ], [ 4979777.865730815567076, 3909272.252331601921469 ], [ 4979815.09128656424582, 3909233.007116824388504 ], [ 4979849.568544203415513, 3909265.85423343302682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979851.451290969736874, 3901932.606402160599828 ], [ 4979862.06382866948843, 3901952.292622681241482 ], [ 4979833.808046056888998, 3901967.524519422091544 ], [ 4979809.711809539236128, 3901924.14040688611567 ], [ 4979832.778345031663775, 3901911.446090488694608 ], [ 4979846.261221428401768, 3901935.508134218864143 ], [ 4979851.451290969736874, 3901932.606402160599828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979761.869006277061999, 3897046.143639678601176 ], [ 4979744.090761272236705, 3897009.327816841192544 ], [ 4979754.182362580671906, 3897004.616089318878949 ], [ 4979744.147020561620593, 3896983.474710144568235 ], [ 4979774.998732064850628, 3896968.976665296591818 ], [ 4979809.121304869651794, 3897039.692198973149061 ], [ 4979781.440437373705208, 3897053.104719467461109 ], [ 4979775.13217247556895, 3897039.982303941622376 ], [ 4979761.869006277061999, 3897046.143639678601176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979677.925409214571118, 3908229.887365617789328 ], [ 4979695.467744398862123, 3908239.392962275072932 ], [ 4979670.899020076729357, 3908283.399560164660215 ], [ 4979653.645412921905518, 3908273.530474357772619 ], [ 4979677.925409214571118, 3908229.887365617789328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979652.389271884225309, 3908321.593231002800167 ], [ 4979667.134732922539115, 3908293.222952571231872 ], [ 4979734.432616798207164, 3908327.597806809470057 ], [ 4979719.686310932971537, 3908356.332179678604007 ], [ 4979652.389271884225309, 3908321.593231002800167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979643.824235935695469, 3904578.297008257359266 ], [ 4979678.978619115427136, 3904567.449472202453762 ], [ 4979680.407315196469426, 3904572.550421677529812 ], [ 4979703.458848832175136, 3904565.68205255549401 ], [ 4979711.464584271423519, 3904591.91694653313607 ], [ 4979653.545889245346189, 3904609.997588580474257 ], [ 4979643.824235935695469, 3904578.297008257359266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988961.457399949431419, 3908159.553171549458057 ], [ 4988958.560789479874074, 3908166.46439408371225 ], [ 4988936.701988434419036, 3908157.306001267861575 ], [ 4988955.527658872306347, 3908113.293371878098696 ], [ 4988984.863178370520473, 3908126.111954250372946 ], [ 4988988.627226065844297, 3908117.7463906458579 ], [ 4989002.431684118695557, 3908123.971452646423131 ], [ 4988983.028273252770305, 3908168.710858709178865 ], [ 4988961.457399949431419, 3908159.553171549458057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988681.237819676287472, 3906926.987910553812981 ], [ 4988649.562688559293747, 3906928.000837155152112 ], [ 4988648.222588944248855, 3906888.307039155159146 ], [ 4988679.897766794078052, 3906887.294111002236605 ], [ 4988681.237819676287472, 3906926.987910553812981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979597.220095953904092, 3900047.676092351321131 ], [ 4979606.198045007884502, 3900024.755353486631066 ], [ 4979634.974793963134289, 3900035.741769038606435 ], [ 4979625.996033104136586, 3900059.026627368293703 ], [ 4979597.220095953904092, 3900047.676092351321131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979480.105307843536139, 3903588.596378008369356 ], [ 4979439.097359880805016, 3903642.399003348778933 ], [ 4979420.123130031861365, 3903627.792667941655964 ], [ 4979461.130273354239762, 3903574.354143837001175 ], [ 4979480.105307843536139, 3903588.596378008369356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979495.292352781631052, 3892724.075453599449247 ], [ 4979447.696383175440133, 3892752.738574840594083 ], [ 4979393.728985153138638, 3892663.774312824010849 ], [ 4979441.325054105371237, 3892635.111097525805235 ], [ 4979495.292352781631052, 3892724.075453599449247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979373.84498246666044, 3896263.87902588583529 ], [ 4979389.421468880027533, 3896253.717076198197901 ], [ 4979379.085700671188533, 3896238.037141324020922 ], [ 4979410.238719111308455, 3896217.713257420808077 ], [ 4979434.643776713870466, 3896254.179053486324847 ], [ 4979388.201559487730265, 3896285.029602319933474 ], [ 4979373.84498246666044, 3896263.87902588583529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979312.589593828655779, 3899818.385671957395971 ], [ 4979367.011106367222965, 3899823.965251950547099 ], [ 4979363.779257332906127, 3899853.452841950114816 ], [ 4979332.680837010033429, 3899850.47257437184453 ], [ 4979330.625446986407042, 3899868.674662535078824 ], [ 4979307.589649388566613, 3899866.440109345130622 ], [ 4979312.589593828655779, 3899818.385671957395971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979236.875708557665348, 3909144.725268303882331 ], [ 4979228.830026096664369, 3909137.425252063199878 ], [ 4979245.856633138842881, 3909118.891234171111137 ], [ 4979283.497776474803686, 3909153.565113170538098 ], [ 4979270.511296018958092, 3909167.738239890895784 ], [ 4979276.832663306966424, 3909173.578014069236815 ], [ 4979261.826132507994771, 3909189.93157849740237 ], [ 4979225.621404286473989, 3909156.717359127942473 ], [ 4979236.875708557665348, 3909144.725268303882331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979243.591859405860305, 3904164.869197034742683 ], [ 4979264.098364897072315, 3904136.511199228931218 ], [ 4979417.632151682861149, 3904246.446688381023705 ], [ 4979396.837608061730862, 3904274.803947843145579 ], [ 4979243.591859405860305, 3904164.869197034742683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988435.748039728030562, 3908146.945378119591624 ], [ 4988429.202406480908394, 3908116.341863641515374 ], [ 4988475.582726944237947, 3908106.26215027552098 ], [ 4988480.707854042761028, 3908129.215334582608193 ], [ 4988473.217432404868305, 3908131.017256895080209 ], [ 4988478.342556687071919, 3908153.970441090408713 ], [ 4988429.369238450191915, 3908164.771931927185506 ], [ 4988425.953373816795647, 3908149.105684665497392 ], [ 4988435.748039728030562, 3908146.945378119591624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979033.206177668645978, 3908530.358944706618786 ], [ 4979072.901429950259626, 3908547.558570400346071 ], [ 4979063.641188620589674, 3908569.38659449853003 ], [ 4979050.983973319642246, 3908564.26150735327974 ], [ 4979048.089957819320261, 3908571.173799641430378 ], [ 4979020.763256662525237, 3908559.462789188139141 ], [ 4979033.206177668645978, 3908530.358944706618786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978990.460074031725526, 3912343.831360457465053 ], [ 4979049.054506027139723, 3912405.131770316977054 ], [ 4979012.996894183568656, 3912439.2827561465092 ], [ 4978954.690327322110534, 3912377.983041967265308 ], [ 4978990.460074031725526, 3912343.831360457465053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978875.728832222521305, 3912148.773670336231589 ], [ 4978901.697740013711154, 3912120.791120471432805 ], [ 4978935.311893778853118, 3912152.17874303041026 ], [ 4978909.055888089351356, 3912179.796511441934854 ], [ 4978875.728832222521305, 3912148.773670336231589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978879.334812315180898, 3904963.718611715827137 ], [ 4978864.353508315980434, 3904967.327804423868656 ], [ 4978869.77774644177407, 3904989.187337347771972 ], [ 4978842.695468994788826, 3904996.047783119603992 ], [ 4978834.415881915949285, 3904962.894053741358221 ], [ 4978820.87434272095561, 3904966.50635599065572 ], [ 4978814.595564294606447, 3904940.275422317441553 ], [ 4978870.19999219942838, 3904926.557589092291892 ], [ 4978879.334812315180898, 3904963.718611715827137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978861.163540496490896, 3907798.08332893718034 ], [ 4978874.754420084878802, 3907770.802547471597791 ], [ 4978925.374722898937762, 3907796.036288525909185 ], [ 4978911.783804517239332, 3907823.317044808529317 ], [ 4978861.163540496490896, 3907798.08332893718034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978800.272484297864139, 3909744.969638174865395 ], [ 4978832.898124969564378, 3909701.707742279395461 ], [ 4978917.405054479837418, 3909765.248096558265388 ], [ 4978915.383499298244715, 3909768.156819912604988 ], [ 4978941.540211968123913, 3909787.876143607776612 ], [ 4978879.465938455425203, 3909869.672804901376367 ], [ 4978834.337549543008208, 3909836.075825513340533 ], [ 4978865.80841123405844, 3909794.268023420590907 ], [ 4978800.272484297864139, 3909744.969638174865395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988016.269054868258536, 3908138.981224560644478 ], [ 4988028.526443271897733, 3908188.533733780961484 ], [ 4987978.973919173702598, 3908200.791136498562992 ], [ 4987970.707507996819913, 3908167.270398783031851 ], [ 4987996.635463745333254, 3908161.144539401400834 ], [ 4987992.64531992841512, 3908144.748655884992331 ], [ 4988016.269054868258536, 3908138.981224560644478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987885.892913487739861, 3902660.654491475317627 ], [ 4987893.162758441641927, 3902632.270263332407922 ], [ 4987931.151308284141123, 3902642.196043797302991 ], [ 4987933.767493901774287, 3902632.37098546884954 ], [ 4987971.468956033699214, 3902641.931979137007147 ], [ 4987959.548926065675914, 3902687.41882273927331 ], [ 4987908.033690063282847, 3902674.182263978756964 ], [ 4987910.067588783800602, 3902666.904679257888347 ], [ 4987885.892913487739861, 3902660.654491475317627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987710.79482661280781, 3908019.152506778482348 ], [ 4987780.515433900989592, 3908001.482550992630422 ], [ 4987789.923890795558691, 3908039.011513638775796 ], [ 4987746.132280301302671, 3908050.191214284859598 ], [ 4987743.850557032972574, 3908041.446383397560567 ], [ 4987718.209562190808356, 3908047.937328954227269 ], [ 4987710.79482661280781, 3908019.152506778482348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987700.266890059225261, 3895622.276684117969126 ], [ 4987690.113073101267219, 3895651.381981371901929 ], [ 4987642.337867866270244, 3895634.513965412508696 ], [ 4987652.7796914819628, 3895605.409361952915788 ], [ 4987700.266890059225261, 3895622.276684117969126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978634.442286022938788, 3899900.67926766211167 ], [ 4978668.758576583117247, 3899880.361244205851108 ], [ 4978684.255672732368112, 3899906.247627285774797 ], [ 4978650.227409219369292, 3899926.566246351692826 ], [ 4978634.442286022938788, 3899900.67926766211167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978589.790985009633005, 3916769.748698117211461 ], [ 4978636.454478739760816, 3916753.098171360325068 ], [ 4978636.739970385096967, 3916754.191184455994517 ], [ 4978653.734905505552888, 3916748.037214767653495 ], [ 4978667.184091937728226, 3916784.843533763196319 ], [ 4978603.813565356656909, 3916807.648612974677235 ], [ 4978589.790985009633005, 3916769.748698117211461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978575.077363716438413, 3907477.035024617798626 ], [ 4978599.021763921715319, 3907455.23818394402042 ], [ 4978619.991320796310902, 3907478.223280812613666 ], [ 4978596.046923938207328, 3907500.020103096496314 ], [ 4978575.077363716438413, 3907477.035024617798626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978551.711384153924882, 3898043.437813548836857 ], [ 4978620.280229310505092, 3898034.844954212196171 ], [ 4978626.510316852480173, 3898084.744087759405375 ], [ 4978558.229622373357415, 3898093.337545563466847 ], [ 4978551.711384153924882, 3898043.437813548836857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978377.230314324609935, 3909798.686721708625555 ], [ 4978468.238898144103587, 3909513.400308758951724 ], [ 4978523.766940043307841, 3909530.996991488151252 ], [ 4978432.757825028151274, 3909816.283219445031136 ], [ 4978377.230314324609935, 3909798.686721708625555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978371.892229766584933, 3907163.448596605099738 ], [ 4978394.37696614023298, 3907151.115911288186908 ], [ 4978406.423486313782632, 3907172.989464561920613 ], [ 4978383.938762647099793, 3907185.322139964904636 ], [ 4978371.892229766584933, 3907163.448596605099738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978344.034736950881779, 3911465.252755465917289 ], [ 4978321.537381033413112, 3911485.232277936302125 ], [ 4978287.073488396592438, 3911446.560972596053034 ], [ 4978309.570850886404514, 3911426.581421754322946 ], [ 4978344.034736950881779, 3911465.252755465917289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978321.539822421036661, 3905113.278694330248982 ], [ 4978341.133591706864536, 3905107.130075986031443 ], [ 4978343.423268673941493, 3905113.689311717171222 ], [ 4978365.89809384662658, 3905106.818569349125028 ], [ 4978381.057272463105619, 3905154.916182785760611 ], [ 4978358.005810229107738, 3905162.149818869773299 ], [ 4978356.576121293008327, 3905157.413067950401455 ], [ 4978337.271108350716531, 3905163.198156846221536 ], [ 4978321.539822421036661, 3905113.278694330248982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978312.059257897548378, 3904831.784760895185173 ], [ 4978283.537199554033577, 3904838.642712289001793 ], [ 4978286.391999861225486, 3904850.300984745845199 ], [ 4978261.039768404327333, 3904856.07329319184646 ], [ 4978254.190690361894667, 3904826.928230227902532 ], [ 4978260.817479562945664, 3904825.121630157809705 ], [ 4978255.10862126480788, 3904801.440961403306574 ], [ 4978266.632173597812653, 3904798.916487605310977 ], [ 4978264.348631279543042, 3904789.444219561759382 ], [ 4978282.786943921819329, 3904785.113766218069941 ], [ 4978285.355342391878366, 3904796.04316701553762 ], [ 4978302.353885392658412, 3904791.709671266376972 ], [ 4978312.059257897548378, 3904831.784760895185173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978240.099333284422755, 3909433.8986258902587 ], [ 4978264.550307157449424, 3909443.782083782367408 ], [ 4978256.159375295974314, 3909463.427444816567004 ], [ 4978231.708416260778904, 3909453.543994442559779 ], [ 4978240.099333284422755, 3909433.8986258902587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978159.18376905284822, 3906178.020000808872283 ], [ 4978134.97455062251538, 3906188.528566488064826 ], [ 4978115.491039886139333, 3906142.970833072904497 ], [ 4978139.699520711787045, 3906132.826380455400795 ], [ 4978159.18376905284822, 3906178.020000808872283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978101.387931674718857, 3904506.89696078421548 ], [ 4978089.288356451317668, 3904509.420286851935089 ], [ 4978082.449783556163311, 3904475.177454515360296 ], [ 4978094.548603285104036, 3904473.018255372997373 ], [ 4978101.387931674718857, 3904506.89696078421548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977937.435034215450287, 3903737.504885800648481 ], [ 4977964.426128840073943, 3903774.339108061976731 ], [ 4977929.240686615929008, 3903799.754073889460415 ], [ 4977915.171127777546644, 3903780.425437748897821 ], [ 4977927.57280252687633, 3903771.348305382300168 ], [ 4977914.939212765544653, 3903753.84335537487641 ], [ 4977937.435034215450287, 3903737.504885800648481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977920.902646654285491, 3902837.701550092082471 ], [ 4977942.582937024533749, 3902798.785237879958004 ], [ 4977956.965554968453944, 3902806.462337819393724 ], [ 4977954.942815255373716, 3902809.735250599682331 ], [ 4977981.11778846103698, 3902824.355741058476269 ], [ 4977975.91579582169652, 3902833.083909293171018 ], [ 4978007.268124360591173, 3902850.628404040820897 ], [ 4978009.869892733171582, 3902845.90019319485873 ], [ 4978048.989026690833271, 3902867.466585310641676 ], [ 4978031.644402217119932, 3902898.745218064170331 ], [ 4977920.902646654285491, 3902837.701550092082471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977776.261781110428274, 3906296.64703226974234 ], [ 4977800.183589975349605, 3906285.773406384978443 ], [ 4977810.213889080099761, 3906308.37069975072518 ], [ 4977786.580799693241715, 3906318.880792316049337 ], [ 4977776.261781110428274, 3906296.64703226974234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977734.578324127011001, 3906401.429389745928347 ], [ 4977778.67166986502707, 3906382.951382261700928 ], [ 4977787.840439644642174, 3906404.454460252076387 ], [ 4977743.747122797183692, 3906422.932452937122434 ], [ 4977734.578324127011001, 3906401.429389745928347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977667.297271964140236, 3907178.345906787086278 ], [ 4977640.756683149375021, 3907202.687049539294094 ], [ 4977606.569638442248106, 3907166.202107385266572 ], [ 4977624.456333126872778, 3907149.48954910505563 ], [ 4977634.224505474790931, 3907159.705745555460453 ], [ 4977642.590475548990071, 3907152.076526693999767 ], [ 4977667.297271964140236, 3907178.345906787086278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977605.671445474028587, 3906770.752740588970482 ], [ 4977588.657469969242811, 3906783.097552838735282 ], [ 4977576.598659157752991, 3906766.686328534036875 ], [ 4977563.909785732626915, 3906776.127166582271457 ], [ 4977540.078520056791604, 3906744.033610024023801 ], [ 4977579.585616020485759, 3906715.349968363065273 ], [ 4977604.565536441281438, 3906748.902496742550284 ], [ 4977594.761315981857479, 3906755.800445720553398 ], [ 4977605.671445474028587, 3906770.752740588970482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977339.672765295021236, 3911572.741164194885641 ], [ 4977370.966605545021594, 3911613.589431429281831 ], [ 4977320.795582067221403, 3911651.718655460979789 ], [ 4977290.650194586254656, 3911612.32937402324751 ], [ 4977318.042930006049573, 3911591.266805195249617 ], [ 4977317.182327173650265, 3911589.808476508595049 ], [ 4977339.672765295021236, 3911572.741164194885641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977353.217904175631702, 3902050.351382655091584 ], [ 4977352.915478474460542, 3902057.2692407425493 ], [ 4977328.439202085137367, 3902056.125763416755944 ], [ 4977328.142101434990764, 3902060.494715746492147 ], [ 4977314.03169527836144, 3902060.101145275868475 ], [ 4977315.834796955808997, 3902024.055935978423804 ], [ 4977388.975725868716836, 3902027.48579876916483 ], [ 4977387.772831697016954, 3902051.88006440969184 ], [ 4977353.217904175631702, 3902050.351382655091584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977277.610828411765397, 3912343.117600032128394 ], [ 4977303.274813011288643, 3912322.415536047425121 ], [ 4977329.977071749977767, 3912355.971529794391245 ], [ 4977304.313858243636787, 3912376.309436957351863 ], [ 4977277.610828411765397, 3912343.117600032128394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977141.924925946630538, 3908791.810724642593414 ], [ 4977160.662620306946337, 3908780.561601643916219 ], [ 4977172.713954796083272, 3908800.249838147312403 ], [ 4977181.650558319874108, 3908794.806452167220414 ], [ 4977210.6294409269467, 3908842.932286466937512 ], [ 4977182.955183049663901, 3908859.624757834244519 ], [ 4977141.924925946630538, 3908791.810724642593414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986148.667824906297028, 3901526.139605444855988 ], [ 4986176.260200745426118, 3901548.782381968107074 ], [ 4986139.578407527878881, 3901593.117794544901699 ], [ 4986111.9860465740785, 3901570.475055076181889 ], [ 4986148.667824906297028, 3901526.139605444855988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977041.569759550504386, 3913028.653689033351839 ], [ 4977020.538195318542421, 3913036.985088705550879 ], [ 4977022.255559812299907, 3913041.722389310132712 ], [ 4977000.360416172072291, 3913050.052011950407177 ], [ 4976981.74662658944726, 3913003.040171100292355 ], [ 4977024.674150697886944, 3912986.014988961163908 ], [ 4977041.569759550504386, 3913028.653689033351839 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977031.750900935381651, 3906803.783588239457458 ], [ 4977063.030372683890164, 3906854.462899838108569 ], [ 4977039.101052545011044, 3906869.342621441930532 ], [ 4977007.533621172420681, 3906818.66273975558579 ], [ 4977031.750900935381651, 3906803.783588239457458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976967.748867000453174, 3903787.54768455773592 ], [ 4976984.751608991064131, 3903781.392708874307573 ], [ 4976980.742004693485796, 3903770.824582966044545 ], [ 4976994.574882398359478, 3903765.755434126127511 ], [ 4976997.726631257683039, 3903773.408731332048774 ], [ 4977016.170723767951131, 3903766.528502843342721 ], [ 4977012.161129566840827, 3903755.960372335277498 ], [ 4977025.994020878337324, 3903750.891239715740085 ], [ 4977029.145006759092212, 3903758.908670363016427 ], [ 4977047.877838189713657, 3903751.664931586943567 ], [ 4977043.580289245583117, 3903741.096198582556099 ], [ 4977057.989880383014679, 3903735.664148388430476 ], [ 4977060.852893589995801, 3903743.68098466983065 ], [ 4977079.872952746227384, 3903736.801996119320393 ], [ 4977076.150587785989046, 3903726.598584328778088 ], [ 4977094.306767363101244, 3903719.717811445705593 ], [ 4977115.785312043502927, 3903776.931081743445247 ], [ 4976982.929424867033958, 3903826.905354521702975 ], [ 4976967.748867000453174, 3903787.54768455773592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976958.104110712185502, 3901216.397922412492335 ], [ 4976958.840529595501721, 3901277.937559772282839 ], [ 4976929.464656431227922, 3901278.240815626457334 ], [ 4976928.728170298039913, 3901216.701179056428373 ], [ 4976958.104110712185502, 3901216.397922412492335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976909.146702119149268, 3912891.828950438182801 ], [ 4976932.195678315125406, 3912882.40924530941993 ], [ 4976950.528567460365593, 3912926.143264405895025 ], [ 4976902.989852852188051, 3912945.707945524714887 ], [ 4976889.527256247587502, 3912913.272181937936693 ], [ 4976914.016295569017529, 3912903.491310297045857 ], [ 4976909.146702119149268, 3912891.828950438182801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976890.603056948632002, 3900713.393498172517866 ], [ 4976905.909146031364799, 3900693.033869922161102 ], [ 4976930.638468731194735, 3900711.655757420230657 ], [ 4976915.332371436059475, 3900732.015371833462268 ], [ 4976890.603056948632002, 3900713.393498172517866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976849.935001929290593, 3913126.936557742767036 ], [ 4976826.877224250696599, 3913140.725918184500188 ], [ 4976832.327056449837983, 3913150.2046645055525 ], [ 4976809.557924849912524, 3913163.630503672640771 ], [ 4976784.026100201532245, 3913120.974092022981495 ], [ 4976829.853050806559622, 3913093.758854188024998 ], [ 4976849.935001929290593, 3913126.936557742767036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976852.902088939212263, 3911415.152054111938924 ], [ 4976843.099006047472358, 3911422.414428924676031 ], [ 4976808.359332780353725, 3911376.825927090831101 ], [ 4976818.162422838620842, 3911369.563539816066623 ], [ 4976852.902088939212263, 3911415.152054111938924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985800.239630226045847, 3905225.969597958959639 ], [ 4985809.714829499833286, 3905237.280451807193458 ], [ 4985789.518174831755459, 3905253.982007984537631 ], [ 4985739.560154085978866, 3905193.416159804910421 ], [ 4985771.87431173119694, 3905166.912096120882779 ], [ 4985779.913293701596558, 3905176.762962677516043 ], [ 4985797.224380016326904, 3905162.603392303455621 ], [ 4985829.668189869262278, 3905202.007595530245453 ], [ 4985800.239630226045847, 3905225.969597958959639 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985627.321227170526981, 3905648.312051726039499 ], [ 4985654.203923000954092, 3905605.044754133094102 ], [ 4985647.303714789450169, 3905600.658632283098996 ], [ 4985660.599809822626412, 3905579.57084045978263 ], [ 4985688.776532378047705, 3905597.116733013186604 ], [ 4985682.99492974858731, 3905606.570302626583725 ], [ 4985710.596593259833753, 3905623.750707503408194 ], [ 4985697.878116401843727, 3905644.111596419475973 ], [ 4985683.50184272415936, 3905635.337950955145061 ], [ 4985661.82307341042906, 3905669.878523848485202 ], [ 4985627.321227170526981, 3905648.312051726039499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976635.598908232524991, 3901752.460283469408751 ], [ 4976634.656907963566482, 3901790.327959936112165 ], [ 4976575.911538423039019, 3901788.386306863743812 ], [ 4976576.835465233772993, 3901759.257733780890703 ], [ 4976589.79409455601126, 3901759.64854509755969 ], [ 4976590.09932600799948, 3901751.274162099231035 ], [ 4976635.598908232524991, 3901752.460283469408751 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976453.692171323113143, 3913194.940612309612334 ], [ 4976467.468461968004704, 3913214.996267994865775 ], [ 4976477.845769411884248, 3913208.099063484929502 ], [ 4976493.629590285010636, 3913231.800195136107504 ], [ 4976452.408275738358498, 3913259.389604960102588 ], [ 4976422.848131886683404, 3913215.632856991607696 ], [ 4976453.692171323113143, 3913194.940612309612334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976458.920574450865388, 3907848.388108041603118 ], [ 4976489.989836053922772, 3907861.1965949293226 ], [ 4976473.497523606754839, 3907900.488981490023434 ], [ 4976442.428299688734114, 3907887.680513359606266 ], [ 4976458.920574450865388, 3907848.388108041603118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976461.355799655430019, 3904701.200806657318026 ], [ 4976521.883202236145735, 3904673.651232788339257 ], [ 4976510.702379085123539, 3904649.595554129220545 ], [ 4976531.166676462627947, 3904640.170223996508867 ], [ 4976540.339291769079864, 3904660.580463308375329 ], [ 4976564.550756670534611, 3904649.342210766393691 ], [ 4976579.171247174963355, 3904681.051757030189037 ], [ 4976559.571577798575163, 3904690.114698814693838 ], [ 4976563.297751326113939, 3904698.49739482998848 ], [ 4976532.169428337365389, 3904712.634471111930907 ], [ 4976529.589822265319526, 3904706.80305905919522 ], [ 4976475.402719638310373, 3904731.816724059637636 ], [ 4976461.355799655430019, 3904701.200806657318026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976334.89750387147069, 3905847.227899237070233 ], [ 4976302.045960284769535, 3905859.905189283657819 ], [ 4976286.290427242405713, 3905820.182545314542949 ], [ 4976318.854815251193941, 3905807.14051593048498 ], [ 4976334.89750387147069, 3905847.227899237070233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985477.10872049909085, 3910787.684779653791338 ], [ 4985432.777223583310843, 3910786.122303599026054 ], [ 4985434.023602091707289, 3910746.434761065524071 ], [ 4985455.325714219361544, 3910747.213926951400936 ], [ 4985455.636229477822781, 3910737.747205629944801 ], [ 4985478.665687810629606, 3910738.530518095009029 ], [ 4985477.10872049909085, 3910787.684779653791338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985435.087407927028835, 3910542.158586112316698 ], [ 4985416.395294199697673, 3910533.374740692321211 ], [ 4985410.608754086308181, 3910545.377315373159945 ], [ 4985396.804715340957046, 3910539.154089455027133 ], [ 4985425.450420186854899, 3910478.776396017987281 ], [ 4985457.9466234408319, 3910493.783497487660497 ], [ 4985435.087407927028835, 3910542.158586112316698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976245.498418527655303, 3905632.571148577146232 ], [ 4976261.249650271609426, 3905674.478545674588531 ], [ 4976226.093632883392274, 3905687.515341747552156 ], [ 4976210.342354075983167, 3905645.607964927330613 ], [ 4976245.498418527655303, 3905632.571148577146232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976236.918123547919095, 3903493.280756063293666 ], [ 4976263.705821102485061, 3903490.05839880136773 ], [ 4976262.57109479047358, 3903481.681055812630802 ], [ 4976290.79790014680475, 3903478.825802864041179 ], [ 4976297.02131025493145, 3903533.458246969617903 ], [ 4976276.571166104637086, 3903535.601153169758618 ], [ 4976275.719193952158093, 3903529.773307572118938 ], [ 4976257.573531726375222, 3903531.556815620977432 ], [ 4976258.418799606151879, 3903540.6618287935853 ], [ 4976242.576882661320269, 3903542.450062671676278 ], [ 4976236.918123547919095, 3903493.280756063293666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976072.611517754383385, 3906255.611597577575594 ], [ 4976110.647586626000702, 3906241.852213846985251 ], [ 4976128.974489793181419, 3906291.411578563507646 ], [ 4976090.650544036179781, 3906305.170349120628089 ], [ 4976072.611517754383385, 3906255.611597577575594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976010.063238955102861, 3911090.799004572909325 ], [ 4975996.733657258562744, 3911133.375401082914323 ], [ 4975983.49907283578068, 3911129.342972075100988 ], [ 4975996.828635516576469, 3911086.766569106373936 ], [ 4976010.063238955102861, 3911090.799004572909325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985021.424242541193962, 3907371.39758580038324 ], [ 4985038.819964354857802, 3907320.824470365885645 ], [ 4985049.176676336675882, 3907324.490383421536535 ], [ 4985056.136200696229935, 3907303.751360967755318 ], [ 4985082.892631102353334, 3907312.554089321754873 ], [ 4985074.484806663356721, 3907336.930989027488977 ], [ 4985079.375231068581343, 3907338.763267970643938 ], [ 4985070.965688142925501, 3907363.868429929018021 ], [ 4985062.04689571633935, 3907360.934188039042056 ], [ 4985054.797726114280522, 3907382.400786745361984 ], [ 4985021.424242541193962, 3907371.39758580038324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975930.532384978607297, 3901646.875068303663284 ], [ 4975927.593986487016082, 3901675.635430840309709 ], [ 4975894.770120532251894, 3901672.291493167169392 ], [ 4975897.709224650636315, 3901643.166997706051916 ], [ 4975930.532384978607297, 3901646.875068303663284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975832.817042202688754, 3909344.785648360382766 ], [ 4975849.462249482981861, 3909371.037016824353486 ], [ 4975805.356647340580821, 3909398.621502184774727 ], [ 4975788.711414214223623, 3909372.370160604361445 ], [ 4975832.817042202688754, 3909344.785648360382766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975836.443016761913896, 3905150.354950471781194 ], [ 4975845.612284475937486, 3905172.585609847679734 ], [ 4975809.011630945838988, 3905187.804803510196507 ], [ 4975790.958763011731207, 3905144.436487678904086 ], [ 4975833.899544741027057, 3905126.681225802749395 ], [ 4975842.783831891603768, 3905147.45477834623307 ], [ 4975836.443016761913896, 3905150.354950471781194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975825.822730873711407, 3905842.547821574378759 ], [ 4975779.175315359607339, 3905842.817252414766699 ], [ 4975778.688100057654083, 3905799.120446090586483 ], [ 4975825.336330964230001, 3905798.486884100362659 ], [ 4975825.822730873711407, 3905842.547821574378759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975585.292857707478106, 3905890.489910847041756 ], [ 4975598.058779934421182, 3905842.814459109213203 ], [ 4975638.636554072611034, 3905853.820514237042516 ], [ 4975625.582623145543039, 3905901.4953643521294 ], [ 4975585.292857707478106, 3905890.489910847041756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975566.924601973965764, 3910987.942188947927207 ], [ 4975573.285364957526326, 3910974.482129728421569 ], [ 4975606.936517815105617, 3910990.207911259960383 ], [ 4975610.116539897397161, 3910983.65995192527771 ], [ 4975625.072679914534092, 3910990.608744420576841 ], [ 4975621.603293931111693, 3910997.884382362943143 ], [ 4975634.258537323214114, 3911003.736124666873366 ], [ 4975628.187111659906805, 3911016.468489411752671 ], [ 4975566.924601973965764, 3910987.942188947927207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975535.325427884235978, 3905111.147005590610206 ], [ 4975523.466514775529504, 3905137.340530370362103 ], [ 4975513.109873461537063, 3905132.585903483908623 ], [ 4975506.16745843924582, 3905148.229546565096825 ], [ 4975469.630884455516934, 3905131.769877306651324 ], [ 4975488.431424077600241, 3905090.296809966210276 ], [ 4975535.325427884235978, 3905111.147005590610206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975513.91918511595577, 3910862.209206686820835 ], [ 4975531.425215470604599, 3910889.554541705641896 ], [ 4975473.48616183642298, 3910925.850837215315551 ], [ 4975455.980096391402185, 3910898.505539321806282 ], [ 4975513.91918511595577, 3910862.209206686820835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984575.380234282463789, 3916549.783056191634387 ], [ 4984616.103159125894308, 3916612.87436628062278 ], [ 4984584.394962606951594, 3916632.826981918886304 ], [ 4984556.291777025908232, 3916588.700454155914485 ], [ 4984566.38032422401011, 3916582.533946416340768 ], [ 4984554.049230998381972, 3916563.205752540379763 ], [ 4984575.380234282463789, 3916549.783056191634387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975426.217174571938813, 3910239.365004379302263 ], [ 4975476.651038695126772, 3910213.613321553450078 ], [ 4975494.432194226421416, 3910247.513566227629781 ], [ 4975437.369448068551719, 3910276.893173655029386 ], [ 4975427.044146970845759, 3910257.573311990126967 ], [ 4975433.960973934270442, 3910253.945932664442807 ], [ 4975426.217174571938813, 3910239.365004379302263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975426.633335960097611, 3906034.729898219928145 ], [ 4975427.712415206246078, 3906070.781127592548728 ], [ 4975412.162187182344496, 3906071.478043225593865 ], [ 4975412.708708696067333, 3906086.044419270474464 ], [ 4975393.415272111073136, 3906086.733800980262458 ], [ 4975392.868006462231278, 3906072.531555699184537 ], [ 4975379.622033718973398, 3906072.869001283310354 ], [ 4975378.255683179013431, 3906036.453063401859254 ], [ 4975426.633335960097611, 3906034.729898219928145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975347.673775148577988, 3905494.19924276182428 ], [ 4975331.538529197685421, 3905499.264608470723033 ], [ 4975315.799664814025164, 3905450.439286145381629 ], [ 4975333.087456734851003, 3905445.012099016457796 ], [ 4975329.940561972558498, 3905434.810077555011958 ], [ 4975355.872638443484902, 3905426.487249640747905 ], [ 4975371.039951789192855, 3905473.126653329934925 ], [ 4975343.667450948618352, 3905481.810698820278049 ], [ 4975347.673775148577988, 3905494.19924276182428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975286.192226917482913, 3910006.402174024377018 ], [ 4975304.646259596571326, 3909992.238118992187083 ], [ 4975321.589003149420023, 3910013.756043694913387 ], [ 4975271.416453673504293, 3910052.617319281678647 ], [ 4975247.869614739902318, 3910022.346966000273824 ], [ 4975279.587418966926634, 3909998.01383793214336 ], [ 4975286.192226917482913, 3910006.402174024377018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975295.66746302228421, 3904579.395950186066329 ], [ 4975269.13671787455678, 3904598.641575813293457 ], [ 4975237.834397939965129, 3904556.339413475710899 ], [ 4975276.188945782370865, 3904528.37836976442486 ], [ 4975314.669627526775002, 3904580.890699937473983 ], [ 4975303.134542825631797, 3904589.242520113009959 ], [ 4975295.66746302228421, 3904579.395950186066329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975207.920180473476648, 3904109.490021351259202 ], [ 4975189.4745958680287, 3904117.463882206007838 ], [ 4975194.633040269836783, 3904129.854705029167235 ], [ 4975179.070003701373935, 3904136.377833978738636 ], [ 4975174.483821717090905, 3904125.808819517958909 ], [ 4975157.479522950947285, 3904133.057331725489348 ], [ 4975141.714704288169742, 3904096.612570234108716 ], [ 4975165.635935881175101, 3904086.464873520191759 ], [ 4975161.336240407079458, 3904076.624699270818383 ], [ 4975188.715958442538977, 3904065.027436019387096 ], [ 4975207.920180473476648, 3904109.490021351259202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984253.558629980310798, 3908460.527198228985071 ], [ 4984031.260971009731293, 3908595.100074883084744 ], [ 4984027.819628152996302, 3908589.265911212190986 ], [ 4984008.214326478540897, 3908600.872356505133212 ], [ 4983981.539596379734576, 3908557.478276236448437 ], [ 4983961.356765420176089, 3908569.811672447249293 ], [ 4983940.131898455321789, 3908535.16953873867169 ], [ 4983999.238374312408268, 3908499.258378825616091 ], [ 4983973.423871236853302, 3908457.322849180083722 ], [ 4983906.532620037905872, 3908497.949634611140937 ], [ 4983875.842946279793978, 3908447.627780130598694 ], [ 4983899.485899575985968, 3908433.117592409718782 ], [ 4983890.594501067884266, 3908418.531556508503854 ], [ 4983922.598913826048374, 3908398.943027386907488 ], [ 4983891.335871760733426, 3908347.527423237916082 ], [ 4983925.069563056342304, 3908327.214664163999259 ], [ 4983904.991875485517085, 3908294.395902964286506 ], [ 4983932.670904564671218, 3908277.710361831821501 ], [ 4983922.918270747177303, 3908262.029909751378 ], [ 4983935.027754986658692, 3908254.775506528094411 ], [ 4983870.206404984928668, 3908148.297642312478274 ], [ 4983993.898278519511223, 3908073.57489224197343 ], [ 4984026.022647556848824, 3908126.08501682151109 ], [ 4984054.567381714470685, 3908108.673359922599047 ], [ 4984075.793292264454067, 3908142.951444300822914 ], [ 4984108.950691762380302, 3908123.001702825073153 ], [ 4984129.028259625658393, 3908155.820612946525216 ], [ 4984146.615955892950296, 3908145.301932867150754 ], [ 4984248.723655463196337, 3908312.313878438901156 ], [ 4984186.15718302782625, 3908350.037045449949801 ], [ 4984253.558629980310798, 3908460.527198228985071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975042.577641709707677, 3898667.951790596824139 ], [ 4975033.115263435989618, 3898646.813302385620773 ], [ 4975063.672310156747699, 3898633.401645794976503 ], [ 4975083.170134590007365, 3898677.136315733194351 ], [ 4975033.586381150409579, 3898699.24899669829756 ], [ 4975023.263591673225164, 3898676.288138791918755 ], [ 4975042.577641709707677, 3898667.951790596824139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974992.576686489395797, 3910129.61838089954108 ], [ 4974990.167903835885227, 3910182.41281402297318 ], [ 4974946.12419096659869, 3910180.139955640304834 ], [ 4974948.820783789269626, 3910127.346094040665776 ], [ 4974992.576686489395797, 3910129.61838089954108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974906.604992853477597, 3906181.888128857593983 ], [ 4974933.304008143953979, 3906221.631829977966845 ], [ 4974899.28147706668824, 3906244.504189004655927 ], [ 4974872.582434380427003, 3906204.760521120857447 ], [ 4974906.604992853477597, 3906181.888128857593983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974908.01184219121933, 3904756.31528616277501 ], [ 4974852.107348386198282, 3904776.959214151836932 ], [ 4974848.097782496362925, 3904766.027269941754639 ], [ 4974837.435497683472931, 3904770.011452724225819 ], [ 4974830.848859070800245, 3904751.791741173714399 ], [ 4974840.646561415866017, 3904748.169963150285184 ], [ 4974832.340906065888703, 3904725.57724482100457 ], [ 4974876.14195005223155, 3904709.642830018419772 ], [ 4974886.452352099120617, 3904737.701536274980754 ], [ 4974899.419745592400432, 3904732.993711837567389 ], [ 4974908.01184219121933, 3904756.31528616277501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983494.240510975942016, 3906259.39783702371642 ], [ 4983467.149890464730561, 3906269.894929228816181 ], [ 4983462.569019149057567, 3906258.596226803492755 ], [ 4983418.474911360070109, 3906275.60838459758088 ], [ 4983405.307261471636593, 3906242.077766911592335 ], [ 4983468.422209372743964, 3906217.826980508863926 ], [ 4983472.429738202132285, 3906228.031959619838744 ], [ 4983480.78669576253742, 3906225.138255349826068 ], [ 4983494.240510975942016, 3906259.39783702371642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974733.424223401583731, 3902918.924607172142714 ], [ 4974735.432792861014605, 3902922.56991600105539 ], [ 4974755.611978579312563, 3902912.050281440839171 ], [ 4974768.522217024117708, 3902936.472775034140795 ], [ 4974712.59738969989121, 3902965.491953553631902 ], [ 4974697.678541622124612, 3902937.424180204048753 ], [ 4974733.424223401583731, 3902918.924607172142714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974610.722644180059433, 3904961.457646703347564 ], [ 4974600.977824580855668, 3904938.498007863759995 ], [ 4974644.782001704908907, 3904920.742563128005713 ], [ 4974661.975909058004618, 3904962.651865390595049 ], [ 4974629.698536009527743, 3904976.060598079115152 ], [ 4974621.673494498245418, 3904957.109815255738795 ], [ 4974610.722644180059433, 3904961.457646703347564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974540.32151987683028, 3909387.707556017208844 ], [ 4974558.12102326285094, 3909413.232147042639554 ], [ 4974514.299671033397317, 3909443.368241893127561 ], [ 4974496.788050290197134, 3909417.844249990768731 ], [ 4974540.32151987683028, 3909387.707556017208844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974549.290860798209906, 3898476.164870847947896 ], [ 4974564.198636057786644, 3898511.150932687800378 ], [ 4974528.741737386211753, 3898526.374093847349286 ], [ 4974513.546624877490103, 3898491.0233518560417 ], [ 4974549.290860798209906, 3898476.164870847947896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982854.619032661430538, 3916977.644902163185179 ], [ 4982867.168811036273837, 3917027.560124033596367 ], [ 4982839.809800570830703, 3917034.415933066047728 ], [ 4982833.819794232025743, 3917010.733451675157994 ], [ 4982820.860257169231772, 3917013.980952737852931 ], [ 4982810.3084582304582, 3916971.35302333952859 ], [ 4982859.265963392332196, 3916959.448832561261952 ], [ 4982863.258738107047975, 3916975.479911661706865 ], [ 4982854.619032661430538, 3916977.644902163185179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974358.217797400429845, 3897805.059040585998446 ], [ 4974349.281718326732516, 3897808.682686259504408 ], [ 4974339.53189972601831, 3897786.81562684616074 ], [ 4974381.90811718441546, 3897768.692857473157346 ], [ 4974404.272846295498312, 3897820.079406508710235 ], [ 4974370.833485161885619, 3897834.214371039997786 ], [ 4974358.217797400429845, 3897805.059040585998446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974324.304338782094419, 3909723.738504067528993 ], [ 4974340.952940408140421, 3909748.896550436038524 ], [ 4974302.036030096933246, 3909774.308963443152606 ], [ 4974285.388126701116562, 3909748.786809552460909 ], [ 4974324.304338782094419, 3909723.738504067528993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974195.251848542131484, 3894996.569251478184015 ], [ 4974156.648403617553413, 3894998.313895334023982 ], [ 4974156.095218559727073, 3894986.660665728151798 ], [ 4974141.114729378372431, 3894987.359445916954428 ], [ 4974138.61891374643892, 3894938.197067038621753 ], [ 4974198.252925222739577, 3894935.401423515286297 ], [ 4974199.635844096541405, 3894964.53449898166582 ], [ 4974193.58588770031929, 3894964.886712478939444 ], [ 4974195.251848542131484, 3894996.569251478184015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974155.539567243307829, 3897756.958321673795581 ], [ 4974169.276069500483572, 3897802.137482570949942 ], [ 4974137.573578458279371, 3897811.906596387270838 ], [ 4974123.837028008885682, 3897766.727451426908374 ], [ 4974155.539567243307829, 3897756.958321673795581 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974013.428293653763831, 3909107.74214125238359 ], [ 4974046.006914418190718, 3909084.865791311021894 ], [ 4974070.698254539631307, 3909119.871041994541883 ], [ 4974038.119655021466315, 3909142.747362492606044 ], [ 4974013.428293653763831, 3909107.74214125238359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973992.461548908613622, 3895141.458249933086336 ], [ 4973991.936872378922999, 3895115.239901746623218 ], [ 4974047.534810652025044, 3895113.892523685004562 ], [ 4974048.569035391323268, 3895173.975911280605942 ], [ 4974003.053922258317471, 3895174.978942221030593 ], [ 4974002.256205423735082, 3895141.113339424133301 ], [ 4973992.461548908613622, 3895141.458249933086336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973833.16829230543226, 3909122.682315797545016 ], [ 4973859.97504317574203, 3909106.712962440215051 ], [ 4973880.638758945278823, 3909140.253622288815677 ], [ 4973853.832029143348336, 3909156.222955378238112 ], [ 4973833.16829230543226, 3909122.682315797545016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973720.101168726570904, 3912324.281541537959129 ], [ 4973774.625208742916584, 3912265.034373504575342 ], [ 4973921.180176487192512, 3912398.229940409306437 ], [ 4973866.655368668027222, 3912457.840947815682739 ], [ 4973720.101168726570904, 3912324.281541537959129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973472.031109804287553, 3902062.192500188481063 ], [ 4973499.722073228098452, 3902039.306074159219861 ], [ 4973485.643452346324921, 3902022.52868457743898 ], [ 4973508.719649584032595, 3902003.274608273524791 ], [ 4973546.933603970333934, 3902048.501175918616354 ], [ 4973531.645706763491035, 3902061.216013265773654 ], [ 4973527.336586833931506, 3902055.74566701380536 ], [ 4973508.009862137958407, 3902072.093971037771553 ], [ 4973512.606258044019341, 3902077.929003815632313 ], [ 4973496.453030067496002, 3902091.370440444909036 ], [ 4973472.031109804287553, 3902062.192500188481063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973218.849695237353444, 3898658.901828082278371 ], [ 4973179.947374581359327, 3898669.022284178528935 ], [ 4973173.941877946257591, 3898646.798741823062301 ], [ 4973158.669106128625572, 3898650.774673938285559 ], [ 4973153.524131270125508, 3898630.373449113219976 ], [ 4973168.7969139078632, 3898626.39751412672922 ], [ 4973162.792804941534996, 3898603.445717230904847 ], [ 4973193.050387966446579, 3898595.493309996556491 ], [ 4973198.767156813293695, 3898618.080428073648363 ], [ 4973207.412679836153984, 3898615.548227794468403 ], [ 4973218.849695237353444, 3898658.901828082278371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981312.394069836474955, 3906961.212832141201943 ], [ 4981341.648155754432082, 3907012.620884086471051 ], [ 4981314.836487378925085, 3907027.854490485042334 ], [ 4981307.092497239820659, 3907014.364287975709885 ], [ 4981302.47992236725986, 3907016.902904503047466 ], [ 4981280.969787617214024, 3906978.985087401699275 ], [ 4981312.394069836474955, 3906961.212832141201943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981288.364020712673664, 3908952.963625187519938 ], [ 4981195.422496683895588, 3909057.990448078606278 ], [ 4981149.16022995300591, 3909017.104410775005817 ], [ 4981241.813803942874074, 3908912.076787668280303 ], [ 4981288.364020712673664, 3908952.963625187519938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972579.126434730365872, 3903349.132035469636321 ], [ 4972541.355910199694335, 3903373.456709111575037 ], [ 4972517.523956725373864, 3903336.998115820344537 ], [ 4972555.294510731473565, 3903312.673409226350486 ], [ 4972579.126434730365872, 3903349.132035469636321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981046.125286662951112, 3904601.408033045940101 ], [ 4981101.754272252321243, 3904577.499183599371463 ], [ 4981113.214108590967953, 3904603.742191698867828 ], [ 4981095.631780083291233, 3904611.34979527303949 ], [ 4981099.642884537577629, 3904620.462020800448954 ], [ 4981061.596281855367124, 3904636.763237749226391 ], [ 4981046.125286662951112, 3904601.408033045940101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980904.094094696454704, 3907745.008377464488149 ], [ 4980929.483806108124554, 3907721.396153336390853 ], [ 4980952.751304822042584, 3907745.844712839461863 ], [ 4980927.072865381836891, 3907769.820406462997198 ], [ 4980904.094094696454704, 3907745.008377464488149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980845.200454058125615, 3915213.250347204506397 ], [ 4980833.759465703740716, 3915180.452899117954075 ], [ 4980847.875053090043366, 3915175.3863361668773 ], [ 4980859.315218360163271, 3915208.547922465950251 ], [ 4980845.200454058125615, 3915213.250347204506397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980748.549652247689664, 3916613.496418202761561 ], [ 4980769.850466205738485, 3916612.815341189038008 ], [ 4980769.577969775535166, 3916605.896183544769883 ], [ 4980795.48483145609498, 3916604.861199279781431 ], [ 4980796.828712203539908, 3916647.83203963842243 ], [ 4980749.90893314871937, 3916649.548736393917352 ], [ 4980748.549652247689664, 3916613.496418202761561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972506.808588693849742, 3903821.636342599056661 ], [ 4972512.839164298027754, 3903830.386996543500572 ], [ 4972472.760112163610756, 3903857.620419044978917 ], [ 4972451.222497687675059, 3903826.264084440656006 ], [ 4972509.755602379329503, 3903786.321229658089578 ], [ 4972525.261913591995835, 3903809.291082345880568 ], [ 4972506.808588693849742, 3903821.636342599056661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972429.425126811489463, 3903628.863419933710247 ], [ 4972491.407978218980134, 3903592.204280443955213 ], [ 4972506.908861572854221, 3903618.087159135844558 ], [ 4972444.925354831852019, 3903655.11039338959381 ], [ 4972429.425126811489463, 3903628.863419933710247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972393.237340717576444, 3899492.268840869423002 ], [ 4972452.035876308567822, 3899469.076447249390185 ], [ 4972475.828341281041503, 3899528.110896459314972 ], [ 4972416.741904146969318, 3899551.302690566051751 ], [ 4972393.237340717576444, 3899492.268840869423002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972350.02302607987076, 3907676.764281996060163 ], [ 4972359.768765105865896, 3907699.723143100272864 ], [ 4972335.563886592164636, 3907709.872812609188259 ], [ 4972326.106745474040508, 3907686.550376624334604 ], [ 4972350.02302607987076, 3907676.764281996060163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980639.641267193481326, 3905202.416383385658264 ], [ 4980640.789845299907029, 3905203.875449137762189 ], [ 4980607.054736008867621, 3905224.192292408552021 ], [ 4980581.808479269035161, 3905181.89724786626175 ], [ 4980614.678164271637797, 3905162.306725074071437 ], [ 4980613.529582963325083, 3905160.84766047867015 ], [ 4980647.552726447582245, 3905140.531462604179978 ], [ 4980672.799724214710295, 3905182.462437812704593 ], [ 4980639.641267193481326, 3905202.416383385658264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980650.283234101720154, 3899605.379314152523875 ], [ 4980594.641163380816579, 3899630.745541271287948 ], [ 4980581.742651269771159, 3899602.679010127671063 ], [ 4980637.384767743758857, 3899577.312756728380919 ], [ 4980650.283234101720154, 3899605.379314152523875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980614.055782971903682, 3904010.192729500122368 ], [ 4980640.804871551692486, 3904024.452963418792933 ], [ 4980618.252134786918759, 3904065.914127506781369 ], [ 4980591.503075656481087, 3904051.653915681410581 ], [ 4980614.055782971903682, 3904010.192729500122368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980260.031993952579796, 3901702.641333341132849 ], [ 4980277.827994083054364, 3901729.626110049895942 ], [ 4980217.264539408497512, 3901768.819311387836933 ], [ 4980199.755692374892533, 3901742.199335103854537 ], [ 4980260.031993952579796, 3901702.641333341132849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972031.918472305871546, 3902316.509161897469312 ], [ 4972039.095269192941487, 3902328.539044991135597 ], [ 4972019.491297848522663, 3902339.790062905289233 ], [ 4972014.611457935534418, 3902331.405833089258522 ], [ 4971993.566224140115082, 3902343.382409385871142 ], [ 4971978.927360309287906, 3902317.865607163868845 ], [ 4972031.396867227740586, 3902287.741832388099283 ], [ 4972044.314698399044573, 3902309.614100542385131 ], [ 4972031.918472305871546, 3902316.509161897469312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971989.41482459474355, 3912317.679852312430739 ], [ 4972001.486232046969235, 3912327.898383411113173 ], [ 4972001.774792903102934, 3912327.534795366693288 ], [ 4972051.494873595423996, 3912370.960620243567973 ], [ 4972025.819163391366601, 3912400.042735362425447 ], [ 4971988.744859855622053, 3912367.564833753742278 ], [ 4971984.706392396241426, 3912371.926805031020194 ], [ 4971960.277097241953015, 3912350.760955665260553 ], [ 4971989.41482459474355, 3912317.679852312430739 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971965.677071349695325, 3907507.078785519115627 ], [ 4971992.774304547347128, 3907490.015736307017505 ], [ 4972015.741555240936577, 3907525.379932414740324 ], [ 4971988.643655397929251, 3907542.807089637033641 ], [ 4971965.677071349695325, 3907507.078785519115627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979963.602799855172634, 3907015.400505525525659 ], [ 4979971.724519098177552, 3906988.108338799327612 ], [ 4979993.305748960003257, 3906994.345758229959756 ], [ 4979993.597659386694431, 3906992.525735430419445 ], [ 4980025.825920785777271, 3907001.699517330154777 ], [ 4980017.123512825928628, 3907031.175191242713481 ], [ 4979963.602799855172634, 3907015.400505525525659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979963.19909327942878, 3900082.701368059962988 ], [ 4979971.19956565182656, 3900111.849299795925617 ], [ 4979923.938316319137812, 3900124.854788432363421 ], [ 4979915.937796659767628, 3900095.706870528869331 ], [ 4979963.19909327942878, 3900082.701368059962988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979946.79968339111656, 3903503.312526679597795 ], [ 4979995.407290269620717, 3903530.364463591016829 ], [ 4979982.39703756570816, 3903554.004569054581225 ], [ 4979933.789460505358875, 3903526.952655291650444 ], [ 4979946.79968339111656, 3903503.312526679597795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979938.042858080938458, 3901711.039549069479108 ], [ 4979961.374555135145783, 3901708.905722745228559 ], [ 4979962.781078328378499, 3901724.20229837205261 ], [ 4979939.44939443282783, 3901726.336123486980796 ], [ 4979938.042858080938458, 3901711.039549069479108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979920.029009240679443, 3902443.267860400490463 ], [ 4979895.519815634004772, 3902457.415481647476554 ], [ 4979866.255585793405771, 3902407.10153510607779 ], [ 4979891.052789119072258, 3902392.954515978693962 ], [ 4979920.029009240679443, 3902443.267860400490463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971473.124668274074793, 3911618.302431572694331 ], [ 4971494.764061834663153, 3911592.48945010220632 ], [ 4971524.082933768630028, 3911616.577077784109861 ], [ 4971502.154969896189868, 3911642.753629297949374 ], [ 4971473.124668274074793, 3911618.302431572694331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979734.587352778762579, 3906933.699584721121937 ], [ 4979743.577412779442966, 3906904.224447864107788 ], [ 4979793.356960657984018, 3906919.262277825735509 ], [ 4979783.497506683692336, 3906951.284429772291332 ], [ 4979766.520705039612949, 3906946.149602635297924 ], [ 4979764.779640943743289, 3906952.33605810906738 ], [ 4979746.651906684972346, 3906946.834605002310127 ], [ 4979749.262308261357248, 3906938.101115792989731 ], [ 4979734.587352778762579, 3906933.699584721121937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979551.989578776061535, 3904434.629748077131808 ], [ 4979562.861641535535455, 3904467.061051628552377 ], [ 4979493.413449766114354, 3904490.2148642456159 ], [ 4979482.541312740184367, 3904457.783588331192732 ], [ 4979551.989578776061535, 3904434.629748077131808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979513.762538405135274, 3901080.898130879271775 ], [ 4979526.375823901966214, 3901107.871162434108555 ], [ 4979536.177858081646264, 3901103.158717026468366 ], [ 4979548.503907475620508, 3901129.767005582340062 ], [ 4979505.261555199511349, 3901149.700438889209181 ], [ 4979496.087612525559962, 3901130.381618622224778 ], [ 4979485.133623749017715, 3901135.09158259537071 ], [ 4979478.540554738603532, 3901120.876193189527839 ], [ 4979488.919350996613503, 3901115.800849262624979 ], [ 4979480.032589283771813, 3901096.846788103226572 ], [ 4979513.762538405135274, 3901080.898130879271775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979491.508069792762399, 3906432.125823212787509 ], [ 4979408.561972984112799, 3906441.413600896950811 ], [ 4979404.324102881364524, 3906403.89882772648707 ], [ 4979505.702199144288898, 3906392.830330991186202 ], [ 4979508.245470420457423, 3906415.047899875324219 ], [ 4979489.813600276596844, 3906416.828604350797832 ], [ 4979491.508069792762399, 3906432.125823212787509 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979492.916467326693237, 3901397.646833481732756 ], [ 4979518.265909769572318, 3901394.788733283057809 ], [ 4979516.007775551639497, 3901373.664243296254426 ], [ 4979541.069252744317055, 3901370.805540299508721 ], [ 4979547.279454589821398, 3901428.715829919558018 ], [ 4979496.869411668740213, 3901434.068494536913931 ], [ 4979492.916467326693237, 3901397.646833481732756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979456.445425217971206, 3906800.551528025884181 ], [ 4979481.528668036684394, 3906785.312325439881533 ], [ 4979504.769876141101122, 3906822.868312473874539 ], [ 4979479.397934192791581, 3906838.47100019082427 ], [ 4979456.445425217971206, 3906800.551528025884181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979019.011917238123715, 3906427.828664786182344 ], [ 4979044.952801577746868, 3906415.503958087880164 ], [ 4979062.437789909541607, 3906452.318907728884369 ], [ 4979036.496932981535792, 3906464.643597826827317 ], [ 4979019.011917238123715, 3906427.828664786182344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971134.042430814355612, 3903996.38498255610466 ], [ 4971110.107785455882549, 3904014.547128199134022 ], [ 4971091.436176968738437, 3903989.751563953235745 ], [ 4971132.095637092366815, 3903959.239977926481515 ], [ 4971154.214663356542587, 3903988.411547163967043 ], [ 4971137.489189906045794, 3904001.12508768774569 ], [ 4971134.042430814355612, 3903996.38498255610466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970983.331152639351785, 3894714.78926660027355 ], [ 4970985.784928775392473, 3894789.804436001460999 ], [ 4970935.082847979851067, 3894791.531324677634984 ], [ 4970934.539702767506242, 3894773.687986305449158 ], [ 4970950.383734124712646, 3894773.353145023807883 ], [ 4970948.473668746650219, 3894715.817189412657171 ], [ 4970983.331152639351785, 3894714.78926660027355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978900.710652059875429, 3912178.32206834666431 ], [ 4978927.702845874242485, 3912210.059606428258121 ], [ 4978907.22704616189003, 3912227.129920852836221 ], [ 4978880.522719810716808, 3912195.393020547926426 ], [ 4978900.710652059875429, 3912178.32206834666431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978817.611265802755952, 3909446.053798718377948 ], [ 4978808.639442158862948, 3909467.882539752870798 ], [ 4978788.216222023591399, 3909459.463742271997035 ], [ 4978797.18803183734417, 3909437.634994531981647 ], [ 4978817.611265802755952, 3909446.053798718377948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978818.680108703672886, 3906393.898573059588671 ], [ 4978779.196161963045597, 3906410.92821559170261 ], [ 4978767.448449195362628, 3906383.957296819426119 ], [ 4978806.933207971043885, 3906366.563506962265819 ], [ 4978818.680108703672886, 3906393.898573059588671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978790.927892195992172, 3907252.098540413659066 ], [ 4978771.25763026624918, 3907294.659894309937954 ], [ 4978745.08199557941407, 3907282.587508399505168 ], [ 4978764.751445345580578, 3907240.390266203787178 ], [ 4978790.927892195992172, 3907252.098540413659066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978768.698550193570554, 3895976.371342111844569 ], [ 4978723.722551922313869, 3895995.209889115765691 ], [ 4978713.977960180491209, 3895972.248882620595396 ], [ 4978758.954768943600357, 3895953.046191498637199 ], [ 4978768.698550193570554, 3895976.371342111844569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970693.592618505470455, 3904236.62591552734375 ], [ 4970716.948853895068169, 3904219.55472658155486 ], [ 4970747.109519458375871, 3904260.392971740104258 ], [ 4970729.808489341288805, 3904273.105707327369601 ], [ 4970718.605560528114438, 3904258.155697352718562 ], [ 4970712.550369907170534, 3904262.51412740861997 ], [ 4970693.592618505470455, 3904236.62591552734375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970617.924375008791685, 3900752.117804036941379 ], [ 4970627.473766577430069, 3900727.374468669760972 ], [ 4970769.354437446221709, 3900782.983353340998292 ], [ 4970759.804934734478593, 3900807.726639120839536 ], [ 4970617.924375008791685, 3900752.117804036941379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978586.276378363370895, 3907086.345049085561186 ], [ 4978609.802615989930928, 3907125.721536022145301 ], [ 4978583.567695157602429, 3907141.323228616267443 ], [ 4978560.042209533974528, 3907101.582633752375841 ], [ 4978586.276378363370895, 3907086.345049085561186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978484.368331613019109, 3906131.009381079580635 ], [ 4978495.255725668743253, 3906156.521810395177454 ], [ 4978448.279799656011164, 3906176.084901039954275 ], [ 4978437.680308190174401, 3906150.573103242553771 ], [ 4978484.368331613019109, 3906131.009381079580635 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978391.686835961416364, 3895955.176012587733567 ], [ 4978362.568417725153267, 3895967.13041175622493 ], [ 4978341.937212514691055, 3895916.108425043988973 ], [ 4978371.054902946576476, 3895904.518131958320737 ], [ 4978391.686835961416364, 3895955.176012587733567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978337.358044999651611, 3906613.171565547585487 ], [ 4978298.447502104565501, 3906631.659661955200136 ], [ 4978286.981155565939844, 3906607.602604225743562 ], [ 4978325.891725302673876, 3906589.114491485524923 ], [ 4978337.358044999651611, 3906613.171565547585487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978284.58855917211622, 3908412.965277531184256 ], [ 4978277.69405853934586, 3908405.667994081508368 ], [ 4978299.041516855359077, 3908386.050158786121756 ], [ 4978329.778048503212631, 3908419.251491968054324 ], [ 4978306.122637522406876, 3908441.049196968320757 ], [ 4978281.992687570862472, 3908415.1445621419698 ], [ 4978284.58855917211622, 3908412.965277531184256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978273.426471633836627, 3907024.869228217750788 ], [ 4978315.797002015635371, 3907003.839515272062272 ], [ 4978329.559628502465785, 3907031.178658809047192 ], [ 4978287.189130321145058, 3907052.208350404165685 ], [ 4978273.426471633836627, 3907024.869228217750788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970498.599511223845184, 3903789.114647115115076 ], [ 4970521.863209919072688, 3903822.657363928388804 ], [ 4970497.066267911344767, 3903840.090209712740034 ], [ 4970473.514589206315577, 3903806.546986541710794 ], [ 4970498.599511223845184, 3903789.114647115115076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970482.31579701602459, 3903089.224743494298309 ], [ 4970499.259430798701942, 3903114.744964210316539 ], [ 4970466.102676466107368, 3903136.532086275517941 ], [ 4970445.138086135499179, 3903105.178427956067026 ], [ 4970465.897394676692784, 3903091.379456929396838 ], [ 4970469.918331161141396, 3903097.21291814930737 ], [ 4970482.31579701602459, 3903089.224743494298309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970351.980566317215562, 3902552.621314284391701 ], [ 4970380.49967824947089, 3902547.57560289464891 ], [ 4970385.061386019922793, 3902572.708978387992829 ], [ 4970356.542299879714847, 3902577.754685024730861 ], [ 4970351.980566317215562, 3902552.621314284391701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970310.524082783609629, 3900968.212605055887252 ], [ 4970278.84599656611681, 3900967.42653633095324 ], [ 4970279.4498853655532, 3900952.134152902290225 ], [ 4970257.274945760145783, 3900951.729578270576894 ], [ 4970257.886126377619803, 3900932.431771319359541 ], [ 4970282.940368161536753, 3900933.205729862675071 ], [ 4970283.243642644025385, 3900924.831279571168125 ], [ 4970311.753832458518445, 3900925.611570265609771 ], [ 4970310.524082783609629, 3900968.212605055887252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970164.882863581180573, 3902345.817890050355345 ], [ 4970153.928362411446869, 3902351.988179211504757 ], [ 4970162.539923556149006, 3902367.297348930034786 ], [ 4970131.118347312323749, 3902384.718462811782956 ], [ 4970104.709623412229121, 3902337.697555992752314 ], [ 4970110.763161693699658, 3902334.431383138522506 ], [ 4970099.281024565920234, 3902314.019180027768016 ], [ 4970123.207886950112879, 3902300.589838739018887 ], [ 4970134.402693858370185, 3902320.637398396153003 ], [ 4970146.798429569229484, 3902313.741461772006005 ], [ 4970164.882863581180573, 3902345.817890050355345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978114.300560397095978, 3907793.943413631524891 ], [ 4978086.080398534424603, 3907795.704366858582944 ], [ 4978083.302079482004046, 3907747.997156898491085 ], [ 4978111.521520670503378, 3907746.600331475492567 ], [ 4978114.300560397095978, 3907793.943413631524891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978046.839349522255361, 3896116.118777299765497 ], [ 4978075.379832406528294, 3896104.891073458828032 ], [ 4978098.876457697711885, 3896163.201515479013324 ], [ 4978070.047980700619519, 3896174.42858589719981 ], [ 4978046.839349522255361, 3896116.118777299765497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977981.310999560169876, 3902596.41002765391022 ], [ 4978006.053971397690475, 3902607.386205601040274 ], [ 4978009.814593063667417, 3902599.383262349758297 ], [ 4978029.378579001873732, 3902608.163737160153687 ], [ 4978012.308713576756418, 3902645.633188174571842 ], [ 4977968.001799345947802, 3902625.876559698954225 ], [ 4977981.310999560169876, 3902596.41002765391022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977970.172604004852474, 3906372.430970736779273 ], [ 4978009.93479890935123, 3906359.770312481559813 ], [ 4978018.229581140913069, 3906386.005339021328837 ], [ 4977978.467421075329185, 3906398.66598521405831 ], [ 4977970.172604004852474, 3906372.430970736779273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977957.33619731105864, 3907543.08866980439052 ], [ 4977967.999385841190815, 3907538.377456882502884 ], [ 4977981.758245616219938, 3907567.537084492389113 ], [ 4977942.850095952861011, 3907585.66157610155642 ], [ 4977925.079467450268567, 3907547.390199445188046 ], [ 4977953.323700519278646, 3907534.3410276575014 ], [ 4977957.33619731105864, 3907543.08866980439052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977946.194168137386441, 3903271.07109367242083 ], [ 4977974.673223053105175, 3903285.332312627695501 ], [ 4977971.781227621249855, 3903291.152309408411384 ], [ 4977984.438829845748842, 3903297.369260761421174 ], [ 4977977.787855206988752, 3903310.463947764132172 ], [ 4978011.444917615503073, 3903327.285056149121374 ], [ 4978016.361164830625057, 3903317.463894808199257 ], [ 4978040.525210060179234, 3903329.531281794887036 ], [ 4978037.632435608655214, 3903335.715401343535632 ], [ 4978050.290001635439694, 3903341.932383879087865 ], [ 4978018.478775781579316, 3903405.588149617891759 ], [ 4977976.191977234557271, 3903384.379237992689013 ], [ 4977984.577665138989687, 3903368.011030277702957 ], [ 4977952.071745385415852, 3903351.556515206582844 ], [ 4977947.444265136495233, 3903361.014166350010782 ], [ 4977920.978756924159825, 3903347.849615487270057 ], [ 4977924.160240369848907, 3903341.301960938610137 ], [ 4977913.516894672065973, 3903335.817547435406595 ], [ 4977946.194168137386441, 3903271.07109367242083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977630.219275338575244, 3911263.472045545931906 ], [ 4977595.334100706502795, 3911287.795775959733874 ], [ 4977576.10235973726958, 3911260.809599453117698 ], [ 4977610.988315743394196, 3911236.121713007800281 ], [ 4977630.219275338575244, 3911263.472045545931906 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977532.686064685694873, 3904912.070719255600125 ], [ 4977574.753067347221076, 3904899.778383422642946 ], [ 4977583.330576439388096, 3904928.926896360702813 ], [ 4977541.551567506976426, 3904941.219822186045349 ], [ 4977532.686064685694873, 3904912.070719255600125 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977499.449295285157859, 3904557.701061470899731 ], [ 4977528.261693685315549, 3904549.750492145773023 ], [ 4977540.263565650209785, 3904593.835551593918353 ], [ 4977511.739166628569365, 3904601.786711148917675 ], [ 4977499.449295285157859, 3904557.701061470899731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969411.030525435693562, 3904067.88872978463769 ], [ 4969419.06994950119406, 3904081.011864478699863 ], [ 4969404.367609654553235, 3904090.08879661699757 ], [ 4969421.021059504710138, 3904117.064357449300587 ], [ 4969404.01244200207293, 3904127.59368103556335 ], [ 4969378.459577115252614, 3904085.308677439112216 ], [ 4969387.972735608927906, 3904079.49961657403037 ], [ 4969374.477677892893553, 3904057.627570443786681 ], [ 4969410.512029145844281, 3904035.844249863643199 ], [ 4969424.867689428851008, 3904059.538512902334332 ], [ 4969411.030525435693562, 3904067.88872978463769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977385.906111274845898, 3901153.20104567380622 ], [ 4977385.317196517251432, 3901159.39003964420408 ], [ 4977427.354225946590304, 3901164.211575352586806 ], [ 4977424.127704598009586, 3901192.24290534388274 ], [ 4977357.041467059403658, 3901184.456022600643337 ], [ 4977360.856828371994197, 3901150.23569017322734 ], [ 4977385.906111274845898, 3901153.20104567380622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977354.755916353315115, 3906417.019593021366745 ], [ 4977319.576781303621829, 3906441.34300703369081 ], [ 4977287.137209247797728, 3906394.666442132554948 ], [ 4977310.494254183024168, 3906378.329222742002457 ], [ 4977316.235513706691563, 3906386.716236942447722 ], [ 4977328.057633329182863, 3906378.730003030970693 ], [ 4977354.755916353315115, 3906417.019593021366745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977245.526394426822662, 3908399.855760897509754 ], [ 4977286.169499350711703, 3908377.364282937254757 ], [ 4977300.798486694693565, 3908403.612331568729132 ], [ 4977260.442564788274467, 3908426.4685187949799 ], [ 4977245.526394426822662, 3908399.855760897509754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977238.645264936611056, 3900922.763201761059463 ], [ 4977209.272032428532839, 3900921.609634943772107 ], [ 4977211.3895956389606, 3900872.820521653629839 ], [ 4977240.762881396338344, 3900873.974090756382793 ], [ 4977238.645264936611056, 3900922.763201761059463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977131.978308077901602, 3908729.159243539907038 ], [ 4977108.623409410007298, 3908745.496641859412193 ], [ 4977076.186269911937416, 3908698.820265389047563 ], [ 4977099.540432353504002, 3908682.846970262005925 ], [ 4977131.978308077901602, 3908729.159243539907038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977088.130543860606849, 3913479.547739806585014 ], [ 4977084.40424925647676, 3913471.893189433030784 ], [ 4977107.167200991883874, 3913461.380636649671942 ], [ 4977128.085605015046895, 3913507.304971956182271 ], [ 4977078.814572439529002, 3913529.778812737204134 ], [ 4977061.333785403519869, 3913491.872595854569227 ], [ 4977088.130543860606849, 3913479.547739806585014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977094.650752501562238, 3900505.169811102561653 ], [ 4977122.316885255277157, 3900496.488174351397902 ], [ 4977136.907954214140773, 3900543.127237868029624 ], [ 4977108.953865523450077, 3900551.808261282276362 ], [ 4977094.650752501562238, 3900505.169811102561653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977066.971155413426459, 3912856.835461880546063 ], [ 4977069.167412557639182, 3912908.182841132860631 ], [ 4977024.543532592244446, 3912910.274958103895187 ], [ 4977023.170725226402283, 3912878.22836457984522 ], [ 4977034.974030647426844, 3912877.888738742563874 ], [ 4977034.151260364800692, 3912858.223824365064502 ], [ 4977066.971155413426459, 3912856.835461880546063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977080.072702245786786, 3905165.290459521114826 ], [ 4977137.108705451712012, 3905154.849200718104839 ], [ 4977143.089759152382612, 3905186.54109894996509 ], [ 4977106.794500913470984, 3905193.020000712946057 ], [ 4977106.225414064712822, 3905189.74163240659982 ], [ 4977085.484731518663466, 3905193.703977392986417 ], [ 4977080.072702245786786, 3905165.290459521114826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977075.691639926284552, 3906581.026032661087811 ], [ 4977099.510738583281636, 3906619.309391875285655 ], [ 4977053.382294211536646, 3906647.615853145718575 ], [ 4977029.563155183568597, 3906609.332534150220454 ], [ 4977075.691639926284552, 3906581.026032661087811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969102.609665521420538, 3893074.25148445693776 ], [ 4969086.721895122900605, 3893098.619843702763319 ], [ 4969092.764426246285439, 3893102.636013915296644 ], [ 4969077.165407955646515, 3893126.640764166601002 ], [ 4969045.513002475723624, 3893106.193255474790931 ], [ 4969033.091307363472879, 3893125.470004847273231 ], [ 4968989.639916098676622, 3893098.083144781179726 ], [ 4969004.372694400139153, 3893075.169192115776241 ], [ 4969049.262560403905809, 3893103.65101976506412 ], [ 4969078.438862689770758, 3893058.550930932629853 ], [ 4969102.609665521420538, 3893074.25148445693776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977026.477375349029899, 3909621.429030881263316 ], [ 4977059.915603127330542, 3909601.471170432399958 ], [ 4977089.180215510539711, 3909650.325758130755275 ], [ 4977055.742026568390429, 3909670.283582760021091 ], [ 4977026.477375349029899, 3909621.429030881263316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976982.917636322788894, 3912716.105450951494277 ], [ 4976990.095467972569168, 3912725.223678238224238 ], [ 4976969.912183380685747, 3912740.839544691611081 ], [ 4976940.052360604517162, 3912702.907754181884229 ], [ 4976981.28409388102591, 3912670.94952039513737 ], [ 4977003.965309616178274, 3912700.127254978753626 ], [ 4976982.917636322788894, 3912716.105450951494277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976959.453914080746472, 3901398.830274663399905 ], [ 4976958.527297456748784, 3901429.051216179039329 ], [ 4976920.227678876370192, 3901427.515331585891545 ], [ 4976922.657563118264079, 3901366.710510386154056 ], [ 4976954.046253519132733, 3901367.867942511104047 ], [ 4976953.118132652714849, 3901398.817142242565751 ], [ 4976959.453914080746472, 3901398.830274663399905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976727.085329025052488, 3908492.726475107017905 ], [ 4976743.469355523586273, 3908505.869076980743557 ], [ 4976736.252708658576012, 3908514.957484010141343 ], [ 4976759.248199597932398, 3908533.211604150943458 ], [ 4976741.929764091968536, 3908554.295512753073126 ], [ 4976720.659505761228502, 3908537.137366242241114 ], [ 4976716.041613193228841, 3908542.589819646440446 ], [ 4976698.508946976624429, 3908527.988333927467465 ], [ 4976727.085329025052488, 3908492.726475107017905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968995.132885720580816, 3898114.703729052096605 ], [ 4968960.523318872787058, 3898140.859630617313087 ], [ 4968950.46506161428988, 3898128.097230709157884 ], [ 4968946.138869672082365, 3898131.366723159793764 ], [ 4968927.747247476130724, 3898107.665647428482771 ], [ 4968966.68367332406342, 3898077.876085634808987 ], [ 4968995.132885720580816, 3898114.703729052096605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968872.502675153315067, 3894661.44546009041369 ], [ 4968911.680433667264879, 3894660.786634059622884 ], [ 4968912.452945391647518, 3894712.49435100518167 ], [ 4968872.987845569849014, 3894712.788537549320608 ], [ 4968872.502675153315067, 3894661.44546009041369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976522.262197597883642, 3912607.006109088193625 ], [ 4976538.615329482592642, 3912633.985629275906831 ], [ 4976499.704246503300965, 3912657.574245621450245 ], [ 4976483.063220336101949, 3912630.594156855717301 ], [ 4976522.262197597883642, 3912607.006109088193625 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976429.922243661247194, 3912994.98249804507941 ], [ 4976425.331348368898034, 3912987.690399484708905 ], [ 4976447.236089771613479, 3912974.626593623775989 ], [ 4976479.082915809936821, 3913026.398998519871384 ], [ 4976458.042545285075903, 3913039.100421668961644 ], [ 4976453.452413466759026, 3913031.444186174776405 ], [ 4976429.81827977579087, 3913045.596835450734943 ], [ 4976407.440300658345222, 3913008.773399930913001 ], [ 4976429.922243661247194, 3912994.98249804507941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976419.998477425426245, 3908575.116366845089942 ], [ 4976445.941331734880805, 3908560.240218312945217 ], [ 4976471.763724906370044, 3908603.989171845838428 ], [ 4976445.820898389443755, 3908618.865295845549554 ], [ 4976419.998477425426245, 3908575.116366845089942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976418.356534297578037, 3907692.092047810554504 ], [ 4976447.46439681854099, 3907678.678934735246003 ], [ 4976466.668420869857073, 3907720.957733547315001 ], [ 4976437.273420152254403, 3907734.006104079075158 ], [ 4976418.356534297578037, 3907692.092047810554504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976394.049500082619488, 3910276.290794191882014 ], [ 4976455.15430617146194, 3910241.823662183713168 ], [ 4976467.48815356567502, 3910264.061110844369978 ], [ 4976475.846840871497989, 3910259.344564346596599 ], [ 4976487.607867877930403, 3910280.12431374238804 ], [ 4976433.99659173656255, 3910310.601301976945251 ], [ 4976425.391162404790521, 3910295.290048637893051 ], [ 4976409.82690454646945, 3910303.997277503833175 ], [ 4976394.049500082619488, 3910276.290794191882014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976398.660174059681594, 3901715.924074941314757 ], [ 4976459.41114823333919, 3901722.967293064575642 ], [ 4976455.601501043885946, 3901755.00298891402781 ], [ 4976427.673563275486231, 3901751.668457253370434 ], [ 4976427.670572903938591, 3901753.124974835664034 ], [ 4976394.847609754651785, 3901749.41629685414955 ], [ 4976398.660174059681594, 3901715.924074941314757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976359.196101970039308, 3909302.528381990734488 ], [ 4976360.414197038859129, 3909270.123078365810215 ], [ 4976352.064931185916066, 3909270.105953909922391 ], [ 4976352.680322430096567, 3909250.808188098482788 ], [ 4976391.256727198138833, 3909252.343861740548164 ], [ 4976389.423924097791314, 3909303.682797899004072 ], [ 4976359.196101970039308, 3909302.528381990734488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976350.297029127366841, 3912658.723921908996999 ], [ 4976357.288805970922112, 3912618.319459163583815 ], [ 4976387.216806462965906, 3912623.478734518401325 ], [ 4976380.224985898472369, 3912663.883189602289349 ], [ 4976350.297029127366841, 3912658.723921908996999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976308.624818824231625, 3912484.5827391971834 ], [ 4976277.833034595474601, 3912479.42178285587579 ], [ 4976285.698806846514344, 3912433.921229886822402 ], [ 4976316.490641770884395, 3912439.082195102237165 ], [ 4976308.624818824231625, 3912484.5827391971834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968556.646215403452516, 3907829.671816643327475 ], [ 4968527.800280526280403, 3907860.208140354603529 ], [ 4968496.756694331765175, 3907830.65883672516793 ], [ 4968525.601984801702201, 3907800.486611183267087 ], [ 4968556.646215403452516, 3907829.671816643327475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968582.961036331951618, 3891083.368512211833149 ], [ 4968555.275188915431499, 3891099.341436485294253 ], [ 4968541.202461106702685, 3891074.191817649640143 ], [ 4968528.225123466923833, 3891081.45156288286671 ], [ 4968520.182633556425571, 3891067.600541264284402 ], [ 4968529.122721903026104, 3891062.518462954554707 ], [ 4968513.325184312649071, 3891035.181055755820125 ], [ 4968545.335794687271118, 3891017.395054068882018 ], [ 4968582.961036331951618, 3891083.368512211833149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968402.612744035199285, 3892888.401310146786273 ], [ 4968413.795531434938312, 3892918.279488927219063 ], [ 4968393.328375712037086, 3892925.890295680612326 ], [ 4968397.056823909282684, 3892935.364183353725821 ], [ 4968346.898239528760314, 3892953.846836348995566 ], [ 4968332.274364655837417, 3892914.859437864273787 ], [ 4968402.612744035199285, 3892888.401310146786273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968393.191216337494552, 3896289.351268748752773 ], [ 4968410.116866416297853, 3896328.706948671024293 ], [ 4968372.354326173663139, 3896345.026553506031632 ], [ 4968355.428631202317774, 3896305.670896993018687 ], [ 4968393.191216337494552, 3896289.351268748752773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976139.700838943012059, 3901885.443079720251262 ], [ 4976138.24604117590934, 3901892.722727539949119 ], [ 4976111.4753503119573, 3901886.841970829758793 ], [ 4976123.099572829902172, 3901835.523239018861204 ], [ 4976166.566020446829498, 3901845.079427185002714 ], [ 4976156.684505854733288, 3901889.119081920012832 ], [ 4976139.700838943012059, 3901885.443079720251262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976081.121275045908988, 3912243.789458955172449 ], [ 4976100.359011844731867, 3912268.225659554824233 ], [ 4976067.20079530030489, 3912294.011443269904703 ], [ 4976047.963789694942534, 3912269.211134260520339 ], [ 4976081.121275045908988, 3912243.789458955172449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976082.137068599462509, 3909489.125696953386068 ], [ 4976114.694687423296273, 3909477.175783859565854 ], [ 4976137.311860763467848, 3909539.488662044052035 ], [ 4976104.754307224415243, 3909551.438548197969794 ], [ 4976082.137068599462509, 3909489.125696953386068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976021.89074101857841, 3912632.198882548604161 ], [ 4976048.693075673654675, 3912617.324073439463973 ], [ 4976069.633269974030554, 3912653.780132058542222 ], [ 4976042.542347989045084, 3912669.018465328030288 ], [ 4976021.89074101857841, 3912632.198882548604161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968289.233884916640818, 3905488.563043981790543 ], [ 4968311.341335964389145, 3905525.379039690829813 ], [ 4968283.669216919690371, 3905542.080642336513847 ], [ 4968261.274432799778879, 3905504.900034820195287 ], [ 4968289.233884916640818, 3905488.563043981790543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968287.696367414668202, 3892048.883304017130286 ], [ 4968315.699130217544734, 3892015.79660675348714 ], [ 4968342.452012462541461, 3892038.419429231900722 ], [ 4968314.449240148067474, 3892071.506099073216319 ], [ 4968287.696367414668202, 3892048.883304017130286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968113.088626797311008, 3913366.624607771169394 ], [ 4968114.187984799966216, 3913396.485458856914192 ], [ 4968065.536217949353158, 3913398.221295706462115 ], [ 4968064.724667749367654, 3913368.360948223154992 ], [ 4968113.088626797311008, 3913366.624607771169394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975854.198892590589821, 3912564.856975783128291 ], [ 4975909.586739286780357, 3912649.084417067468166 ], [ 4975875.28436169680208, 3912671.590914284810424 ], [ 4975819.608584119006991, 3912587.362957782577723 ], [ 4975854.198892590589821, 3912564.856975783128291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975753.080192229710519, 3907777.033676750026643 ], [ 4975781.906358568929136, 3907760.342081182170659 ], [ 4975805.721070442348719, 3907801.173236618749797 ], [ 4975776.607011675834656, 3907817.86422277148813 ], [ 4975753.080192229710519, 3907777.033676750026643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975750.570178128778934, 3904045.769686911720783 ], [ 4975731.617858085781336, 3904019.513794998172671 ], [ 4975772.856263003312051, 3903990.102787939831614 ], [ 4975800.135070053860545, 3904028.391945962328464 ], [ 4975746.496623883955181, 3904066.516916691791266 ], [ 4975737.882143794558942, 3904054.483111654408276 ], [ 4975750.570178128778934, 3904045.769686911720783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975669.457173224538565, 3904284.475532080512494 ], [ 4975648.640821476466954, 3904325.580241867341101 ], [ 4975588.230605845339596, 3904295.235108909197152 ], [ 4975596.0364282252267, 3904279.957372210454196 ], [ 4975611.570755832828581, 3904287.635553250554949 ], [ 4975624.58122728113085, 3904261.808541527949274 ], [ 4975669.457173224538565, 3904284.475532080512494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975522.890256324782968, 3910554.170887900982052 ], [ 4975546.231581887230277, 3910543.294063520152122 ], [ 4975557.12437398545444, 3910566.620583557058126 ], [ 4975533.495172509923577, 3910577.496816945727915 ], [ 4975522.890256324782968, 3910554.170887900982052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975497.557527194730937, 3905704.605429145973176 ], [ 4975500.129908989183605, 3905714.078048676718026 ], [ 4975520.584951687604189, 3905708.65737604862079 ], [ 4975530.873698314651847, 3905746.911995153408498 ], [ 4975488.811901762150228, 3905757.751015751622617 ], [ 4975476.237919677048922, 3905710.388506365474313 ], [ 4975497.557527194730937, 3905704.605429145973176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975475.325372904539108, 3908445.382769973482937 ], [ 4975447.362405013293028, 3908462.80470564449206 ], [ 4975430.143346821889281, 3908435.095916250254959 ], [ 4975458.106332276016474, 3908417.673962955363095 ], [ 4975475.325372904539108, 3908445.382769973482937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975463.643342500552535, 3909668.84450361924246 ], [ 4975476.282344124279916, 3909683.071184047497809 ], [ 4975470.80266650300473, 3909687.793849779758602 ], [ 4975487.751350795850158, 3909706.398825623560697 ], [ 4975454.871860976330936, 3909735.463085758499801 ], [ 4975425.572801755741239, 3909702.267916960641742 ], [ 4975463.643342500552535, 3909668.84450361924246 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975454.633976999670267, 3905143.391835055314004 ], [ 4975496.618067440576851, 3905171.514693581033498 ], [ 4975481.599859147332609, 3905193.696411821991205 ], [ 4975473.260347893461585, 3905188.217607729136944 ], [ 4975462.285945635288954, 3905204.217258647084236 ], [ 4975428.641396396793425, 3905181.573240823578089 ], [ 4975454.633976999670267, 3905143.391835055314004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975350.882634717971087, 3905759.657755190972239 ], [ 4975350.380791865289211, 3905722.879434601869434 ], [ 4975398.181652211584151, 3905721.883319720160216 ], [ 4975398.682695897296071, 3905759.025771491229534 ], [ 4975385.725245475769043, 3905758.999663921073079 ], [ 4975385.701770687475801, 3905770.651833926327527 ], [ 4975367.272671389393508, 3905770.978844256140292 ], [ 4975367.008194845169783, 3905759.326094335876405 ], [ 4975350.882634717971087, 3905759.657755190972239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975271.786925124004483, 3909868.366902207955718 ], [ 4975252.754830978810787, 3909883.622215090785176 ], [ 4975220.589124653488398, 3909844.231249196454883 ], [ 4975260.095049014315009, 3909812.631092282012105 ], [ 4975285.943058554083109, 3909843.99847817234695 ], [ 4975265.468513828702271, 3909860.707411651965231 ], [ 4975271.786925124004483, 3909868.366902207955718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967289.189153573475778, 3902465.634556488599628 ], [ 4967282.557536842301488, 3902470.356897770892829 ], [ 4967294.334713222458959, 3902487.855354368221015 ], [ 4967270.982274143025279, 3902503.108850984834135 ], [ 4967236.512740638107061, 3902451.707395117264241 ], [ 4967266.496825742535293, 3902431.731522236019373 ], [ 4967289.189153573475778, 3902465.634556488599628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967228.978688930161297, 3901973.954893851652741 ], [ 4967252.53291003126651, 3902009.315884636249393 ], [ 4967228.314883860759437, 3902025.296194469556212 ], [ 4967234.634318424388766, 3902034.774406382348388 ], [ 4967213.299270390532911, 3902048.939009193796664 ], [ 4967183.42557724006474, 3902004.09985071234405 ], [ 4967228.978688930161297, 3901973.954893851652741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975210.812455024570227, 3903816.370063879527152 ], [ 4975225.802681353874505, 3903808.389278292655945 ], [ 4975219.49160021264106, 3903796.360268488526344 ], [ 4975235.058500682003796, 3903788.016514935530722 ], [ 4975240.796574442647398, 3903798.587851699441671 ], [ 4975260.111408952623606, 3903788.066854739561677 ], [ 4975283.063637414947152, 3903830.352230997290462 ], [ 4975253.659111645072699, 3903846.314904269762337 ], [ 4975252.512378396466374, 3903843.763680330011994 ], [ 4975231.468341407366097, 3903855.009472177363932 ], [ 4975210.812455024570227, 3903816.370063879527152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975158.373473458923399, 3909428.266851522494107 ], [ 4975190.380530891939998, 3909403.570073682814837 ], [ 4975229.147385087795556, 3909453.534098693169653 ], [ 4975201.177580806426704, 3909474.961744152475148 ], [ 4975177.342980975285172, 3909444.326754260808229 ], [ 4975173.305749748833477, 3909447.595844754017889 ], [ 4975158.373473458923399, 3909428.266851522494107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975163.674683830700815, 3906642.665441448334605 ], [ 4975188.45307759847492, 3906634.704265424981713 ], [ 4975196.46478618029505, 3906659.845455747097731 ], [ 4975171.686413178220391, 3906667.806624508462846 ], [ 4975163.674683830700815, 3906642.665441448334605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975088.471908022649586, 3898618.521970166359097 ], [ 4975111.821217777207494, 3898608.737234123516828 ], [ 4975114.401722029782832, 3898614.568488653749228 ], [ 4975134.004594701342285, 3898605.868654915131629 ], [ 4975151.206201094202697, 3898645.593338098376989 ], [ 4975108.254074262455106, 3898664.077878612559289 ], [ 4975088.471908022649586, 3898618.521970166359097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966980.845983808860183, 3894460.438806009013206 ], [ 4966992.585991609841585, 3894501.9694993076846 ], [ 4966944.456408000551164, 3894515.360424089711159 ], [ 4966932.715713023208082, 3894474.193879555445164 ], [ 4966980.845983808860183, 3894460.438806009013206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974649.656435089185834, 3900148.450639733113348 ], [ 4974690.251891206949949, 3900155.085675870068371 ], [ 4974684.715396510437131, 3900187.482285805977881 ], [ 4974644.120711391791701, 3900180.483128810767084 ], [ 4974649.656435089185834, 3900148.450639733113348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974624.839739616028965, 3900752.858134462498128 ], [ 4974618.228100763633847, 3900746.654783703386784 ], [ 4974633.235770648345351, 3900730.662839537952095 ], [ 4974666.8692069016397, 3900762.044902021065354 ], [ 4974637.720039351843297, 3900792.938090447336435 ], [ 4974610.69824636913836, 3900767.759411197155714 ], [ 4974624.839739616028965, 3900752.858134462498128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974569.713525363244116, 3896747.31624391162768 ], [ 4974534.83543296251446, 3896759.991625200491399 ], [ 4974524.52301312237978, 3896731.204931550659239 ], [ 4974512.992751683108509, 3896735.55163948610425 ], [ 4974503.538648926652968, 3896709.679693368729204 ], [ 4974549.946351739577949, 3896693.021703271195292 ], [ 4974569.713525363244116, 3896747.31624391162768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974230.269981648772955, 3896960.025133891031146 ], [ 4974219.392000729218125, 3896925.775492382235825 ], [ 4974251.9603978311643, 3896915.64405565848574 ], [ 4974269.991881736554205, 3896973.940387972164899 ], [ 4974217.824809153564274, 3896990.223383469972759 ], [ 4974210.383189029991627, 3896966.176151784602553 ], [ 4974230.269981648772955, 3896960.025133891031146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974159.355359584093094, 3904450.052751090377569 ], [ 4974210.05451456271112, 3904440.685202041175216 ], [ 4974216.606483093462884, 3904476.747130728792399 ], [ 4974189.816431490704417, 3904481.79218081664294 ], [ 4974194.089155569672585, 3904505.469144476111978 ], [ 4974170.180138229392469, 3904509.791627541650087 ], [ 4974159.355359584093094, 3904450.052751090377569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974138.03711717016995, 3899040.118478344753385 ], [ 4974160.519516919739544, 3899031.423599847126752 ], [ 4974177.137651584111154, 3899075.516082277521491 ], [ 4974132.461660699918866, 3899092.542268567718565 ], [ 4974119.281024097464979, 3899057.923962028231472 ], [ 4974141.762686329893768, 3899049.593196615576744 ], [ 4974138.03711717016995, 3899040.118478344753385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974134.105149077251554, 3900160.175844508688897 ], [ 4974156.873898760415614, 3900151.845652900170535 ], [ 4974158.591884030029178, 3900156.946862063836306 ], [ 4974181.648647538386285, 3900148.617258413694799 ], [ 4974195.111645414493978, 3900185.785089242272079 ], [ 4974149.286190896295011, 3900202.444860487710685 ], [ 4974134.105149077251554, 3900160.175844508688897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966348.21947926748544, 3891046.755558005534112 ], [ 4966331.153138869442046, 3891087.509314973838627 ], [ 4966304.954904224723577, 3891076.177419986575842 ], [ 4966322.020601595751941, 3891035.787773992400616 ], [ 4966348.21947926748544, 3891046.755558005534112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974048.139756420627236, 3903749.609356896951795 ], [ 4974076.386798335239291, 3903736.192010469734669 ], [ 4974088.719177102670074, 3903761.705447282176465 ], [ 4974060.471440194174647, 3903775.486910854000598 ], [ 4974048.139756420627236, 3903749.609356896951795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973994.30136803817004, 3902423.337953329551965 ], [ 4974010.951969663612545, 3902449.95220118900761 ], [ 4973989.903792137280107, 3902463.019603827502578 ], [ 4973973.252463486045599, 3902436.76949842274189 ], [ 4973994.30136803817004, 3902423.337953329551965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973951.874332225881517, 3896742.820633473340422 ], [ 4973924.493411251343787, 3896751.506078665144742 ], [ 4973922.489261976443231, 3896745.311945274006575 ], [ 4973901.737548751756549, 3896751.825625858735293 ], [ 4973894.581479888409376, 3896728.871434305794537 ], [ 4973912.450667165219784, 3896723.444490124937147 ], [ 4973901.001809338107705, 3896686.28082671854645 ], [ 4973937.893840455450118, 3896674.700960658024997 ], [ 4973952.778431922197342, 3896722.431138892192394 ], [ 4973946.149938706308603, 3896724.238792449235916 ], [ 4973951.874332225881517, 3896742.820633473340422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973899.748905134387314, 3900707.73225055122748 ], [ 4973900.103241224773228, 3900673.868796127382666 ], [ 4973941.286217449232936, 3900674.313634546939284 ], [ 4973940.643832006491721, 3900708.176523821894079 ], [ 4973899.748905134387314, 3900707.73225055122748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973735.008651888929307, 3900562.850182451307774 ], [ 4973735.650780987925828, 3900528.987291215453297 ], [ 4973776.54527042247355, 3900529.795443962793797 ], [ 4973775.903089819476008, 3900563.658334236592054 ], [ 4973735.008651888929307, 3900562.850182451307774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973602.056829146109521, 3901839.961494431365281 ], [ 4973578.682514049112797, 3901864.312740931287408 ], [ 4973524.639767920598388, 3901813.593377584125847 ], [ 4973547.726092010736465, 3901789.241524425335228 ], [ 4973602.056829146109521, 3901839.961494431365281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973496.677879169583321, 3902271.97982700355351 ], [ 4973503.862529024481773, 3902279.640545784495771 ], [ 4973530.114808636717498, 3902256.023089255671948 ], [ 4973551.380040938034654, 3902279.368847195059061 ], [ 4973502.336961084976792, 3902323.697427325882018 ], [ 4973473.887778287753463, 3902292.326865177135915 ], [ 4973496.677879169583321, 3902271.97982700355351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973481.701738405041397, 3909383.079780540429056 ], [ 4973497.201139573939145, 3909407.5067976443097 ], [ 4973472.986748883500695, 3909423.117421061266214 ], [ 4973457.199430449865758, 3909398.689858254510909 ], [ 4973481.701738405041397, 3909383.079780540429056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973471.083804236724973, 3909513.418600269593298 ], [ 4973437.931094108149409, 3909535.930403765290976 ], [ 4973420.130609756335616, 3909510.406552908942103 ], [ 4973453.571947232820094, 3909487.531155984383076 ], [ 4973471.083804236724973, 3909513.418600269593298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973370.605994955636561, 3897486.332796846982092 ], [ 4973393.258805143646896, 3897538.811440279707313 ], [ 4973348.287791397422552, 3897558.387255562469363 ], [ 4973325.346878349781036, 3897505.908091391902417 ], [ 4973370.605994955636561, 3897486.332796846982092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965801.980148163624108, 3894522.545970179140568 ], [ 4965827.037467653863132, 3894525.136412606108934 ], [ 4965823.229849115945399, 3894562.999525969382375 ], [ 4965798.172564565204084, 3894560.409087031614035 ], [ 4965801.980148163624108, 3894522.545970179140568 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965690.096299048513174, 3900341.153772220015526 ], [ 4965643.140042147599161, 3900348.358779225032777 ], [ 4965639.433912730775774, 3900325.412445684894919 ], [ 4965686.678812375292182, 3900317.843779122456908 ], [ 4965690.096299048513174, 3900341.153772220015526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973313.28765791002661, 3899567.953742098528892 ], [ 4973327.882315263152122, 3899616.41135659115389 ], [ 4973284.944276202470064, 3899629.072757293004543 ], [ 4973270.349548446014524, 3899580.61516574351117 ], [ 4973313.28765791002661, 3899567.953742098528892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973189.821988230571151, 3899818.964836970902979 ], [ 4973221.529513419605792, 3899805.18917392147705 ], [ 4973236.72768690250814, 3899839.446826049592346 ], [ 4973184.842843775637448, 3899861.922605502419174 ], [ 4973174.518926911056042, 3899838.962441681418568 ], [ 4973194.69699495844543, 3899829.89817092847079 ], [ 4973189.821988230571151, 3899818.964836970902979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973182.917185600847006, 3898771.712733237072825 ], [ 4973210.881701865233481, 3898757.929832124616951 ], [ 4973223.505222762003541, 3898783.443352274596691 ], [ 4973195.540726495906711, 3898797.226240461692214 ], [ 4973182.917185600847006, 3898771.712733237072825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973173.087738954462111, 3899685.296644679736346 ], [ 4973150.892808404751122, 3899694.721166749484837 ], [ 4973132.829819846898317, 3899652.447167808189988 ], [ 4973176.931041029281914, 3899633.961685256101191 ], [ 4973192.126554187387228, 3899669.675824778620154 ], [ 4973170.508324445225298, 3899678.737314729951322 ], [ 4973173.087738954462111, 3899685.296644679736346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965441.841497898101807, 3908219.087505817878991 ], [ 4965438.112350552342832, 3908210.706334426533431 ], [ 4965459.72230757586658, 3908200.91031591501087 ], [ 4965472.343917268328369, 3908229.333389963489026 ], [ 4965434.311345673166215, 3908246.020897343289107 ], [ 4965425.418256499804556, 3908226.343141132034361 ], [ 4965441.841497898101807, 3908219.087505817878991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965337.653516032733023, 3902755.123417305760086 ], [ 4965361.338633421808481, 3902711.830709486268461 ], [ 4965390.973845330066979, 3902727.901127119082958 ], [ 4965380.864196345210075, 3902746.455198605079204 ], [ 4965385.755595875903964, 3902749.012147451285273 ], [ 4965371.892115217633545, 3902773.75028284965083 ], [ 4965337.653516032733023, 3902755.123417305760086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965198.200666666030884, 3905616.602040355559438 ], [ 4965219.522290865890682, 3905608.261895558796823 ], [ 4965230.417713508941233, 3905636.681983740068972 ], [ 4965203.622183668427169, 3905646.833823375869542 ], [ 4965196.454536612145603, 3905627.887261455878615 ], [ 4965201.929060332477093, 3905625.711426159832627 ], [ 4965198.200666666030884, 3905616.602040355559438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972958.107541449368, 3901696.339659037999809 ], [ 4972937.892435246147215, 3901725.431239165365696 ], [ 4972909.13157437928021, 3901705.712875625118613 ], [ 4972919.528500862419605, 3901690.439367678016424 ], [ 4972928.156206046231091, 3901696.646180348470807 ], [ 4972937.975071835331619, 3901682.463960518594831 ], [ 4972958.107541449368, 3901696.339659037999809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972760.399454028345644, 3903576.696755503769964 ], [ 4972790.960242245346308, 3903557.820526773575693 ], [ 4972797.850494721904397, 3903568.757679542526603 ], [ 4972831.582450085319579, 3903548.066923888400197 ], [ 4972846.510593894869089, 3903572.128242843318731 ], [ 4972807.589670388959348, 3903595.722074257209897 ], [ 4972816.776650389656425, 3903610.304951027501374 ], [ 4972791.405579877085984, 3903625.913922707550228 ], [ 4972760.399454028345644, 3903576.696755503769964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972727.536484098061919, 3910508.250696515664458 ], [ 4972729.255466224625707, 3910512.623583687003702 ], [ 4972745.391399557702243, 3910505.371850935276598 ], [ 4972755.99734824988991, 3910529.424945781938732 ], [ 4972724.879174649715424, 3910542.838220432400703 ], [ 4972712.55352180916816, 3910514.776382885873318 ], [ 4972727.536484098061919, 3910508.250696515664458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965146.794747700914741, 3901831.011220722924918 ], [ 4965151.172820692881942, 3901795.333566715940833 ], [ 4965187.739875615574419, 3901799.762892373837531 ], [ 4965186.283874017186463, 3901809.592039986513555 ], [ 4965204.998773338273168, 3901812.171556697227061 ], [ 4965201.789246496744454, 3901837.65545454993844 ], [ 4965146.794747700914741, 3901831.011220722924918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964963.189136427827179, 3896969.938781523611397 ], [ 4965007.256506411358714, 3896971.466999653261155 ], [ 4965007.853920815512538, 3896958.359306314960122 ], [ 4965024.270880741067231, 3896959.11429551942274 ], [ 4965022.753014285117388, 3897006.812802818603814 ], [ 4964961.980732986703515, 3897004.529129462782294 ], [ 4964963.189136427827179, 3896969.938781523611397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972445.818326325155795, 3898348.271837347652763 ], [ 4972416.992483352310956, 3898360.597371141426265 ], [ 4972400.361315671354532, 3898321.603798338677734 ], [ 4972429.187192726880312, 3898309.278247001115233 ], [ 4972445.818326325155795, 3898348.271837347652763 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972379.559659264050424, 3910765.392240121029317 ], [ 4972436.663800957612693, 3910711.973449686076492 ], [ 4972458.786238026805222, 3910735.684241183567792 ], [ 4972401.970685203559697, 3910788.739401988685131 ], [ 4972379.559659264050424, 3910765.392240121029317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972220.333754588849843, 3908197.226991444826126 ], [ 4972207.418224186636508, 3908175.718690979294479 ], [ 4972245.466866116039455, 3908152.850546392612159 ], [ 4972273.592907564714551, 3908200.24113499885425 ], [ 4972245.921758233569562, 3908216.574553698766977 ], [ 4972230.422602327540517, 3908191.055883603636175 ], [ 4972220.333754588849843, 3908197.226991444826126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972171.92585027590394, 3902290.920784475747496 ], [ 4972150.588396180421114, 3902305.081469655968249 ], [ 4972136.230056808330119, 3902283.57055367063731 ], [ 4972157.567520352080464, 3902269.409857288002968 ], [ 4972171.92585027590394, 3902290.920784475747496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964896.291637337766588, 3903044.615309700369835 ], [ 4964876.057904873043299, 3903091.191215512342751 ], [ 4964832.60426006000489, 3903072.550032014027238 ], [ 4964842.432523801922798, 3903049.625723794102669 ], [ 4964851.92852277494967, 3903054.010700153652579 ], [ 4964862.334527670405805, 3903029.994944007135928 ], [ 4964896.291637337766588, 3903044.615309700369835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964882.748108647763729, 3898969.973198410589248 ], [ 4964919.876745001412928, 3898985.691088829189539 ], [ 4964908.023141607642174, 3899013.345715927891433 ], [ 4964870.894536603242159, 3898997.627841627690941 ], [ 4964882.748108647763729, 3898969.973198410589248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971941.442541118711233, 3902342.919911620207131 ], [ 4971960.382570648565888, 3902378.276345007587224 ], [ 4971919.736259326338768, 3902400.04753658361733 ], [ 4971900.796191829256713, 3902364.691131371073425 ], [ 4971941.442541118711233, 3902342.919911620207131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971933.358956449665129, 3905101.927124026697129 ], [ 4971975.152315890416503, 3905080.52222159691155 ], [ 4971980.31824133452028, 3905089.635262361261994 ], [ 4971997.323825437575579, 3905080.928214520215988 ], [ 4972010.520717270672321, 3905106.806480146478862 ], [ 4971992.938557155430317, 3905115.876562531571835 ], [ 4971997.529257117770612, 3905124.624389062169939 ], [ 4971980.811650599353015, 3905133.331980612594634 ], [ 4971978.804249117150903, 3905128.958612239453942 ], [ 4971948.5399484410882, 3905144.559153544250876 ], [ 4971935.628905400633812, 3905119.773851677775383 ], [ 4971941.104767308570445, 3905117.235259847249836 ], [ 4971933.358956449665129, 3905101.927124026697129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964550.324545620009303, 3900432.510719639714807 ], [ 4964575.440454016439617, 3900395.40989961149171 ], [ 4964602.19633755274117, 3900412.931300209835172 ], [ 4964577.08040847722441, 3900450.032095634844154 ], [ 4964550.324545620009303, 3900432.510719639714807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964271.72138115670532, 3904096.675152390263975 ], [ 4964275.525507868267596, 3904058.811603458132595 ], [ 4964316.409630488604307, 3904062.882535377517343 ], [ 4964312.605446715839207, 3904100.746078622527421 ], [ 4964271.72138115670532, 3904096.675152390263975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964162.579755254089832, 3903738.559765393845737 ], [ 4964159.362138505093753, 3903769.869899863842875 ], [ 4964113.582727425731719, 3903765.427268701139838 ], [ 4964116.512326312251389, 3903734.116669496521354 ], [ 4964162.579755254089832, 3903738.559765393845737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971181.092715914361179, 3912147.571692048106343 ], [ 4971197.476535481400788, 3912161.075073605868965 ], [ 4971169.20256235357374, 3912194.522769265808165 ], [ 4971137.010668647475541, 3912167.517119315918535 ], [ 4971145.377293961122632, 3912157.7010626825504 ], [ 4971132.443212453275919, 3912146.753050027415156 ], [ 4971161.294969821348786, 3912112.21399077353999 ], [ 4971190.325019217096269, 3912136.664859090931714 ], [ 4971181.092715914361179, 3912147.571692048106343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964025.274695852771401, 3894474.508178313262761 ], [ 4964013.098379663191736, 3894523.282099815551192 ], [ 4963981.999650666490197, 3894515.585937623400241 ], [ 4963994.175913847982883, 3894466.812002256046981 ], [ 4964025.274695852771401, 3894474.508178313262761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964007.252425972372293, 3901457.03262640722096 ], [ 4963998.293477361090481, 3901476.681425368413329 ], [ 4963959.443285385146737, 3901458.777260732837021 ], [ 4963978.228014753200114, 3901417.66036593541503 ], [ 4964024.273359284736216, 3901438.489052261225879 ], [ 4964014.44694737996906, 3901460.321248423308134 ], [ 4964007.252425972372293, 3901457.03262640722096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963987.520660858601332, 3904266.635055241174996 ], [ 4963989.761210327968001, 3904306.328918077517301 ], [ 4963949.443491496145725, 3904308.449612236116081 ], [ 4963947.491420530714095, 3904268.392079959623516 ], [ 4963987.520660858601332, 3904266.635055241174996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963882.931429236195982, 3901581.367784395348281 ], [ 4963906.900328219868243, 3901539.894930636510253 ], [ 4963935.96114672254771, 3901556.326947911642492 ], [ 4963911.992217422463, 3901597.799776165746152 ], [ 4963882.931429236195982, 3901581.367784395348281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963875.617150501348078, 3893116.797909896355122 ], [ 4963916.266891103237867, 3893097.563568279147148 ], [ 4963933.207475552335382, 3893132.910948884673417 ], [ 4963888.233134586364031, 3893154.323178608901799 ], [ 4963878.471379215829074, 3893133.55235853465274 ], [ 4963882.796023323200643, 3893131.374443665146828 ], [ 4963875.617150501348078, 3893116.797909896355122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971057.698787283152342, 3902926.790137549396604 ], [ 4971113.346622879616916, 3902889.751964352559298 ], [ 4971129.141944366507232, 3902913.085663090925664 ], [ 4971108.382156948558986, 3902926.884120265953243 ], [ 4971119.294074931181967, 3902943.654395272023976 ], [ 4971084.406740599311888, 3902966.529935371130705 ], [ 4971057.698787283152342, 3902926.790137549396604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970709.672321842983365, 3902540.532643442042172 ], [ 4970762.662255188450217, 3902539.537825018167496 ], [ 4970763.176491119898856, 3902573.038820751477033 ], [ 4970710.186623807996511, 3902574.033638185821474 ], [ 4970709.672321842983365, 3902540.532643442042172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963282.296077295206487, 3902984.509795599151403 ], [ 4963273.297168292105198, 3903030.37621449958533 ], [ 4963213.705038538202643, 3903018.630907063372433 ], [ 4963222.703849673271179, 3902972.764468541368842 ], [ 4963282.296077295206487, 3902984.509795599151403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963271.76732511818409, 3901246.133402298670262 ], [ 4963248.10876043047756, 3901273.770339644048363 ], [ 4963224.236751848831773, 3901253.705868347547948 ], [ 4963247.030195805244148, 3901226.795819448307157 ], [ 4963239.264654380269349, 3901220.229336959775537 ], [ 4963250.51682722941041, 3901207.138221255037934 ], [ 4963259.720622432418168, 3901214.799346517771482 ], [ 4963279.628517176955938, 3901191.526120429858565 ], [ 4963302.925695231184363, 3901210.861479718238115 ], [ 4963283.88290904276073, 3901233.407780847977847 ], [ 4963294.524365933611989, 3901242.527688730042428 ], [ 4963283.272186381742358, 3901255.618786290753633 ], [ 4963271.76732511818409, 3901246.133402298670262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963202.992872223258018, 3893274.864120087586343 ], [ 4963238.45479336194694, 3893256.713044010102749 ], [ 4963257.410999002866447, 3893293.155535358935595 ], [ 4963221.949113020673394, 3893311.306586816441268 ], [ 4963202.992872223258018, 3893274.864120087586343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963147.529942715540528, 3903904.458348591811955 ], [ 4963182.416105362586677, 3903877.202930447179824 ], [ 4963201.384179871529341, 3903901.265186026226729 ], [ 4963210.033311370760202, 3903894.724329934455454 ], [ 4963220.379517801105976, 3903907.849205682985485 ], [ 4963176.556280896998942, 3903941.644989936612546 ], [ 4963147.529942715540528, 3903904.458348591811955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963158.491346393711865, 3893547.89131580106914 ], [ 4963199.135944054462016, 3893531.2047806144692 ], [ 4963208.032719473354518, 3893552.70226590661332 ], [ 4963220.715940373018384, 3893547.62426030728966 ], [ 4963230.185997960157692, 3893570.943292400799692 ], [ 4963177.146318529732525, 3893592.70825073774904 ], [ 4963158.491346393711865, 3893547.89131580106914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962812.033226487226784, 3902985.599052354227751 ], [ 4962809.401488214731216, 3903011.448274710215628 ], [ 4962768.227568024769425, 3903007.379193180706352 ], [ 4962770.571293967776, 3902981.52952193422243 ], [ 4962812.033226487226784, 3902985.599052354227751 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970062.487894800491631, 3891648.956642008852214 ], [ 4970030.500151381827891, 3891653.996385163627565 ], [ 4970026.511089593172073, 3891629.592532532755286 ], [ 4970058.786956073716283, 3891624.553307718597353 ], [ 4970062.487894800491631, 3891648.956642008852214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970026.682764177210629, 3899313.815639484673738 ], [ 4970010.739690033718944, 3899370.226898148655891 ], [ 4969991.452143873088062, 3899365.09409079933539 ], [ 4969994.642727000638843, 3899352.719448772259057 ], [ 4969958.083680775016546, 3899342.457524617668241 ], [ 4969968.808110770769417, 3899304.97154773119837 ], [ 4969999.610258326865733, 3899313.402392806485295 ], [ 4970001.350221131928265, 3899306.851204582490027 ], [ 4970026.682764177210629, 3899313.815639484673738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969840.50554018560797, 3912437.876560595352203 ], [ 4969850.246409701183438, 3912463.747635202482343 ], [ 4969802.13962307292968, 3912481.503174301702529 ], [ 4969781.225662173703313, 3912425.753011466003954 ], [ 4969815.506116533651948, 3912412.706167775671929 ], [ 4969826.966348794288933, 3912442.949939663987607 ], [ 4969840.50554018560797, 3912437.876560595352203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969769.939494756050408, 3911183.310792508535087 ], [ 4969768.022937653586268, 3911128.687401835806668 ], [ 4969798.828692606650293, 3911127.650653948541731 ], [ 4969798.831324661150575, 3911126.194127281662077 ], [ 4969839.137975042685866, 3911124.810463263187557 ], [ 4969839.412031045183539, 3911132.457748948596418 ], [ 4969852.367549110203981, 3911132.117050393950194 ], [ 4969854.003295679576695, 3911182.734477886464447 ], [ 4969847.957047290168703, 3911183.087672972120345 ], [ 4969847.687605023384094, 3911172.89146521454677 ], [ 4969799.895350093021989, 3911174.625720767769963 ], [ 4969800.169416708871722, 3911182.273006281349808 ], [ 4969769.939494756050408, 3911183.310792508535087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962657.222813250496984, 3893372.696868075057864 ], [ 4962637.049079798161983, 3893378.127735179848969 ], [ 4962626.739990543574095, 3893338.057700221426785 ], [ 4962672.562659247778356, 3893326.112015153747052 ], [ 4962685.164508352987468, 3893373.832305727060884 ], [ 4962659.227006606757641, 3893380.71078842272982 ], [ 4962657.222813250496984, 3893372.696868075057864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962533.193732521496713, 3899288.516799847129732 ], [ 4962507.208872719667852, 3899329.987727884203196 ], [ 4962488.217942998744547, 3899318.30642150901258 ], [ 4962496.879548011347651, 3899304.482769911177456 ], [ 4962473.860328289680183, 3899290.246381950099021 ], [ 4962491.184109137393534, 3899262.234943662770092 ], [ 4962533.193732521496713, 3899288.516799847129732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969521.88036634773016, 3900709.708390504587442 ], [ 4969495.084838035516441, 3900716.214626622386277 ], [ 4969489.936831503175199, 3900696.178207314573228 ], [ 4969516.733032448217273, 3900689.30783679895103 ], [ 4969521.88036634773016, 3900709.708390504587442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969184.640282826498151, 3900221.898240041919053 ], [ 4969221.789378416724503, 3900223.785172843839973 ], [ 4969219.998971970751882, 3900258.7384970523417 ], [ 4969183.13792688306421, 3900256.852080323267728 ], [ 4969184.640282826498151, 3900221.898240041919053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969094.891413868404925, 3904690.352707694284618 ], [ 4969116.131316639482975, 3904728.988460696768016 ], [ 4969031.679103035479784, 3904774.718720628414303 ], [ 4969010.726422474719584, 3904736.44767533056438 ], [ 4969094.891413868404925, 3904690.352707694284618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968961.229761859402061, 3897742.866894999518991 ], [ 4969005.322819011285901, 3897729.108262134715915 ], [ 4969021.363158136606216, 3897779.386686972808093 ], [ 4968965.165859343484044, 3897797.129232686012983 ], [ 4968957.718476569280028, 3897773.811701445374638 ], [ 4968969.82215526048094, 3897770.191888113506138 ], [ 4968961.229761859402061, 3897742.866894999518991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961487.978215278126299, 3896797.37649719696492 ], [ 4961530.601494492962956, 3896801.809889154043049 ], [ 4961527.094281165860593, 3896835.668677556328475 ], [ 4961484.183016078546643, 3896831.234859936870635 ], [ 4961487.978215278126299, 3896797.37649719696492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961469.881173606961966, 3893106.172712905798107 ], [ 4961463.189453817903996, 3893150.222276682965457 ], [ 4961400.402489935979247, 3893140.661086229607463 ], [ 4961407.094109155237675, 3893096.611507067456841 ], [ 4961469.881173606961966, 3893106.172712905798107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961444.970450004562736, 3895894.271240710746497 ], [ 4961416.457946768030524, 3895891.315587172284722 ], [ 4961419.08412417396903, 3895868.743494860827923 ], [ 4961410.44427649397403, 3895867.638197678141296 ], [ 4961414.827584015205503, 3895825.769878128543496 ], [ 4961422.31524589471519, 3895826.873454784974456 ], [ 4961423.772908706218004, 3895815.223496037535369 ], [ 4961452.86104703322053, 3895818.544147268868983 ], [ 4961444.970450004562736, 3895894.271240710746497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968675.883953601121902, 3899323.050375041086227 ], [ 4968639.582846462726593, 3899329.540689776651561 ], [ 4968633.878450208343565, 3899297.85130540560931 ], [ 4968618.608649717643857, 3899300.737431587651372 ], [ 4968614.044082371518016, 3899275.968534437473863 ], [ 4968665.615077275782824, 3899266.592077326960862 ], [ 4968675.883953601121902, 3899323.050375041086227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968604.568241060711443, 3913311.045810805168003 ], [ 4968557.638971944339573, 3913315.332726371474564 ], [ 4968554.81164463609457, 3913286.197081593796611 ], [ 4968601.741606013849378, 3913281.546028981916606 ], [ 4968604.568241060711443, 3913311.045810805168003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968598.37785293161869, 3899176.897523451130837 ], [ 4968630.645677058957517, 3899171.128303428180516 ], [ 4968634.354551478289068, 3899191.162001046352088 ], [ 4968642.421503875404596, 3899189.719703197479248 ], [ 4968646.701257082633674, 3899212.66745077772066 ], [ 4968640.075020732358098, 3899213.748157352209091 ], [ 4968645.207896223291755, 3899242.887622344307601 ], [ 4968611.78746097907424, 3899249.018924111966044 ], [ 4968598.37785293161869, 3899176.897523451130837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968477.222396833822131, 3897973.234605299774557 ], [ 4968431.109990229830146, 3897989.175340070389211 ], [ 4968422.79875672608614, 3897965.492308869026601 ], [ 4968429.715875225141644, 3897962.955539980437607 ], [ 4968422.26424044650048, 3897941.822927429806441 ], [ 4968472.123636403121054, 3897924.43224079394713 ], [ 4968480.148731719702482, 3897947.022394246421754 ], [ 4968469.485333974473178, 3897950.644958363380283 ], [ 4968477.222396833822131, 3897973.234605299774557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961260.494231972843409, 3908164.470275880768895 ], [ 4961227.087667578831315, 3908169.882530933711678 ], [ 4961221.665987982414663, 3908137.102585214190185 ], [ 4961255.072592010721564, 3908131.690323526971042 ], [ 4961260.494231972843409, 3908164.470275880768895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968211.638255721889436, 3904578.826966969296336 ], [ 4968233.830602838657796, 3904567.577687135431916 ], [ 4968248.754009613767266, 3904596.370159823913127 ], [ 4968226.273724282160401, 3904607.618924141861498 ], [ 4968211.638255721889436, 3904578.826966969296336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968206.031325028277934, 3891136.598575140349567 ], [ 4968237.363591333851218, 3891177.071571805980057 ], [ 4968188.321181901730597, 3891214.491137316450477 ], [ 4968156.988885671831667, 3891174.018196926917881 ], [ 4968206.031325028277934, 3891136.598575140349567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961032.460173738189042, 3899023.715902152005583 ], [ 4961056.957671029493213, 3899012.828273181803524 ], [ 4961067.865583766251802, 3899037.605268317274749 ], [ 4961043.080628436990082, 3899048.128331924788654 ], [ 4961032.460173738189042, 3899023.715902152005583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967997.483330969698727, 3895091.402726877946407 ], [ 4968007.800204635597765, 3895122.007528891786933 ], [ 4967970.043178309686482, 3895134.322277276776731 ], [ 4967960.014323987998068, 3895103.717990052886307 ], [ 4967997.483330969698727, 3895091.402726877946407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967769.418395971879363, 3896045.39016688009724 ], [ 4967775.469282696954906, 3896044.308250605594367 ], [ 4967779.469172074459493, 3896063.249906475190073 ], [ 4967773.41765924077481, 3896064.695950247813016 ], [ 4967777.133281478658319, 3896081.452337139751762 ], [ 4967749.470687172375619, 3896087.230543078389019 ], [ 4967737.760256518609822, 3896029.677831867244095 ], [ 4967765.134859807789326, 3896023.899115630891174 ], [ 4967769.418395971879363, 3896045.39016688009724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967695.15103392675519, 3901517.408312568441033 ], [ 4967713.313213496468961, 3901506.515786033589393 ], [ 4967726.523551230318844, 3901528.022336607333273 ], [ 4967740.649484012275934, 3901519.671763409860432 ], [ 4967755.294695383869112, 3901544.093855817336589 ], [ 4967723.00661092903465, 3901563.33692943258211 ], [ 4967695.15103392675519, 3901517.408312568441033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967641.11696049477905, 3901955.364226037170738 ], [ 4967687.550981226377189, 3901915.754167531616986 ], [ 4967709.393741879612207, 3901941.281070902012289 ], [ 4967662.959732864052057, 3901980.891092278528959 ], [ 4967641.11696049477905, 3901955.364226037170738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967471.30856788251549, 3905076.767513925675303 ], [ 4967490.337121093645692, 3905062.96325611602515 ], [ 4967512.457928465679288, 3905092.860108050052077 ], [ 4967493.429384985007346, 3905106.664350442588329 ], [ 4967471.30856788251549, 3905076.767513925675303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960272.463015355169773, 3908885.819305229466408 ], [ 4960292.86810386646539, 3908910.974066659808159 ], [ 4960266.349226200953126, 3908932.419341295957565 ], [ 4960245.94412923976779, 3908907.264599678572267 ], [ 4960272.463015355169773, 3908885.819305229466408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960279.57491013314575, 3899031.351213498972356 ], [ 4960282.185027773492038, 3899018.974585239309818 ], [ 4960279.88143199775368, 3899018.607110118493438 ], [ 4960285.976296651177108, 3898986.572525464463979 ], [ 4960315.633997155353427, 3898992.077563951257616 ], [ 4960307.216454876586795, 3899036.853315328713506 ], [ 4960279.57491013314575, 3899031.351213498972356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960228.762421176768839, 3901498.259758070576936 ], [ 4960261.015074883587658, 3901499.763076746370643 ], [ 4960259.527033758349717, 3901532.896792392246425 ], [ 4960227.274419742636383, 3901531.393475468270481 ], [ 4960228.762421176768839, 3901498.259758070576936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966826.583475642837584, 3895736.813965557143092 ], [ 4966849.051433110609651, 3895736.852068750653416 ], [ 4966849.00448989495635, 3895764.525822507217526 ], [ 4966826.82398862298578, 3895764.852336078882217 ], [ 4966826.583475642837584, 3895736.813965557143092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966814.444173608906567, 3890661.929721576627344 ], [ 4966831.226496044546366, 3890619.355156763922423 ], [ 4966884.202693767845631, 3890640.200333708897233 ], [ 4966867.132195385172963, 3890682.774377156980336 ], [ 4966814.444173608906567, 3890661.929721576627344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966782.350967334583402, 3904671.769601822830737 ], [ 4966817.127454230561852, 3904710.79060259507969 ], [ 4966781.366793774999678, 3904742.773546016775072 ], [ 4966746.589680088683963, 3904704.116721055470407 ], [ 4966782.350967334583402, 3904671.769601822830737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966537.854472918435931, 3899899.786414912901819 ], [ 4966534.349932232871652, 3899928.546802205499262 ], [ 4966488.854206003248692, 3899923.008232376538217 ], [ 4966492.358698700554669, 3899894.247839238960296 ], [ 4966537.854472918435931, 3899899.786414912901819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966464.46347258426249, 3897815.018319109920412 ], [ 4966396.17993161547929, 3897827.283957947511226 ], [ 4966389.902623899281025, 3897791.952822797000408 ], [ 4966458.185639249160886, 3897780.051297068130225 ], [ 4966464.46347258426249, 3897815.018319109920412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959542.133094009943306, 3908210.395965055562556 ], [ 4959530.65168840251863, 3908185.618630662560463 ], [ 4959544.480543245561421, 3908179.44809298729524 ], [ 4959539.314634799025953, 3908167.78850789507851 ], [ 4959571.006855780258775, 3908152.904278750065714 ], [ 4959575.02523818705231, 3908161.649177284445614 ], [ 4959590.295262669213116, 3908154.3883230346255 ], [ 4959614.119121434167027, 3908205.764936560764909 ], [ 4959593.663494980894029, 3908215.203168638516217 ], [ 4959582.755895534530282, 3908191.883158589713275 ], [ 4959542.133094009943306, 3908210.395965055562556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959461.627814213745296, 3899220.980020218994468 ], [ 4959480.633073210716248, 3899223.555956158321351 ], [ 4959481.80118307005614, 3899212.26958820130676 ], [ 4959502.534527116455138, 3899214.847997740376741 ], [ 4959501.07839531544596, 3899226.133954926393926 ], [ 4959511.733334078453481, 3899227.241510505322367 ], [ 4959505.615087465383112, 3899276.390350414905697 ], [ 4959455.509140250273049, 3899270.493000609334558 ], [ 4959461.627814213745296, 3899220.980020218994468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966085.659264738671482, 3897842.421785845421255 ], [ 4966063.774587259627879, 3897839.1081218495965 ], [ 4966062.611547176726162, 3897845.660519591066986 ], [ 4966032.375872432254255, 3897841.240570353344083 ], [ 4966033.540725365281105, 3897833.595784909557551 ], [ 4966008.776357636786997, 3897829.913238217588514 ], [ 4966013.729234634898603, 3897796.057413527276367 ], [ 4966090.902087235823274, 3897807.47406917065382 ], [ 4966085.659264738671482, 3897842.421785845421255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966059.116657533682883, 3907022.843900943174958 ], [ 4966002.954578171484172, 3907032.217730416450649 ], [ 4965997.824600521475077, 3907000.529716654680669 ], [ 4966053.698814133182168, 3906991.155396543443203 ], [ 4966059.116657533682883, 3907022.843900943174958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965874.763272169977427, 3903081.542967209592462 ], [ 4965876.535849781706929, 3903054.600219708867371 ], [ 4965869.625118623487651, 3903054.224613803438842 ], [ 4965871.698362032882869, 3903019.635615713428706 ], [ 4965882.06416963879019, 3903020.381091001443565 ], [ 4965883.251136322505772, 3902999.263467445038259 ], [ 4965917.516281862743199, 3903001.505183501169086 ], [ 4965916.033448049798608, 3903027.356016208417714 ], [ 4965924.383443227037787, 3903028.098157514818013 ], [ 4965923.497734472155571, 3903041.205399458296597 ], [ 4965915.435110623948276, 3903040.827866980805993 ], [ 4965914.5445651775226, 3903056.848148917779326 ], [ 4965923.470495804212987, 3903057.591247190721333 ], [ 4965921.698476602323353, 3903084.169861684087664 ], [ 4965874.763272169977427, 3903081.542967209592462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965657.977477594278753, 3908273.699543219991028 ], [ 4965640.956119293347001, 3908294.426946902647614 ], [ 4965619.678583784028888, 3908277.277592380065471 ], [ 4965638.431646866723895, 3908254.004111469257623 ], [ 4965628.655112188309431, 3908246.341187707614154 ], [ 4965643.656861533410847, 3908228.159364607185125 ], [ 4965651.995018050074577, 3908235.091652502305806 ], [ 4965674.209765678271651, 3908207.818464774172753 ], [ 4965702.100374394096434, 3908230.440783204976469 ], [ 4965692.291325607337058, 3908242.440916365012527 ], [ 4965696.316738744266331, 3908245.724763866048306 ], [ 4965667.178161321207881, 3908281.361525858752429 ], [ 4965657.977477594278753, 3908273.699543219991028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958958.891115390695632, 3900971.736086126416922 ], [ 4958918.282850212417543, 3900972.407401555217803 ], [ 4958918.287443333305418, 3900969.130234784912318 ], [ 4958901.295247712172568, 3900969.47055506054312 ], [ 4958900.76414795499295, 3900937.426340120378882 ], [ 4958958.077198218554258, 3900936.050169627182186 ], [ 4958958.891115390695632, 3900971.736086126416922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965586.529379871673882, 3901494.183954425156116 ], [ 4965600.922222144901752, 3901498.213138751685619 ], [ 4965595.997569227591157, 3901515.683281613513827 ], [ 4965581.892724443227053, 3901511.654574919957668 ], [ 4965586.529379871673882, 3901494.183954425156116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965568.981011979281902, 3899736.133377477992326 ], [ 4965559.979530532844365, 3899780.542423622682691 ], [ 4965535.218693202361465, 3899775.767921275924891 ], [ 4965532.89543554931879, 3899787.416260751429945 ], [ 4965509.286629320122302, 3899782.643680381122977 ], [ 4965518.577833378687501, 3899737.142703872639686 ], [ 4965545.354163876734674, 3899742.284642491023988 ], [ 4965547.38702229782939, 3899732.092346664518118 ], [ 4965568.981011979281902, 3899736.133377477992326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965368.83474772144109, 3899548.641174003947526 ], [ 4965359.868195446208119, 3899571.930788493715227 ], [ 4965338.569219873286784, 3899563.520848134998232 ], [ 4965347.823766444809735, 3899540.231699187774211 ], [ 4965368.83474772144109, 3899548.641174003947526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965090.084920108318329, 3907111.914221464656293 ], [ 4965036.223237963393331, 3907123.47861560061574 ], [ 4965029.080194557085633, 3907089.602715478278697 ], [ 4965082.941941464319825, 3907078.038307268638164 ], [ 4965090.084920108318329, 3907111.914221464656293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965085.090918244794011, 3891808.972045264672488 ], [ 4965082.16546603385359, 3891836.276913893409073 ], [ 4965018.795778796076775, 3891829.619361082557589 ], [ 4965021.721167339012027, 3891802.314485656097531 ], [ 4965085.090918244794011, 3891808.972045264672488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958343.131191254593432, 3904954.834092120174319 ], [ 4958309.707170237787068, 3904970.445618526544422 ], [ 4958307.122634093277156, 3904965.344217104371637 ], [ 4958276.003263992257416, 3904980.230701285414398 ], [ 4958262.796105038374662, 3904952.174402547534555 ], [ 4958327.339553258381784, 3904921.676357590127736 ], [ 4958343.131191254593432, 3904954.834092120174319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958271.662070032209158, 3900815.29699716065079 ], [ 4958298.258621610701084, 3900742.143456008750945 ], [ 4958326.180275472812355, 3900752.377607973758131 ], [ 4958316.639714731834829, 3900778.945960217155516 ], [ 4958325.851088516414165, 3900782.235838447231799 ], [ 4958308.795519874431193, 3900828.456864805426449 ], [ 4958271.662070032209158, 3900815.29699716065079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964915.265600649639964, 3901114.753316055051982 ], [ 4964917.477251114323735, 3901171.56126961344853 ], [ 4964886.948272415436804, 3901172.604075597133487 ], [ 4964884.736557519063354, 3901115.796124515589327 ], [ 4964915.265600649639964, 3901114.753316055051982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958177.738744861446321, 3898116.600256014149636 ], [ 4958184.970898264087737, 3898093.670020707417279 ], [ 4958201.381843181326985, 3898098.426262638065964 ], [ 4958196.753916121087968, 3898112.620959864929318 ], [ 4958188.404685866087675, 3898110.060576613992453 ], [ 4958185.511923680081964, 3898119.159844378940761 ], [ 4958177.738744861446321, 3898116.600256014149636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958093.740268492139876, 3900561.253697490785271 ], [ 4958105.830236189067364, 3900565.639836788643152 ], [ 4958111.323691501282156, 3900549.989769779145718 ], [ 4958140.973110612481833, 3900560.590227741748095 ], [ 4958115.82029665261507, 3900631.196984665933996 ], [ 4958074.080500581301749, 3900616.574552989564836 ], [ 4958093.740268492139876, 3900561.253697490785271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957996.782397089526057, 3895643.913297690916806 ], [ 4957961.357006783597171, 3895640.223602903541178 ], [ 4957959.897354695014656, 3895654.42264767177403 ], [ 4957919.288036802783608, 3895649.997671120800078 ], [ 4957924.248502778820693, 3895603.395903436932713 ], [ 4957866.646501338109374, 3895597.127183162607253 ], [ 4957873.943057527765632, 3895527.224323834758252 ], [ 4957915.416727119125426, 3895531.650410224217921 ], [ 4957909.286177099682391, 3895591.359231931623071 ], [ 4957938.663535444065928, 3895594.312344344332814 ], [ 4957938.079479462467134, 3895600.13761395867914 ], [ 4957966.0165642388165, 3895603.088790633250028 ], [ 4957968.934887054376304, 3895575.418959805276245 ], [ 4957981.607205355539918, 3895576.892789279576391 ], [ 4957982.484299437142909, 3895567.426629430614412 ], [ 4958004.661358729936182, 3895569.641717616934329 ], [ 4957996.782397089526057, 3895643.913297690916806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957958.942440846003592, 3901836.617995993234217 ], [ 4957931.291869027540088, 3901839.493286478798836 ], [ 4957928.733296980150044, 3901815.093049290589988 ], [ 4957956.095907987095416, 3901812.217362884432077 ], [ 4957958.942440846003592, 3901836.617995993234217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964632.03907429240644, 3901015.979419027920812 ], [ 4964658.226547583937645, 3901028.402138718869537 ], [ 4964643.200297338888049, 3901059.693095467519015 ], [ 4964617.013435219414532, 3901046.906260648742318 ], [ 4964632.03907429240644, 3901015.979419027920812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964405.793239913880825, 3901301.093493436928838 ], [ 4964362.295483789406717, 3901307.942162319552153 ], [ 4964355.451444983482361, 3901265.692042553797364 ], [ 4964371.295066639780998, 3901263.168544707354158 ], [ 4964369.583475395105779, 3901252.970143799204379 ], [ 4964397.525678327307105, 3901248.645422474946827 ], [ 4964405.793239913880825, 3901301.093493436928838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964175.627391543239355, 3898453.590687477495521 ], [ 4964218.528643174096942, 3898462.398353658150882 ], [ 4964211.85118489805609, 3898495.523502332158387 ], [ 4964168.661962731741369, 3898486.715386731084436 ], [ 4964175.627391543239355, 3898453.590687477495521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963901.698495471850038, 3903728.677037016954273 ], [ 4963906.066522524692118, 3903698.09696107218042 ], [ 4963951.843189056031406, 3903704.359889233950526 ], [ 4963947.474532351829112, 3903735.304087988566607 ], [ 4963901.698495471850038, 3903728.677037016954273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963514.638879557140172, 3893859.050801261793822 ], [ 4963504.77693500649184, 3893902.002510358113796 ], [ 4963460.429530424065888, 3893892.101361296605319 ], [ 4963470.003336710855365, 3893849.149183761328459 ], [ 4963514.638879557140172, 3893859.050801261793822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963456.466325390152633, 3899901.325279323384166 ], [ 4963433.732130581513047, 3899889.637421690393239 ], [ 4963427.665714208036661, 3899901.280067845247686 ], [ 4963407.520707283169031, 3899891.416946709621698 ], [ 4963426.878264407627285, 3899852.485384606290609 ], [ 4963470.045512044802308, 3899874.036841114982963 ], [ 4963456.466325390152633, 3899901.325279323384166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956519.605206349864602, 3896117.487335920799524 ], [ 4956585.805199760012329, 3896156.171978152357042 ], [ 4956570.216254393570125, 3896182.368797994684428 ], [ 4956504.304349590092897, 3896143.6845713253133 ], [ 4956519.605206349864602, 3896117.487335920799524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963201.898048678413033, 3903572.091519644483924 ], [ 4963198.682100475765765, 3903603.037635836284608 ], [ 4963152.039484956301749, 3903597.867034364491701 ], [ 4963155.543346872553229, 3903566.921361729037017 ], [ 4963201.898048678413033, 3903572.091519644483924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963193.455127923749387, 3893479.489623406436294 ], [ 4963185.383918015286326, 3893482.754191411659122 ], [ 4963194.569931480102241, 3893503.523865125142038 ], [ 4963158.824264105409384, 3893519.125657017808408 ], [ 4963139.878865491598845, 3893475.764799592550844 ], [ 4963183.695794900879264, 3893456.898411997593939 ], [ 4963193.455127923749387, 3893479.489623406436294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956377.788042799569666, 3905006.448634742293507 ], [ 4956399.406307752244174, 3904989.726868163328618 ], [ 4956414.355012468993664, 3905008.681248002219945 ], [ 4956431.64973443094641, 3904995.231030731461942 ], [ 4956474.482915312051773, 3905049.906824110541493 ], [ 4956441.911554909311235, 3905074.989202341530472 ], [ 4956427.537855016998947, 3905056.763821478467435 ], [ 4956430.419747264124453, 3905054.946938184089959 ], [ 4956416.62145447358489, 3905037.086447922512889 ], [ 4956407.39749191980809, 3905044.357002568431199 ], [ 4956377.788042799569666, 3905006.448634742293507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956224.432718229480088, 3899158.311935012694448 ], [ 4956238.282515970058739, 3899139.03107519634068 ], [ 4956223.31998744327575, 3899128.087704767473042 ], [ 4956246.979838912375271, 3899095.346810013521463 ], [ 4956265.971260270103812, 3899108.844351135659963 ], [ 4956261.355437552556396, 3899114.664416576270014 ], [ 4956305.092330642044544, 3899146.400725875981152 ], [ 4956285.183752748183906, 3899173.684511269442737 ], [ 4956265.042228175327182, 3899158.728938013315201 ], [ 4956251.192895513027906, 3899177.645654966589063 ], [ 4956224.432718229480088, 3899158.311935012694448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962870.577775219455361, 3892885.457947831600904 ], [ 4962900.245635182596743, 3892888.416923800949007 ], [ 4962896.148757746443152, 3892929.557119491044432 ], [ 4962857.840207893401384, 3892925.492387477308512 ], [ 4962860.182051162235439, 3892901.463518146425486 ], [ 4962868.823357347398996, 3892902.205151566769928 ], [ 4962870.577775219455361, 3892885.457947831600904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962680.315792169421911, 3895398.382098252419382 ], [ 4962722.17861292231828, 3895336.908812837675214 ], [ 4962746.637433392927051, 3895353.696501845959574 ], [ 4962737.977242833934724, 3895365.699398797005415 ], [ 4962753.803386282175779, 3895376.647705277428031 ], [ 4962751.204711177386343, 3895380.649114597588778 ], [ 4962762.714522405527532, 3895388.677729268558323 ], [ 4962737.885640335269272, 3895425.052320548333228 ], [ 4962709.398051007650793, 3895405.709520296193659 ], [ 4962703.624050480313599, 3895414.075587869621813 ], [ 4962680.315792169421911, 3895398.382098252419382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962584.979836018756032, 3899137.846553109586239 ], [ 4962600.288848751224577, 3899109.103828940540552 ], [ 4962627.052905486896634, 3899122.981958168093115 ], [ 4962630.519730354659259, 3899116.068824916146696 ], [ 4962646.347630492411554, 3899124.468188295606524 ], [ 4962627.571756923571229, 3899160.124019840732217 ], [ 4962584.979836018756032, 3899137.846553109586239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956200.52112462092191, 3898720.232605900149792 ], [ 4956220.128667087294161, 3898703.144007906317711 ], [ 4956262.118246575817466, 3898750.171417772769928 ], [ 4956242.798729862086475, 3898767.260360572487116 ], [ 4956200.52112462092191, 3898720.232605900149792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962259.489817564375699, 3895950.120916196145117 ], [ 4962251.907249287702143, 3896011.283078076317906 ], [ 4962197.764247728511691, 3896004.646219711750746 ], [ 4962200.681337484158576, 3895980.618127089459449 ], [ 4962209.609164834953845, 3895981.724117234349251 ], [ 4962211.067715578712523, 3895969.710071646142751 ], [ 4962197.244173323735595, 3895967.868364405818284 ], [ 4962199.866561564616859, 3895948.209375251550227 ], [ 4962213.402620192617178, 3895949.686516377143562 ], [ 4962214.274534111842513, 3895944.590034469496459 ], [ 4962259.489817564375699, 3895950.120916196145117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955802.500452868640423, 3904975.115744087845087 ], [ 4955791.863088522106409, 3904961.993345972616225 ], [ 4955800.222120236605406, 3904955.449730870313942 ], [ 4955784.123016266152263, 3904935.03769073728472 ], [ 4955809.200143073685467, 3904915.406846393365413 ], [ 4955848.010423945263028, 3904964.614495601970702 ], [ 4955823.221734693273902, 3904983.881544206757098 ], [ 4955811.14743491820991, 3904968.572502572555095 ], [ 4955802.500452868640423, 3904975.115744087845087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955741.47025971673429, 3905860.240484998095781 ], [ 4955759.006679619662464, 3905882.110883146524429 ], [ 4955738.829706877470016, 3905898.470891105476767 ], [ 4955721.293281277641654, 3905876.600505897775292 ], [ 4955741.47025971673429, 3905860.240484998095781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962099.040022565051913, 3910920.757225153967738 ], [ 4962071.363489026203752, 3910946.56857579620555 ], [ 4962039.460468173958361, 3910911.927519351243973 ], [ 4962067.424341783858836, 3910886.480705573689193 ], [ 4962099.040022565051913, 3910920.757225153967738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962120.593884276226163, 3893145.023476636968553 ], [ 4962163.821176991797984, 3893134.893623741343617 ], [ 4962171.836386028677225, 3893168.405666277278215 ], [ 4962180.482060087844729, 3893166.234055424574763 ], [ 4962187.065720815211535, 3893193.917863819282502 ], [ 4962148.161344106309116, 3893202.961869389750063 ], [ 4962145.298290169797838, 3893191.305394324939698 ], [ 4962132.329795985482633, 3893194.562828661873937 ], [ 4962120.593884276226163, 3893145.023476636968553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961990.082647021859884, 3892772.321736294776201 ], [ 4962031.319871337153018, 3892745.07460984447971 ], [ 4962057.188736387528479, 3892783.711499727796763 ], [ 4962015.951544939540327, 3892810.958587124943733 ], [ 4961990.082647021859884, 3892772.321736294776201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961626.2094442890957, 3895473.609429436270148 ], [ 4961617.225650777108967, 3895509.644729997497052 ], [ 4961555.893255912698805, 3895494.259271757211536 ], [ 4961568.354370121844113, 3895444.392256386112422 ], [ 4961590.814375382848084, 3895449.887890486977994 ], [ 4961587.336420260369778, 3895464.083710649982095 ], [ 4961626.2094442890957, 3895473.609429436270148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961619.282306862063706, 3898935.014895491767675 ], [ 4961687.485783377662301, 3898972.622806111816317 ], [ 4961673.046098578721285, 3898998.454314075876027 ], [ 4961604.842667570337653, 3898960.846439515706152 ], [ 4961619.282306862063706, 3898935.014895491767675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955339.198635000735521, 3895200.543825339060277 ], [ 4955311.507379370741546, 3895230.367305631749332 ], [ 4955297.98488156683743, 3895217.605658331885934 ], [ 4955295.100629295222461, 3895220.515037705656141 ], [ 4955272.083317641168833, 3895199.002283327747136 ], [ 4955302.65835871361196, 3895166.633512630593032 ], [ 4955339.198635000735521, 3895200.543825339060277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955097.509179669432342, 3896123.305782879237086 ], [ 4955107.277997897937894, 3896142.98106401367113 ], [ 4955089.408120730891824, 3896151.697664113715291 ], [ 4955080.788270727731287, 3896134.572740050498396 ], [ 4955064.935637370683253, 3896142.563636767677963 ], [ 4955044.53424168471247, 3896102.847894002217799 ], [ 4955126.102885038591921, 3896062.168091725092381 ], [ 4955149.088806415908039, 3896108.077351673971862 ], [ 4955134.389241786673665, 3896115.341403012163937 ], [ 4955130.079097150824964, 3896106.96099791303277 ], [ 4955097.509179669432342, 3896123.305782879237086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955066.692136235535145, 3892456.125426759477705 ], [ 4955082.767666799947619, 3892501.66170917917043 ], [ 4955025.989681559614837, 3892521.617382619064301 ], [ 4955009.625523967668414, 3892476.444899743888527 ], [ 4955066.692136235535145, 3892456.125426759477705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954889.054897231981158, 3900192.557323260232806 ], [ 4954957.568098553456366, 3900217.768139666412026 ], [ 4954942.541745430789888, 3900257.80361230764538 ], [ 4954899.937009577639401, 3900242.092641734518111 ], [ 4954896.181125725619495, 3900251.55532287992537 ], [ 4954870.84876109380275, 3900242.056238851044327 ], [ 4954889.054897231981158, 3900192.557323260232806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954478.915679783560336, 3894385.638477316126227 ], [ 4954508.839323649182916, 3894414.077532475348562 ], [ 4954481.438047465868294, 3894442.445697195827961 ], [ 4954451.514406302012503, 3894414.006672065705061 ], [ 4954478.915679783560336, 3894385.638477316126227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960396.824967987835407, 3900792.091013154946268 ], [ 4960427.928066343069077, 3900792.50046489899978 ], [ 4960427.601852712221444, 3900818.717374434228987 ], [ 4960434.513232571072876, 3900819.091580410953611 ], [ 4960434.194976001046598, 3900839.846546535380185 ], [ 4960422.675664533860981, 3900839.465624079108238 ], [ 4960422.352110074833035, 3900863.86188648827374 ], [ 4960395.568500898778439, 3900863.822862467728555 ], [ 4960395.595018873922527, 3900845.616383180487901 ], [ 4960382.347733379341662, 3900845.232961238361895 ], [ 4960382.674962984398007, 3900818.287791587878019 ], [ 4960396.786780980415642, 3900818.308342539705336 ], [ 4960396.824967987835407, 3900792.091013154946268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954350.363707137294114, 3893978.383879272732884 ], [ 4954370.26697607897222, 3893956.92479601316154 ], [ 4954423.786401685327291, 3894006.876426588743925 ], [ 4954401.287362242117524, 3894030.881171144079417 ], [ 4954380.857797212898731, 3894011.92128964047879 ], [ 4954373.358127136714756, 3894019.922881035134196 ], [ 4954362.42405813280493, 3894009.713805489242077 ], [ 4954372.51949224434793, 3893999.166507821995765 ], [ 4954350.363707137294114, 3893978.383879272732884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954270.684090696275234, 3892945.981161306146532 ], [ 4954303.538714567199349, 3892935.097679114900529 ], [ 4954298.945984575897455, 3892921.619276884477586 ], [ 4954325.460179320536554, 3892912.912799205165356 ], [ 4954340.385264065116644, 3892957.718976180069149 ], [ 4954281.016518806107342, 3892977.308909128420055 ], [ 4954270.684090696275234, 3892945.981161306146532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960330.198379255831242, 3902246.695408625528216 ], [ 4960341.209451641887426, 3902200.102698518894613 ], [ 4960394.468522863462567, 3902212.196531563065946 ], [ 4960386.6437116721645, 3902246.04928687075153 ], [ 4960355.552362015470862, 3902238.721414654981345 ], [ 4960352.365497427992523, 3902251.825481496285647 ], [ 4960330.198379255831242, 3902246.695408625528216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960302.510125893168151, 3898906.123826487455517 ], [ 4960331.301214450970292, 3898913.448272416368127 ], [ 4960319.715443433262408, 3898958.219411373604089 ], [ 4960290.924399729818106, 3898950.894977655261755 ], [ 4960302.510125893168151, 3898906.123826487455517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959904.528436775319278, 3900267.394995215348899 ], [ 4959903.036581962369382, 3900303.441741836257279 ], [ 4959875.389978792518377, 3900302.3096052124165 ], [ 4959875.984821534715593, 3900289.201771956402808 ], [ 4959854.961724841035903, 3900288.443306391127408 ], [ 4959855.85868196375668, 3900265.504390828311443 ], [ 4959904.528436775319278, 3900267.394995215348899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953831.788515033200383, 3900910.047811336815357 ], [ 4953870.951898469589651, 3900913.37248963676393 ], [ 4953870.073770245537162, 3900925.023592020384967 ], [ 4953878.712298301979899, 3900926.12646891688928 ], [ 4953874.622462754137814, 3900973.822568446863443 ], [ 4953826.820210956968367, 3900969.759151383768767 ], [ 4953831.788515033200383, 3900910.047811336815357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953370.595996869727969, 3892566.561189195606858 ], [ 4953329.090074630454183, 3892584.718053976539522 ], [ 4953304.093580231070518, 3892528.612458911724389 ], [ 4953328.593414797447622, 3892518.081956208217889 ], [ 4953331.179229664616287, 3892523.911096716299653 ], [ 4953359.138276934623718, 3892511.564107755199075 ], [ 4953356.552032082341611, 3892506.099092519842088 ], [ 4953372.116907552815974, 3892499.199244931340218 ], [ 4953390.505184433422983, 3892540.367735278792679 ], [ 4953364.275531699880958, 3892551.988500668201596 ], [ 4953370.595996869727969, 3892566.561189195606858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959537.614222330972552, 3907744.664795677177608 ], [ 4959509.007277944125235, 3907816.722159183118492 ], [ 4959477.929392411373556, 3907804.297441449947655 ], [ 4959489.198230597190559, 3907776.275321638677269 ], [ 4959476.249005455523729, 3907771.159049742855132 ], [ 4959485.207742944359779, 3907747.867356709670275 ], [ 4959497.581133673898876, 3907752.982813159935176 ], [ 4959505.960940581746399, 3907731.875094399321824 ], [ 4959537.614222330972552, 3907744.664795677177608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959547.596276737749577, 3893057.121255472302437 ], [ 4959537.566909801214933, 3893019.601718538906425 ], [ 4959551.976090234704316, 3893015.98095706384629 ], [ 4959549.396858474239707, 3893006.509937647730112 ], [ 4959564.382726537063718, 3893002.525875746738166 ], [ 4959564.956810801289976, 3893003.983208511024714 ], [ 4959577.348923777230084, 3893000.72371467249468 ], [ 4959591.677625925280154, 3893053.542801023460925 ], [ 4959568.622443674132228, 3893059.700117103289813 ], [ 4959566.616786187514663, 3893052.050556601025164 ], [ 4959547.596276737749577, 3893057.121255472302437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959401.732980834320188, 3892311.906792435795069 ], [ 4959448.141960643231869, 3892293.038008836563677 ], [ 4959465.653195365332067, 3892336.75831468263641 ], [ 4959419.244795574806631, 3892355.262940763030201 ], [ 4959401.732980834320188, 3892311.906792435795069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959311.801192252896726, 3898652.724759491626173 ], [ 4959314.75409693736583, 3898601.386632120702416 ], [ 4959373.217517040669918, 3898604.746659013908356 ], [ 4959371.145601816475391, 3898644.069744404405355 ], [ 4959338.02592958137393, 3898642.202142576221377 ], [ 4959337.144843549467623, 3898654.217179315630347 ], [ 4959311.801192252896726, 3898652.724759491626173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959180.897209253162146, 3899366.234375762753189 ], [ 4959122.666481678374112, 3899403.293522628489882 ], [ 4959112.608650735579431, 3899387.257631627842784 ], [ 4959115.202807252295315, 3899385.804766092449427 ], [ 4959097.961078094318509, 3899358.106600815430284 ], [ 4959139.183229251764715, 3899332.31144922459498 ], [ 4959152.40252208057791, 3899353.085497759282589 ], [ 4959166.815963449887931, 3899344.002577006351203 ], [ 4959180.897209253162146, 3899366.234375762753189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959139.02324844058603, 3900467.30482448451221 ], [ 4959140.798990370705724, 3900433.443215037696064 ], [ 4959220.8574452791363, 3900437.561633641831577 ], [ 4959219.667376721277833, 3900464.50559066561982 ], [ 4959197.204913069494069, 3900463.38147569168359 ], [ 4959196.907144851982594, 3900470.299530029296875 ], [ 4959139.02324844058603, 3900467.30482448451221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952977.251549752429128, 3893146.514946919400245 ], [ 4952969.393950220197439, 3893213.869460549205542 ], [ 4952927.91632881667465, 3893209.086882965639234 ], [ 4952935.773825785145164, 3893141.732357389759272 ], [ 4952977.251549752429128, 3893146.514946919400245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958536.24217168148607, 3905860.695963165257126 ], [ 4958559.594817819073796, 3905839.608754384797066 ], [ 4958588.346058226190507, 3905870.599861173890531 ], [ 4958564.992910698056221, 3905892.051176101900637 ], [ 4958536.24217168148607, 3905860.695963165257126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958427.247417588718235, 3906803.281483694445342 ], [ 4958435.868752733804286, 3906815.309757528826594 ], [ 4958408.487515117973089, 3906835.299118862953037 ], [ 4958399.578745658509433, 3906822.906324638985097 ], [ 4958427.247417588718235, 3906803.281483694445342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958160.988914240151644, 3901084.965354018379003 ], [ 4958164.457838905975223, 3901075.502728899009526 ], [ 4958152.944097478874028, 3901071.117352761793882 ], [ 4958159.303959294222295, 3901053.647828769870102 ], [ 4958167.939770746044815, 3901056.572732740081847 ], [ 4958182.682493045926094, 3901016.538648767862469 ], [ 4958222.117656470276415, 3901031.15808307332918 ], [ 4958197.546058541163802, 3901098.124279035720974 ], [ 4958160.988914240151644, 3901084.965354018379003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958071.843154308386147, 3900988.348526903893799 ], [ 4958092.28227554820478, 3900994.566753340419382 ], [ 4958086.20744320191443, 3901014.221465290524065 ], [ 4958065.768335525877774, 3901008.003243393730372 ], [ 4958071.843154308386147, 3900988.348526903893799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957883.96112319547683, 3898321.567425704095513 ], [ 4957894.668611319735646, 3898284.440786425489932 ], [ 4957942.462110086344182, 3898297.978788087610155 ], [ 4957932.042584158480167, 3898335.105801689904183 ], [ 4957883.96112319547683, 3898321.567425704095513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957309.795810875482857, 3907650.185524872038513 ], [ 4957336.891879002563655, 3907626.917466864921153 ], [ 4957389.21360466722399, 3907686.705405307933688 ], [ 4957362.404984355904162, 3907710.337929528206587 ], [ 4957309.795810875482857, 3907650.185524872038513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951734.605918229557574, 3901162.11427879659459 ], [ 4951694.569584360346198, 3901166.802590106613934 ], [ 4951689.432320727966726, 3901125.650050488300622 ], [ 4951729.468714979477227, 3901120.961731642019004 ], [ 4951734.605918229557574, 3901162.11427879659459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951315.93447601981461, 3891313.040093103889376 ], [ 4951333.294924567453563, 3891246.424062335863709 ], [ 4951366.993109054863453, 3891254.836736446246505 ], [ 4951349.632174721919, 3891321.816873474046588 ], [ 4951315.93447601981461, 3891313.040093103889376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951089.662967612035573, 3894270.967621691059321 ], [ 4951058.256457580253482, 3894277.487097069155425 ], [ 4951049.660480910912156, 3894235.966887092217803 ], [ 4951081.354700148105621, 3894229.811849815770984 ], [ 4951089.662967612035573, 3894270.967621691059321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956245.795899298973382, 3897350.071576537564397 ], [ 4956238.862241372466087, 3897366.084249143023044 ], [ 4956229.362355552613735, 3897362.066460244357586 ], [ 4956223.872666457667947, 3897375.167979739140719 ], [ 4956194.509850258938968, 3897362.385257789399475 ], [ 4956207.221200329251587, 3897333.271424509119242 ], [ 4956245.795899298973382, 3897350.071576537564397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956111.603995008394122, 3904874.286503646988422 ], [ 4956135.816613482311368, 3904855.383105249609798 ], [ 4956154.78935082256794, 3904880.168661855626851 ], [ 4956130.577213914133608, 3904898.707912873011082 ], [ 4956111.603995008394122, 3904874.286503646988422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955975.80525693949312, 3891408.594654800835997 ], [ 4955967.986667320132256, 3891439.535458501894027 ], [ 4955942.930704597383738, 3891432.948806379456073 ], [ 4955950.748797295615077, 3891402.372123155742884 ], [ 4955975.80525693949312, 3891408.594654800835997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950470.268183771520853, 3894583.073873589280993 ], [ 4950509.791088717989624, 3894529.589924917090684 ], [ 4950540.013970093801618, 3894551.470566877629608 ], [ 4950533.955514786764979, 3894559.838929577264935 ], [ 4950551.801154088228941, 3894572.967013184912503 ], [ 4950536.511192640289664, 3894593.705695075448602 ], [ 4950523.558667668141425, 3894584.224237663205713 ], [ 4950505.383746781386435, 3894608.965213165152818 ], [ 4950470.268183771520853, 3894583.073873589280993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955805.449163669720292, 3905816.991049665492028 ], [ 4955792.801215916872025, 3905800.224744861014187 ], [ 4955767.725860642269254, 3905819.127353607676923 ], [ 4955744.729241875000298, 3905788.874919426627457 ], [ 4955738.387952477671206, 3905793.964618957601488 ], [ 4955729.189663129858673, 3905781.572348474059254 ], [ 4955774.440238792449236, 3905747.766232218593359 ], [ 4955819.283530779182911, 3905806.813165329862386 ], [ 4955805.449163669720292, 3905816.991049665492028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955573.059512437321246, 3900646.40006345603615 ], [ 4955600.130405643023551, 3900647.162908930331469 ], [ 4955600.432365444488823, 3900636.239388136193156 ], [ 4955622.607298259623349, 3900636.995999214239419 ], [ 4955622.305795146152377, 3900647.555390136316419 ], [ 4955655.712178071960807, 3900648.690525037236512 ], [ 4955654.513573378324509, 3900685.102013722993433 ], [ 4955571.861019630916417, 3900682.81155578000471 ], [ 4955573.059512437321246, 3900646.40006345603615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955383.821960095316172, 3895220.627547101117671 ], [ 4955410.582966930232942, 3895242.873412779998034 ], [ 4955385.484176890924573, 3895272.700112208724022 ], [ 4955358.723179066553712, 3895250.454271123744547 ], [ 4955383.821960095316172, 3895220.627547101117671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949795.41867667902261, 3890434.926538731437176 ], [ 4949756.227170422673225, 3890443.259900571778417 ], [ 4949751.640611005946994, 3890421.407361594028771 ], [ 4949790.832147669047117, 3890413.073993156198412 ], [ 4949795.41867667902261, 3890434.926538731437176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955048.082820291630924, 3901068.854123712982982 ], [ 4955055.901701265946031, 3901034.63570888992399 ], [ 4955116.07546350825578, 3901048.18428673222661 ], [ 4955107.098572701215744, 3901087.134919662028551 ], [ 4955091.26352041400969, 3901083.473672956228256 ], [ 4955092.42099635861814, 3901079.105566688813269 ], [ 4955048.082820291630924, 3901068.854123712982982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949577.934064662083983, 3895867.858098320197314 ], [ 4949589.443369867280126, 3895879.886489700060338 ], [ 4949592.326549352146685, 3895877.340625755954534 ], [ 4949615.920457924716175, 3895902.126291283406317 ], [ 4949584.203599150292575, 3895931.951427991501987 ], [ 4949549.101147876121104, 3895894.409153242129833 ], [ 4949577.934064662083983, 3895867.858098320197314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949443.22927213832736, 3890825.628377669490874 ], [ 4949463.396125468425453, 3890826.013660436496139 ], [ 4949463.07974689360708, 3890852.958802208304405 ], [ 4949442.912913776002824, 3890852.573519664350897 ], [ 4949443.22927213832736, 3890825.628377669490874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954534.723545326851308, 3895378.323061494156718 ], [ 4954549.401248076930642, 3895388.900982278399169 ], [ 4954537.570273599587381, 3895405.636266614310443 ], [ 4954522.892575356177986, 3895395.058352191466838 ], [ 4954534.723545326851308, 3895378.323061494156718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954522.53049092926085, 3901271.747200846672058 ], [ 4954575.051486050710082, 3901185.877514516469091 ], [ 4954604.692102327942848, 3901204.120800480246544 ], [ 4954582.471997479908168, 3901240.142136168200523 ], [ 4954603.479580086655915, 3901252.912760699633509 ], [ 4954588.762195239774883, 3901276.927102825138718 ], [ 4954582.719344174489379, 3901272.914173693396151 ], [ 4954566.847767185419798, 3901298.747748360503465 ], [ 4954522.53049092926085, 3901271.747200846672058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949145.999180234968662, 3898508.800865230616182 ], [ 4949129.845829952508211, 3898532.088403645437211 ], [ 4949098.185425066389143, 3898510.936062084510922 ], [ 4949114.339138063602149, 3898487.284375671762973 ], [ 4949145.999180234968662, 3898508.800865230616182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954263.746006302535534, 3901408.341082329396158 ], [ 4954256.240826812572777, 3901422.532948576845229 ], [ 4954252.175881361588836, 3901449.473604492843151 ], [ 4954258.507625847123563, 3901452.758553771767765 ], [ 4954255.023132772184908, 3901476.058618803042918 ], [ 4954241.455902176909149, 3901501.895218264777213 ], [ 4954238.576459525153041, 3901501.527553328778595 ], [ 4954236.833330130204558, 3901513.905847068410367 ], [ 4954201.704942977055907, 3901508.764928282238543 ], [ 4954211.808669889345765, 3901489.114277203567326 ], [ 4954219.068253480829298, 3901440.329710646532476 ], [ 4954229.170678223483264, 3901421.771456381306052 ], [ 4954223.414902561344206, 3901418.48722072225064 ], [ 4954236.404389760456979, 3901394.106425785925239 ], [ 4954263.746006302535534, 3901408.341082329396158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953486.752556663006544, 3894680.103043156675994 ], [ 4953557.905635911040008, 3894678.73194682970643 ], [ 4953558.440185607410967, 3894713.324835136998445 ], [ 4953533.954066143371165, 3894714.023675586096942 ], [ 4953534.227697004564106, 3894726.040258184075356 ], [ 4953506.284851044416428, 3894726.734972716774791 ], [ 4953506.009896956384182, 3894715.810775544028729 ], [ 4953487.573512913659215, 3894716.152789053507149 ], [ 4953486.752556663006544, 3894680.103043156675994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952956.865371170453727, 3891623.70591698307544 ], [ 4952963.497994589619339, 3891618.251816247589886 ], [ 4952952.565846805460751, 3891605.130306558683515 ], [ 4952975.923886253498495, 3891586.223191571421921 ], [ 4953016.199134877882898, 3891635.42806040123105 ], [ 4952986.208489228971303, 3891659.789234552066773 ], [ 4952956.865371170453727, 3891623.70591698307544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952839.766532685607672, 3894923.30135127576068 ], [ 4952879.800370238721371, 3894928.810359787661582 ], [ 4952871.663604767993093, 3894989.246192798018456 ], [ 4952819.245464994572103, 3894981.902004871983081 ], [ 4952822.732107418589294, 3894956.417073125485331 ], [ 4952834.828878277912736, 3894957.887799146585166 ], [ 4952839.766532685607672, 3894923.30135127576068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947589.147171067073941, 3891551.640111395623535 ], [ 4947629.177809106186032, 3891566.608612481039017 ], [ 4947618.77994626853615, 3891593.543895939830691 ], [ 4947601.500662300735712, 3891586.972647469025105 ], [ 4947591.968903621658683, 3891612.088149680756032 ], [ 4947569.506053701043129, 3891603.327074467204511 ], [ 4947589.147171067073941, 3891551.640111395623535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947539.46353361196816, 3899049.370647654403001 ], [ 4947546.918085435405374, 3899083.970267135184258 ], [ 4947495.928786396980286, 3899094.844321465585381 ], [ 4947488.47417198587209, 3899060.244715896435082 ], [ 4947539.46353361196816, 3899049.370647654403001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952651.095504065975547, 3893683.221719109918922 ], [ 4952653.745156208984554, 3893634.431572623550892 ], [ 4952721.150463787838817, 3893637.787554220762104 ], [ 4952719.090474711731076, 3893674.9262669775635 ], [ 4952706.127623359672725, 3893674.546967421192676 ], [ 4952705.539122050628066, 3893685.106010353658348 ], [ 4952681.630363285541534, 3893683.985659976955503 ], [ 4952681.629511820152402, 3893684.713916324544698 ], [ 4952651.095504065975547, 3893683.221719109918922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952313.960493847727776, 3891766.057806700933725 ], [ 4952342.790035838261247, 3891748.612976054195315 ], [ 4952387.359337245114148, 3891822.218467054422945 ], [ 4952358.529845097102225, 3891839.663250666111708 ], [ 4952350.190747583284974, 3891826.180856693536043 ], [ 4952344.136590785346925, 3891829.815136827528477 ], [ 4952330.621916306205094, 3891807.587685199920088 ], [ 4952336.676076270639896, 3891803.953402073122561 ], [ 4952313.960493847727776, 3891766.057806700933725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952227.141291020438075, 3890855.273096283432096 ], [ 4952237.17621607426554, 3890897.523516352288425 ], [ 4952229.107245673425496, 3890899.334858203772455 ], [ 4952236.560982441529632, 3890931.386718749068677 ], [ 4952209.472244796343148, 3890937.545689794700593 ], [ 4952191.983500179834664, 3890863.243429498746991 ], [ 4952227.141291020438075, 3890855.273096283432096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951481.00419844314456, 3894140.682627759408206 ], [ 4951453.348458428867161, 3894141.743928200099617 ], [ 4951451.107730996794999, 3894084.937326317187399 ], [ 4951478.763529353775084, 3894083.876023613847792 ], [ 4951481.00419844314456, 3894140.682627759408206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951048.110880603082478, 3894074.656133296433836 ], [ 4950997.983729720115662, 3894077.513647122308612 ], [ 4950996.007943688891828, 3894040.734459274448454 ], [ 4951032.883184772916138, 3894038.590514558367431 ], [ 4951033.162782095372677, 3894046.237527555320412 ], [ 4951046.414756489917636, 3894045.523954960517585 ], [ 4951048.110880603082478, 3894074.656133296433836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950977.876182694919407, 3894807.205539356917143 ], [ 4951008.697065029293299, 3894808.696155980695039 ], [ 4951008.110866600647569, 3894817.798729300033301 ], [ 4951044.116421819664538, 3894819.659255280159414 ], [ 4951044.412150296382606, 3894812.741134112235159 ], [ 4951073.792719565331936, 3894814.230229075998068 ], [ 4951070.556596511974931, 3894875.036164895631373 ], [ 4950996.529213002882898, 3894871.312858894467354 ], [ 4950995.939796661958098, 3894883.32846048893407 ], [ 4950974.048453443683684, 3894882.211859278846532 ], [ 4950977.876182694919407, 3894807.205539356917143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950798.290956850163639, 3893084.678786416072398 ], [ 4950772.65311153139919, 3893083.558234449010342 ], [ 4950773.53934236895293, 3893063.532139332033694 ], [ 4950799.177206754684448, 3893064.652692144736648 ], [ 4950798.290956850163639, 3893084.678786416072398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950474.538491333834827, 3893569.708275347948074 ], [ 4950448.324552024714649, 3893568.951534239109606 ], [ 4950448.927988721989095, 3893543.827315333299339 ], [ 4950475.430026739835739, 3893544.584370182361454 ], [ 4950474.538491333834827, 3893569.708275347948074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950452.816542061977088, 3897389.034011762589216 ], [ 4950455.358989397995174, 3897434.91708356840536 ], [ 4950385.074313177727163, 3897439.210362872574478 ], [ 4950380.263392473571002, 3897360.189060929231346 ], [ 4950406.476006419397891, 3897358.760963294189423 ], [ 4950408.456690045073628, 3897391.534760682843626 ], [ 4950452.816542061977088, 3897389.034011762589216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950330.104537464678288, 3890474.097091776318848 ], [ 4950333.305226064287126, 3890444.970317279919982 ], [ 4950421.168119171634316, 3890454.168701109942049 ], [ 4950418.255838507786393, 3890482.931650320999324 ], [ 4950330.104537464678288, 3890474.097091776318848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949524.886371891945601, 3889612.075856883078814 ], [ 4949578.77832745295018, 3889598.659856365527958 ], [ 4949589.393734860233963, 3889641.273991911206394 ], [ 4949535.501859351061285, 3889654.689971486572176 ], [ 4949524.886371891945601, 3889612.075856883078814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944261.254144243896008, 3892339.472244433593005 ], [ 4944258.333073037676513, 3892386.442292453255504 ], [ 4944268.415481854230165, 3892387.179179590661079 ], [ 4944267.538128415122628, 3892402.471816462930292 ], [ 4944255.151033516041934, 3892401.732957418076694 ], [ 4944253.108257485553622, 3892432.317985946778208 ], [ 4944217.675527873449028, 3892430.102922504302114 ], [ 4944223.228508430533111, 3892337.25495469616726 ], [ 4944261.254144243896008, 3892339.472244433593005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949432.373283692635596, 3888263.978263507131487 ], [ 4949441.844186765141785, 3888299.672685478813946 ], [ 4949415.905200977809727, 3888306.563924314454198 ], [ 4949406.434265931136906, 3888270.869511338882148 ], [ 4949432.373283692635596, 3888263.978263507131487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949289.379792046733201, 3894142.312805557157844 ], [ 4949313.859094886109233, 3894148.528537327423692 ], [ 4949307.207694169133902, 3894173.282347922213376 ], [ 4949283.016859611496329, 3894166.702794174198061 ], [ 4949289.379792046733201, 3894142.312805557157844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943978.735931896604598, 3890181.773257611785084 ], [ 4943983.655665847472847, 3890155.924342174548656 ], [ 4944003.820322088897228, 3890159.58267763024196 ], [ 4943998.900569409132004, 3890185.431589438579977 ], [ 4943978.735931896604598, 3890181.773257611785084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948693.115975792519748, 3898620.12246187729761 ], [ 4948715.294247661717236, 3898619.416855862829834 ], [ 4948716.699741718359292, 3898653.282352442387491 ], [ 4948654.196914603002369, 3898655.767462121322751 ], [ 4948653.358471812680364, 3898630.641659237910062 ], [ 4948693.394701068289578, 3898629.22598842298612 ], [ 4948693.115975792519748, 3898620.12246187729761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943258.949798936955631, 3891694.854384482838213 ], [ 4943289.776160678826272, 3891694.515509130433202 ], [ 4943291.999115463346243, 3891794.288441321346909 ], [ 4943261.172569972462952, 3891794.99144203402102 ], [ 4943258.949798936955631, 3891694.854384482838213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948208.384669685736299, 3891145.158664078451693 ], [ 4948214.752083923667669, 3891116.034803959541023 ], [ 4948262.854948041029274, 3891125.91454861080274 ], [ 4948256.487118234857917, 3891155.402525211684406 ], [ 4948208.384669685736299, 3891145.158664078451693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947915.299178066663444, 3891523.923745855223387 ], [ 4947938.346125602722168, 3891524.67487016459927 ], [ 4947937.756921695545316, 3891537.782898648176342 ], [ 4947914.710346517153084, 3891536.667647054884583 ], [ 4947915.299178066663444, 3891523.923745855223387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942356.881493269465864, 3889917.550895289052278 ], [ 4942381.984536586329341, 3889870.234007325489074 ], [ 4942387.168291356414557, 3889873.151103869080544 ], [ 4942409.097016537562013, 3889832.386046139523387 ], [ 4942403.625142234377563, 3889829.468718766700476 ], [ 4942429.882242186926305, 3889780.332147201523185 ], [ 4942434.778181484900415, 3889782.884898321237415 ], [ 4942457.861522661522031, 3889739.571898183785379 ], [ 4942494.436879301443696, 3889758.899541097227484 ], [ 4942449.424077386036515, 3889843.705771569162607 ], [ 4942445.96814601868391, 3889841.882408297620714 ], [ 4942439.909144917502999, 3889852.801464381162077 ], [ 4942443.365075287409127, 3889854.624826877377927 ], [ 4942398.3525942992419, 3889939.431147536728531 ], [ 4942356.881493269465864, 3889917.550895289052278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947460.898487116210163, 3891598.851434716489166 ], [ 4947465.819892305880785, 3891574.459646736737341 ], [ 4947479.93372193351388, 3891577.386437928769737 ], [ 4947481.67117558978498, 3891568.284929280169308 ], [ 4947505.866566831246018, 3891573.042213104665279 ], [ 4947511.947157926857471, 3891541.733131177257746 ], [ 4947533.261967322789133, 3891546.12349779997021 ], [ 4947520.522782596759498, 3891610.561730169691145 ], [ 4947460.898487116210163, 3891598.851434716489166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946625.147062060423195, 3889142.735296993050724 ], [ 4946637.210342245176435, 3889182.800724024884403 ], [ 4946578.129079657606781, 3889200.223131878767163 ], [ 4946566.065719329752028, 3889160.157730941195041 ], [ 4946625.147062060423195, 3889142.735296993050724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946275.159104936756194, 3891223.762033473234624 ], [ 4946316.636887668631971, 3891232.903874281328171 ], [ 4946307.088558070361614, 3891276.954470158554614 ], [ 4946275.404159761033952, 3891270.006526154000312 ], [ 4946280.034077006392181, 3891248.16315187793225 ], [ 4946270.528848619200289, 3891245.969536024145782 ], [ 4946275.159104936756194, 3891223.762033473234624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944048.866923562251031, 3892078.575473259668797 ], [ 4944074.793163088150322, 3892080.782240882981569 ], [ 4944073.337875885888934, 3892098.259159959387034 ], [ 4944101.280412863008678, 3892100.83179315039888 ], [ 4944096.336164128035307, 3892155.810953604988754 ], [ 4944083.661171074956656, 3892154.707800911273807 ], [ 4944082.497991114854813, 3892167.451301255729049 ], [ 4944039.863907957449555, 3892163.773844941519201 ], [ 4944042.771346723660827, 3892132.461281765252352 ], [ 4944043.347525445744395, 3892132.461770252790302 ], [ 4944045.383601513691247, 3892109.523418300785124 ], [ 4944045.959780723787844, 3892109.523906838148832 ], [ 4944048.866923562251031, 3892078.575473259668797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943972.578249738551676, 3893035.804234501440078 ], [ 4944003.976161144673824, 3893039.107946344651282 ], [ 4943995.839688940905035, 3893122.122342857066542 ], [ 4943964.441873515956104, 3893118.818640367593616 ], [ 4943972.578249738551676, 3893035.804234501440078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943736.66074282862246, 3893356.403035514522344 ], [ 4943745.37798364367336, 3893266.834723484236747 ], [ 4943783.689199721440673, 3893270.508092847652733 ], [ 4943777.586182215251029, 3893334.2254609442316 ], [ 4943770.672956706956029, 3893333.49141184752807 ], [ 4943768.058613494038582, 3893359.342344205826521 ], [ 4943736.66074282862246, 3893356.403035514522344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943244.204497550614178, 3889645.894562806468457 ], [ 4943204.987717277370393, 3889686.280686295591295 ], [ 4943181.092539118602872, 3889663.68526776926592 ], [ 4943220.30961390119046, 3889622.934982491657138 ], [ 4943244.204497550614178, 3889645.894562806468457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943237.136533786542714, 3890185.526110698468983 ], [ 4943285.255118821747601, 3890180.4677140773274 ], [ 4943286.400098989717662, 3890189.571847700979561 ], [ 4943307.722044600173831, 3890187.404564689379185 ], [ 4943310.29531816765666, 3890211.439111520070583 ], [ 4943283.499004491604865, 3890213.966033585835248 ], [ 4943284.642790151759982, 3890224.526677604299039 ], [ 4943267.06660118419677, 3890226.332918190862983 ], [ 4943266.208533279597759, 3890218.685531395021826 ], [ 4943240.852780213579535, 3890221.213675598148257 ], [ 4943237.136533786542714, 3890185.526110698468983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942983.840010090731084, 3889887.82777510676533 ], [ 4943015.220496318303049, 3889917.347506843972951 ], [ 4942976.868793519213796, 3889957.734669090248644 ], [ 4942938.866707266308367, 3889922.019467452540994 ], [ 4942958.186450771987438, 3889902.008032744284719 ], [ 4942964.519943225197494, 3889908.20331872580573 ], [ 4942983.840010090731084, 3889887.82777510676533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942218.945052493363619, 3890197.457222584169358 ], [ 4942222.724851589649916, 3890153.400707403197885 ], [ 4942248.076875206083059, 3890155.605261546559632 ], [ 4942247.786205315031111, 3890158.882184673566371 ], [ 4942322.977910818532109, 3890165.495312305632979 ], [ 4942322.978481599129736, 3890164.76705716131255 ], [ 4942343.144784425385296, 3890166.603509303648025 ], [ 4942344.889731097966433, 3890145.849594086408615 ], [ 4942384.934535046108067, 3890149.158192288130522 ], [ 4942379.411787139251828, 3890211.055577348917723 ], [ 4942218.945052493363619, 3890197.457222584169358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991742.491258638910949, 3903542.225060569588095 ], [ 4991726.553754556924105, 3903580.052967125084251 ], [ 4991698.363564573228359, 3903568.326834464911371 ], [ 4991714.301035794429481, 3903530.498911460861564 ], [ 4991742.491258638910949, 3903542.225060569588095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990431.967442627064884, 3908789.607710861600935 ], [ 4990425.213306069374084, 3908840.933064639568329 ], [ 4990389.523670692928135, 3908836.471606229431927 ], [ 4990393.338659103959799, 3908808.443187489174306 ], [ 4990377.221282838843763, 3908806.216917969286442 ], [ 4990380.448261061683297, 3908782.920713143888861 ], [ 4990431.967442627064884, 3908789.607710861600935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989677.608389339409769, 3899979.688917657826096 ], [ 4989721.870291225612164, 3900015.486475848592818 ], [ 4989692.691853457130492, 3900050.732859993819147 ], [ 4989648.71797601506114, 3900014.936082029249519 ], [ 4989677.608389339409769, 3899979.688917657826096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988488.858989952132106, 3906137.431004106998444 ], [ 4988419.182233164086938, 3906135.436081786174327 ], [ 4988420.415000829845667, 3906103.031392055097967 ], [ 4988469.649038367904723, 3906104.611038389150053 ], [ 4988469.343791759572923, 3906111.528787760064006 ], [ 4988489.49865014757961, 3906111.943346158601344 ], [ 4988488.858989952132106, 3906137.431004106998444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988105.875423493795097, 3908344.93902670731768 ], [ 4988129.786922879517078, 3908339.172410871833563 ], [ 4988132.352784848771989, 3908349.374514807481319 ], [ 4988171.245875906199217, 3908339.639772317372262 ], [ 4988179.51379703078419, 3908372.432314283680171 ], [ 4988155.60231642331928, 3908378.198885978665203 ], [ 4988153.891145288012922, 3908371.640235390048474 ], [ 4988106.644034530036151, 3908383.174878490623087 ], [ 4988100.372411547228694, 3908358.034113524947315 ], [ 4988108.726491242647171, 3908356.234236309304833 ], [ 4988105.875423493795097, 3908344.93902670731768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988046.563079266808927, 3904059.682972287759185 ], [ 4988060.601677818223834, 3904088.484282573219389 ], [ 4988036.383069756440818, 3904100.440431461669505 ], [ 4988022.345356360077858, 3904071.275004081893712 ], [ 4988046.563079266808927, 3904059.682972287759185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987947.589138994924724, 3908201.441476042382419 ], [ 4987935.77820885553956, 3908203.961088935378939 ], [ 4987938.055336810648441, 3908214.526589352637529 ], [ 4987924.228994296863675, 3908217.041205181274563 ], [ 4987922.235260493122041, 3908208.297072720248252 ], [ 4987900.629735833965242, 3908212.97719489177689 ], [ 4987892.096085635945201, 3908171.080766202416271 ], [ 4987939.338956944644451, 3908161.366399656049907 ], [ 4987947.589138994924724, 3908201.441476042382419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987902.014392975717783, 3902430.563392718788236 ], [ 4987937.702104541473091, 3902439.391080029308796 ], [ 4987928.392821687273681, 3902477.237650292925537 ], [ 4987892.705157417804003, 3902468.409975141752511 ], [ 4987902.014392975717783, 3902430.563392718788236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987870.800426327623427, 3906192.696182964369655 ], [ 4987899.892169506289065, 3906188.762870791833848 ], [ 4987903.004399090074003, 3906210.982658484950662 ], [ 4987910.493510047905147, 3906209.908839419484138 ], [ 4987913.039788725785911, 3906228.121769630815834 ], [ 4987904.686867824755609, 3906229.193445247597992 ], [ 4987906.381076710298657, 3906242.670541904401034 ], [ 4987877.865267124958336, 3906246.605275103822351 ], [ 4987870.800426327623427, 3906192.696182964369655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987686.244211711920798, 3895701.622352411504835 ], [ 4987701.577530641108751, 3895674.714635971467942 ], [ 4987768.601600824855268, 3895712.021660359110683 ], [ 4987753.267334977164865, 3895739.293466888833791 ], [ 4987686.244211711920798, 3895701.622352411504835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987605.979081364348531, 3902776.848099974449724 ], [ 4987616.285944327712059, 3902801.270361070055515 ], [ 4987590.629199824295938, 3902812.130958720110357 ], [ 4987580.322317780926824, 3902787.708707298152149 ], [ 4987605.979081364348531, 3902776.848099974449724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987522.700110916048288, 3908052.552249303553253 ], [ 4987576.574177867732942, 3908039.212275525089353 ], [ 4987585.412462833337486, 3908074.554963267408311 ], [ 4987554.874228658154607, 3908082.126372582279146 ], [ 4987557.155111277475953, 3908091.235318100545555 ], [ 4987533.819352249614894, 3908097.003863175865263 ], [ 4987522.700110916048288, 3908052.552249303553253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987476.917895369231701, 3908871.373935289680958 ], [ 4987449.271358813159168, 3908874.218866909388453 ], [ 4987448.992420452646911, 3908870.576851168181747 ], [ 4987422.210512810386717, 3908873.059808091726154 ], [ 4987418.559151255525649, 3908835.909265615511686 ], [ 4987442.174081183969975, 3908833.418502720072865 ], [ 4987443.01717958971858, 3908841.795635095797479 ], [ 4987473.542852205224335, 3908838.95779322180897 ], [ 4987476.917895369231701, 3908871.373935289680958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987229.113556452095509, 3905552.425094208680093 ], [ 4987216.937603927217424, 3905585.895353829022497 ], [ 4987197.66314850654453, 3905578.565401779022068 ], [ 4987184.038587695918977, 3905615.673442688304931 ], [ 4987147.788786773569882, 3905602.839897949714214 ], [ 4987168.371335785835981, 3905546.449905738700181 ], [ 4987176.425772972404957, 3905549.746854060329497 ], [ 4987181.644530455581844, 3905535.194374549202621 ], [ 4987229.113556452095509, 3905552.425094208680093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987036.216877282597125, 3901541.406223312020302 ], [ 4986983.493600370362401, 3901550.016367312986404 ], [ 4986979.23611191380769, 3901524.516770529560745 ], [ 4986989.319279769435525, 3901523.084907915908843 ], [ 4986985.917743748053908, 3901500.864584942813963 ], [ 4987019.049841688014567, 3901495.483676420990378 ], [ 4987022.451351029798388, 3901517.704003524966538 ], [ 4987031.959437431767583, 3901515.906618318054825 ], [ 4987036.216877282597125, 3901541.406223312020302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986919.050320588983595, 3898929.572774781379849 ], [ 4986937.839916726574302, 3898901.580630204640329 ], [ 4986973.496128159575164, 3898925.336285066325217 ], [ 4986954.706511308439076, 3898953.328405105508864 ], [ 4986919.050320588983595, 3898929.572774781379849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986868.37011544406414, 3908006.157991512212902 ], [ 4986887.668711765669286, 3908002.927934838458896 ], [ 4986886.533935223706067, 3907996.006642732769251 ], [ 4986935.788621730171144, 3907987.751957989297807 ], [ 4986941.470449183136225, 3908019.081255382392555 ], [ 4986921.883938804268837, 3908022.310569735243917 ], [ 4986924.152580787427723, 3908036.51728770788759 ], [ 4986905.429841921664774, 3908039.748725324869156 ], [ 4986903.44555042963475, 3908026.999234270304441 ], [ 4986872.912792298942804, 3908032.38663566717878 ], [ 4986868.37011544406414, 3908006.157991512212902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986707.051299255341291, 3907685.691961923614144 ], [ 4986733.819235780276358, 3907689.398510712664574 ], [ 4986728.54434275906533, 3907727.255442179739475 ], [ 4986701.776443256996572, 3907723.548898566979915 ], [ 4986707.051299255341291, 3907685.691961923614144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986697.248366841115057, 3904617.490058549679816 ], [ 4986731.512418316677213, 3904618.665925276000053 ], [ 4986731.816345228813589, 3904612.112292186357081 ], [ 4986749.955774973146617, 3904612.88476352347061 ], [ 4986749.035106088966131, 3904636.186959383077919 ], [ 4986755.945147448219359, 3904636.567934721708298 ], [ 4986753.81673492770642, 3904682.807495425920933 ], [ 4986726.463683457113802, 3904681.648438252974302 ], [ 4986727.080406039953232, 3904664.899874283466488 ], [ 4986690.513659450225532, 3904663.354273459874094 ], [ 4986691.731986408121884, 3904636.047349589876831 ], [ 4986696.339272423647344, 3904636.05856997705996 ], [ 4986697.248366841115057, 3904617.490058549679816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986552.094883250072598, 3909129.101127430796623 ], [ 4986611.404658309184015, 3909128.881211376748979 ], [ 4986611.642073740251362, 3909149.637363155838102 ], [ 4986603.868584466166794, 3909149.618453708477318 ], [ 4986603.81632724031806, 3909171.102166847325861 ], [ 4986613.029344200156629, 3909171.124578271526843 ], [ 4986613.216264707967639, 3909212.636182809248567 ], [ 4986605.442793660797179, 3909212.617272902745754 ], [ 4986605.687298588454723, 3909230.460379730444402 ], [ 4986614.900295191444457, 3909230.482791795395315 ], [ 4986615.095184795558453, 3909268.717221073340625 ], [ 4986607.320844206959009, 3909269.062441387213767 ], [ 4986607.287185081280768, 3909282.899410157930106 ], [ 4986554.024652273394167, 3909282.769899148494005 ], [ 4986553.911984752863646, 3909210.671310413628817 ], [ 4986543.835262287408113, 3909210.646820247638971 ], [ 4986543.582751940004528, 3909196.080890867393464 ], [ 4986552.219947307370603, 3909196.101882122457027 ], [ 4986552.094883250072598, 3909129.101127430796623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986451.472846189513803, 3909899.362100539263338 ], [ 4986487.181160776875913, 3909895.807450960855931 ], [ 4986489.708589914254844, 3909922.031167711131275 ], [ 4986513.322477621026337, 3909919.53958671586588 ], [ 4986515.84810980129987, 3909946.491568130906671 ], [ 4986456.526884639635682, 3909952.173659019172192 ], [ 4986451.472846189513803, 3909899.362100539263338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986315.843853930011392, 3908840.863021251279861 ], [ 4986314.579344005323946, 3908887.468958648853004 ], [ 4986332.42887076176703, 3908887.876322181895375 ], [ 4986331.479585710912943, 3908923.19490621984005 ], [ 4986313.917991850525141, 3908922.788240517955273 ], [ 4986312.974022744223475, 3908955.922041797544807 ], [ 4986279.866240464150906, 3908955.113623832818121 ], [ 4986279.8785789180547, 3908950.015794097445905 ], [ 4986248.210334249772131, 3908949.210899366997182 ], [ 4986248.188312025740743, 3908958.314166773110628 ], [ 4986227.171831214800477, 3908957.899200022686273 ], [ 4986227.472068793140352, 3908952.802066534291953 ], [ 4986132.466455641202629, 3908950.751810291782022 ], [ 4986133.109102862887084, 3908923.07926787994802 ], [ 4986115.259596793912351, 3908922.672036769799888 ], [ 4986116.544858042150736, 3908867.326952582225204 ], [ 4986134.10649083647877, 3908867.733489257283509 ], [ 4986134.757055445574224, 3908836.783772249706089 ], [ 4986315.843853930011392, 3908840.863021251279861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986276.116155584342778, 3908244.317422744818032 ], [ 4986284.918182584457099, 3908295.317300645168871 ], [ 4986263.315659501589835, 3908298.906348016113043 ], [ 4986262.747756823897362, 3908295.627779773902148 ], [ 4986233.080062900669873, 3908300.653868575580418 ], [ 4986224.557050553150475, 3908253.296009111218154 ], [ 4986276.116155584342778, 3908244.317422744818032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985858.336336129345, 3909206.440747593995184 ], [ 4985915.325152107514441, 3909213.49637184664607 ], [ 4985911.514892037957907, 3909241.525433256756514 ], [ 4985905.470618008635938, 3909240.782621713820845 ], [ 4985903.120053731836379, 3909260.440141061786562 ], [ 4985852.175607034005225, 3909254.127340693026781 ], [ 4985858.336336129345, 3909206.440747593995184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985409.392144059762359, 3910934.268673203419894 ], [ 4985443.967402189038694, 3910922.334867831785232 ], [ 4985455.120196977630258, 3910953.676978270057589 ], [ 4985420.544974124990404, 3910965.610769516788423 ], [ 4985409.392144059762359, 3910934.268673203419894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985292.116362150758505, 3910012.00374859245494 ], [ 4985259.009853674098849, 3910011.196588082239032 ], [ 4985260.585545907728374, 3909954.031456608325243 ], [ 4985293.692124789580703, 3909954.838619046844542 ], [ 4985292.116362150758505, 3910012.00374859245494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985261.328778872266412, 3909883.755555630661547 ], [ 4985303.946533251553774, 3909880.215796510688961 ], [ 4985306.466436963528395, 3909910.080711148679256 ], [ 4985300.131793939508498, 3909910.42974191531539 ], [ 4985301.813178041949868, 3909929.73280014982447 ], [ 4985277.048687485046685, 3909931.858570649288595 ], [ 4985275.370756679214537, 3909911.098990153055638 ], [ 4985263.852199915796518, 3909912.163942567072809 ], [ 4985261.328778872266412, 3909883.755555630661547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985210.934622461907566, 3909283.908591667190194 ], [ 4985232.428686895407736, 3909325.470916253048927 ], [ 4985205.620572819374502, 3909339.244138659909368 ], [ 4985184.126478084363043, 3909297.681835159193724 ], [ 4985210.934622461907566, 3909283.908591667190194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985097.206136891618371, 3905408.540781757328659 ], [ 4985126.044990460388362, 3905390.038586756680161 ], [ 4985132.070242524147034, 3905399.156209738925099 ], [ 4985162.928226262331009, 3905379.202326539903879 ], [ 4985191.618126562796533, 3905423.330550849903375 ], [ 4985177.775016781874001, 3905432.400914528407156 ], [ 4985173.75762037653476, 3905426.565245390869677 ], [ 4985136.555332781746984, 3905450.50948453322053 ], [ 4985119.914145439863205, 3905425.344817559234798 ], [ 4985111.83865113183856, 3905430.787604541517794 ], [ 4985097.206136891618371, 3905408.540781757328659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984937.927376602776349, 3905426.733538463246077 ], [ 4984926.276619968004525, 3905482.782255810685456 ], [ 4984909.295551769435406, 3905479.464833941310644 ], [ 4984904.344397368840873, 3905503.121685521211475 ], [ 4984845.632696034386754, 3905490.602183090988547 ], [ 4984852.621834677644074, 3905457.482712650671601 ], [ 4984874.207481844350696, 3905461.9033965151757 ], [ 4984881.781179338693619, 3905425.143998290412128 ], [ 4984893.005934780463576, 3905427.355372672434896 ], [ 4984895.043986367993057, 3905417.892767895944417 ], [ 4984937.927376602776349, 3905426.733538463246077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984512.315007278695703, 3908983.66564864339307 ], [ 4984521.716528084129095, 3909025.92718958761543 ], [ 4984502.992199374362826, 3909030.252695579547435 ], [ 4984505.271462108008564, 3909040.453779659699649 ], [ 4984484.819697383791208, 3909044.775231475941837 ], [ 4984473.138847964815795, 3908992.312621622812003 ], [ 4984512.315007278695703, 3908983.66564864339307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984404.542691845446825, 3914411.912727731280029 ], [ 4984379.428661314770579, 3914442.076819393783808 ], [ 4984353.860452936962247, 3914420.532837168313563 ], [ 4984389.654056067578495, 3914378.013265555724502 ], [ 4984422.404844145290554, 3914405.400315599981695 ], [ 4984411.724402364343405, 3914418.119891247246414 ], [ 4984404.542691845446825, 3914411.912727731280029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984423.236588261090219, 3903765.805896911304444 ], [ 4984486.371975594200194, 3903735.731464984361082 ], [ 4984504.998849893920124, 3903774.373253386002034 ], [ 4984441.575567898340523, 3903804.446965127252042 ], [ 4984423.236588261090219, 3903765.805896911304444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984384.620776223950088, 3917009.235957173164934 ], [ 4984405.25583104044199, 3917046.790333641692996 ], [ 4984414.765958058647811, 3917041.714811488054693 ], [ 4984425.369140194728971, 3917061.403018096461892 ], [ 4984419.028487499803305, 3917065.029451769310981 ], [ 4984431.924811165779829, 3917088.728535330854356 ], [ 4984394.460021506994963, 3917109.031973826233298 ], [ 4984380.703632119111717, 3917083.874347981996834 ], [ 4984373.210847223177552, 3917087.862219229340553 ], [ 4984356.5881820730865, 3917057.599985567387193 ], [ 4984367.827796991914511, 3917051.436106334906071 ], [ 4984353.784385799430311, 3917025.913686245679855 ], [ 4984384.620776223950088, 3917009.235957173164934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984177.216354932636023, 3915976.427979663480073 ], [ 4984232.834885674528778, 3915948.155853532720357 ], [ 4984249.167132646776736, 3915979.873843638692051 ], [ 4984193.548650155775249, 3916008.145936533343047 ], [ 4984177.216354932636023, 3915976.427979663480073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984174.348126240074635, 3909704.219189296942204 ], [ 4984179.462115237489343, 3909733.361801707185805 ], [ 4984137.699459441006184, 3909740.546675260644406 ], [ 4984132.585426568984985, 3909711.40407066559419 ], [ 4984174.348126240074635, 3909704.219189296942204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984029.389929251745343, 3916047.816546437796205 ], [ 4984053.753576553426683, 3916091.569626338779926 ], [ 4984051.735342791303992, 3916093.021445138379931 ], [ 4984064.060202218592167, 3916115.262461899779737 ], [ 4984035.528198936954141, 3916130.85353441350162 ], [ 4983998.551808808930218, 3916064.858805472031236 ], [ 4984029.389929251745343, 3916047.816546437796205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984020.284772435203195, 3916987.990518567617983 ], [ 4984043.050031153485179, 3916976.391422002576292 ], [ 4984054.796288919635117, 3916999.723499113228172 ], [ 4984032.031044829636812, 3917011.322585902176797 ], [ 4984020.284772435203195, 3916987.990518567617983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983889.500319823622704, 3916665.790254036895931 ], [ 4983866.285691741853952, 3916623.132388569880277 ], [ 4983895.104901908896863, 3916607.541802656836808 ], [ 4983906.568720407783985, 3916628.688343002460897 ], [ 4983912.908556865528226, 3916625.42592190252617 ], [ 4983926.093366056680679, 3916649.125427456106991 ], [ 4983920.329186800867319, 3916652.389188601635396 ], [ 4983933.512276567518711, 3916676.816963276360184 ], [ 4983889.419648609124124, 3916700.382845634128898 ], [ 4983875.090318867005408, 3916673.76761267753318 ], [ 4983889.500319823622704, 3916665.790254036895931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983699.638795605860651, 3897666.014171099755913 ], [ 4983739.071825617924333, 3897677.757983894553035 ], [ 4983728.041204093955457, 3897714.509498334024101 ], [ 4983688.60822329018265, 3897702.765701467171311 ], [ 4983699.638795605860651, 3897666.014171099755913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983591.601722720079124, 3916912.344547167886049 ], [ 4983621.570913692936301, 3916897.120469613932073 ], [ 4983651.65707978233695, 3916955.451880642212927 ], [ 4983651.080587104894221, 3916955.814675918780267 ], [ 4983659.102414724417031, 3916971.855234900955111 ], [ 4983633.455705230124295, 3916984.904502404853702 ], [ 4983618.270414813421667, 3916955.010202660690993 ], [ 4983600.404234300367534, 3916964.072088435292244 ], [ 4983586.364274138584733, 3916936.729407928884029 ], [ 4983600.484534105286002, 3916929.479490133468062 ], [ 4983591.601722720079124, 3916912.344547167886049 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983253.949506893754005, 3906074.591449351515621 ], [ 4983330.334356528706849, 3906039.811133242677897 ], [ 4983345.233205844648182, 3906071.889181741513312 ], [ 4983333.702986756339669, 3906077.324520790949464 ], [ 4983337.141439023427665, 3906084.615107141435146 ], [ 4983298.228358584456146, 3906102.36769668571651 ], [ 4983296.509969354607165, 3906098.358275752514601 ], [ 4983270.279721505008638, 3906110.314080634620041 ], [ 4983253.949506893754005, 3906074.591449351515621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983148.54593435768038, 3915953.282165097072721 ], [ 4983199.424547458998859, 3915982.894338720012456 ], [ 4983176.016828605905175, 3916023.259276133961976 ], [ 4983125.138266469351947, 3915993.6471460852772 ], [ 4983148.54593435768038, 3915953.282165097072721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981262.362841409631073, 3905770.024974500294775 ], [ 4981285.125813192687929, 3905763.157314031850547 ], [ 4981292.84332784358412, 3905788.66379460785538 ], [ 4981270.368318602442741, 3905795.532091788947582 ], [ 4981262.362841409631073, 3905770.024974500294775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981093.32605987880379, 3907068.871318394318223 ], [ 4981111.493998745456338, 3907056.167158607859164 ], [ 4981125.559536869637668, 3907075.497506655752659 ], [ 4981107.39079319499433, 3907088.565787523519248 ], [ 4981093.32605987880379, 3907068.871318394318223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980884.916258838027716, 3906656.210328189656138 ], [ 4980907.571669510565698, 3906697.407551026437432 ], [ 4980830.599015824496746, 3906739.840229175984859 ], [ 4980807.655590078793466, 3906698.642431953921914 ], [ 4980884.916258838027716, 3906656.210328189656138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980770.718445872887969, 3904005.441420610528439 ], [ 4980796.898794190958142, 3904016.423366355709732 ], [ 4980777.794895662926137, 3904060.805091764777899 ], [ 4980739.819440145045519, 3904044.699208579957485 ], [ 4980747.056373647414148, 3904027.601047032047063 ], [ 4980758.851522546261549, 3904032.725005910266191 ], [ 4980770.718445872887969, 3904005.441420610528439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980620.770491238683462, 3908008.740979379508644 ], [ 4980599.129899040795863, 3908029.812852013856173 ], [ 4980578.733478766866028, 3908009.01225837925449 ], [ 4980600.374071617610753, 3907987.940369585063308 ], [ 4980620.770491238683462, 3908008.740979379508644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980183.415123869664967, 3905647.473464488517493 ], [ 4980156.322793928906322, 3905659.066281066741794 ], [ 4980145.148029131814837, 3905633.91668564453721 ], [ 4980172.241177978925407, 3905621.959727838635445 ], [ 4980183.415123869664967, 3905647.473464488517493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980077.997461921535432, 3907370.679647571407259 ], [ 4980064.417114306241274, 3907392.497855479363352 ], [ 4980047.16467123106122, 3907381.900261326692998 ], [ 4980060.745010132901371, 3907360.082044836133718 ], [ 4980077.997461921535432, 3907370.679647571407259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980094.00383563246578, 3899007.345784512348473 ], [ 4980113.032009840942919, 3898998.648319112602621 ], [ 4980125.360855868086219, 3899024.164452594239265 ], [ 4980106.331898326054215, 3899033.226038089487702 ], [ 4980094.00383563246578, 3899007.345784512348473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980076.376000885851681, 3906664.623757566791028 ], [ 4980099.431426653638482, 3906655.206806625705212 ], [ 4980109.456464258953929, 3906679.261484734714031 ], [ 4980086.400258247740567, 3906689.042557606939226 ], [ 4980076.376000885851681, 3906664.623757566791028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980077.081786873750389, 3899632.884943421930075 ], [ 4980143.095685043372214, 3899605.719717488158494 ], [ 4980154.84261735342443, 3899633.783513355534524 ], [ 4980131.204342985525727, 3899643.563243357930332 ], [ 4980137.506233078427613, 3899659.234664563089609 ], [ 4980125.11069196369499, 3899664.305337302852422 ], [ 4980119.380028205923736, 3899650.819953560363501 ], [ 4980089.688019229099154, 3899663.135375387966633 ], [ 4980077.081786873750389, 3899632.884943421930075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979882.599350044503808, 3905475.309299386572093 ], [ 4979925.276636742055416, 3905447.364300689660013 ], [ 4979959.717268948443234, 3905499.146248426288366 ], [ 4979916.752082495950162, 3905527.090564666781574 ], [ 4979882.599350044503808, 3905475.309299386572093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979842.126454309560359, 3907397.47419256484136 ], [ 4979889.013061632402241, 3907418.33201475860551 ], [ 4979876.571881027892232, 3907445.978920622728765 ], [ 4979829.685312431305647, 3907425.12111978372559 ], [ 4979842.126454309560359, 3907397.47419256484136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979827.803083663806319, 3899965.884127401746809 ], [ 4979828.313224475830793, 3899996.108082193415612 ], [ 4979782.806040242314339, 3899997.101330240722746 ], [ 4979782.29584828671068, 3899966.877376298420131 ], [ 4979827.803083663806319, 3899965.884127401746809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979821.480534000322223, 3899695.321308879647404 ], [ 4979828.630744490772486, 3899718.277118063531816 ], [ 4979802.980574166402221, 3899726.23209909722209 ], [ 4979795.542335693724453, 3899703.275669272989035 ], [ 4979821.480534000322223, 3899695.321308879647404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979747.304926249198616, 3906514.611190333496779 ], [ 4979758.604172953404486, 3906482.592168460134417 ], [ 4979802.049915214069188, 3906497.616218355018646 ], [ 4979790.461894558742642, 3906529.998725316952914 ], [ 4979747.304926249198616, 3906514.611190333496779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979732.899420706555247, 3901093.39040413685143 ], [ 4979686.196996508166194, 3901115.136671734508127 ], [ 4979675.876739685423672, 3901093.266381703782827 ], [ 4979686.543577407486737, 3901088.191740249283612 ], [ 4979672.209604858420789, 3901057.9377152742818 ], [ 4979708.245252418331802, 3901041.266052572987974 ], [ 4979717.705482841469347, 3901061.313829035963863 ], [ 4979728.660334889777005, 3901056.239830911159515 ], [ 4979734.679677712731063, 3901069.361640274524689 ], [ 4979724.01282340567559, 3901074.436262562405318 ], [ 4979732.899420706555247, 3901093.39040413685143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979623.794382094405591, 3899614.054251726251096 ], [ 4979653.750502754934132, 3899612.662806362379342 ], [ 4979655.377276464365423, 3899659.275052711833268 ], [ 4979625.421998511999846, 3899660.302367456257343 ], [ 4979623.794382094405591, 3899614.054251726251096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979497.472387477755547, 3901022.966013685334474 ], [ 4979507.500086918473244, 3901047.020384916570038 ], [ 4979457.919406780041754, 3901068.032547762617469 ], [ 4979440.727302, 3901027.576793226413429 ], [ 4979481.948319814167917, 3901010.187793538440019 ], [ 4979488.82467424031347, 3901026.588581775780767 ], [ 4979497.472387477755547, 3901022.966013685334474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979418.505605430342257, 3916608.39836532343179 ], [ 4979417.265980304218829, 3916649.178731047082692 ], [ 4979387.62141184322536, 3916648.386282238643616 ], [ 4979388.860991991125047, 3916607.605915167368948 ], [ 4979418.505605430342257, 3916608.39836532343179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979269.504448981024325, 3904700.198585574515164 ], [ 4979278.927536107599735, 3904736.996230628341436 ], [ 4979223.897628642618656, 3904751.078588921576738 ], [ 4979214.474471224471927, 3904714.280962844379246 ], [ 4979269.504448981024325, 3904700.198585574515164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979238.722063409164548, 3910023.381593792233616 ], [ 4979279.06863047927618, 3910004.533797950483859 ], [ 4979293.111905411817133, 3910034.058894460089505 ], [ 4979252.765372692607343, 3910052.90666955569759 ], [ 4979238.722063409164548, 3910023.381593792233616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979209.366237918846309, 3909084.584023850038648 ], [ 4979205.311966673471034, 3909095.499257628340274 ], [ 4979213.655002324841917, 3909098.430316345300525 ], [ 4979202.648540670983493, 3909128.993716302793473 ], [ 4979153.16616425011307, 3909111.408664063084871 ], [ 4979164.462054215371609, 3909080.117602857761085 ], [ 4979180.860234427265823, 3909085.979076693300158 ], [ 4979184.625019015744328, 3909075.79148037917912 ], [ 4979209.366237918846309, 3909084.584023850038648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979158.636475449427962, 3903098.873321734834462 ], [ 4979232.684091624803841, 3902947.554366976954043 ], [ 4979292.232470808550715, 3902976.449283307883888 ], [ 4979218.184597888961434, 3903127.768076626118273 ], [ 4979158.636475449427962, 3903098.873321734834462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979121.940458000637591, 3900080.148531060665846 ], [ 4979092.794043879956007, 3900107.031455855816603 ], [ 4979076.702646505087614, 3900089.882689700461924 ], [ 4979105.849063015542924, 3900062.999747721944004 ], [ 4979121.940458000637591, 3900080.148531060665846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979061.29293651599437, 3912202.69995031831786 ], [ 4979085.70580951590091, 3912228.970097396057099 ], [ 4979075.033309171907604, 3912238.778723900206387 ], [ 4979050.908308899961412, 3912212.509205739479512 ], [ 4979061.29293651599437, 3912202.69995031831786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979040.925508184358478, 3901994.938332306686789 ], [ 4979079.756292539648712, 3902016.869723857846111 ], [ 4979057.496978311799467, 3902056.147990647703409 ], [ 4979015.789530856534839, 3902032.753923091571778 ], [ 4979029.08686354663223, 3902009.478119965642691 ], [ 4979031.675583710893989, 3902010.940209852997214 ], [ 4979040.925508184358478, 3901994.938332306686789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978982.293924916535616, 3908909.675622354261577 ], [ 4979002.721416682936251, 3908916.273909918498248 ], [ 4978994.318042799830437, 3908941.380997775588185 ], [ 4978973.890568095259368, 3908934.782716497313231 ], [ 4978982.293924916535616, 3908909.675622354261577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978586.678687383420765, 3904603.694632920436561 ], [ 4978623.00930844899267, 3904581.196014210581779 ], [ 4978637.645294954068959, 3904604.531689795665443 ], [ 4978601.313915929757059, 3904627.394419001881033 ], [ 4978586.678687383420765, 3904603.694632920436561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978094.410863396711648, 3905218.759604446589947 ], [ 4978096.450386731885374, 3905207.475834900978953 ], [ 4978076.876767871901393, 3905204.15724910935387 ], [ 4978081.539403734728694, 3905177.949624705128372 ], [ 4978147.45595408976078, 3905189.377196665387601 ], [ 4978141.041662692092359, 3905226.869185514282435 ], [ 4978094.410863396711648, 3905218.759604446589947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977884.021844329312444, 3903803.664185192901641 ], [ 4977897.222148087807, 3903825.539892923086882 ], [ 4977877.616038365289569, 3903837.150777301285416 ], [ 4977880.772898889146745, 3903842.255269702058285 ], [ 4977841.560734986327589, 3903865.477077078539878 ], [ 4977825.492265942506492, 3903838.133386334404349 ], [ 4977884.021844329312444, 3903803.664185192901641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977840.340845627710223, 3911553.399664293974638 ], [ 4977894.489392206072807, 3911540.769118211697787 ], [ 4977900.765962812118232, 3911567.728206995874643 ], [ 4977835.672622244805098, 3911582.884617944248021 ], [ 4977831.392753020860255, 3911564.668945375829935 ], [ 4977842.337605321779847, 3911562.143066365737468 ], [ 4977840.340845627710223, 3911553.399664293974638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977797.183339468203485, 3906753.676745138596743 ], [ 4977823.135613244026899, 3906735.524769026320428 ], [ 4977840.645837070420384, 3906761.050886404700577 ], [ 4977814.982274957932532, 3906778.839321541599929 ], [ 4977797.183339468203485, 3906753.676745138596743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977760.816532766446471, 3906247.456729764584452 ], [ 4977772.563783348537982, 3906275.155466927215457 ], [ 4977733.656969407573342, 3906291.823725532274693 ], [ 4977721.909686115570366, 3906264.125005105976015 ], [ 4977760.816532766446471, 3906247.456729764584452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977604.412796414457262, 3909018.174833374563605 ], [ 4977625.458380116149783, 3909004.746078170835972 ], [ 4977644.972725750878453, 3909035.010035287123173 ], [ 4977623.927155905403197, 3909048.438775458838791 ], [ 4977604.412796414457262, 3909018.174833374563605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977525.07822479121387, 3905244.871156286913902 ], [ 4977477.552949576638639, 3905251.326041943859309 ], [ 4977473.29619034845382, 3905221.458333442453295 ], [ 4977520.822279817424715, 3905214.639310250990093 ], [ 4977525.07822479121387, 3905244.871156286913902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977318.791018962860107, 3913025.953654221724719 ], [ 4977355.630194534547627, 3913029.671902514528483 ], [ 4977351.223242534324527, 3913072.266317580360919 ], [ 4977314.096259787678719, 3913068.547474473249167 ], [ 4977318.791018962860107, 3913025.953654221724719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977234.935026209801435, 3908093.962476170156151 ], [ 4977221.097500659525394, 3908102.308691868558526 ], [ 4977213.636654581874609, 3908090.276783142704517 ], [ 4977199.799133776687086, 3908098.623009792529047 ], [ 4977188.608225364238024, 3908080.393091033678502 ], [ 4977215.996127145364881, 3908063.335903082508594 ], [ 4977234.935026209801435, 3908093.962476170156151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976993.188782959245145, 3916921.87319046491757 ], [ 4976993.222788954153657, 3916905.487214179709554 ], [ 4976987.177731426432729, 3916905.838803853373975 ], [ 4976986.933732494711876, 3916884.718504081480205 ], [ 4977020.610667045228183, 3916884.060138622764498 ], [ 4977021.10919644869864, 3916921.202879767399281 ], [ 4976993.188782959245145, 3916921.87319046491757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976991.558238859288394, 3906746.895578365772963 ], [ 4977017.10339184012264, 3906785.910713323857635 ], [ 4976980.775582289323211, 3906809.13979463884607 ], [ 4976961.831707269884646, 3906780.334077402949333 ], [ 4976973.652793416753411, 3906772.711816114839166 ], [ 4976967.050732557661831, 3906762.866560013499111 ], [ 4976991.558238859288394, 3906746.895578365772963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976958.341500082053244, 3908880.277793702669442 ], [ 4976985.729952706955373, 3908862.492100635543466 ], [ 4977019.308107291348279, 3908914.268596646841615 ], [ 4976991.919685000553727, 3908932.054256055969745 ], [ 4976958.341500082053244, 3908880.277793702669442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976885.108205242082477, 3912962.056912614963949 ], [ 4976837.277215234003961, 3912983.805905712768435 ], [ 4976818.075310031883419, 3912942.619099224451929 ], [ 4976838.533412430435419, 3912933.193954521324486 ], [ 4976841.398513785563409, 3912939.75428540725261 ], [ 4976868.772207503207028, 3912927.06627436587587 ], [ 4976885.108205242082477, 3912962.056912614963949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976749.727001394145191, 3908961.047619325574487 ], [ 4976808.541010022163391, 3908922.206989909056574 ], [ 4976824.901385437697172, 3908946.637705473229289 ], [ 4976766.087406416423619, 3908985.478299664333463 ], [ 4976749.727001394145191, 3908961.047619325574487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976536.839194064028561, 3901182.756256103981286 ], [ 4976561.599794214591384, 3901186.084380205720663 ], [ 4976558.092181292362511, 3901211.202187673188746 ], [ 4976533.044360757805407, 3901207.509345086291432 ], [ 4976536.839194064028561, 3901182.756256103981286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976474.955427037551999, 3902146.847680633887649 ], [ 4976513.200882258825004, 3902174.236124594695866 ], [ 4976505.114184801466763, 3902185.507558849174529 ], [ 4976513.74090473446995, 3902191.715524360537529 ], [ 4976498.144986367784441, 3902213.531320342328399 ], [ 4976496.994558117352426, 3902212.800693294499069 ], [ 4976466.380256216973066, 3902255.705238933674991 ], [ 4976465.229828916490078, 3902254.974613239057362 ], [ 4976448.767800831235945, 3902277.881052252370864 ], [ 4976438.703433386981487, 3902270.57776180608198 ], [ 4976432.350661028176546, 3902278.939730872865766 ], [ 4976396.980599214322865, 3902253.742086470592767 ], [ 4976416.041155179962516, 3902227.563770692795515 ], [ 4976417.19158498942852, 3902228.294394273776561 ], [ 4976446.072714490815997, 3902187.935150924138725 ], [ 4976445.497499120421708, 3902187.569838515482843 ], [ 4976474.955427037551999, 3902146.847680633887649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976411.340523819439113, 3905780.020324502605945 ], [ 4976395.860344750806689, 3905746.488424089271575 ], [ 4976427.276091710664332, 3905731.987641902640462 ], [ 4976439.60307352989912, 3905758.594579270109534 ], [ 4976450.843336346559227, 3905753.519821957685053 ], [ 4976461.162912838160992, 3905776.117195909842849 ], [ 4976407.554659498855472, 3905800.76806712988764 ], [ 4976400.388222619891167, 3905785.09568938985467 ], [ 4976411.340523819439113, 3905780.020324502605945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976390.508357449434698, 3908354.391581436619163 ], [ 4976378.688878326676786, 3908361.649975863751024 ], [ 4976373.810750706121325, 3908353.629054693039507 ], [ 4976354.207850098609924, 3908365.60521374642849 ], [ 4976340.147776901721954, 3908342.271908652037382 ], [ 4976371.857344797812402, 3908323.402058421168476 ], [ 4976390.508357449434698, 3908354.391581436619163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976031.963181493803859, 3903172.062525952700526 ], [ 4976047.453477852977812, 3903201.588737193960696 ], [ 4975990.662420027889311, 3903231.331758587155491 ], [ 4975972.589980996213853, 3903197.066615486517549 ], [ 4976018.71428629104048, 3903173.127915282733738 ], [ 4976021.009149226360023, 3903177.502167088445276 ], [ 4976031.963181493803859, 3903172.062525952700526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975948.692274635657668, 3911540.014177051372826 ], [ 4975932.571657633408904, 3911539.617226934991777 ], [ 4975934.746182573959231, 3911461.333036764990538 ], [ 4975950.866846528835595, 3911461.72998817358166 ], [ 4975948.692274635657668, 3911540.014177051372826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975935.065338363870978, 3903381.968909046147019 ], [ 4975967.348242982290685, 3903367.105238361284137 ], [ 4975992.00676454231143, 3903419.590360999573022 ], [ 4975973.558990520425141, 3903428.291939844377339 ], [ 4975979.579628701321781, 3903441.412926904391497 ], [ 4975955.65603260230273, 3903452.288154631387442 ], [ 4975932.432126989588141, 3903402.354902449529618 ], [ 4975942.519920630380511, 3903398.005855572875589 ], [ 4975935.065338363870978, 3903381.968909046147019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975814.687720042653382, 3905512.257681730668992 ], [ 4975833.146588536910713, 3905497.365768628660589 ], [ 4975866.179725367575884, 3905537.123248332645744 ], [ 4975830.702493178658187, 3905566.545836753211915 ], [ 4975802.83979829121381, 3905532.989135900512338 ], [ 4975820.145383379422128, 3905518.823135911021382 ], [ 4975814.687720042653382, 3905512.257681730668992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975705.538634714670479, 3909214.532044840976596 ], [ 4975722.542825206182897, 3909205.827332386281341 ], [ 4975735.449139205738902, 3909230.250384609680623 ], [ 4975716.71604728512466, 3909239.67984925955534 ], [ 4975720.444799687713385, 3909246.60592751018703 ], [ 4975695.659060200676322, 3909259.300330019555986 ], [ 4975672.428670918568969, 3909214.829090865328908 ], [ 4975698.656186339445412, 3909201.045191269367933 ], [ 4975705.538634714670479, 3909214.532044840976596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975559.515789306722581, 3908528.939132893458009 ], [ 4975554.923889863304794, 3908521.647203379776329 ], [ 4975532.726576970890164, 3908535.439380587078631 ], [ 4975515.219739672727883, 3908507.729953759815544 ], [ 4975582.101175164803863, 3908465.625755193643272 ], [ 4975600.755944473668933, 3908495.158209063578397 ], [ 4975580.57619219366461, 3908507.862030642107129 ], [ 4975584.307291048578918, 3908513.695694098249078 ], [ 4975559.515789306722581, 3908528.939132893458009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975467.316207389347255, 3900997.783763751853257 ], [ 4975407.123918038792908, 3900998.390666316729039 ], [ 4975406.343580562621355, 3900956.87819039914757 ], [ 4975466.823957663960755, 3900956.271867075469345 ], [ 4975467.316207389347255, 3900997.783763751853257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975409.441961064934731, 3911562.954450891818851 ], [ 4975486.330486522056162, 3911551.093171734828502 ], [ 4975488.888336412608624, 3911567.484325184486806 ], [ 4975411.999856700189412, 3911579.345597148407251 ], [ 4975409.441961064934731, 3911562.954450891818851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975339.977322357706726, 3905884.533009510021657 ], [ 4975406.774728520773351, 3905887.21647409023717 ], [ 4975405.562050242908299, 3905917.436971264891326 ], [ 4975338.764719092287123, 3905914.753509648609906 ], [ 4975339.977322357706726, 3905884.533009510021657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975209.566750064492226, 3910888.542042333632708 ], [ 4975162.586872361600399, 3910915.393564111087471 ], [ 4975137.628252590075135, 3910871.647538281045854 ], [ 4975184.320292730815709, 3910844.795395644381642 ], [ 4975209.566750064492226, 3910888.542042333632708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975162.970881606452167, 3906562.919127495959401 ], [ 4975193.806944810785353, 3906549.508132006507367 ], [ 4975221.323626020923257, 3906611.829953680746257 ], [ 4975190.487620414234698, 3906625.24091810407117 ], [ 4975162.970881606452167, 3906562.919127495959401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975158.999500330537558, 3905384.944685734342784 ], [ 4975164.428126442246139, 3905406.075215714983642 ], [ 4975173.070924354717135, 3905403.907767504453659 ], [ 4975179.069583135657012, 3905427.952498273923993 ], [ 4975130.094517934136093, 3905439.87060065055266 ], [ 4975122.669223187491298, 3905409.268649849575013 ], [ 4975113.161860009655356, 3905411.798512981273234 ], [ 4975109.44847134873271, 3905396.861670089419931 ], [ 4975158.999500330537558, 3905384.944685734342784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975059.621663477271795, 3909428.433025911916047 ], [ 4975022.401151486672461, 3909468.777227283921093 ], [ 4974992.513805084861815, 3909441.407482171431184 ], [ 4975030.02221417799592, 3909401.063816373236477 ], [ 4975059.621663477271795, 3909428.433025911916047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974896.613031808286905, 3911329.97275163512677 ], [ 4974877.576368392445147, 3911348.141396905295551 ], [ 4974860.052535290829837, 3911329.535638014785945 ], [ 4974879.088473092764616, 3911311.731112115550786 ], [ 4974896.613031808286905, 3911329.97275163512677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974894.143588428385556, 3906077.721536807250232 ], [ 4974929.736116969957948, 3906133.868921384681016 ], [ 4974899.752622386440635, 3906152.743897319771349 ], [ 4974864.160056437365711, 3906096.596551795955747 ], [ 4974894.143588428385556, 3906077.721536807250232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974834.88811097946018, 3897381.06538783852011 ], [ 4974833.521984469145536, 3897343.921411601360887 ], [ 4974826.608454307541251, 3897344.27176061226055 ], [ 4974825.223444518633187, 3897316.595125895459205 ], [ 4974869.296248946338892, 3897314.86235582549125 ], [ 4974869.567576470784843, 3897323.237885266076773 ], [ 4974879.649483773857355, 3897322.893868551123887 ], [ 4974882.129901404492557, 3897378.974826595280319 ], [ 4974834.88811097946018, 3897381.06538783852011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974644.33949142228812, 3910504.344962964765728 ], [ 4974657.82845507375896, 3910525.491478926502168 ], [ 4974617.761521412990987, 3910550.537026343401521 ], [ 4974591.357874134555459, 3910508.973447030410171 ], [ 4974624.795355089940131, 3910487.920150680933148 ], [ 4974637.709281099960208, 3910508.701381038874388 ], [ 4974644.33949142228812, 3910504.344962964765728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974619.118182611651719, 3897832.521416818723083 ], [ 4974668.701018592342734, 3897811.500368471257389 ], [ 4974682.749993185512722, 3897843.935864860657603 ], [ 4974657.093782196752727, 3897854.808776521123946 ], [ 4974660.821505128405988, 3897863.191174259409308 ], [ 4974636.606907016597688, 3897873.338710095733404 ], [ 4974619.118182611651719, 3897832.521416818723083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974393.252429001964629, 3898586.551477537024766 ], [ 4974331.853069274686277, 3898612.283394065219909 ], [ 4974318.379398527555168, 3898580.213332331273705 ], [ 4974379.77809867169708, 3898554.8455142644234 ], [ 4974393.252429001964629, 3898586.551477537024766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974312.611459986306727, 3895811.722461299039423 ], [ 4974355.544567895121872, 3895804.888781838584691 ], [ 4974361.519515890628099, 3895842.405933737754822 ], [ 4974372.180949204601347, 3895840.606352587696165 ], [ 4974376.446281187236309, 3895868.652760673314333 ], [ 4974328.903762656264007, 3895875.841434405185282 ], [ 4974327.765945306047797, 3895868.556595817673951 ], [ 4974311.918201040476561, 3895871.074215792119503 ], [ 4974306.512821530923247, 3895836.835364872589707 ], [ 4974316.309385449625552, 3895835.398184141609818 ], [ 4974312.611459986306727, 3895811.722461299039423 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974254.19482132140547, 3896658.936959052924067 ], [ 4974312.703054873272777, 3896640.845904113724828 ], [ 4974321.003045817837119, 3896667.807892323937267 ], [ 4974308.322064932435751, 3896671.424156452063471 ], [ 4974318.911277591250837, 3896706.037388485390693 ], [ 4974275.679366075433791, 3896719.060744038317353 ], [ 4974272.816920475102961, 3896709.95185318030417 ], [ 4974260.135247886180878, 3896713.932268489152193 ], [ 4974254.697665536776185, 3896696.079186833929271 ], [ 4974264.784826770424843, 3896693.186041155830026 ], [ 4974254.19482132140547, 3896658.936959052924067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974085.38374649733305, 3895495.938699072692543 ], [ 4974035.82713542226702, 3895501.667414066381752 ], [ 4974029.028959999792278, 3895443.02921590115875 ], [ 4974073.975383446551859, 3895438.019687688909471 ], [ 4974075.111857143230736, 3895446.032769879791886 ], [ 4974086.924927936866879, 3895444.599468354135752 ], [ 4974088.621758957393467, 3895460.624501559417695 ], [ 4974081.418985275551677, 3895461.33860373403877 ], [ 4974085.38374649733305, 3895495.938699072692543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973937.172286694869399, 3898953.060984277632087 ], [ 4973945.472644820809364, 3898979.658764703664929 ], [ 4973896.19195557013154, 3898994.855664181523025 ], [ 4973887.891553459689021, 3898968.257898726500571 ], [ 4973937.172286694869399, 3898953.060984277632087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973851.243052961304784, 3905478.119566482491791 ], [ 4973848.051409817300737, 3905490.493796395603567 ], [ 4973867.621770651079714, 3905495.629953905008733 ], [ 4973861.820784454233944, 3905517.102365404367447 ], [ 4973806.562939902767539, 3905502.79309694794938 ], [ 4973815.267566286958754, 3905468.945876359473914 ], [ 4973851.243052961304784, 3905478.119566482491791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973850.040496272034943, 3894908.50050910608843 ], [ 4973849.119319568388164, 3894937.629057028330863 ], [ 4973835.869304020889103, 3894937.239005197305232 ], [ 4973834.355643247254193, 3894974.741371052339673 ], [ 4973792.878007992170751, 3894973.203750696964562 ], [ 4973793.188841839320958, 3894961.552217836491764 ], [ 4973785.411247638054192, 3894961.537017053924501 ], [ 4973786.314564013853669, 3894941.511666278354824 ], [ 4973790.059334386140108, 3894941.518985023256391 ], [ 4973791.568664893507957, 3894906.201385296415538 ], [ 4973850.040496272034943, 3894908.50050910608843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973791.548225125297904, 3909352.368519011884928 ], [ 4973816.918759631924331, 3909334.575649566482753 ], [ 4973845.916618919931352, 3909375.779378581792116 ], [ 4973820.54610395245254, 3909393.572221101261675 ], [ 4973791.548225125297904, 3909352.368519011884928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973742.284232516773045, 3905389.42250362271443 ], [ 4973731.562621828168631, 3905423.994070077780634 ], [ 4973707.389296164736152, 3905416.664235972799361 ], [ 4973703.044503041543067, 3905429.764494777657092 ], [ 4973681.173329479061067, 3905423.167441427242011 ], [ 4973686.388349182903767, 3905406.791692278813571 ], [ 4973669.122176899574697, 3905401.296030289959162 ], [ 4973678.685531958006322, 3905369.999364585150033 ], [ 4973742.284232516773045, 3905389.42250362271443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973725.7589595252648, 3896301.781299433205277 ], [ 4973739.216003067791462, 3896343.318356382194906 ], [ 4973686.758567001670599, 3896360.330070569179952 ], [ 4973673.013406566344202, 3896318.792477712035179 ], [ 4973725.7589595252648, 3896301.781299433205277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973402.06349828094244, 3904430.001691078301519 ], [ 4973377.229925135150552, 3904465.638389308005571 ], [ 4973364.576756177470088, 3904456.874693068675697 ], [ 4973359.090033574961126, 3904464.874944961164147 ], [ 4973328.89475024305284, 3904444.06091747013852 ], [ 4973359.215011493302882, 3904400.423922332469374 ], [ 4973402.06349828094244, 3904430.001691078301519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973372.552646532654762, 3910735.620806873776019 ], [ 4973318.057454951107502, 3910778.846948172431439 ], [ 4973298.52822969481349, 3910754.412205014843494 ], [ 4973353.023439182899892, 3910711.186024765018374 ], [ 4973372.552646532654762, 3910735.620806873776019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973143.343620724976063, 3904349.756053764373064 ], [ 4973106.446293343789876, 3904369.712055468931794 ], [ 4973094.680751147679985, 3904348.569731798488647 ], [ 4973101.310821584425867, 3904344.941209639888257 ], [ 4973087.250023485161364, 3904319.424884033855051 ], [ 4973122.418245807290077, 3904300.193781550973654 ], [ 4973130.165018766187131, 3904314.773992503993213 ], [ 4973125.552757215686142, 3904317.314008401706815 ], [ 4973143.343620724976063, 3904349.756053764373064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973094.858127370476723, 3903361.045973140746355 ], [ 4973157.712040676735342, 3903321.47700447589159 ], [ 4973176.660330940037966, 3903351.372368334326893 ], [ 4973113.806459400802851, 3903390.941293396987021 ], [ 4973094.858127370476723, 3903361.045973140746355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973039.595621317625046, 3911413.356551122386009 ], [ 4973009.010597853921354, 3911449.346776660531759 ], [ 4972993.203016377054155, 3911435.843405302148312 ], [ 4973003.301350804977119, 3911424.210600399877876 ], [ 4972975.709486729465425, 3911400.85295026563108 ], [ 4972996.483344323933125, 3911376.86017739167437 ], [ 4973039.595621317625046, 3911413.356551122386009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972752.65451390389353, 3912423.274322365876287 ], [ 4972725.537339654751122, 3912453.081274064257741 ], [ 4972707.14563995692879, 3912436.295911299996078 ], [ 4972733.974240694195032, 3912406.85252155456692 ], [ 4972752.65451390389353, 3912423.274322365876287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972110.569447108544409, 3907928.653546175919473 ], [ 4972123.761373814195395, 3907956.352567091584206 ], [ 4972096.384186516515911, 3907969.409504441544414 ], [ 4972083.191549188457429, 3907942.074627630412579 ], [ 4972110.569447108544409, 3907928.653546175919473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971769.186786591075361, 3906348.404878848232329 ], [ 4971794.738523231819272, 3906388.143300066702068 ], [ 4971769.081358920782804, 3906404.480982974171638 ], [ 4971743.528915754519403, 3906365.106716313865036 ], [ 4971769.186786591075361, 3906348.404878848232329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971748.130055650137365, 3906061.793576474767178 ], [ 4971721.901516687124968, 3906075.581305559724569 ], [ 4971699.520819483324885, 3906033.664124798495322 ], [ 4971725.749387754127383, 3906019.876374223735183 ], [ 4971748.130055650137365, 3906061.793576474767178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971294.586802972480655, 3903761.818811553996056 ], [ 4971315.5600641136989, 3903787.711195240262896 ], [ 4971293.930180803872645, 3903805.149206841830164 ], [ 4971272.956912523135543, 3903779.256839766632766 ], [ 4971294.586802972480655, 3903761.818811553996056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971241.141707222908735, 3893323.565963814966381 ], [ 4971278.040582925081253, 3893310.161831735167652 ], [ 4971285.492626572959125, 3893330.566922737285495 ], [ 4971248.593775102868676, 3893343.971044748555869 ], [ 4971241.141707222908735, 3893323.565963814966381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971207.538388758897781, 3895748.968298967462033 ], [ 4971249.307081229053438, 3895748.317697333637625 ], [ 4971249.826967667788267, 3895778.541412309743464 ], [ 4971208.345695697702467, 3895779.556676718406379 ], [ 4971207.538388758897781, 3895748.968298967462033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971149.975037817843258, 3911387.20409578550607 ], [ 4971099.27249029558152, 3911406.044882832095027 ], [ 4971073.777199235744774, 3911337.904727906454355 ], [ 4971112.379953465424478, 3911323.775161755271256 ], [ 4971120.114285850897431, 3911344.545095026958734 ], [ 4971132.213505525141954, 3911340.197961926460266 ], [ 4971149.975037817843258, 3911387.20409578550607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970977.494838911108673, 3898803.590891723055393 ], [ 4971018.689485698007047, 3898799.297575753647834 ], [ 4971020.103953720070422, 3898813.137140398845077 ], [ 4971060.722557170316577, 3898808.842822192702442 ], [ 4971058.454852263443172, 3898789.175591971259564 ], [ 4971077.75611038506031, 3898787.026585405692458 ], [ 4971078.034002891741693, 3898792.489052718039602 ], [ 4971101.080169793218374, 3898789.982875485904515 ], [ 4971109.28746810182929, 3898868.286081592552364 ], [ 4971068.956963685341179, 3898872.580860393121839 ], [ 4971067.255856557749212, 3898858.012501063290983 ], [ 4971027.213360810652375, 3898862.307876300998032 ], [ 4971028.913140608929098, 3898877.604490961879492 ], [ 4970985.701819096691906, 3898882.258189661893994 ], [ 4970977.494838911108673, 3898803.590891723055393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970965.691634696908295, 3903938.176130246371031 ], [ 4970980.05002080090344, 3903959.686442406848073 ], [ 4970955.254927417263389, 3903976.026476759463549 ], [ 4970940.60856759455055, 3903954.515645157080144 ], [ 4970965.691634696908295, 3903938.176130246371031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970739.299694803543389, 3894424.856173341162503 ], [ 4970712.488899612799287, 3894436.094834744464606 ], [ 4970715.06942152697593, 3894442.653908422216773 ], [ 4970681.627814639359713, 3894456.793434146791697 ], [ 4970665.853211916051805, 3894419.259125397074968 ], [ 4970686.321217872202396, 3894410.921786190476269 ], [ 4970680.585361524485052, 3894397.074329591821879 ], [ 4970691.82860616222024, 3894392.361326052807271 ], [ 4970696.99100679717958, 3894404.751213459298015 ], [ 4970725.819622918963432, 3894392.787991969846189 ], [ 4970739.299694803543389, 3894424.856173341162503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970666.115379333496094, 3898820.494859012775123 ], [ 4970678.151186974719167, 3898853.652832810301334 ], [ 4970600.910391326993704, 3898881.913052180316299 ], [ 4970588.874501250684261, 3898848.755112422630191 ], [ 4970666.115379333496094, 3898820.494859012775123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970570.635668673552573, 3913332.426009733695537 ], [ 4970546.420498269610107, 3913351.316498533356935 ], [ 4970508.512853818014264, 3913302.088956779334694 ], [ 4970542.240874253213406, 3913275.933220421895385 ], [ 4970564.928558805026114, 3913305.105529104359448 ], [ 4970555.127199718728662, 3913312.734339002519846 ], [ 4970570.635668673552573, 3913332.426009733695537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970505.533237644471228, 3904405.237505052238703 ], [ 4970526.186746097169816, 3904448.607002072501928 ], [ 4970491.890458784997463, 3904464.565915515180677 ], [ 4970481.850648241117597, 3904443.427900620736182 ], [ 4970484.444933754391968, 3904441.976128108333796 ], [ 4970474.118485161103308, 3904420.109328526537865 ], [ 4970505.533237644471228, 3904405.237505052238703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970069.61914752330631, 3897715.726764130406082 ], [ 4970039.352913825772703, 3897728.416356184519827 ], [ 4970021.85844053607434, 3897686.873800605069846 ], [ 4970052.124712647870183, 3897674.184189170133322 ], [ 4970069.61914752330631, 3897715.726764130406082 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970042.547621773555875, 3898983.214217114262283 ], [ 4970072.202681923285127, 3898989.094149693846703 ], [ 4970074.235990628600121, 3898979.630458941683173 ], [ 4970096.405280786566436, 3898984.040300665423274 ], [ 4970084.780774023383856, 3899041.187613885849714 ], [ 4970032.957180454395711, 3899030.533730479422957 ], [ 4970042.547621773555875, 3898983.214217114262283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969916.400198004208505, 3902480.095209774095565 ], [ 4969913.438653524965048, 3902525.242081976961344 ], [ 4969901.920852129347622, 3902524.492966578342021 ], [ 4969899.848317575640976, 3902555.804475124925375 ], [ 4969866.734179416671395, 3902553.923895681276917 ], [ 4969872.361230959184468, 3902467.99917667452246 ], [ 4969894.532947381027043, 3902469.49582322826609 ], [ 4969893.940513022243977, 3902478.598023905884475 ], [ 4969916.400198004208505, 3902480.095209774095565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969843.70123561937362, 3900639.647008697967976 ], [ 4969842.194752173498273, 3900676.421467542648315 ], [ 4969743.70607228949666, 3900672.602276534773409 ], [ 4969745.212421160191298, 3900635.827812258619815 ], [ 4969843.70123561937362, 3900639.647008697967976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969833.165422365069389, 3905989.078036013990641 ], [ 4969861.097663637250662, 3905988.036157167050987 ], [ 4969861.922620570287108, 3906009.521419979631901 ], [ 4969896.478136371821165, 3906008.127429065760225 ], [ 4969897.58111640997231, 3906035.075172269716859 ], [ 4969835.093444188125432, 3906037.511038679629564 ], [ 4969833.165422365069389, 3905989.078036013990641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969528.20315473806113, 3912736.266853516921401 ], [ 4969559.533683215267956, 3912762.540768164675683 ], [ 4969539.628225612454116, 3912786.173639736603945 ], [ 4969508.585573676042259, 3912759.900265031028539 ], [ 4969528.20315473806113, 3912736.266853516921401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968923.847129359841347, 3899007.424060469958931 ], [ 4968959.285985989496112, 3899000.204339221585542 ], [ 4968968.420389736071229, 3899046.465082743670791 ], [ 4968922.321800186298788, 3899055.486533989664167 ], [ 4968917.469454733654857, 3899030.717078112997115 ], [ 4968928.129255617968738, 3899028.915334366261959 ], [ 4968923.847129359841347, 3899007.424060469958931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968509.908383099362254, 3900023.708800194319338 ], [ 4968522.055179382674396, 3899994.963864103425294 ], [ 4968564.360520607791841, 3900012.880692034028471 ], [ 4968551.925682470202446, 3900041.625102443154901 ], [ 4968509.908383099362254, 3900023.708800194319338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967930.323673231527209, 3895779.126351119950414 ], [ 4967938.345443441532552, 3895804.265212411060929 ], [ 4967906.642877811565995, 3895814.041663413401693 ], [ 4967898.621080916374922, 3895788.90281143784523 ], [ 4967930.323673231527209, 3895779.126351119950414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967912.184921427629888, 3902410.268753785640001 ], [ 4967895.46316603384912, 3902421.163651020731777 ], [ 4967885.985130574554205, 3902406.581967576872557 ], [ 4967852.2536710370332, 3902428.371305704116821 ], [ 4967834.158961407840252, 3902400.665989214088768 ], [ 4967893.837672869674861, 3902362.171631196048111 ], [ 4967911.3582848822698, 3902388.783597939182073 ], [ 4967902.132828692905605, 3902394.593675449956208 ], [ 4967912.184921427629888, 3902410.268753785640001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967847.584947106428444, 3905286.79296066518873 ], [ 4967818.755399730987847, 3905306.770216018427163 ], [ 4967800.085445454344153, 3905279.79213678650558 ], [ 4967828.915007787756622, 3905259.81486174184829 ], [ 4967847.584947106428444, 3905286.79296066518873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967590.345090414397418, 3896158.689262595493346 ], [ 4967577.666664018295705, 3896161.216315536294132 ], [ 4967574.523883871734142, 3896146.281590244732797 ], [ 4967608.237238073721528, 3896139.42125008162111 ], [ 4967614.520874868147075, 3896170.383094155229628 ], [ 4967593.486604763194919, 3896174.352246668655425 ], [ 4967590.345090414397418, 3896158.689262595493346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967514.037569082342088, 3899491.074205496814102 ], [ 4967486.089901144616306, 3899497.216327665839344 ], [ 4967474.089275494217873, 3899441.48376489803195 ], [ 4967502.036998568102717, 3899435.341630453709513 ], [ 4967514.037569082342088, 3899491.074205496814102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967156.359250042587519, 3905878.773504857905209 ], [ 4967243.661163706332445, 3905846.51507862797007 ], [ 4967255.412565002217889, 3905878.214645362924784 ], [ 4967168.398681744001806, 3905910.473526092246175 ], [ 4967156.359250042587519, 3905878.773504857905209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967093.57445808686316, 3896431.66285503283143 ], [ 4967094.417473479174078, 3896444.044697120320052 ], [ 4967089.808161990717053, 3896444.400965964887291 ], [ 4967088.96203978639096, 3896433.839766415767372 ], [ 4967068.509105765260756, 3896434.897284886334091 ], [ 4967067.110472595319152, 3896410.498222019989043 ], [ 4967098.222898895852268, 3896408.366492791101336 ], [ 4967099.623988287523389, 3896431.309043334331363 ], [ 4967093.57445808686316, 3896431.66285503283143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966976.060874814167619, 3896765.369515938684344 ], [ 4967014.381315778940916, 3896758.880397140514106 ], [ 4967025.786949700675905, 3896826.99205591250211 ], [ 4966991.788427043706179, 3896832.760253514628857 ], [ 4966988.079855903983116, 3896811.634424951393157 ], [ 4966984.046067777089775, 3896812.355820811819285 ], [ 4966976.060874814167619, 3896765.369515938684344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966454.098479837179184, 3905517.456841479055583 ], [ 4966473.332027276977897, 3905552.445829460863024 ], [ 4966440.764785584062338, 3905569.869353481102735 ], [ 4966421.819154072552919, 3905534.880872475448996 ], [ 4966454.098479837179184, 3905517.456841479055583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966464.631253669038415, 3898400.175328965298831 ], [ 4966471.179799570702016, 3898445.33845997788012 ], [ 4966431.999053101986647, 3898451.098649395629764 ], [ 4966431.145393437705934, 3898444.907005122397095 ], [ 4966412.707108862698078, 3898447.789057636633515 ], [ 4966408.720076323486865, 3898420.836741977371275 ], [ 4966437.529619830660522, 3898416.515600760001689 ], [ 4966435.821688250638545, 3898404.496441096067429 ], [ 4966464.631253669038415, 3898400.175328965298831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966277.608605397865176, 3896909.842297390569001 ], [ 4966283.87223953474313, 3896953.548345857765526 ], [ 4966234.893642999231815, 3896960.748926402069628 ], [ 4966228.341892870143056, 3896917.042407183442265 ], [ 4966277.608605397865176, 3896909.842297390569001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965968.63488382846117, 3903086.068578219041228 ], [ 4965993.108865046873689, 3903088.29410013044253 ], [ 4965990.770535003393888, 3903109.045672289095819 ], [ 4965966.297178384847939, 3903106.456022507976741 ], [ 4965968.63488382846117, 3903086.068578219041228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965898.974366161972284, 3899428.26126588601619 ], [ 4965920.279931396245956, 3899432.666228936053813 ], [ 4965915.052768371067941, 3899458.510783682577312 ], [ 4965893.459211889654398, 3899454.105346329975873 ], [ 4965898.974366161972284, 3899428.26126588601619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965413.60469476506114, 3899295.280116515234113 ], [ 4965482.113343499600887, 3899318.697100203484297 ], [ 4965475.166895705275238, 3899339.44108690880239 ], [ 4965513.162909383885562, 3899352.612317990511656 ], [ 4965503.902759573422372, 3899379.178569764830172 ], [ 4965470.511973128654063, 3899367.835578545928001 ], [ 4965456.909538262523711, 3899407.867518266662955 ], [ 4965421.503883954137564, 3899395.793013566173613 ], [ 4965439.734818048775196, 3899343.388241078704596 ], [ 4965401.738157357089221, 3899330.581243019085377 ], [ 4965413.60469476506114, 3899295.280116515234113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965400.672237553633749, 3900330.116994250100106 ], [ 4965430.632176605053246, 3900325.432531888131052 ], [ 4965438.04478547628969, 3900371.325142212677747 ], [ 4965407.796895223669708, 3900376.009123266208917 ], [ 4965400.672237553633749, 3900330.116994250100106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965307.607335207983851, 3893149.329215983860195 ], [ 4965324.93681573215872, 3893122.047961707692593 ], [ 4965393.141527079045773, 3893164.762935768347234 ], [ 4965375.812004658393562, 3893192.044146762695163 ], [ 4965307.607335207983851, 3893149.329215983860195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965295.82009282335639, 3897529.784954259172082 ], [ 4965292.317774189636111, 3897557.817205318715423 ], [ 4965302.397076724097133, 3897558.926111457869411 ], [ 4965299.477977457456291, 3897582.589760941918939 ], [ 4965286.519567077979445, 3897580.747879405040294 ], [ 4965283.598098050802946, 3897605.868046021554619 ], [ 4965253.936299992725253, 3897602.542303078342229 ], [ 4965257.148157266899943, 3897575.966089774854481 ], [ 4965254.844505151733756, 3897575.598188586998731 ], [ 4965260.686805031262338, 3897525.72197945555672 ], [ 4965295.82009282335639, 3897529.784954259172082 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965187.979999423027039, 3894604.920973712112755 ], [ 4965221.38099742308259, 3894613.714685149025172 ], [ 4965214.713867906481028, 3894639.192818284966052 ], [ 4965181.312899430282414, 3894630.39911499293521 ], [ 4965187.979999423027039, 3894604.920973712112755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965101.096669871360064, 3897184.999888160265982 ], [ 4965127.306091599166393, 3897186.135047204326838 ], [ 4965127.00022498704493, 3897197.058437688741833 ], [ 4965149.465772585012019, 3897197.823377716820687 ], [ 4965147.672149366699159, 3897237.874711621087044 ], [ 4965104.469921867363155, 3897235.983544120565057 ], [ 4965105.66483514662832, 3897209.768157769460231 ], [ 4965100.192171030677855, 3897209.759229441173375 ], [ 4965101.096669871360064, 3897184.999888160265982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964989.704066918231547, 3901562.02668494079262 ], [ 4964995.2463753009215, 3901518.704163811169565 ], [ 4965037.860408957116306, 3901523.871388675179332 ], [ 4965032.318032903596759, 3901567.193901150021702 ], [ 4964989.704066918231547, 3901562.02668494079262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964952.780885796993971, 3904078.475158247631043 ], [ 4964960.497798866592348, 3904114.172563442029059 ], [ 4964947.8227793937549, 3904117.064999119378626 ], [ 4964950.967847972176969, 3904130.907098008785397 ], [ 4964920.721313769929111, 3904137.412289049010724 ], [ 4964909.859854660928249, 3904087.508670366369188 ], [ 4964952.780885796993971, 3904078.475158247631043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964621.924335299991071, 3902286.778955998364836 ], [ 4964626.305165374651551, 3902248.916427837219089 ], [ 4964646.172323425300419, 3902251.133285517804325 ], [ 4964647.338359025307, 3902242.396030377596617 ], [ 4964671.236665898002684, 3902244.983547103591263 ], [ 4964665.689143409952521, 3902291.947452168911695 ], [ 4964621.924335299991071, 3902286.778955998364836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964606.964533869177103, 3900135.107559711672366 ], [ 4964600.919982044026256, 3900132.913027817383409 ], [ 4964609.016392227262259, 3900112.898922422435135 ], [ 4964651.03849355969578, 3900129.352609840687364 ], [ 4964639.759910692460835, 3900158.10069236997515 ], [ 4964646.379872425459325, 3900160.660292411223054 ], [ 4964638.861806243658066, 3900179.218799599446356 ], [ 4964596.264356190338731, 3900162.400072411168367 ], [ 4964606.964533869177103, 3900135.107559711672366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964423.692555485293269, 3901811.63333436800167 ], [ 4964441.818680061027408, 3901822.222248037345707 ], [ 4964447.305036962032318, 3901813.12779953610152 ], [ 4964469.746834876015782, 3901826.272583682555705 ], [ 4964443.468173186294734, 3901871.018407252151519 ], [ 4964402.612890646792948, 3901846.920152688398957 ], [ 4964423.692555485293269, 3901811.63333436800167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964291.179783592931926, 3902375.45925537776202 ], [ 4964334.075317558832467, 3902383.902996727731079 ], [ 4964332.623161603696644, 3902391.54741501621902 ], [ 4964359.684466235339642, 3902397.052772080525756 ], [ 4964352.136266738176346, 3902434.91026638681069 ], [ 4964282.179534623399377, 3902420.961189582943916 ], [ 4964291.179783592931926, 3902375.45925537776202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964205.651545679196715, 3892461.163307839073241 ], [ 4964210.596135694533587, 3892431.676790134981275 ], [ 4964243.141136481426656, 3892437.190744766965508 ], [ 4964238.196511760354042, 3892466.677256579510868 ], [ 4964205.651545679196715, 3892461.163307839073241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962986.989750727079809, 3892868.160245142411441 ], [ 4963023.023698247037828, 3892852.922806140501052 ], [ 4963040.532717554830015, 3892894.096559489611536 ], [ 4963004.498815188184381, 3892909.333975384477526 ], [ 4962986.989750727079809, 3892868.160245142411441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962685.208585038781166, 3895961.697638197802007 ], [ 4962699.893434964120388, 3895965.361571210902184 ], [ 4962707.139006419107318, 3895936.606526769232005 ], [ 4962746.874535621143878, 3895946.499329950194806 ], [ 4962743.686891905963421, 3895958.874806929379702 ], [ 4962753.189114516600966, 3895961.074252294842154 ], [ 4962745.362907506525517, 3895992.741423295345157 ], [ 4962733.269387152045965, 3895989.809722889680415 ], [ 4962729.212554235942662, 3896005.461024716496468 ], [ 4962677.384141835384071, 3895992.272443553898484 ], [ 4962685.208585038781166, 3895961.697638197802007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962558.16174953058362, 3894285.77971208980307 ], [ 4962539.163356223143637, 3894276.647301358170807 ], [ 4962533.094950026832521, 3894289.018366907723248 ], [ 4962512.657336591742933, 3894279.155506822280586 ], [ 4962547.626359585672617, 3894205.65515168197453 ], [ 4962587.351069835945964, 3894224.286783614661545 ], [ 4962558.16174953058362, 3894285.77971208980307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962179.459774373099208, 3896108.031078869942576 ], [ 4962181.49550764542073, 3896095.289650930091739 ], [ 4962170.839989747852087, 3896093.816910509951413 ], [ 4962175.49697086866945, 3896062.144746185280383 ], [ 4962188.74437163118273, 3896063.985564966220409 ], [ 4962190.781776323914528, 3896050.151752543635666 ], [ 4962244.923021952621639, 3896057.880982533097267 ], [ 4962240.847049545496702, 3896086.276856610551476 ], [ 4962224.144209218211472, 3896083.702486109454185 ], [ 4962219.777441008016467, 3896113.918567346874624 ], [ 4962179.459774373099208, 3896108.031078869942576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961973.340716421604156, 3899829.12418714677915 ], [ 4961943.89344563242048, 3899875.688247660174966 ], [ 4961920.586968333460391, 3899861.087763295508921 ], [ 4961934.156346845440567, 3899839.26048975251615 ], [ 4961904.231731716543436, 3899820.644571078941226 ], [ 4961920.109582868404686, 3899795.907741575036198 ], [ 4961973.340716421604156, 3899829.12418714677915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961835.438967774622142, 3899411.98661390459165 ], [ 4961813.276381370611489, 3899402.485775591805577 ], [ 4961828.306301870383322, 3899367.187846311833709 ], [ 4961850.468912126496434, 3899376.688696820754558 ], [ 4961835.438967774622142, 3899411.98661390459165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961690.622443604283035, 3893249.606449648272246 ], [ 4961689.431245066225529, 3893275.457798664923757 ], [ 4961696.34454792458564, 3893275.832327499054372 ], [ 4961695.146223437972367, 3893306.417339746840298 ], [ 4961657.12227759603411, 3893304.903646718245 ], [ 4961656.831464341841638, 3893306.723853380884975 ], [ 4961643.292950038798153, 3893305.975250645074993 ], [ 4961645.685106562450528, 3893247.718245479743928 ], [ 4961690.622443604283035, 3893249.606449648272246 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961665.694605620577931, 3899865.072831090539694 ], [ 4961649.814840184524655, 3899891.266329319681972 ], [ 4961614.997258639894426, 3899870.458597009070218 ], [ 4961630.877002349123359, 3899844.265078529715538 ], [ 4961665.694605620577931, 3899865.072831090539694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961636.537032216787338, 3896076.987161768134683 ], [ 4961644.660899349488318, 3896038.037528900429606 ], [ 4961694.478326203301549, 3896047.943928819149733 ], [ 4961686.353842062875628, 3896087.257675387896597 ], [ 4961636.537032216787338, 3896076.987161768134683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961452.167972085997462, 3897630.087280878797174 ], [ 4961422.222600968554616, 3897623.488175716251135 ], [ 4961419.612368774600327, 3897635.500554072670639 ], [ 4961399.45731199067086, 3897630.736755394842476 ], [ 4961409.313998155295849, 3897588.148308409843594 ], [ 4961459.126457815058529, 3897599.510796623304486 ], [ 4961452.167972085997462, 3897630.087280878797174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961046.653365750797093, 3910246.989049115683883 ], [ 4961059.380646156147122, 3910206.589201326947659 ], [ 4961115.49491015356034, 3910223.78663153713569 ], [ 4961106.817531089298427, 3910251.083692126441747 ], [ 4961092.717145879752934, 3910246.693188369739801 ], [ 4961081.724760949611664, 3910281.997738813981414 ], [ 4961057.265026311390102, 3910274.314704934600741 ], [ 4961063.91898672375828, 3910252.476616445463151 ], [ 4961046.653365750797093, 3910246.989049115683883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960861.574476770125329, 3901040.38062401348725 ], [ 4960879.790040455758572, 3900991.614003422670066 ], [ 4960932.752520262263715, 3901010.991061971522868 ], [ 4960914.824867155402899, 3901059.758072281256318 ], [ 4960861.574476770125329, 3901040.38062401348725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960422.932716735638678, 3899872.700186167377979 ], [ 4960399.250952394679189, 3899917.45368920546025 ], [ 4960312.914793835952878, 3899872.175932549405843 ], [ 4960322.444943905808032, 3899854.347408349160105 ], [ 4960359.569715046323836, 3899873.700301131699234 ], [ 4960373.721252202056348, 3899846.775266656652093 ], [ 4960422.932716735638678, 3899872.700186167377979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960308.671318599022925, 3897242.788077542092651 ], [ 4960300.838309939950705, 3897281.374431588687003 ], [ 4960280.105664493516088, 3897277.338893942069262 ], [ 4960287.938644539564848, 3897238.752533947583288 ], [ 4960308.671318599022925, 3897242.788077542092651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960266.62753183953464, 3900212.570415614638478 ], [ 4960300.894571557641029, 3900216.261484407819808 ], [ 4960293.312345079146326, 3900281.065648628398776 ], [ 4960258.757384902797639, 3900277.374171353876591 ], [ 4960266.62753183953464, 3900212.570415614638478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960206.603265663608909, 3899500.244800168089569 ], [ 4960210.673414918594062, 3899474.033335778862238 ], [ 4960250.986457547172904, 3899479.917882994748652 ], [ 4960244.587885859422386, 3899522.87594607193023 ], [ 4960212.049598973244429, 3899518.095067655202001 ], [ 4960214.665445598773658, 3899501.713007003068924 ], [ 4960206.603265663608909, 3899500.244800168089569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960171.067240698263049, 3902161.986167473718524 ], [ 4960163.244278287515044, 3902194.746597151271999 ], [ 4960124.091957033611834, 3902185.586669279728085 ], [ 4960125.829327999614179, 3902179.034830813296139 ], [ 4960107.404816679656506, 3902174.638617488089949 ], [ 4960113.489819464273751, 3902148.794140828773379 ], [ 4960171.067240698263049, 3902161.986167473718524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960108.229743650183082, 3892837.263790641911328 ], [ 4960117.446782195940614, 3892838.369500311091542 ], [ 4960118.323135781101882, 3892829.995808978565037 ], [ 4960135.029251775704324, 3892831.84061040263623 ], [ 4960134.150786408223212, 3892841.670812650118023 ], [ 4960152.296775878407061, 3892843.881836066022515 ], [ 4960148.209892939776182, 3892881.017042738385499 ], [ 4960129.775320259854198, 3892879.169733289629221 ], [ 4960129.18967888969928, 3892885.723201747518033 ], [ 4960103.266572857275605, 3892882.772695895284414 ], [ 4960108.229743650183082, 3892837.263790641911328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959986.406439025886357, 3893612.317993873730302 ], [ 4959978.667272409424186, 3893585.361313694622368 ], [ 4960032.271059772931039, 3893570.145180608611554 ], [ 4960043.163224180229008, 3893608.030289220158011 ], [ 4960012.614827388897538, 3893616.725315766409039 ], [ 4960009.749842482618988, 3893605.797321388032287 ], [ 4959986.406439025886357, 3893612.317993873730302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959845.15262624528259, 3906516.160165822599083 ], [ 4959879.728933933191001, 3906499.459797660354525 ], [ 4959898.102331924252212, 3906537.35590459825471 ], [ 4959834.424775257706642, 3906567.851447315886617 ], [ 4959816.625610773451626, 3906531.048602294176817 ], [ 4959826.422199035063386, 3906526.328954024240375 ], [ 4959820.967112331651151, 3906515.397174990270287 ], [ 4959840.272369880229235, 3906505.957471782341599 ], [ 4959845.15262624528259, 3906516.160165822599083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959783.115069126710296, 3907210.106108146719635 ], [ 4959822.500018335878849, 3907252.766033574938774 ], [ 4959785.019854219630361, 3907287.304773787036538 ], [ 4959745.34696894325316, 3907244.644489891827106 ], [ 4959783.115069126710296, 3907210.106108146719635 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959612.237740677781403, 3898630.575827078428119 ], [ 4959671.278661901131272, 3898632.844937158748507 ], [ 4959670.071931941434741, 3898671.076847915537655 ], [ 4959635.511176633648574, 3898669.935079300776124 ], [ 4959635.20807689242065, 3898680.494412621017545 ], [ 4959610.439465589821339, 3898679.730792096350342 ], [ 4959612.237740677781403, 3898630.575827078428119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959477.296378822997212, 3907237.343298162799329 ], [ 4959490.786995024420321, 3907266.857166938949376 ], [ 4959459.382737560197711, 3907281.013629924505949 ], [ 4959445.892094039358199, 3907251.499776671640575 ], [ 4959477.296378822997212, 3907237.343298162799329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959228.445550395175815, 3901385.767782038077712 ], [ 4959227.24830993078649, 3901417.809570334851742 ], [ 4959212.273351461626589, 3901417.424283353611827 ], [ 4959211.979703914374113, 3901421.429303622804582 ], [ 4959164.751427717506886, 3901419.906113168224692 ], [ 4959165.053801116533577, 3901409.71088692964986 ], [ 4959144.319551665335894, 3901408.953383018728346 ], [ 4959145.219975026324391, 3901383.101390467956662 ], [ 4959228.445550395175815, 3901385.767782038077712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959222.638552497141063, 3898769.120204415638 ], [ 4959263.822586399503052, 3898770.99906857451424 ], [ 4959263.232130575925112, 3898781.193870223592967 ], [ 4959276.76795163191855, 3898781.94127673888579 ], [ 4959274.986783815547824, 3898819.44413535669446 ], [ 4959220.267020634375513, 3898816.817869147285819 ], [ 4959222.638552497141063, 3898769.120204415638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959032.992372447624803, 3899066.347084687557071 ], [ 4959069.296103433705866, 3899056.566633700858802 ], [ 4959077.891460739076138, 3899088.622164414729923 ], [ 4959041.299755155108869, 3899098.402199026662856 ], [ 4959032.992372447624803, 3899066.347084687557071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958930.683869801461697, 3905067.803972278721631 ], [ 4958953.103667286224663, 3905096.601789150387049 ], [ 4958890.551094708032906, 3905144.579424577299505 ], [ 4958860.082933703437448, 3905105.574717842973769 ], [ 4958884.297280861996114, 3905086.673793371301144 ], [ 4958888.321448244154453, 3905091.777267230674624 ], [ 4958912.535317357629538, 3905073.240498920436949 ], [ 4958916.846921620890498, 3905078.708511132281274 ], [ 4958930.683869801461697, 3905067.803972278721631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958767.250016899779439, 3906217.502213432919234 ], [ 4958783.347612104378641, 3906236.823664176743478 ], [ 4958767.780645339749753, 3906249.910659364424646 ], [ 4958751.683555015362799, 3906230.225086987018585 ], [ 4958767.250016899779439, 3906217.502213432919234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958629.832009522244334, 3907303.515361938159913 ], [ 4958609.944809205830097, 3907318.052973507903516 ], [ 4958591.265000415034592, 3907292.537784638814628 ], [ 4958610.864282388240099, 3907277.999759138561785 ], [ 4958629.832009522244334, 3907303.515361938159913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958597.136070772074163, 3897679.131712947506458 ], [ 4958605.530434327200055, 3897649.28474803827703 ], [ 4958644.97538024559617, 3897660.263484204653651 ], [ 4958636.58046980202198, 3897690.474565915763378 ], [ 4958597.136070772074163, 3897679.131712947506458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958281.525657125748694, 3900345.218422703444958 ], [ 4958342.291430275887251, 3900347.122867215890437 ], [ 4958340.494578707963228, 3900397.006226733326912 ], [ 4958315.151512615382671, 3900396.243004193063825 ], [ 4958315.752622839994729, 3900378.037322351243347 ], [ 4958291.849543252959847, 3900377.276107742451131 ], [ 4958291.846532163210213, 3900379.460884878411889 ], [ 4958280.614995322190225, 3900379.081277547869831 ], [ 4958281.525657125748694, 3900345.218422703444958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958107.754440215416253, 3898532.340388861019164 ], [ 4958098.507324356585741, 3898554.539628616999835 ], [ 4958103.688698544166982, 3898556.731511283200234 ], [ 4958092.129446381703019, 3898584.753660534042865 ], [ 4958080.615123985335231, 3898580.004192769061774 ], [ 4958071.657064532861114, 3898601.475578776095062 ], [ 4958044.598134676925838, 3898590.514628904871643 ], [ 4958074.362986518070102, 3898518.457688255235553 ], [ 4958107.754440215416253, 3898532.340388861019164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957992.320371110923588, 3899540.093952849507332 ], [ 4958003.304584264755249, 3899510.978568989783525 ], [ 4958042.166035985574126, 3899525.596938419621438 ], [ 4958031.181786644272506, 3899554.712306648027152 ], [ 4957992.320371110923588, 3899540.093952849507332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957679.388250009156764, 3905176.410272969398648 ], [ 4957697.772079499438405, 3905209.571146814152598 ], [ 4957666.362420530058444, 3905226.64273228449747 ], [ 4957667.223800290375948, 3905228.464555980172008 ], [ 4957635.813689775764942, 3905245.900307964067906 ], [ 4957616.568425220437348, 3905210.917653686366975 ], [ 4957679.388250009156764, 3905176.410272969398648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957281.750435089692473, 3896567.833706585690379 ], [ 4957290.42977044545114, 3896539.443251587916166 ], [ 4957323.828975663520396, 3896549.68367494828999 ], [ 4957315.150096848607063, 3896577.709990608971566 ], [ 4957281.750435089692473, 3896567.833706585690379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956715.28533626254648, 3900410.470133549068123 ], [ 4956708.330565297976136, 3900442.868544705677778 ], [ 4956684.145260314457119, 3900437.738825152162462 ], [ 4956690.812002719379961, 3900405.340028068516403 ], [ 4956715.28533626254648, 3900410.470133549068123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956192.506257735192776, 3905991.182254961226135 ], [ 4956165.99488057103008, 3906007.169575708918273 ], [ 4956129.216932652518153, 3905946.675997480750084 ], [ 4956155.728347477503121, 3905930.688641039188951 ], [ 4956192.506257735192776, 3905991.182254961226135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956190.349678659811616, 3895244.603882878087461 ], [ 4956155.485917817801237, 3895251.477042670361698 ], [ 4956148.046570861712098, 3895212.869703311473131 ], [ 4956182.910379834473133, 3895205.996534030884504 ], [ 4956190.349678659811616, 3895244.603882878087461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956183.353386259637773, 3898854.574194959830493 ], [ 4956172.663627373985946, 3898880.049392991233617 ], [ 4956133.802118574269116, 3898863.977215327788144 ], [ 4956144.203829457983375, 3898838.501628159545362 ], [ 4956183.353386259637773, 3898854.574194959830493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956084.771769075654447, 3900693.667097082361579 ], [ 4956084.180671612732112, 3900705.318498806562275 ], [ 4956027.159523135051131, 3900703.424003588501364 ], [ 4956028.360516696237028, 3900665.556012624874711 ], [ 4956102.084679380990565, 3900668.200425218325108 ], [ 4956101.186689122579992, 3900694.416638139169663 ], [ 4956084.771769075654447, 3900693.667097082361579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955570.814968531951308, 3893380.922542710788548 ], [ 4955609.432507706806064, 3893368.955625498201698 ], [ 4955614.597863186150789, 3893384.61975993681699 ], [ 4955620.938327149488032, 3893382.443093558773398 ], [ 4955628.683783081360161, 3893407.942003513220698 ], [ 4955606.781654192134738, 3893414.468320072628558 ], [ 4955605.060180326923728, 3893409.004190165083855 ], [ 4955582.004825584590435, 3893416.257310532033443 ], [ 4955570.814968531951308, 3893380.922542710788548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955331.083268628455698, 3900010.320888883434236 ], [ 4955331.687906201928854, 3899987.745590693317354 ], [ 4955357.895453880541027, 3899988.507096280343831 ], [ 4955357.291256393305957, 3900010.71826440282166 ], [ 4955331.083268628455698, 3900010.320888883434236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955296.203969959169626, 3895259.114114266354591 ], [ 4955311.717461565509439, 3895291.905381902121007 ], [ 4955289.235760885290802, 3895302.43664768198505 ], [ 4955273.433731374330819, 3895270.009156696964055 ], [ 4955296.203969959169626, 3895259.114114266354591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955238.051945957355201, 3898875.938269151374698 ], [ 4955229.955703736282885, 3898901.052991146221757 ], [ 4955204.908359503373504, 3898893.01048103813082 ], [ 4955213.004580717533827, 3898867.895751612726599 ], [ 4955238.051945957355201, 3898875.938269151374698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954917.040829377248883, 3895323.815673510544002 ], [ 4954941.488095787353814, 3895353.704885939136147 ], [ 4954923.610450419597328, 3895368.247648160438985 ], [ 4954919.296471172943711, 3895362.780308521352708 ], [ 4954899.976747670210898, 3895378.777796643786132 ], [ 4954879.843448396772146, 3895354.355954106897116 ], [ 4954894.549284228123724, 3895342.358096404466778 ], [ 4954876.4291508262977, 3895320.487680093385279 ], [ 4954889.693359981290996, 3895309.580403835978359 ], [ 4954907.813489980995655, 3895331.450828947126865 ], [ 4954917.040829377248883, 3895323.815673510544002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954518.078781283460557, 3893931.254166020080447 ], [ 4954500.814843158237636, 3893914.847013399004936 ], [ 4954497.064525857567787, 3893919.211920063942671 ], [ 4954476.634943229146302, 3893900.251967011019588 ], [ 4954515.287293691188097, 3893859.153219498228282 ], [ 4954564.491005329415202, 3893904.730242468882352 ], [ 4954539.972558612935245, 3893930.917139873374254 ], [ 4954528.463277625851333, 3893919.97902750223875 ], [ 4954518.078781283460557, 3893931.254166020080447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953696.846559989266098, 3893645.501776438672096 ], [ 4953714.399234492331743, 3893661.90875806286931 ], [ 4953719.303071801550686, 3893656.452750103082508 ], [ 4953738.007136784493923, 3893673.589395312126726 ], [ 4953731.949687764979899, 3893680.136392103973776 ], [ 4953745.474143374711275, 3893692.533111970406026 ], [ 4953721.53288690559566, 3893718.357320834882557 ], [ 4953672.039772461168468, 3893672.417370090261102 ], [ 4953696.846559989266098, 3893645.501776438672096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953447.318083956837654, 3893692.90262467507273 ], [ 4953459.159600605256855, 3893667.427801474928856 ], [ 4953514.43813466373831, 3893693.711353225167841 ], [ 4953520.791905176825821, 3893680.246218082960695 ], [ 4953538.066212978214025, 3893688.641919499728829 ], [ 4953516.694203797727823, 3893734.132345954421908 ], [ 4953461.127246386371553, 3893708.212571957148612 ], [ 4953464.59284283965826, 3893700.934150768909603 ], [ 4953447.318083956837654, 3893692.90262467507273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953310.512507440522313, 3893426.925205479841679 ], [ 4953338.163408144377172, 3893430.599481492768973 ], [ 4953332.930249460041523, 3893470.647385546006262 ], [ 4953304.991314188577235, 3893466.972771324217319 ], [ 4953310.512507440522313, 3893426.925205479841679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953292.761091116815805, 3893576.925043285824358 ], [ 4953288.13628695346415, 3893590.02816316485405 ], [ 4953306.565625045448542, 3893596.240319758187979 ], [ 4953296.158512114547193, 3893626.814720197580755 ], [ 4953241.446241828612983, 3893608.543123221956193 ], [ 4953244.62718478962779, 3893598.351306101307273 ], [ 4953227.925409932620823, 3893592.869504186324775 ], [ 4953236.886889071203768, 3893566.662901803851128 ], [ 4953268.27437749505043, 3893577.259997103363276 ], [ 4953270.876150346361101, 3893569.616394089534879 ], [ 4953292.761091116815805, 3893576.925043285824358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953096.110949042253196, 3893731.810188166797161 ], [ 4953122.892168029211462, 3893739.852757846936584 ], [ 4953114.504843109287322, 3893767.880724714137614 ], [ 4953087.723649560473859, 3893759.838163244072348 ], [ 4953096.110949042253196, 3893731.810188166797161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952500.221152636222541, 3893617.86688318150118 ], [ 4952497.880166173912585, 3893649.179226838052273 ], [ 4952454.096435025334358, 3893646.215341306757182 ], [ 4952454.390002665109932, 3893641.482009448576719 ], [ 4952425.296721782535315, 3893639.62761248415336 ], [ 4952427.932877061888576, 3893602.125417983625084 ], [ 4952445.504099756479263, 3893603.238187790382653 ], [ 4952445.502409624867141, 3893604.694700434338301 ], [ 4952475.459524708800018, 3893606.914251192938536 ], [ 4952474.872804308310151, 3893616.016786100808531 ], [ 4952500.221152636222541, 3893617.86688318150118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952444.776342693716288, 3891995.974222296383232 ], [ 4952514.815017759799957, 3891968.017699549440295 ], [ 4952526.592018088325858, 3891997.889919099863619 ], [ 4952456.553831144236028, 3892025.482283831108361 ], [ 4952444.776342693716288, 3891995.974222296383232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952047.04393635224551, 3890883.832316522952169 ], [ 4952018.802783754654229, 3890889.990159483160824 ], [ 4952013.645683832466602, 3890864.859421384520829 ], [ 4952041.598341598175466, 3890859.06537072872743 ], [ 4952047.04393635224551, 3890883.832316522952169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951712.405588221736252, 3889491.02592070447281 ], [ 4951717.563648721203208, 3889515.792453803587705 ], [ 4951705.459830837324262, 3889518.327635572757572 ], [ 4951714.916132287122309, 3889563.854321341961622 ], [ 4951724.42605298012495, 3889562.04445929126814 ], [ 4951730.44348512776196, 3889591.181503462605178 ], [ 4951696.437480828724802, 3889598.425530678126961 ], [ 4951694.717852379195392, 3889590.41277200402692 ], [ 4951681.461191822774708, 3889593.310787099879235 ], [ 4951673.437601250596344, 3889554.7041613929905 ], [ 4951662.198567777872086, 3889556.876213408540934 ], [ 4951656.754405970685184, 3889530.28872793354094 ], [ 4951661.941751928068697, 3889529.20221138978377 ], [ 4951656.497172414325178, 3889502.97885370021686 ], [ 4951712.405588221736252, 3889491.02592070447281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951447.771077174693346, 3894747.283885852899402 ], [ 4951514.02805491629988, 3894744.80949385650456 ], [ 4951515.432695765979588, 3894776.490288312081248 ], [ 4951448.887734970077872, 3894778.964353288058192 ], [ 4951447.771077174693346, 3894747.283885852899402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951175.51402778364718, 3893488.186363123822957 ], [ 4951131.719772690907121, 3893494.327835518401116 ], [ 4951127.146187759004533, 3893462.279434885829687 ], [ 4951170.65282407682389, 3893455.773506389930844 ], [ 4951175.51402778364718, 3893488.186363123822957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951139.120343984104693, 3891242.566214973572642 ], [ 4951131.025651071220636, 3891267.682058631908149 ], [ 4951081.49046422727406, 3891251.605412644334137 ], [ 4951104.039396879263222, 3891182.081969284452498 ], [ 4951131.687240242958069, 3891190.851758501492441 ], [ 4951117.232513514347374, 3891235.62345658056438 ], [ 4951139.120343984104693, 3891242.566214973572642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951103.883106482215226, 3891063.376032806001604 ], [ 4951127.7970927702263, 3891061.946084837894887 ], [ 4951128.078314544633031, 3891068.136574972886592 ], [ 4951178.210279543884099, 3891066.007564126513898 ], [ 4951180.184422622434795, 3891104.243212257046252 ], [ 4951106.138581848703325, 3891107.802165473345667 ], [ 4951103.883106482215226, 3891063.376032806001604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950773.443394530564547, 3901018.302189785987139 ], [ 4950672.360639346763492, 3901015.278298326767981 ], [ 4950673.553676350042224, 3900977.774191365111619 ], [ 4950774.636572472751141, 3900980.798087243456393 ], [ 4950773.443394530564547, 3901018.302189785987139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950720.642904248088598, 3892962.974635023158044 ], [ 4950722.121228680945933, 3892928.384049317799509 ], [ 4950725.866279480978847, 3892928.388155138120055 ], [ 4950727.045352334156632, 3892903.9928396679461 ], [ 4950756.140343728475273, 3892905.117141920607537 ], [ 4950753.770958342589438, 3892964.103356205392629 ], [ 4950720.642904248088598, 3892962.974635023158044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950697.111870443448424, 3891038.16672667581588 ], [ 4950679.483896554447711, 3891087.304717233870178 ], [ 4950657.020814874209464, 3891079.269320432562381 ], [ 4950653.842548531480134, 3891087.640790461562574 ], [ 4950632.243363474495709, 3891079.97048728261143 ], [ 4950635.711316643282771, 3891070.142819000873715 ], [ 4950616.991927435621619, 3891063.568060123827308 ], [ 4950631.152240538969636, 3891023.893569735810161 ], [ 4950671.758576399646699, 3891038.503098361194134 ], [ 4950674.648752921260893, 3891030.131315387785435 ], [ 4950697.111870443448424, 3891038.16672667581588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950637.537168087437749, 3894143.752761816605926 ], [ 4950641.381177398376167, 3894053.088910076301545 ], [ 4950672.203341181389987, 3894054.215011959895492 ], [ 4950668.359228073619306, 3894144.878859360702336 ], [ 4950637.537168087437749, 3894143.752761816605926 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950473.034310640767217, 3893893.417010886594653 ], [ 4950449.988671420142055, 3893893.39196929289028 ], [ 4950450.305218831636012, 3893867.175047993194312 ], [ 4950473.350484701804817, 3893867.564218106679618 ], [ 4950473.034310640767217, 3893893.417010886594653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950421.775729308836162, 3890956.301885054912418 ], [ 4950431.598861142992973, 3890930.823580898344517 ], [ 4950503.594309572130442, 3890958.575552081223577 ], [ 4950490.88218251708895, 3890991.333249614108354 ], [ 4950477.635051235556602, 3890986.221052538137883 ], [ 4950473.878647785633802, 3890996.412555211689323 ], [ 4950437.880977538414299, 3890982.536584950983524 ], [ 4950444.526295000687242, 3890965.065652839839458 ], [ 4950421.775729308836162, 3890956.301885054912418 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950285.307999826967716, 3891937.479563200846314 ], [ 4950297.14650106895715, 3891912.731629088521004 ], [ 4950323.637156894430518, 3891925.504752278327942 ], [ 4950311.798636853694916, 3891950.252674908842891 ], [ 4950285.307999826967716, 3891937.479563200846314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950101.020289049483836, 3891315.714333016891032 ], [ 4950127.247385789640248, 3891306.27515856642276 ], [ 4950139.598047318868339, 3891341.244727904908359 ], [ 4950113.370980312116444, 3891350.683890506625175 ], [ 4950101.020289049483836, 3891315.714333016891032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949995.898887855932117, 3895324.657145918812603 ], [ 4949967.661313860677183, 3895332.273673703894019 ], [ 4949952.45660147909075, 3895273.996798185165972 ], [ 4949980.693843152374029, 3895266.744383250828832 ], [ 4949995.898887855932117, 3895324.657145918812603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949039.45910170674324, 3894581.192586272954941 ], [ 4949076.891476636752486, 3894596.524717782624066 ], [ 4949066.495589180849493, 3894621.274718328379095 ], [ 4949029.351305681280792, 3894605.942898747045547 ], [ 4949039.45910170674324, 3894581.192586272954941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946062.853352037258446, 3892759.093972905073315 ], [ 4946133.434948115609586, 3892757.702695216517895 ], [ 4946134.268188490532339, 3892791.203278250526637 ], [ 4946120.727983483113348, 3892791.554877151735127 ], [ 4946121.00562312733382, 3892802.8431142186746 ], [ 4946095.365636399947107, 3892803.547663331497461 ], [ 4946095.362271275371313, 3892807.188944171648473 ], [ 4946063.960646942257881, 3892807.888199197594076 ], [ 4946062.853352037258446, 3892759.093972905073315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944665.9728092700243, 3892390.071401751134545 ], [ 4944667.436395455151796, 3892363.49131157528609 ], [ 4944696.531900504603982, 3892364.973183557391167 ], [ 4944696.237780050374568, 3892371.891364487353712 ], [ 4944710.929571039974689, 3892372.632437829393893 ], [ 4944709.760065910406411, 3892392.294344891794026 ], [ 4944665.9728092700243, 3892390.071401751134545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944206.354352208785713, 3892530.59266502968967 ], [ 4944208.708474834449589, 3892472.698274241760373 ], [ 4944250.76743143144995, 3892474.554865830112249 ], [ 4944249.880122376605868, 3892501.499601370655 ], [ 4944235.476163418963552, 3892501.123154268134385 ], [ 4944234.297983680851758, 3892531.344796868506819 ], [ 4944206.354352208785713, 3892530.59266502968967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943987.899311919696629, 3892632.72707553114742 ], [ 4943989.932839564979076, 3892612.701737250667065 ], [ 4944005.776238487102091, 3892614.1716562025249 ], [ 4944011.008304106071591, 3892559.192708321847022 ], [ 4944042.407076262868941, 3892562.132336073555052 ], [ 4944040.081717154942453, 3892586.52696233196184 ], [ 4944046.131182781420648, 3892586.896219488698989 ], [ 4944044.675632311031222, 3892604.737273324746639 ], [ 4944038.050310723483562, 3892604.003400039393455 ], [ 4944036.595692399889231, 3892620.752070282120258 ], [ 4944043.221009902656078, 3892621.48594320891425 ], [ 4944041.478922731243074, 3892637.506112976931036 ], [ 4943987.899311919696629, 3892632.72707553114742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943160.484886011108756, 3893031.124700822867453 ], [ 4943158.155916063115001, 3893060.981332617811859 ], [ 4943129.925615606829524, 3893059.137700120452791 ], [ 4943132.254850734956563, 3893028.916937728412449 ], [ 4943160.484886011108756, 3893031.124700822867453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942456.040417703799903, 3890222.039740392006934 ], [ 4942463.581262450665236, 3890158.68745155679062 ], [ 4942503.912991924211383, 3890163.452964576426893 ], [ 4942496.372053455561399, 3890226.80524227488786 ], [ 4942456.040417703799903, 3890222.039740392006934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991540.703515015542507, 3903842.469395102467388 ], [ 4991522.833567245863378, 3903848.612901355139911 ], [ 4991527.121600279584527, 3903860.640466295182705 ], [ 4991498.874506884254515, 3903870.762303395196795 ], [ 4991482.005513506010175, 3903824.473465402144939 ], [ 4991489.211277443915606, 3903821.943375302478671 ], [ 4991480.633257841691375, 3903798.616517577320337 ], [ 4991519.545578513294458, 3903784.51709705311805 ], [ 4991540.703515015542507, 3903842.469395102467388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989924.340225487947464, 3908691.446088048629463 ], [ 4989900.046770602464676, 3908733.987554715014994 ], [ 4989858.072133964858949, 3908710.211701950524002 ], [ 4989877.738487306982279, 3908675.669302503578365 ], [ 4989898.725368118844926, 3908687.739301019348204 ], [ 4989903.352428615093231, 3908679.740200020372868 ], [ 4989924.340225487947464, 3908691.446088048629463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989741.111541521735489, 3908284.970274694729596 ], [ 4989781.129117499105632, 3908286.164711461402476 ], [ 4989779.59201998077333, 3908324.394734805915505 ], [ 4989739.575429070740938, 3908322.836169868241996 ], [ 4989741.111541521735489, 3908284.970274694729596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988983.646300231106579, 3908494.611252189613879 ], [ 4988973.163916204124689, 3908541.193829755764455 ], [ 4988947.554291329346597, 3908535.303166790865362 ], [ 4988949.302874942310154, 3908526.93251766776666 ], [ 4988929.447837355546653, 3908522.512903477065265 ], [ 4988940.51148528419435, 3908473.746977107133716 ], [ 4988955.186854129657149, 3908477.061148282140493 ], [ 4988952.856932098977268, 3908487.615128780715168 ], [ 4988983.646300231106579, 3908494.611252189613879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988920.094477830454707, 3912692.907922185026109 ], [ 4988865.93385555036366, 3912709.157568271271884 ], [ 4988856.797194208949804, 3912679.275604789145291 ], [ 4988910.957871061749756, 3912663.025940591003746 ], [ 4988920.094477830454707, 3912692.907922185026109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988753.386543637141585, 3905600.27094576600939 ], [ 4988767.123733861371875, 3905633.805617060512304 ], [ 4988727.057361675426364, 3905650.455055914353579 ], [ 4988713.032185248099267, 3905616.919681834988296 ], [ 4988753.386543637141585, 3905600.27094576600939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988687.121153610758483, 3913415.127757434733212 ], [ 4988692.23866537772119, 3913440.629979519639164 ], [ 4988665.452968755736947, 3913446.388889187946916 ], [ 4988660.048485185950994, 3913420.521818143315613 ], [ 4988687.121153610758483, 3913415.127757434733212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988677.418616879731417, 3907760.477721197996289 ], [ 4988675.890373656526208, 3907795.794752481393516 ], [ 4988648.540569613687694, 3907794.633736760821193 ], [ 4988648.520475268363953, 3907802.644604570232332 ], [ 4988622.610284370370209, 3907801.487226371187717 ], [ 4988624.157631277106702, 3907758.523454640526325 ], [ 4988677.418616879731417, 3907760.477721197996289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988666.9752366701141, 3907332.595722946804017 ], [ 4988664.541182603687048, 3907384.660570247564465 ], [ 4988637.766811396926641, 3907383.501010564621538 ], [ 4988638.06112989783287, 3907380.952820837963372 ], [ 4988625.682139608077705, 3907380.193512607365847 ], [ 4988627.821800624020398, 3907330.676851682830602 ], [ 4988666.9752366701141, 3907332.595722946804017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988655.954537933692336, 3907938.120603462215513 ], [ 4988675.240608661435544, 3907939.989656259305775 ], [ 4988676.426097737625241, 3907926.519722082652152 ], [ 4988701.756669225171208, 3907929.132228209171444 ], [ 4988696.733148246072233, 3907980.462325980421156 ], [ 4988652.116580894216895, 3907975.98077443940565 ], [ 4988655.954537933692336, 3907938.120603462215513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987983.69096758030355, 3907228.932929051108658 ], [ 4988014.230292278341949, 3907221.362011132761836 ], [ 4988020.789289008826017, 3907246.867584114894271 ], [ 4987990.249991396442056, 3907254.43849469255656 ], [ 4987983.69096758030355, 3907228.932929051108658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987909.335544466041028, 3913870.902880523819476 ], [ 4987879.376800949685276, 3913879.567772598005831 ], [ 4987867.105532457120717, 3913836.569526953622699 ], [ 4987896.776462975889444, 3913827.903907268308103 ], [ 4987909.335544466041028, 3913870.902880523819476 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987916.172348283231258, 3907634.773106454871595 ], [ 4987875.845939073711634, 3907641.591601385734975 ], [ 4987871.018055074848235, 3907614.633819485083222 ], [ 4987878.219753270968795, 3907613.195146259386092 ], [ 4987869.135303783230484, 3907561.101663226727396 ], [ 4987902.548943655565381, 3907555.358407254796475 ], [ 4987916.172348283231258, 3907634.773106454871595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987915.379874262027442, 3904588.440789834596217 ], [ 4987915.591949760913849, 3904619.028396163601428 ], [ 4987862.896082446910441, 3904618.897719186265022 ], [ 4987862.940311020240188, 3904601.055365389212966 ], [ 4987873.306718051433563, 3904601.081064186058939 ], [ 4987873.337412041611969, 3904588.700655545573682 ], [ 4987915.379874262027442, 3904588.440789834596217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987843.672418230213225, 3896686.983719707466662 ], [ 4987827.894221036694944, 3896661.091393339447677 ], [ 4987837.125959734432399, 3896655.288177597802132 ], [ 4987830.240937447175384, 3896643.983088104519993 ], [ 4987860.531262367963791, 3896625.487493135966361 ], [ 4987881.760564448311925, 3896660.132473890203983 ], [ 4987879.164586570113897, 3896661.582559725269675 ], [ 4987899.247091183438897, 3896694.039931532926857 ], [ 4987872.41871480550617, 3896710.359282581135631 ], [ 4987853.769175561144948, 3896680.818522453773767 ], [ 4987843.672418230213225, 3896686.983719707466662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986743.666135164909065, 3905657.564104876015335 ], [ 4986819.044490930624306, 3905683.601309810765088 ], [ 4986803.675965590402484, 3905727.623799461405724 ], [ 4986728.296831455081701, 3905701.950766876339912 ], [ 4986743.666135164909065, 3905657.564104876015335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986524.818742677569389, 3902578.661748995538801 ], [ 4986520.215525732375681, 3902576.829911689274013 ], [ 4986528.91145564801991, 3902553.546622640453279 ], [ 4986577.249221223406494, 3902571.14238751726225 ], [ 4986565.653127970173955, 3902602.793635207694024 ], [ 4986567.66719810385257, 3902603.526793106924742 ], [ 4986554.042904702946544, 3902640.270956922788173 ], [ 4986508.295272738672793, 3902623.409785044379532 ], [ 4986524.818742677569389, 3902578.661748995538801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986459.044788337312639, 3903100.666599350981414 ], [ 4986437.083852732554078, 3903131.564500666223466 ], [ 4986418.685465038754046, 3903118.41114361397922 ], [ 4986440.646390126086771, 3903087.513227513059974 ], [ 4986459.044788337312639, 3903100.666599350981414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986439.863807529211044, 3908395.101013709791005 ], [ 4986448.964874305762351, 3908441.36795117193833 ], [ 4986408.349488756619394, 3908449.280345097649843 ], [ 4986398.96220563352108, 3908402.28446191875264 ], [ 4986423.446464364416897, 3908397.610115272924304 ], [ 4986423.444697873666883, 3908398.338376410771161 ], [ 4986439.863807529211044, 3908395.101013709791005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986314.561175035312772, 3906754.744426226243377 ], [ 4986245.116554193198681, 3906776.424300939310342 ], [ 4986226.257417898625135, 3906716.660988067276776 ], [ 4986250.174361245706677, 3906709.072054380550981 ], [ 4986253.318723052740097, 3906718.547101278789341 ], [ 4986285.59190278686583, 3906708.429489086847752 ], [ 4986289.306830095127225, 3906720.090715146157891 ], [ 4986302.274395640008152, 3906715.752518160734326 ], [ 4986314.561175035312772, 3906754.744426226243377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986108.62693015486002, 3910000.489520684350282 ], [ 4986120.436018897220492, 3909998.333232713397592 ], [ 4986118.160089562647045, 3909987.03961278591305 ], [ 4986137.171033572405577, 3909983.080056072678417 ], [ 4986139.734853222034872, 3909994.374372921418399 ], [ 4986161.05073875375092, 3909989.692133995704353 ], [ 4986171.011025021784008, 3910037.781764497514814 ], [ 4986145.087057705037296, 3910043.181130880024284 ], [ 4986143.097281171940267, 3910032.616465809755027 ], [ 4986116.308742943219841, 3910038.377904788125306 ], [ 4986108.62693015486002, 3910000.489520684350282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985446.621067328378558, 3909811.735187176149338 ], [ 4985410.911912515759468, 3909815.655350459273905 ], [ 4985405.547893414273858, 3909771.218316521029919 ], [ 4985441.545876837335527, 3909766.934703173115849 ], [ 4985446.621067328378558, 3909811.735187176149338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985292.299221999011934, 3905224.025985576678067 ], [ 4985327.3161317454651, 3905271.446618036366999 ], [ 4985307.989724692888558, 3905285.601687049493194 ], [ 4985301.674822176806629, 3905277.21159870037809 ], [ 4985264.17559147067368, 3905304.79627170599997 ], [ 4985235.473544047214091, 3905265.76579175889492 ], [ 4985292.299221999011934, 3905224.025985576678067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985257.414162775501609, 3909109.963777495082468 ], [ 4985258.642130943015218, 3909077.923014085739851 ], [ 4985296.066670124419034, 3909079.468729309272021 ], [ 4985294.839525359682739, 3909111.145360277034342 ], [ 4985257.414162775501609, 3909109.963777495082468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985151.812746534124017, 3915377.543057398404926 ], [ 4985148.865913849323988, 3915406.302654126193374 ], [ 4985085.555832014419138, 3915399.961843498516828 ], [ 4985088.506059093400836, 3915369.745711154304445 ], [ 4985114.981311771087348, 3915372.357584058307111 ], [ 4985115.568247171118855, 3915367.625234174076468 ], [ 4985132.25865934137255, 3915369.485593245364726 ], [ 4985131.669123138301075, 3915375.310339366085827 ], [ 4985151.812746534124017, 3915377.543057398404926 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984646.759625042788684, 3907645.430985347833484 ], [ 4984677.009604109451175, 3907637.855593188665807 ], [ 4984695.258710409514606, 3907713.274102961178869 ], [ 4984665.009670347906649, 3907720.485344455111772 ], [ 4984646.759625042788684, 3907645.430985347833484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983413.207474905066192, 3917136.237998437602073 ], [ 4983399.273247963748872, 3917187.548734799958766 ], [ 4983358.716605732217431, 3917176.166750873439014 ], [ 4983366.551772098988295, 3917148.510638407897204 ], [ 4983360.223913619294763, 3917146.675332211889327 ], [ 4983366.609876776114106, 3917123.385484522674233 ], [ 4983413.207474905066192, 3917136.237998437602073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983411.382994971238077, 3916556.531577806919813 ], [ 4983429.438586608506739, 3916590.073741124477237 ], [ 4983422.810130725614727, 3916593.699742592871189 ], [ 4983434.559624542482197, 3916615.939145169686526 ], [ 4983409.776166204363108, 3916628.99062231881544 ], [ 4983380.259707865305245, 3916572.845621066633612 ], [ 4983411.382994971238077, 3916556.531577806919813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983074.894978102296591, 3895538.414866277948022 ], [ 4983049.703788509592414, 3895595.161186305806041 ], [ 4983001.934792941436172, 3895574.296011806931347 ], [ 4983027.12673775665462, 3895517.185519865714014 ], [ 4983074.894978102296591, 3895538.414866277948022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982750.780453852377832, 3906259.506613510660827 ], [ 4982766.701238341629505, 3906222.765714058186859 ], [ 4982781.946129406802356, 3906229.7191292187199 ], [ 4982766.026161743327975, 3906266.09588959440589 ], [ 4982750.780453852377832, 3906259.506613510660827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982232.703741136938334, 3902992.792477814946324 ], [ 4982146.602293798699975, 3902991.504840197972953 ], [ 4982146.958751763217151, 3902961.2827446940355 ], [ 4982233.060295921750367, 3902962.570383434649557 ], [ 4982232.703741136938334, 3902992.792477814946324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982186.575259270146489, 3905047.846574375405908 ], [ 4982158.604399310424924, 3905065.26148825045675 ], [ 4982113.843251874670386, 3904994.882628105115145 ], [ 4982142.102107492275536, 3904977.468320885207504 ], [ 4982186.575259270146489, 3905047.846574375405908 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980976.589467481710017, 3901424.207471476867795 ], [ 4980980.890701076947153, 3901432.592043329961598 ], [ 4980960.131981643848121, 3901443.105713995173573 ], [ 4980935.184438151307404, 3901394.620878102257848 ], [ 4980980.739477979019284, 3901371.05357113853097 ], [ 4981001.384923924691975, 3901411.518002069089562 ], [ 4980976.589467481710017, 3901424.207471476867795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980808.711623745039105, 3907521.219512755982578 ], [ 4980810.14801745954901, 3907522.679226028732955 ], [ 4980827.456586679443717, 3907507.78817269904539 ], [ 4980846.699076583608985, 3907529.678785881958902 ], [ 4980811.214963225647807, 3907560.915486928541213 ], [ 4980790.248955726623535, 3907537.200417864602059 ], [ 4980808.711623745039105, 3907521.219512755982578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980548.841238104738295, 3898850.312799005769193 ], [ 4980539.966515298932791, 3898825.896483577787876 ], [ 4980549.479130761697888, 3898822.276164785027504 ], [ 4980544.898963018320501, 3898809.521496120840311 ], [ 4980576.605837385170162, 3898798.303419360425323 ], [ 4980592.06153049133718, 3898842.397317404858768 ], [ 4980563.237285561859608, 3898852.529345943126827 ], [ 4980560.947609863243997, 3898845.969945892225951 ], [ 4980548.841238104738295, 3898850.312799005769193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980377.466180425137281, 3903302.89196407282725 ], [ 4980384.403893501497805, 3903290.89089363347739 ], [ 4980401.085302976891398, 3903300.395021353848279 ], [ 4980397.905614924617112, 3903305.849993590265512 ], [ 4980417.462697133421898, 3903317.181117903906852 ], [ 4980400.985118621960282, 3903345.911224466282874 ], [ 4980348.065248414874077, 3903315.571890924591571 ], [ 4980360.784764182753861, 3903293.387850998435169 ], [ 4980377.466180425137281, 3903302.89196407282725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980300.002010345458984, 3906709.902516501955688 ], [ 4980255.908257237635553, 3906728.012259819544852 ], [ 4980237.862805926240981, 3906685.00504682585597 ], [ 4980281.95741721522063, 3906666.531143992207944 ], [ 4980300.002010345458984, 3906709.902516501955688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980136.013623011298478, 3903232.084452711511403 ], [ 4980125.891580086201429, 3903251.725368783809245 ], [ 4980110.646704781800508, 3903243.681084244977683 ], [ 4980120.767941879108548, 3903224.404292126186192 ], [ 4980136.013623011298478, 3903232.084452711511403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980082.37470359262079, 3908658.989756053779274 ], [ 4980106.61437160987407, 3908633.917696024291217 ], [ 4980148.275482453405857, 3908673.335306758526713 ], [ 4980123.747101150453091, 3908698.770829777698964 ], [ 4980082.37470359262079, 3908658.989756053779274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979893.871620791964233, 3906775.285127232316881 ], [ 4979908.262679108418524, 3906777.865464264061302 ], [ 4979904.467892257496715, 3906801.525769952684641 ], [ 4979890.076051610521972, 3906799.309565330855548 ], [ 4979893.871620791964233, 3906775.285127232316881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979503.117395550012589, 3901740.316190772224218 ], [ 4979525.885692098177969, 3901732.354669083841145 ], [ 4979533.326750277541578, 3901753.854535042308271 ], [ 4979510.558469696901739, 3901761.816050532739609 ], [ 4979503.117395550012589, 3901740.316190772224218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979478.92180385440588, 3901742.448543075937778 ], [ 4979446.915890310890973, 3901760.585767895914614 ], [ 4979435.725423062220216, 3901741.626725191250443 ], [ 4979431.688883816823363, 3901743.802772368770093 ], [ 4979420.78559722751379, 3901725.20848883362487 ], [ 4979427.41795886401087, 3901721.217404081486166 ], [ 4979414.793831805698574, 3901699.342219157144427 ], [ 4979439.014685596339405, 3901685.557671766262501 ], [ 4979449.631566068157554, 3901703.423080014530569 ], [ 4979454.532861896790564, 3901700.884777371771634 ], [ 4979478.92180385440588, 3901742.448543075937778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979337.464480412192643, 3902034.539656165987253 ], [ 4979356.409966996870935, 3902062.982835476286709 ], [ 4979314.881418322212994, 3902090.202909995801747 ], [ 4979291.343121401965618, 3902054.831349679268897 ], [ 4979306.628247295506299, 3902044.668694804422557 ], [ 4979311.509013930335641, 3902051.597729342989624 ], [ 4979337.464480412192643, 3902034.539656165987253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979310.575647645629942, 3900484.012168146669865 ], [ 4979302.44558484852314, 3900514.581588104832917 ], [ 4979239.40903971157968, 3900498.059622202534229 ], [ 4979247.539035685360432, 3900467.49018346844241 ], [ 4979310.575647645629942, 3900484.012168146669865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979255.669666451402009, 3908974.351761762984097 ], [ 4979285.583875741809607, 3908987.525134676136076 ], [ 4979264.46196664404124, 3909035.909158720169216 ], [ 4979234.547015178948641, 3909023.099939854349941 ], [ 4979255.669666451402009, 3908974.351761762984097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979242.526119631715119, 3909594.805490492843091 ], [ 4979263.786068948917091, 3909615.606955177616328 ], [ 4979229.738980638794601, 3909650.126073172315955 ], [ 4979208.479032449424267, 3909629.324634991586208 ], [ 4979242.526119631715119, 3909594.805490492843091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979210.099320271983743, 3899665.95788164017722 ], [ 4979218.96475986763835, 3899695.107445457484573 ], [ 4979174.006426213309169, 3899708.483347893692553 ], [ 4979165.140942363068461, 3899679.333798674866557 ], [ 4979210.099320271983743, 3899665.95788164017722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979188.943117776885629, 3908541.982430192176253 ], [ 4979207.176709344610572, 3908497.961720751598477 ], [ 4979236.230089687742293, 3908510.040779256261885 ], [ 4979217.997244185768068, 3908553.697338483296335 ], [ 4979188.943117776885629, 3908541.982430192176253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979199.698999341577291, 3902352.128698852844536 ], [ 4979251.33698114566505, 3902310.729145295917988 ], [ 4979279.77154984138906, 3902345.747117179445922 ], [ 4979273.136219273321331, 3902351.194757652003318 ], [ 4979298.123614298179746, 3902382.199864998459816 ], [ 4979306.201200080104172, 3902375.662952739279717 ], [ 4979336.645186700858176, 3902413.598376659676433 ], [ 4979282.699508632533252, 3902456.813441261649132 ], [ 4979253.117074941284955, 3902419.972330453339964 ], [ 4979253.982584124431014, 3902419.245936162769794 ], [ 4979199.698999341577291, 3902352.128698852844536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979151.876035989262164, 3906369.85351087898016 ], [ 4979176.822135088965297, 3906418.336837964132428 ], [ 4979154.33799581695348, 3906429.940602227579802 ], [ 4979129.391867061145604, 3906381.457295670174062 ], [ 4979151.876035989262164, 3906369.85351087898016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979112.503783654421568, 3916760.673876994755119 ], [ 4979139.596260924823582, 3916743.61793658323586 ], [ 4979194.957294688560069, 3916831.493700284510851 ], [ 4979167.577831187285483, 3916848.184832469094545 ], [ 4979112.503783654421568, 3916760.673876994755119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978909.193377028219402, 3901381.094674294348806 ], [ 4978960.770217222161591, 3901368.824925631750375 ], [ 4978970.758382216095924, 3901411.449693114031106 ], [ 4978929.84271205868572, 3901421.193384879268706 ], [ 4978926.134008854627609, 3901404.799533961340785 ], [ 4978915.472909789532423, 3901407.325573458336294 ], [ 4978909.193377028219402, 3901381.094674294348806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978838.154172757640481, 3907383.651451961603016 ], [ 4978866.065029967576265, 3907392.08632781310007 ], [ 4978852.726767085492611, 3907435.753600879572332 ], [ 4978824.815951133146882, 3907427.318738661240786 ], [ 4978838.154172757640481, 3907383.651451961603016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978800.344632355496287, 3908232.727067350409925 ], [ 4978855.568455638363957, 3908259.062943793367594 ], [ 4978838.793591523543, 3908294.347832062281668 ], [ 4978794.787648370489478, 3908273.133866575080901 ], [ 4978791.316275531426072, 3908280.773213586769998 ], [ 4978780.098454238846898, 3908275.651337957475334 ], [ 4978800.344632355496287, 3908232.727067350409925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978795.895198372192681, 3907890.433081706054509 ], [ 4978851.09865449462086, 3907926.6004722667858 ], [ 4978831.165837553329766, 3907957.509000208694488 ], [ 4978775.674498195759952, 3907921.341033488512039 ], [ 4978795.895198372192681, 3907890.433081706054509 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978809.259639391675591, 3900305.602217860054225 ], [ 4978838.609293524175882, 3900318.045532234013081 ], [ 4978821.241836769506335, 3900358.790961693506688 ], [ 4978791.892219216562808, 3900346.347665993496776 ], [ 4978809.259639391675591, 3900305.602217860054225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978738.935847111046314, 3905983.351105384062976 ], [ 4978761.016117422841489, 3906026.001790416426957 ], [ 4978731.901413297280669, 3906041.233034804929048 ], [ 4978709.533168667927384, 3905998.58175757760182 ], [ 4978738.935847111046314, 3905983.351105384062976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978667.919474304653704, 3905934.041454596910626 ], [ 4978695.019444913603365, 3905918.441702640149742 ], [ 4978723.134921089746058, 3905966.567236219067127 ], [ 4978703.530789876356721, 3905977.813402981031686 ], [ 4978697.219441917724907, 3905966.875951479654759 ], [ 4978689.72363253403455, 3905971.229510515462607 ], [ 4978667.919474304653704, 3905934.041454596910626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978620.382838967256248, 3899875.888373906258494 ], [ 4978644.310695936903358, 3899865.015542048960924 ], [ 4978654.058587883599102, 3899885.791802844498307 ], [ 4978630.129968034103513, 3899897.028755081817508 ], [ 4978620.382838967256248, 3899875.888373906258494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978597.168483503162861, 3905220.556098341010511 ], [ 4978645.8661043709144, 3905204.638270585332066 ], [ 4978659.313370242714882, 3905245.085621503181756 ], [ 4978610.327865872532129, 3905261.002810640726238 ], [ 4978597.168483503162861, 3905220.556098341010511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978387.547151205129921, 3906165.39586525503546 ], [ 4978390.698993690311909, 3906172.685206699185073 ], [ 4978410.296654994599521, 3906164.351852878928185 ], [ 4978420.609777670353651, 3906189.134766821283847 ], [ 4978382.280635177157819, 3906204.71091963769868 ], [ 4978369.102801400236785, 3906173.003423270769417 ], [ 4978387.547151205129921, 3906165.39586525503546 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978337.664606875739992, 3902809.088997092097998 ], [ 4978381.392676236107945, 3902829.937401498667896 ], [ 4978367.507976579479873, 3902859.038385882973671 ], [ 4978323.779943940229714, 3902838.190003694500774 ], [ 4978337.664606875739992, 3902809.088997092097998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977997.73903123755008, 3909134.796863012481481 ], [ 4977974.376268493942916, 3909154.774822873994708 ], [ 4977933.304672470316291, 3909107.715035148896277 ], [ 4977956.667445374652743, 3909087.737040160223842 ], [ 4977997.73903123755008, 3909134.796863012481481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977863.543262606486678, 3907372.841131454333663 ], [ 4977883.330342123284936, 3907410.752580653876066 ], [ 4977854.79425257910043, 3907425.621871528681368 ], [ 4977835.007143884897232, 3907387.710442996118218 ], [ 4977863.543262606486678, 3907372.841131454333663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977817.844283441081643, 3905145.713768439367414 ], [ 4977807.180940011516213, 3905150.060903891455382 ], [ 4977819.212744227610528, 3905179.58089945698157 ], [ 4977785.49353523273021, 3905193.346942484378815 ], [ 4977764.579675562679768, 3905142.688640707638115 ], [ 4977808.962287610396743, 3905124.575432937592268 ], [ 4977817.844283441081643, 3905145.713768439367414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977772.732046187855303, 3904141.708002194296569 ], [ 4977793.41617994569242, 3904165.0559316361323 ], [ 4977774.08606811799109, 3904182.493578118272126 ], [ 4977753.402696708217263, 3904158.781533416360617 ], [ 4977772.732046187855303, 3904141.708002194296569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977752.498570730909705, 3906505.972952372860163 ], [ 4977731.171455469913781, 3906515.395547507796437 ], [ 4977700.22361898701638, 3906444.324771172367036 ], [ 4977721.550779642537236, 3906434.902151893824339 ], [ 4977752.498570730909705, 3906505.972952372860163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977612.304486201144755, 3904706.503218926023692 ], [ 4977587.525884295813739, 3904713.369760253932327 ], [ 4977580.664589622989297, 3904689.686821622774005 ], [ 4977605.731930085457861, 3904682.45674795191735 ], [ 4977612.304486201144755, 3904706.503218926023692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977611.169393724761903, 3904423.934728705324233 ], [ 4977621.454901441931725, 3904462.554248011671007 ], [ 4977592.354424732737243, 3904470.504113237839192 ], [ 4977582.069641615264118, 3904431.520474936347455 ], [ 4977611.169393724761903, 3904423.934728705324233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977556.581784847192466, 3907250.211842066142708 ], [ 4977523.411417917348444, 3907278.180531201884151 ], [ 4977504.741899438202381, 3907256.293507051188499 ], [ 4977537.912273802794516, 3907228.324795236811042 ], [ 4977556.581784847192466, 3907250.211842066142708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977448.373218892142177, 3906261.366739419754595 ], [ 4977403.415328041650355, 3906280.207612727303058 ], [ 4977391.382804572582245, 3906251.051913807168603 ], [ 4977436.339974251575768, 3906232.575151075609028 ], [ 4977448.373218892142177, 3906261.366739419754595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977441.710063791833818, 3908483.651662970893085 ], [ 4977402.215600235387683, 3908507.601837396156043 ], [ 4977387.007897415198386, 3908482.809052241966128 ], [ 4977426.502383719198406, 3908458.85885581606999 ], [ 4977441.710063791833818, 3908483.651662970893085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977439.289262974634767, 3905235.224208785686642 ], [ 4977447.85386452358216, 3905270.562896891962737 ], [ 4977394.843937535770237, 3905283.560830411501229 ], [ 4977385.99132170714438, 3905248.22155738202855 ], [ 4977439.289262974634767, 3905235.224208785686642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977454.139237796887755, 3892346.862693867180496 ], [ 4977433.932051752693951, 3892366.483419345226139 ], [ 4977420.133552844636142, 3892352.253558388445526 ], [ 4977440.628826665692031, 3892332.633424822706729 ], [ 4977454.139237796887755, 3892346.862693867180496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977381.386932873167098, 3908279.247279468458146 ], [ 4977391.437375289388001, 3908292.012912005651742 ], [ 4977377.883254867978394, 3908302.544434519018978 ], [ 4977367.832809979096055, 3908289.778806967195123 ], [ 4977381.386932873167098, 3908279.247279468458146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977330.536258619278669, 3913191.294782003387809 ], [ 4977354.714528040960431, 3913192.437667542602867 ], [ 4977352.303634454496205, 3913244.139593946281821 ], [ 4977313.733014040626585, 3913242.602536810562015 ], [ 4977315.536188129335642, 3913206.192946888040751 ], [ 4977329.639981364831328, 3913206.950652588158846 ], [ 4977330.536258619278669, 3913191.294782003387809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977328.719926208257675, 3912406.583439600188285 ], [ 4977355.249027798883617, 3912385.154963701032102 ], [ 4977383.09960357286036, 3912420.169943445362151 ], [ 4977356.85914639569819, 3912441.234861771110445 ], [ 4977328.719926208257675, 3912406.583439600188285 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977228.925206019543111, 3909181.97782147442922 ], [ 4977246.144965277053416, 3909208.231252191122621 ], [ 4977207.801088349893689, 3909233.27651647804305 ], [ 4977181.110717370174825, 3909192.438088799826801 ], [ 4977205.904806522652507, 3909176.103746920824051 ], [ 4977215.375389337539673, 3909190.688776641152799 ], [ 4977228.925206019543111, 3909181.97782147442922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977219.456196684390306, 3906402.172154490370303 ], [ 4977182.260095864534378, 3906427.219810720998794 ], [ 4977165.036965070292354, 3906401.694726766552776 ], [ 4977202.232326800003648, 3906377.011177482549101 ], [ 4977219.456196684390306, 3906402.172154490370303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977199.098717484623194, 3906084.242569595109671 ], [ 4977220.136529975570738, 3906075.547215565107763 ], [ 4977223.574363865889609, 3906083.929410469252616 ], [ 4977249.223776910454035, 3906073.058894315734506 ], [ 4977266.988760154694319, 3906114.971092708874494 ], [ 4977247.103479803539813, 3906123.304680076893419 ], [ 4977243.952839083969593, 3906115.287212309893221 ], [ 4977216.863012963905931, 3906126.518865480087698 ], [ 4977199.098717484623194, 3906084.242569595109671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977136.800075029022992, 3906964.584123046603054 ], [ 4977109.994537016376853, 3906978.001271912362427 ], [ 4977088.775473273359239, 3906935.717844176106155 ], [ 4977115.581042740494013, 3906922.300674489699304 ], [ 4977136.800075029022992, 3906964.584123046603054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977116.480430410243571, 3901087.460230215918273 ], [ 4977162.250927918590605, 3901097.38694295194 ], [ 4977155.566487153992057, 3901126.503502378240228 ], [ 4977110.084786742925644, 3901116.213270193431526 ], [ 4977116.480430410243571, 3901087.460230215918273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977072.864770700223744, 3906417.160759472288191 ], [ 4977090.091005760245025, 3906441.229262927081436 ], [ 4977051.73955584038049, 3906468.095359127502888 ], [ 4977034.801239809952676, 3906444.027477623429149 ], [ 4977072.864770700223744, 3906417.160759472288191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976948.236814809031785, 3907643.663237863685936 ], [ 4976924.58712849393487, 3907662.913233860395849 ], [ 4976904.196640645153821, 3907637.74586610449478 ], [ 4976927.84633438847959, 3907618.495852451305836 ], [ 4976948.236814809031785, 3907643.663237863685936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976870.021480263210833, 3909681.550715147517622 ], [ 4976852.724040707573295, 3909692.803026197478175 ], [ 4976846.984854423440993, 3909683.687831613700837 ], [ 4976834.011970018967986, 3909692.036042200867087 ], [ 4976816.218576944433153, 3909664.689283431973308 ], [ 4976875.894097815267742, 3909626.214701873250306 ], [ 4976893.11316090170294, 3909652.832044711802155 ], [ 4976863.708002050407231, 3909671.706062760204077 ], [ 4976870.021480263210833, 3909681.550715147517622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976781.822884895838797, 3906386.698884794022888 ], [ 4976792.128389993682504, 3906415.850742130540311 ], [ 4976748.905604907311499, 3906431.419109571259469 ], [ 4976738.312122545205057, 3906402.266673942096531 ], [ 4976781.822884895838797, 3906386.698884794022888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976783.579557001590729, 3899822.872794148046523 ], [ 4976789.072004825808108, 3899813.052619209513068 ], [ 4976813.812759254127741, 3899826.576583932153881 ], [ 4976782.301887627691031, 3899883.679951761849225 ], [ 4976765.61632513999939, 3899874.542218851856887 ], [ 4976777.179460722953081, 3899853.810665332246572 ], [ 4976755.315772802568972, 3899841.749197574332356 ], [ 4976769.770266747102141, 3899815.56165473209694 ], [ 4976783.579557001590729, 3899822.872794148046523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976730.947968989610672, 3911501.927740498911589 ], [ 4976719.413901250809431, 3911511.007251669187099 ], [ 4976689.548594081774354, 3911474.896426610648632 ], [ 4976701.083418722264469, 3911465.452771267388016 ], [ 4976730.947968989610672, 3911501.927740498911589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976717.765291654504836, 3901150.721408955287188 ], [ 4976745.674269830808043, 3901163.523601536173373 ], [ 4976719.350457332096994, 3901219.90953511511907 ], [ 4976691.729517455212772, 3901207.107963523361832 ], [ 4976717.765291654504836, 3901150.721408955287188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976636.46396292373538, 3901472.445400238502771 ], [ 4976632.965320678427815, 3901493.193650264758617 ], [ 4976598.993110992014408, 3901488.025832378305495 ], [ 4976602.49247760977596, 3901466.913448655512184 ], [ 4976636.46396292373538, 3901472.445400238502771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976615.467377716675401, 3906491.225612934213132 ], [ 4976580.917367489077151, 3906490.062050683889538 ], [ 4976581.841909063048661, 3906460.569263958372176 ], [ 4976599.981115967966616, 3906460.970754206180573 ], [ 4976600.290803681127727, 3906450.411564771551639 ], [ 4976616.702401617541909, 3906450.809507688041776 ], [ 4976615.467377716675401, 3906491.225612934213132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976438.404427395202219, 3909426.131925800349563 ], [ 4976465.468156127259135, 3909425.823397939093411 ], [ 4976465.702180686406791, 3909452.041429346892983 ], [ 4976438.638478362001479, 3909452.349956985097378 ], [ 4976438.404427395202219, 3909426.131925800349563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976364.866589700803161, 3900359.831757878419012 ], [ 4976363.653356555849314, 3900389.687981341499835 ], [ 4976316.136941744945943, 3900387.769932508468628 ], [ 4976317.350122176110744, 3900357.913706935476512 ], [ 4976364.866589700803161, 3900359.831757878419012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976333.504288635216653, 3912705.66269042249769 ], [ 4976358.579508948139846, 3912690.784648316912353 ], [ 4976384.399541290476918, 3912733.805366764776409 ], [ 4976348.083287683315575, 3912755.578862215392292 ], [ 4976332.304283304139972, 3912729.328900142107159 ], [ 4976343.832471161149442, 3912722.798138829413801 ], [ 4976333.504288635216653, 3912705.66269042249769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976326.899724829010665, 3905394.231566177215427 ], [ 4976332.150697821751237, 3905361.106341808103025 ], [ 4976366.405259980820119, 3905366.638555184938014 ], [ 4976361.154245800338686, 3905399.763772973790765 ], [ 4976326.899724829010665, 3905394.231566177215427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976299.600356462411582, 3909442.597270680591464 ], [ 4976270.78909018356353, 3909452.733968180604279 ], [ 4976253.612518459558487, 3909404.99742319341749 ], [ 4976292.220038066618145, 3909391.23944839509204 ], [ 4976300.235104731284082, 3909413.832092796452343 ], [ 4976290.438903143629432, 3909417.453349114861339 ], [ 4976299.600356462411582, 3909442.597270680591464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976223.675445758737624, 3906588.008574577514082 ], [ 4976235.424129066988826, 3906615.706645527388901 ], [ 4976210.064324044622481, 3906626.214591485448182 ], [ 4976212.356624244712293, 3906631.681260279379785 ], [ 4976189.589737261645496, 3906641.466265424154699 ], [ 4976175.54870936460793, 3906608.301548290532082 ], [ 4976223.675445758737624, 3906588.008574577514082 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976112.160792145878077, 3902256.436326622031629 ], [ 4976174.661572036333382, 3902252.194415722973645 ], [ 4976175.77554178237915, 3902270.767375180032104 ], [ 4976227.043559001758695, 3902267.23089342797175 ], [ 4976231.23215957544744, 3902331.326526180375367 ], [ 4976117.752398878335953, 3902338.741357280872762 ], [ 4976112.160792145878077, 3902256.436326622031629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976055.771361203864217, 3910982.016442769672722 ], [ 4976052.008027968928218, 3910992.204489582683891 ], [ 4976039.350641956552863, 3910987.44494495075196 ], [ 4976052.955623289570212, 3910951.059395560529083 ], [ 4976075.393773571588099, 3910959.480233970563859 ], [ 4976065.264215149916708, 3910985.677139344159514 ], [ 4976055.771361203864217, 3910982.016442769672722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975930.161177673377097, 3906358.006547232624143 ], [ 4975943.130197765305638, 3906352.206830466166139 ], [ 4975952.875577910803258, 3906374.074584510177374 ], [ 4975906.476283721625805, 3906394.371554593089968 ], [ 4975890.713078564964235, 3906358.290433844551444 ], [ 4975899.935206321068108, 3906354.303737011738122 ], [ 4975895.636145721189678, 3906344.463431640062481 ], [ 4975919.556406722404063, 3906333.952261625323445 ], [ 4975930.161177673377097, 3906358.006547232624143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975888.198672376573086, 3911558.826000857632607 ], [ 4975872.941709433682263, 3911558.430842980742455 ], [ 4975874.513641875237226, 3911493.254213587380946 ], [ 4975890.058523707091808, 3911493.649957842193544 ], [ 4975888.198672376573086, 3911558.826000857632607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975872.53151548653841, 3905245.466651032678783 ], [ 4975888.045955284498632, 3905262.612381241749972 ], [ 4975869.582454775460064, 3905279.689035633578897 ], [ 4975853.780804377049208, 3905262.178600613493472 ], [ 4975872.53151548653841, 3905245.466651032678783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975840.183338661678135, 3902741.997478934936225 ], [ 4975797.713444555178285, 3902809.639634602703154 ], [ 4975772.11617880128324, 3902793.565920768305659 ], [ 4975814.585294320248067, 3902726.287854925729334 ], [ 4975840.183338661678135, 3902741.997478934936225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975805.209224175661802, 3907627.845251817256212 ], [ 4975773.508103490807116, 3907642.346193994861096 ], [ 4975756.309534463100135, 3907604.441549599170685 ], [ 4975787.72276674490422, 3907589.94000306725502 ], [ 4975805.209224175661802, 3907627.845251817256212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975785.341007154434919, 3906209.874679584987462 ], [ 4975770.066228687763214, 3906216.762189368717372 ], [ 4975767.773064064793289, 3906211.659690099768341 ], [ 4975742.698785209096968, 3906223.261049934197217 ], [ 4975724.351930287666619, 3906183.16934100817889 ], [ 4975747.985066892579198, 3906172.293305185157806 ], [ 4975747.985066892579198, 3906172.293305185157806 ], [ 4975764.701037318445742, 3906164.680443004705012 ], [ 4975785.341007154434919, 3906209.874679584987462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975763.707927083596587, 3911478.827955617569387 ], [ 4975764.255613866262138, 3911492.666124413255602 ], [ 4975706.961210248060524, 3911495.462991426698864 ], [ 4975706.413494014181197, 3911481.62482377840206 ], [ 4975763.707927083596587, 3911478.827955617569387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975709.511398787610233, 3902991.89046529494226 ], [ 4975688.978276968933642, 3903034.816343571525067 ], [ 4975663.373788688331842, 3903022.384028076659888 ], [ 4975684.194114557467401, 3902979.822843537665904 ], [ 4975709.511398787610233, 3902991.89046529494226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975642.021494278684258, 3909017.771806974895298 ], [ 4975622.695522335357964, 3909035.575184149201959 ], [ 4975605.171426037326455, 3909016.60483496915549 ], [ 4975635.747211253270507, 3908988.264371516183019 ], [ 4975644.365306691266596, 3908997.749263012316078 ], [ 4975632.82758742198348, 3909008.2857506130822 ], [ 4975642.021494278684258, 3909017.771806974895298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975596.144069720990956, 3905223.42248918954283 ], [ 4975627.778678649105132, 3905243.149596864823252 ], [ 4975606.97933191806078, 3905276.243498645722866 ], [ 4975575.344746835529804, 3905256.516415066085756 ], [ 4975596.144069720990956, 3905223.42248918954283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975361.235805284231901, 3909483.294541619718075 ], [ 4975385.942674662917852, 3909509.561861807480454 ], [ 4975366.039952407591045, 3909528.092531155794859 ], [ 4975341.333080721087754, 3909501.825228968635201 ], [ 4975361.235805284231901, 3909483.294541619718075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975300.60678007081151, 3904700.66168660344556 ], [ 4975312.451748006977141, 3904681.386541843414307 ], [ 4975301.810600623488426, 3904674.810768039897084 ], [ 4975310.477818384766579, 3904660.627072661649436 ], [ 4975319.393437005579472, 3904666.106983252801001 ], [ 4975326.615761524066329, 3904654.469306729268283 ], [ 4975363.142074095085263, 3904676.390727820806205 ], [ 4975347.539728220552206, 3904702.57678539911285 ], [ 4975352.717047273181379, 3904705.500260934699327 ], [ 4975340.871328027918935, 3904725.139518314506859 ], [ 4975300.60678007081151, 3904700.66168660344556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975221.817981294356287, 3909232.490892197936773 ], [ 4975198.741622499190271, 3909254.292500603012741 ], [ 4975177.192532279528677, 3909232.401286197826266 ], [ 4975200.269623450934887, 3909210.23552847513929 ], [ 4975221.817981294356287, 3909232.490892197936773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974988.585741398856044, 3905071.085988970473409 ], [ 4975032.111483288928866, 3905048.596906192600727 ], [ 4975063.380006801337004, 3905107.64882957469672 ], [ 4975031.960626701824367, 3905123.971851641312242 ], [ 4975023.928626558743417, 3905108.662248752079904 ], [ 4975014.12738795299083, 3905114.104611656628549 ], [ 4975005.521659109741449, 3905097.70147160673514 ], [ 4975003.215870514512062, 3905098.789254034869373 ], [ 4974988.585741398856044, 3905071.085988970473409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974979.148618583567441, 3903310.127525316551328 ], [ 4975020.084013323299587, 3903288.361525266896933 ], [ 4975039.020054357126355, 3903323.356018430087715 ], [ 4975018.552367595024407, 3903334.238996438682079 ], [ 4975022.855149598792195, 3903342.622624274343252 ], [ 4974998.351546748541296, 3903355.682329871226102 ], [ 4974995.769291961565614, 3903350.943459228146821 ], [ 4974977.319610911421478, 3903360.738110967446119 ], [ 4974963.261529145762324, 3903334.492559562902898 ], [ 4974985.747163617052138, 3903322.521180721465498 ], [ 4974979.148618583567441, 3903310.127525316551328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974808.693062790669501, 3897228.442745307460427 ], [ 4974817.33845928683877, 3897226.275193430483341 ], [ 4974811.909333138726652, 3897204.416580706834793 ], [ 4974841.015388597734272, 3897197.191996430046856 ], [ 4974857.876564001664519, 3897263.861390347126871 ], [ 4974820.125193061307073, 3897273.253504913765937 ], [ 4974808.693062790669501, 3897228.442745307460427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974761.456579014658928, 3910676.812818485777825 ], [ 4974789.29562028311193, 3910720.200095032341778 ], [ 4974751.821312800049782, 3910744.522346162702888 ], [ 4974723.695070818066597, 3910700.770403337664902 ], [ 4974761.456579014658928, 3910676.812818485777825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974788.63026375323534, 3896599.914686728268862 ], [ 4974757.744590018875897, 3896632.62486763484776 ], [ 4974708.867392838001251, 3896587.375527204945683 ], [ 4974746.103750842623413, 3896547.759463733527809 ], [ 4974765.941680321469903, 3896566.369568850845098 ], [ 4974759.591712357476354, 3896572.911263198126107 ], [ 4974788.63026375323534, 3896599.914686728268862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974758.006923395209014, 3905180.22948829177767 ], [ 4974766.889848116785288, 3905202.095076435245574 ], [ 4974755.939073862507939, 3905206.442849357612431 ], [ 4974767.686977849341929, 3905235.596775980200619 ], [ 4974735.121930289082229, 3905249.004810818471014 ], [ 4974728.244493412785232, 3905232.241066813003272 ], [ 4974717.293013188056648, 3905236.952985776122659 ], [ 4974711.275062831118703, 3905222.375746327918023 ], [ 4974721.361251356080174, 3905218.390366410370916 ], [ 4974713.338520871475339, 3905198.347162792924792 ], [ 4974758.006923395209014, 3905180.22948829177767 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974758.695005858317018, 3903099.219836702570319 ], [ 4974782.041759876534343, 3903088.706528211943805 ], [ 4974798.673028505407274, 3903124.424518350977451 ], [ 4974775.037602219730616, 3903135.301368793938309 ], [ 4974758.695005858317018, 3903099.219836702570319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974603.482964006252587, 3911071.946989375166595 ], [ 4974607.46275067422539, 3911097.4442009893246 ], [ 4974582.40942816156894, 3911101.035784978885204 ], [ 4974578.716781854629517, 3911075.903280005324632 ], [ 4974603.482964006252587, 3911071.946989375166595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974606.867209433577955, 3898925.615788703318685 ], [ 4974628.191282387822866, 3898920.196174455340952 ], [ 4974633.046342544257641, 3898940.961241803597659 ], [ 4974612.011024323292077, 3898946.01729525020346 ], [ 4974606.867209433577955, 3898925.615788703318685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974514.827001853846014, 3910339.135717975907028 ], [ 4974526.020941173657775, 3910356.272154476959258 ], [ 4974535.533723076805472, 3910350.100762148853391 ], [ 4974560.79037413559854, 3910389.477209182921797 ], [ 4974529.658135616220534, 3910409.442757041193545 ], [ 4974493.207510560750961, 3910352.929911138489842 ], [ 4974514.827001853846014, 3910339.135717975907028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974511.30581238027662, 3900203.159828410949558 ], [ 4974470.670728292316198, 3900216.552163464948535 ], [ 4974461.798154016025364, 3900188.496544357854873 ], [ 4974502.14455138053745, 3900175.46775458753109 ], [ 4974511.30581238027662, 3900203.159828410949558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974430.657477914355695, 3896421.872904384508729 ], [ 4974380.496903321705759, 3896442.529107493814081 ], [ 4974353.54960763361305, 3896377.296640306711197 ], [ 4974389.58388511929661, 3896362.802662946749479 ], [ 4974405.924628804437816, 3896402.160979779902846 ], [ 4974420.05028949957341, 3896396.362841281108558 ], [ 4974430.657477914355695, 3896421.872904384508729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974345.205641168169677, 3903662.074869393371046 ], [ 4974363.86080649215728, 3903693.791156894061714 ], [ 4974309.66074881516397, 3903725.363511485047638 ], [ 4974293.59004361089319, 3903697.293675269931555 ], [ 4974310.022766222245991, 3903687.858701915945858 ], [ 4974307.43898450024426, 3903683.84815621515736 ], [ 4974345.205641168169677, 3903662.074869393371046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974315.827763329260051, 3899580.838329119142145 ], [ 4974281.540976654738188, 3899587.689134136307985 ], [ 4974272.416620026342571, 3899541.062442228198051 ], [ 4974306.703463782556355, 3899534.211625761352479 ], [ 4974315.827763329260051, 3899580.838329119142145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974295.327000916935503, 3894352.62174014840275 ], [ 4974309.123963317833841, 3894367.942397413775325 ], [ 4974315.760968093760312, 3894362.129429501481354 ], [ 4974344.217601185664535, 3894393.500734919216484 ], [ 4974305.837385948747396, 3894427.653112611267716 ], [ 4974281.405754427425563, 3894400.295209079049528 ], [ 4974269.863043650984764, 3894410.468061126302928 ], [ 4974252.329849396832287, 3894390.770505632273853 ], [ 4974295.327000916935503, 3894352.62174014840275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974260.270719609223306, 3900150.228734413161874 ], [ 4974218.189924022182822, 3900166.531643466558307 ], [ 4974205.580915091559291, 3900134.463311277795583 ], [ 4974247.662471138872206, 3900117.796253691893071 ], [ 4974260.270719609223306, 3900150.228734413161874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974243.672876756638288, 3903455.412027671933174 ], [ 4974272.211167262867093, 3903440.538938044104725 ], [ 4974277.088663901202381, 3903449.651843016967177 ], [ 4974291.789410439319909, 3903442.398229646496475 ], [ 4974314.741301267407835, 3903485.775159536395222 ], [ 4974247.575170522555709, 3903520.963348899967968 ], [ 4974233.803710969164968, 3903495.082874274346977 ], [ 4974248.216453297063708, 3903487.828669107984751 ], [ 4974239.896264490671456, 3903472.154618053231388 ], [ 4974249.985193049535155, 3903467.076675984077156 ], [ 4974243.672876756638288, 3903455.412027671933174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974183.838118837215006, 3894648.803228746633977 ], [ 4974210.907375613227487, 3894653.226096047088504 ], [ 4974206.534794243983924, 3894679.434794056229293 ], [ 4974179.464846229180694, 3894675.376059020869434 ], [ 4974183.838118837215006, 3894648.803228746633977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974132.632092155516148, 3908517.717811005190015 ], [ 4974101.494428122416139, 3908539.504486595280468 ], [ 4974083.118797772563994, 3908513.614948611706495 ], [ 4974113.968562726862729, 3908491.82768562156707 ], [ 4974132.632092155516148, 3908517.717811005190015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974101.070908265188336, 3896161.234279998578131 ], [ 4974042.842670098878443, 3896182.967638630885631 ], [ 4974032.813971215859056, 3896156.002350367605686 ], [ 4974035.408532509580255, 3896154.915056171827018 ], [ 4974025.379100704565644, 3896128.313899356406182 ], [ 4974060.25848535913974, 3896115.273733552545309 ], [ 4974070.861118344590068, 3896143.332548148930073 ], [ 4974091.615489348769188, 3896135.726615766063333 ], [ 4974101.070908265188336, 3896161.234279998578131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973986.773743148893118, 3896865.964948433917016 ], [ 4973942.664572949521244, 3896885.905585166532546 ], [ 4973920.581935785710812, 3896836.70478339260444 ], [ 4973940.473753670230508, 3896828.004652821924537 ], [ 4973944.775780001655221, 3896837.480460575781763 ], [ 4973987.154652983881533, 3896818.628822318743914 ], [ 4973999.772639229893684, 3896847.055704792961478 ], [ 4973981.898516018874943, 3896855.031490096822381 ], [ 4973986.773743148893118, 3896865.964948433917016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973895.664542501792312, 3898822.985157508403063 ], [ 4973854.164343162439764, 3898836.012592322658747 ], [ 4973839.280049430206418, 3898788.646537599619478 ], [ 4973860.894231260754168, 3898782.134492126759142 ], [ 4973862.613074010238051, 3898786.871549366507679 ], [ 4973882.210423070937395, 3898780.719703485723585 ], [ 4973895.664542501792312, 3898822.985157508403063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973749.517473294399679, 3909055.882487019058317 ], [ 4973787.288248318247497, 3909027.918115525040776 ], [ 4973803.943483819253743, 3909050.162769529037178 ], [ 4973766.172722592949867, 3909078.1271179956384 ], [ 4973749.517473294399679, 3909055.882487019058317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973760.349591636098921, 3900711.829101933632046 ], [ 4973719.452535271644592, 3900712.477490721736103 ], [ 4973719.230648587457836, 3900678.612909332849085 ], [ 4973760.12704505585134, 3900678.328649460338056 ], [ 4973760.349591636098921, 3900711.829101933632046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973678.362496096640825, 3899040.310296284966171 ], [ 4973654.726779654622078, 3899049.731589670758694 ], [ 4973644.121321925893426, 3899023.493535195477307 ], [ 4973667.757057664915919, 3899014.07223262405023 ], [ 4973678.362496096640825, 3899040.310296284966171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973639.926952644251287, 3903243.396278670057654 ], [ 4973591.484113667160273, 3903276.073690949007869 ], [ 4973568.512444953434169, 3903242.164759090635926 ], [ 4973592.733866188675165, 3903225.826021589804441 ], [ 4973597.614469406194985, 3903233.482282857876271 ], [ 4973633.658325070515275, 3903209.155727890785784 ], [ 4973660.075641805306077, 3903248.16927102394402 ], [ 4973648.54121233150363, 3903256.157664855010808 ], [ 4973639.926952644251287, 3903243.396278670057654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973545.788963725790381, 3902488.73328747972846 ], [ 4973556.434950754977763, 3902493.487709031905979 ], [ 4973560.77305378858, 3902484.028746289201081 ], [ 4973584.366721943952143, 3902494.634480639360845 ], [ 4973557.182655206881464, 3902553.206652123946697 ], [ 4973529.848858130164444, 3902540.773010011296719 ], [ 4973545.465557198040187, 3902506.939209024887532 ], [ 4973538.559748373925686, 3902504.012723684310913 ], [ 4973545.788963725790381, 3902488.73328747972846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973437.757332479581237, 3899542.706009313929826 ], [ 4973445.496830506250262, 3899561.655817300546914 ], [ 4973424.455154366791248, 3899570.354092027060688 ], [ 4973404.389158885926008, 3899521.521678404416889 ], [ 4973446.759891313500702, 3899504.489802854135633 ], [ 4973459.087044602259994, 3899534.008304587099701 ], [ 4973437.757332479581237, 3899542.706009313929826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973361.878461461514235, 3905254.317521258722991 ], [ 4973353.471464831382036, 3905283.43174920976162 ], [ 4973308.575492813251913, 3905270.964259692467749 ], [ 4973316.983150158077478, 3905241.485887669958174 ], [ 4973361.878461461514235, 3905254.317521258722991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973228.971036619506776, 3902807.461576928850263 ], [ 4973274.818268703296781, 3902776.963281287811697 ], [ 4973288.888162797316909, 3902798.110124599654227 ], [ 4973304.459270452149212, 3902787.58047951804474 ], [ 4973323.410598671995103, 3902816.019418307114393 ], [ 4973304.090890943072736, 3902829.090709059499204 ], [ 4973299.210130316205323, 3902821.434502958785743 ], [ 4973257.399521735496819, 3902849.391651540528983 ], [ 4973228.971036619506776, 3902807.461576928850263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973197.196785340085626, 3910453.442373707424849 ], [ 4973168.387778777629137, 3910463.582404426764697 ], [ 4973155.215756075456738, 3910426.77954205032438 ], [ 4973184.024797040969133, 3910416.639497442170978 ], [ 4973197.196785340085626, 3910453.442373707424849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973116.126470833085477, 3901890.361764028668404 ], [ 4973147.835034369491041, 3901874.765349245164543 ], [ 4973177.383508933708072, 3901933.811627680901438 ], [ 4973152.016275078989565, 3901946.507206775713712 ], [ 4973139.967340350151062, 3901922.4513019756414 ], [ 4973133.626058620400727, 3901925.352106157690287 ], [ 4973116.126470833085477, 3901890.361764028668404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972850.619960290379822, 3910278.719036402180791 ], [ 4972826.098563218489289, 3910304.889509040862322 ], [ 4972804.544896021485329, 3910284.82084031868726 ], [ 4972829.066290305927396, 3910258.650348346680403 ], [ 4972850.619960290379822, 3910278.719036402180791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972838.975670093670487, 3910795.401115634478629 ], [ 4972827.425841475836933, 3910813.221450068522245 ], [ 4972815.062680947594345, 3910804.82266256166622 ], [ 4972826.611805901862681, 3910787.366454408038408 ], [ 4972838.975670093670487, 3910795.401115634478629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972257.840412173420191, 3908763.159790095873177 ], [ 4972279.883703128434718, 3908829.473741919733584 ], [ 4972242.719759588129818, 3908841.783685049042106 ], [ 4972220.388476162217557, 3908775.469217022415251 ], [ 4972257.840412173420191, 3908763.159790095873177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972171.350735461339355, 3905937.695065347943455 ], [ 4972216.330374744720757, 3905905.736746908165514 ], [ 4972237.868659857660532, 3905936.000541715417057 ], [ 4972192.601104302331805, 3905967.958278799895197 ], [ 4972171.350735461339355, 3905937.695065347943455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972106.484532623551786, 3906892.325932767707855 ], [ 4972132.428679849952459, 3906876.353243003599346 ], [ 4972147.928691859357059, 3906901.871835907921195 ], [ 4972121.984559972770512, 3906917.844510957133025 ], [ 4972106.484532623551786, 3906892.325932767707855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971779.47839857917279, 3912664.303121950943023 ], [ 4971761.592842875048518, 3912684.296816050540656 ], [ 4971742.050592531450093, 3912666.781682601198554 ], [ 4971759.936145277693868, 3912646.787975705228746 ], [ 4971779.47839857917279, 3912664.303121950943023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971381.405564054846764, 3903377.458082905039191 ], [ 4971331.543521040119231, 3903400.6695083999075 ], [ 4971313.473402735777199, 3903362.037936666980386 ], [ 4971363.623470906168222, 3903338.82701518246904 ], [ 4971381.405564054846764, 3903377.458082905039191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971225.745140379294753, 3893702.595639259554446 ], [ 4971259.458432650193572, 3893697.9246551473625 ], [ 4971265.144010860472918, 3893738.717686606105417 ], [ 4971231.430768714286387, 3893743.388663702178746 ], [ 4971225.745140379294753, 3893702.595639259554446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971146.199270602315664, 3905048.383179630618542 ], [ 4971112.754392452538013, 3905071.261385704856366 ], [ 4971078.580085223540664, 3905021.676108172629029 ], [ 4971112.025671411305666, 3904998.433729994576424 ], [ 4971146.199270602315664, 3905048.383179630618542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970956.47667293343693, 3894905.543342103250325 ], [ 4970923.635854883119464, 3894906.575025772210211 ], [ 4970921.986217317171395, 3894863.96884979121387 ], [ 4970954.82708734460175, 3894862.937164133880287 ], [ 4970956.47667293343693, 3894905.543342103250325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970919.544847528450191, 3905067.990515359677374 ], [ 4970893.888304802589118, 3905083.600760140456259 ], [ 4970866.900958102196455, 3905040.219266111496836 ], [ 4970892.845477636903524, 3905024.609527943190187 ], [ 4970919.544847528450191, 3905067.990515359677374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970658.710449393838644, 3898148.297142918687314 ], [ 4970669.321845658123493, 3898173.077490597032011 ], [ 4970681.140230529941618, 3898168.001402378547937 ], [ 4970691.178228565491736, 3898191.324184517841786 ], [ 4970639.581040551885962, 3898213.441256212070584 ], [ 4970618.931579989381135, 3898165.338160805869848 ], [ 4970658.710449393838644, 3898148.297142918687314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970568.96328458096832, 3893845.577820252627134 ], [ 4970581.875697213225067, 3893873.27532127732411 ], [ 4970567.459469991736114, 3893880.167323124594986 ], [ 4970570.042085216380656, 3893885.633997186552733 ], [ 4970550.435924308374524, 3893895.065390755888075 ], [ 4970547.853973740711808, 3893889.2345906868577 ], [ 4970527.95975283253938, 3893898.665472405962646 ], [ 4970514.759226256050169, 3893870.967468954622746 ], [ 4970532.634964586235583, 3893862.625264423899353 ], [ 4970527.182309931144118, 3893851.327267998363823 ], [ 4970552.554589886218309, 3893839.357528385240585 ], [ 4970557.71916538849473, 3893850.655001503415406 ], [ 4970568.96328458096832, 3893845.577820252627134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970552.821785984560847, 3894164.88943341281265 ], [ 4970565.441985504701734, 3894194.771170902997255 ], [ 4970540.072037537582219, 3894205.648517108988017 ], [ 4970527.16374752484262, 3894175.766263294499367 ], [ 4970552.821785984560847, 3894164.88943341281265 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970485.01564430911094, 3896741.34485812485218 ], [ 4970516.720730063505471, 3896730.11492877593264 ], [ 4970525.317210539244115, 3896754.527374914381653 ], [ 4970493.612149934284389, 3896765.757294273935258 ], [ 4970485.01564430911094, 3896741.34485812485218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970445.692630358040333, 3894147.214975577779114 ], [ 4970521.217773932032287, 3894119.315349681768566 ], [ 4970531.82289092708379, 3894148.46511905733496 ], [ 4970456.298484576866031, 3894176.000587713904679 ], [ 4970445.692630358040333, 3894147.214975577779114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970354.923214128240943, 3903779.020183840766549 ], [ 4970389.817529467865825, 3903751.409995432477444 ], [ 4970409.354510719887912, 3903775.842518931254745 ], [ 4970357.15706392750144, 3903817.258044362999499 ], [ 4970339.631825472228229, 3903795.014020366128534 ], [ 4970356.93497368413955, 3903781.20864727254957 ], [ 4970354.923214128240943, 3903779.020183840766549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970333.106331842951477, 3913197.989890781231225 ], [ 4970311.216060800477862, 3913204.868437425233424 ], [ 4970314.078070112504065, 3913213.976998066995293 ], [ 4970295.355643795803189, 3913220.133076913654804 ], [ 4970290.203350671567023, 3913204.101803680881858 ], [ 4970277.817907282151282, 3913208.084663595538586 ], [ 4970265.796736375428736, 3913170.192859773989767 ], [ 4970272.99732150323689, 3913168.021198889706284 ], [ 4970269.276352255605161, 3913156.362142215482891 ], [ 4970315.073342625983059, 3913141.880414898972958 ], [ 4970333.106331842951477, 3913197.989890781231225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970258.352032706141472, 3898781.514609501231462 ], [ 4970273.54991459287703, 3898818.319467449560761 ], [ 4970219.649470128118992, 3898840.797280030325055 ], [ 4970204.738218773156404, 3898804.721234476659447 ], [ 4970224.338693241588771, 3898796.381948068272322 ], [ 4970219.463617018423975, 3898784.720901826396585 ], [ 4970238.775428804568946, 3898776.745230216067284 ], [ 4970243.363143804483116, 3898788.041626001242548 ], [ 4970258.352032706141472, 3898781.514609501231462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969995.568753006868064, 3899159.732112513389438 ], [ 4970002.524021265096962, 3899136.07626476418227 ], [ 4970069.307626907713711, 3899155.860513655934483 ], [ 4970059.166299012489617, 3899189.342074074782431 ], [ 4970011.957148365676403, 3899175.419437932781875 ], [ 4970014.855124616064131, 3899165.593180205672979 ], [ 4969995.568753006868064, 3899159.732112513389438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969790.838742312975228, 3899292.269121136981994 ], [ 4969800.428665515035391, 3899244.949513978790492 ], [ 4969828.643423749133945, 3899250.826577544678003 ], [ 4969826.026298713870347, 3899264.658795659430325 ], [ 4969845.315923437476158, 3899268.69909692555666 ], [ 4969838.343712885864079, 3899301.822342101950198 ], [ 4969790.838742312975228, 3899292.269121136981994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969746.183552724309266, 3898022.466915490571409 ], [ 4969766.905010948888958, 3898031.607558531686664 ], [ 4969771.821832410991192, 3898020.328405568841845 ], [ 4969795.134203855879605, 3898030.2020074846223 ], [ 4969776.334274621680379, 3898073.499524508137256 ], [ 4969732.300495703704655, 3898054.485306134447455 ], [ 4969746.183552724309266, 3898022.466915490571409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969647.288582609035075, 3912308.260517051909119 ], [ 4969641.268826550804079, 3912294.048481318634003 ], [ 4969667.774172080680728, 3912282.44397840090096 ], [ 4969685.835356438532472, 3912323.987711680587381 ], [ 4969649.247277343645692, 3912339.579494612757117 ], [ 4969637.493680632673204, 3912312.248337528668344 ], [ 4969647.288582609035075, 3912308.260517051909119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969588.593425698578358, 3900286.344547050073743 ], [ 4969582.760046420618892, 3900327.116665206383914 ], [ 4969555.982446888461709, 3900323.427219694014639 ], [ 4969562.103788345120847, 3900282.655613512732089 ], [ 4969588.593425698578358, 3900286.344547050073743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969328.773728618398309, 3903045.989440858364105 ], [ 4969311.188526364974678, 3903056.517785946838558 ], [ 4969320.088312006555498, 3903071.82720724446699 ], [ 4969301.350590865127742, 3903082.717628428246826 ], [ 4969275.798517317511141, 3903039.340359651017934 ], [ 4969312.409445006400347, 3903017.92208015313372 ], [ 4969328.773728618398309, 3903045.989440858364105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969119.158764122053981, 3892193.089313434436917 ], [ 4969165.837571708485484, 3892188.438793770968914 ], [ 4969172.627730902284384, 3892257.99947588192299 ], [ 4969138.915595687925816, 3892261.216562870424241 ], [ 4969137.219496964477003, 3892243.007107050158083 ], [ 4969124.252935439348221, 3892244.44052893621847 ], [ 4969119.158764122053981, 3892193.089313434436917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969046.549064796417952, 3898841.598641612101346 ], [ 4969069.864227306097746, 3898849.650974525604397 ], [ 4969066.678545796312392, 3898859.476819915231317 ], [ 4969088.554248913191259, 3898867.162478272803128 ], [ 4969075.818644693121314, 3898902.460435334593058 ], [ 4969030.628485955297947, 3898886.35833888174966 ], [ 4969046.549064796417952, 3898841.598641612101346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968935.721126784570515, 3897671.816306832246482 ], [ 4968982.116588580422103, 3897659.154110548086464 ], [ 4968991.845585267059505, 3897695.22024423442781 ], [ 4968987.235169189982116, 3897696.304445398971438 ], [ 4968991.529098803177476, 3897711.241395827382803 ], [ 4968939.370549330487847, 3897725.34987005405128 ], [ 4968933.073950892314315, 3897702.762648157309741 ], [ 4968943.448187761940062, 3897699.86801484040916 ], [ 4968935.721126784570515, 3897671.816306832246482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968933.062909971922636, 3894298.88016537996009 ], [ 4968912.901507762260735, 3894297.023766250815243 ], [ 4968910.845664974302053, 3894319.231997991912067 ], [ 4968879.451640008948743, 3894316.263324382249266 ], [ 4968883.272630277089775, 3894273.302858099341393 ], [ 4968935.116189039312303, 3894278.128447505179793 ], [ 4968933.062909971922636, 3894298.88016537996009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968928.254021277651191, 3893436.978217589203268 ], [ 4968918.093259830027819, 3893481.019801651127636 ], [ 4968887.281503843143582, 3893474.046736088581383 ], [ 4968897.442217388190329, 3893430.005140559282154 ], [ 4968928.254021277651191, 3893436.978217589203268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968864.31462608743459, 3893591.983831718098372 ], [ 4968895.126252703368664, 3893598.956871431786567 ], [ 4968882.930383577942848, 3893653.554606566205621 ], [ 4968852.118816445581615, 3893646.581580610014498 ], [ 4968864.31462608743459, 3893591.983831718098372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968839.243884854018688, 3893433.907473625149578 ], [ 4968836.606088235974312, 3893459.391830144450068 ], [ 4968811.547416164539754, 3893457.16271190578118 ], [ 4968813.897113792598248, 3893431.677843276411295 ], [ 4968839.243884854018688, 3893433.907473625149578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968714.983783678151667, 3898710.288376992568374 ], [ 4968667.73841011710465, 3898716.031068201642483 ], [ 4968664.613239868544042, 3898691.628840632271022 ], [ 4968651.361793805845082, 3898693.061988040339202 ], [ 4968648.808791849762201, 3898670.845552083104849 ], [ 4968699.22309644613415, 3898664.744291592855006 ], [ 4968701.77734302636236, 3898686.232474399730563 ], [ 4968711.859941584058106, 3898685.157886161934584 ], [ 4968714.983783678151667, 3898710.288376992568374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968268.766929366625845, 3897270.82685456937179 ], [ 4968287.523567345924675, 3897251.196664413437247 ], [ 4968295.28775308188051, 3897258.492847104556859 ], [ 4968311.158334984444082, 3897242.134790162090212 ], [ 4968339.337884055450559, 3897269.493872489780188 ], [ 4968304.42326438613236, 3897305.117445686366409 ], [ 4968268.766929366625845, 3897270.82685456937179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968081.775861714966595, 3903749.109346050303429 ], [ 4968116.07162366900593, 3903733.147363686002791 ], [ 4968132.710706398822367, 3903769.22537170117721 ], [ 4968124.064779946580529, 3903773.215732383541763 ], [ 4968134.106060518883169, 3903794.71698781196028 ], [ 4968110.185332545079291, 3903805.963331816252321 ], [ 4968105.308351579122245, 3903795.395024057012051 ], [ 4968091.186672274954617, 3903801.924766795709729 ], [ 4968078.563197027891874, 3903774.957060100976378 ], [ 4968090.955829980783165, 3903769.152559322305024 ], [ 4968081.775861714966595, 3903749.109346050303429 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968063.872263861820102, 3897990.718012610916048 ], [ 4968103.635800584219396, 3897981.684048590715975 ], [ 4968115.925714423879981, 3898036.324959677644074 ], [ 4968084.230154596269131, 3898043.552312614861876 ], [ 4968081.085976262576878, 3898029.709897858090699 ], [ 4968073.018072037026286, 3898031.516491980291903 ], [ 4968063.872263861820102, 3897990.718012610916048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967575.864431473426521, 3899546.528491546865553 ], [ 4967549.651138545945287, 3899549.032234925311059 ], [ 4967547.391592295840383, 3899523.175096955150366 ], [ 4967573.31690002605319, 3899520.670855029951781 ], [ 4967575.864431473426521, 3899546.528491546865553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967509.879898814484477, 3901739.208487758412957 ], [ 4967560.905573643743992, 3901709.073517289943993 ], [ 4967579.857459525577724, 3901741.149683060124516 ], [ 4967552.471148636192083, 3901757.124237375799567 ], [ 4967563.381995556876063, 3901776.07783439476043 ], [ 4967540.031294987536967, 3901789.87457210291177 ], [ 4967509.879898814484477, 3901739.208487758412957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967388.291217958554626, 3899592.08625506144017 ], [ 4967393.429127281531692, 3899619.04071261221543 ], [ 4967359.721438673324883, 3899625.173078159336001 ], [ 4967354.582872135564685, 3899598.582756101619452 ], [ 4967388.291217958554626, 3899592.08625506144017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967131.403784499503672, 3905316.87590351421386 ], [ 4967148.990386059507728, 3905304.161335022188723 ], [ 4967164.502881582826376, 3905325.67159366980195 ], [ 4967146.916286707855761, 3905338.386152176186442 ], [ 4967131.403784499503672, 3905316.87590351421386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966836.119562364183366, 3893510.544542756397277 ], [ 4966785.106922614388168, 3893524.294988191220909 ], [ 4966773.081786969676614, 3893480.579154323786497 ], [ 4966824.094503405503929, 3893466.828686422202736 ], [ 4966836.119562364183366, 3893510.544542756397277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966799.161522476933897, 3895260.48632088303566 ], [ 4966812.051210137084126, 3895303.475420203991234 ], [ 4966790.724625114351511, 3895309.629480074159801 ], [ 4966777.834906349889934, 3895266.640390817541629 ], [ 4966799.161522476933897, 3895260.48632088303566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966767.489641832187772, 3890998.304773188196123 ], [ 4966734.935402858071029, 3890997.521422617603093 ], [ 4966735.574440512806177, 3890960.381410104222596 ], [ 4966768.129340912215412, 3890960.800634115934372 ], [ 4966767.489641832187772, 3890998.304773188196123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966396.401842554099858, 3894608.015622718259692 ], [ 4966395.293007776141167, 3894582.160592419095337 ], [ 4966437.065218972042203, 3894580.410129659343511 ], [ 4966437.885338731110096, 3894606.628805539570749 ], [ 4966396.401842554099858, 3894608.015622718259692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966259.096125161275268, 3897816.494297902099788 ], [ 4966344.375149440020323, 3897803.164428826421499 ], [ 4966349.219704653136432, 3897834.12359161535278 ], [ 4966263.940776117146015, 3897847.453445557039231 ], [ 4966259.096125161275268, 3897816.494297902099788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966181.117224023677409, 3895185.52795823989436 ], [ 4966182.801133390516043, 3895212.112208308186382 ], [ 4966190.29120747372508, 3895211.760599690489471 ], [ 4966192.261335820890963, 3895239.437717062421143 ], [ 4966149.912836622446775, 3895241.915855148807168 ], [ 4966148.226464022882283, 3895216.78811962576583 ], [ 4966132.094094792380929, 3895217.489438622724265 ], [ 4966130.967402838170528, 3895202.194128834176809 ], [ 4966146.523668270558119, 3895201.491846964228898 ], [ 4966145.682607929222286, 3895187.653530742041767 ], [ 4966181.117224023677409, 3895185.52795823989436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966027.661174410022795, 3895484.222043788526207 ], [ 4966058.481071973219514, 3895485.365787215065211 ], [ 4966057.865513263270259, 3895509.033166605513543 ], [ 4966026.757589625194669, 3895507.888944055419415 ], [ 4966027.661174410022795, 3895484.222043788526207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965773.582853765226901, 3907314.038882869295776 ], [ 4965803.823608011938632, 3907308.991162605583668 ], [ 4965815.79996972065419, 3907379.288482322823256 ], [ 4965785.271366346627474, 3907384.33571211528033 ], [ 4965773.582853765226901, 3907314.038882869295776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965771.835001054219902, 3893069.621539646293968 ], [ 4965710.746528553776443, 3893078.987790737766773 ], [ 4965704.47682402189821, 3893037.830869830679148 ], [ 4965765.852864606305957, 3893028.829209517221898 ], [ 4965771.835001054219902, 3893069.621539646293968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965761.305350271984935, 3892469.519963670987636 ], [ 4965715.502727488055825, 3892467.623526617418975 ], [ 4965716.698433306999505, 3892441.408240898512304 ], [ 4965762.501100678928196, 3892443.304679950233549 ], [ 4965761.305350271984935, 3892469.519963670987636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965536.608223374933004, 3906796.215914746746421 ], [ 4965550.970014963299036, 3906817.359232597518712 ], [ 4965527.621721683070064, 3906832.97841528756544 ], [ 4965513.259920137003064, 3906811.835109712090343 ], [ 4965536.608223374933004, 3906796.215914746746421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965431.15191329549998, 3898432.320788754150271 ], [ 4965466.854642772115767, 3898439.662096695974469 ], [ 4965454.661912512034178, 3898497.902832536958158 ], [ 4965419.247278374619782, 3898490.562013840302825 ], [ 4965431.15191329549998, 3898432.320788754150271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965306.835778897628188, 3898716.866364934947342 ], [ 4965328.71923650149256, 3898720.543543369974941 ], [ 4965324.938569681718946, 3898742.749273391440511 ], [ 4965303.055129653774202, 3898739.072097990196198 ], [ 4965306.835778897628188, 3898716.866364934947342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965261.073617777787149, 3902214.263633551076055 ], [ 4965270.825021264143288, 3902238.67636541556567 ], [ 4965234.803549874573946, 3902253.18261715117842 ], [ 4965217.308200338855386, 3902209.458297832868993 ], [ 4965247.854494848288596, 3902197.127843296620995 ], [ 4965255.598395152948797, 3902216.439452259335667 ], [ 4965261.073617777787149, 3902214.263633551076055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965254.135434008203447, 3905220.154412469360977 ], [ 4965268.175749686546624, 3905262.416653508320451 ], [ 4965193.845097841694951, 3905286.691802848130465 ], [ 4965179.804678139276803, 3905244.429600017145276 ], [ 4965254.135434008203447, 3905220.154412469360977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965063.434603706002235, 3890424.88484442140907 ], [ 4965118.773850306868553, 3890411.138207845389843 ], [ 4965127.076090211048722, 3890443.559166528750211 ], [ 4965071.736906013451517, 3890457.305786271113902 ], [ 4965063.434603706002235, 3890424.88484442140907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964961.977651559747756, 3902850.276163919363171 ], [ 4964950.102011658251286, 3902892.49603418726474 ], [ 4964916.136455555446446, 3902882.973420941270888 ], [ 4964928.012046230956912, 3902840.753535906318575 ], [ 4964961.977651559747756, 3902850.276163919363171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964976.487757224589586, 3892689.62227203277871 ], [ 4964982.876531853340566, 3892658.317596689332277 ], [ 4965008.22019493021071, 3892663.092508074827492 ], [ 4965001.831391893327236, 3892694.397177489008754 ], [ 4964976.487757224589586, 3892689.62227203277871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964925.480867036618292, 3901031.384030419401824 ], [ 4964951.668190122582018, 3901043.807036133948714 ], [ 4964933.461840742267668, 3901082.37527063395828 ], [ 4964907.274546911008656, 3901069.952282363083214 ], [ 4964925.480867036618292, 3901031.384030419401824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964903.148842371068895, 3902368.799575343262404 ], [ 4964908.422389570623636, 3902313.460263637360185 ], [ 4964947.581784786656499, 3902317.165214849170297 ], [ 4964944.069780429825187, 3902351.751928443554789 ], [ 4964928.809215421788394, 3902350.270598382223397 ], [ 4964926.759624678641558, 3902371.02272189874202 ], [ 4964903.148842371068895, 3902368.799575343262404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964598.256288222968578, 3901605.816391189582646 ], [ 4964623.060265051200986, 3901582.916181470267475 ], [ 4964656.121849949471653, 3901618.290227346587926 ], [ 4964631.317877450026572, 3901641.190407045185566 ], [ 4964598.256288222968578, 3901605.816391189582646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964579.576850113458931, 3902831.450350919738412 ], [ 4964587.98213945236057, 3902797.963863672222942 ], [ 4964709.170181409455836, 3902828.746560720261186 ], [ 4964700.764750503003597, 3902862.233010690193623 ], [ 4964579.576850113458931, 3902831.450350919738412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964488.476678631268442, 3901640.596087206155062 ], [ 4964525.591296491213143, 3901662.867792231030762 ], [ 4964505.955418443307281, 3901695.607937211170793 ], [ 4964468.840244092978537, 3901673.70038854284212 ], [ 4964488.476678631268442, 3901640.596087206155062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964007.621384625323117, 3899957.908359428867698 ], [ 4964036.690811483189464, 3899969.970918236300349 ], [ 4964020.790252313949168, 3900007.815155448857695 ], [ 4963992.008285370655358, 3899996.117200899403542 ], [ 4964007.621384625323117, 3899957.908359428867698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963640.943853375501931, 3899986.822078465018421 ], [ 4963617.55803314037621, 3900023.198227920569479 ], [ 4963571.810565489344299, 3899994.359864262398332 ], [ 4963594.908343220129609, 3899957.98322186851874 ], [ 4963640.943853375501931, 3899986.822078465018421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963604.181945419870317, 3899738.791451840195805 ], [ 4963645.624060341157019, 3899758.519819433335215 ], [ 4963631.753184851258993, 3899787.992488592397422 ], [ 4963590.023097760975361, 3899768.263688347768039 ], [ 4963604.181945419870317, 3899738.791451840195805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963574.375960987061262, 3900377.064824029803276 ], [ 4963601.705646544694901, 3900396.406782620586455 ], [ 4963576.304804612882435, 3900432.415670797694474 ], [ 4963548.975137514062226, 3900413.073737618047744 ], [ 4963574.375960987061262, 3900377.064824029803276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963562.106678011827171, 3904328.228292088955641 ], [ 4963568.967797818593681, 3904359.918509711511433 ], [ 4963522.878425617702305, 3904370.041641503106803 ], [ 4963516.017254103906453, 3904338.351435450371355 ], [ 4963562.106678011827171, 3904328.228292088955641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963237.931773737072945, 3904285.116474914364517 ], [ 4963277.710567669011652, 3904259.32534447312355 ], [ 4963292.073788068257272, 3904281.559812981169671 ], [ 4963286.596867731772363, 3904285.192556703463197 ], [ 4963298.088454526849091, 3904302.324700444471091 ], [ 4963263.786612288095057, 3904324.483051818795502 ], [ 4963237.931773737072945, 3904285.116474914364517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963115.604030749760568, 3894079.816803562454879 ], [ 4963094.292063270695508, 3894076.506461801938713 ], [ 4963091.094406001269817, 3894095.07206111960113 ], [ 4963065.174486564472318, 3894091.026313016656786 ], [ 4963066.918756186962128, 3894080.833415640983731 ], [ 4963035.239146843552589, 3894075.686350950505584 ], [ 4963042.509355345740914, 3894031.638050441164523 ], [ 4963057.484979861415923, 3894034.210238333791494 ], [ 4963059.22981648799032, 3894023.653212754521519 ], [ 4963081.693539789877832, 3894027.329447651281953 ], [ 4963079.657792742364109, 3894039.706663853488863 ], [ 4963121.128941875882447, 3894046.689674264285713 ], [ 4963115.604030749760568, 3894079.816803562454879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962918.779789131134748, 3896728.551134249195457 ], [ 4962933.570343430154026, 3896663.759014053735882 ], [ 4962965.531570888124406, 3896671.091185446828604 ], [ 4962955.380656372755766, 3896715.863363366574049 ], [ 4962963.730998169630766, 3896717.696967923548073 ], [ 4962959.379319403320551, 3896737.71733840322122 ], [ 4962918.779789131134748, 3896728.551134249195457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962609.949860676191747, 3896948.372538608964533 ], [ 4962608.161126673221588, 3896987.695778562221676 ], [ 4962580.511222327128053, 3896986.560861503705382 ], [ 4962582.299915948882699, 3896947.237619733437896 ], [ 4962609.949860676191747, 3896948.372538608964533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962604.927334452979267, 3895345.103149328846484 ], [ 4962625.427433726377785, 3895313.819582897704095 ], [ 4962598.089627115987241, 3895295.935188694857061 ], [ 4962618.01196310389787, 3895265.743116366211325 ], [ 4962632.688233810476959, 3895275.233064469881356 ], [ 4962637.596953370608389, 3895267.593908499926329 ], [ 4962674.43105757702142, 3895291.683170898351818 ], [ 4962629.099847263656557, 3895360.797903282567859 ], [ 4962604.927334452979267, 3895345.103149328846484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962370.346158383414149, 3910657.539093071594834 ], [ 4962410.088484525680542, 3910648.860767952632159 ], [ 4962424.098040014505386, 3910712.241305492818356 ], [ 4962384.355803007259965, 3910720.919610232580453 ], [ 4962370.346158383414149, 3910657.539093071594834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962068.290824476629496, 3893440.616565438918769 ], [ 4962114.669847514480352, 3893441.415281772147864 ], [ 4962114.023957432247698, 3893487.294528320897371 ], [ 4962055.833944651298225, 3893486.477882814593613 ], [ 4962056.160708724521101, 3893460.989363002590835 ], [ 4962067.971788802184165, 3893461.007293416187167 ], [ 4962068.290824476629496, 3893440.616565438918769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962036.825326217338443, 3903543.352301862090826 ], [ 4962034.500037332065403, 3903557.549881182610989 ], [ 4962061.850260028615594, 3903561.960974898189306 ], [ 4962054.873812850564718, 3903604.917837963439524 ], [ 4962000.74937676731497, 3903596.096565687097609 ], [ 4962009.762495349161327, 3903539.305800579953939 ], [ 4962036.825326217338443, 3903543.352301862090826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961887.633222514763474, 3900322.026777351275086 ], [ 4961875.793233374133706, 3900343.128433753736317 ], [ 4961890.757191658951342, 3900351.161922912113369 ], [ 4961875.163291862234473, 3900378.812248938716948 ], [ 4961857.034633360803127, 3900368.589205007068813 ], [ 4961848.949150856584311, 3900382.778071165084839 ], [ 4961819.597787585109472, 3900366.3478874550201 ], [ 4961854.828545608557761, 3900303.770683319307864 ], [ 4961887.633222514763474, 3900322.026777351275086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961881.075769810006022, 3899325.392609492875636 ], [ 4961923.958741966634989, 3899345.848753013182431 ], [ 4961911.535111640579998, 3899371.683189613278955 ], [ 4961868.652171333320439, 3899351.227065608371049 ], [ 4961881.075769810006022, 3899325.392609492875636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961743.05424986872822, 3899367.423403327353299 ], [ 4961727.747397630475461, 3899395.438361731357872 ], [ 4961696.666810137219727, 3899379.005719555076212 ], [ 4961711.973639257252216, 3899350.990743726957589 ], [ 4961743.05424986872822, 3899367.423403327353299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961732.852080230601132, 3899448.244910226203501 ], [ 4961719.561359071172774, 3899476.262911313213408 ], [ 4961678.404314691200852, 3899457.266208576504141 ], [ 4961691.407538964413106, 3899428.883624847512692 ], [ 4961732.852080230601132, 3899448.244910226203501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961703.656138624995947, 3897796.871867727953941 ], [ 4961714.381171300075948, 3897751.735926714725792 ], [ 4961746.629463605582714, 3897759.06708711758256 ], [ 4961735.903831189498305, 3897804.567144355736673 ], [ 4961703.656138624995947, 3897796.871867727953941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961161.634825352579355, 3891554.525761682074517 ], [ 4961173.44403947237879, 3891556.363936948124319 ], [ 4961169.657707574777305, 3891584.032071289606392 ], [ 4961094.767516251653433, 3891574.089512295555323 ], [ 4961101.174159365706146, 3891527.854704783298075 ], [ 4961127.385479824617505, 3891531.534853004850447 ], [ 4961129.134578697383404, 3891517.700569491833448 ], [ 4961166.003291436471045, 3891522.85307893389836 ], [ 4961161.634825352579355, 3891554.525761682074517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961034.578484931029379, 3893894.592072161380202 ], [ 4960988.196446754038334, 3893896.344115474261343 ], [ 4960986.53745482955128, 3893849.369040198158473 ], [ 4961045.883307094685733, 3893847.272052606102079 ], [ 4961046.712482511997223, 3893870.941655902191997 ], [ 4961033.748760751448572, 3893871.286596971098334 ], [ 4961034.578484931029379, 3893894.592072161380202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960881.005195240490139, 3907197.13771129399538 ], [ 4960900.227588906884193, 3907243.774937476962805 ], [ 4960871.993518286384642, 3907255.385506098158658 ], [ 4960852.483156197704375, 3907208.747875421773642 ], [ 4960881.005195240490139, 3907197.13771129399538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960336.194383528083563, 3908814.906175741460174 ], [ 4960361.544827596284449, 3908805.11149844666943 ], [ 4960353.800915980711579, 3908784.708828032482415 ], [ 4960379.150864655151963, 3908775.278298879042268 ], [ 4960405.249943934381008, 3908844.501424648799002 ], [ 4960372.410145011730492, 3908856.834079704247415 ], [ 4960368.681097126565874, 3908847.361214614938945 ], [ 4960351.109033415094018, 3908853.890014837961644 ], [ 4960336.194383528083563, 3908814.906175741460174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960309.498464804142714, 3906383.19483896298334 ], [ 4960319.830829355865717, 3906406.150149893481284 ], [ 4960312.915591401979327, 3906409.417280332650989 ], [ 4960329.562413758598268, 3906446.218776263296604 ], [ 4960292.970735743641853, 3906462.551505546085536 ], [ 4960265.703542927280068, 3906402.794319351669401 ], [ 4960309.498464804142714, 3906383.19483896298334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960164.382095647975802, 3898624.086948160082102 ], [ 4960169.62814059946686, 3898581.49134992621839 ], [ 4960159.549013040959835, 3898580.384367826394737 ], [ 4960161.587294938974082, 3898565.093864594120532 ], [ 4960225.228721766732633, 3898572.832799560856074 ], [ 4960221.731824747286737, 3898600.865728333126754 ], [ 4960209.061053830198944, 3898599.390840227715671 ], [ 4960205.274046340025961, 3898628.879870537668467 ], [ 4960164.382095647975802, 3898624.086948160082102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960148.123558747582138, 3893737.083548908587545 ], [ 4960122.760045131668448, 3893746.150082230102271 ], [ 4960127.064275587908924, 3893757.808428583201021 ], [ 4960099.683233300223947, 3893767.600323840044439 ], [ 4960080.173239923082292, 3893712.952814366202801 ], [ 4960132.629807027988136, 3893694.093935457058251 ], [ 4960148.123558747582138, 3893737.083548908587545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960092.579534315504134, 3896291.368786928709596 ], [ 4960095.708561569452286, 3896318.683010864537209 ], [ 4960072.949364623054862, 3896321.199036489706486 ], [ 4960074.371705791912973, 3896333.581489303614944 ], [ 4960032.310402259230614, 3896338.254454100504518 ], [ 4960028.042266828939319, 3896301.835359930526465 ], [ 4960038.701496378518641, 3896300.758350885938853 ], [ 4960036.996346277184784, 3896284.734198562335223 ], [ 4960062.925116021186113, 3896281.494460111483932 ], [ 4960064.34641239605844, 3896294.60516931861639 ], [ 4960092.579534315504134, 3896291.368786928709596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959718.726490536704659, 3909146.103542305529118 ], [ 4959697.110535288229585, 3909162.094418329186738 ], [ 4959682.167503989301622, 3909142.409901204053313 ], [ 4959703.783987279981375, 3909126.054881907999516 ], [ 4959718.726490536704659, 3909146.103542305529118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959717.185127326287329, 3899963.805766242090613 ], [ 4959736.767933127470315, 3899964.926191217731684 ], [ 4959735.290886814706028, 3899990.777317113708705 ], [ 4959715.707578664645553, 3899990.021022609900683 ], [ 4959717.185127326287329, 3899963.805766242090613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959404.533512924797833, 3904339.846086874604225 ], [ 4959414.570691204629838, 3904368.99082864029333 ], [ 4959424.077968440018594, 3904365.727152511011809 ], [ 4959433.541786829009652, 3904393.050431784242392 ], [ 4959381.108116878196597, 3904410.818404604680836 ], [ 4959361.894990555010736, 3904354.350825889967382 ], [ 4959404.533512924797833, 3904339.846086874604225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958858.378733244724572, 3899738.286195244640112 ], [ 4958874.008125644177198, 3899683.324427403509617 ], [ 4958909.131891065277159, 3899692.84099988033995 ], [ 4958900.737822071649134, 3899722.687906360253692 ], [ 4958922.618265912868083, 3899728.544647485483438 ], [ 4958915.670354647561908, 3899754.024015908595175 ], [ 4958858.378733244724572, 3899738.286195244640112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958447.218490808270872, 3905688.338425785768777 ], [ 4958460.432656895369291, 3905710.9328673328273 ], [ 4958438.531285870820284, 3905723.647146951872855 ], [ 4958425.317107661627233, 3905701.052716007921845 ], [ 4958447.218490808270872, 3905688.338425785768777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958320.939535547979176, 3898496.584717580582947 ], [ 4958333.3661426929757, 3898466.379085680935532 ], [ 4958394.967516344040632, 3898491.953231418970972 ], [ 4958382.540851677767932, 3898522.158835282083601 ], [ 4958320.939535547979176, 3898496.584717580582947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958201.322301608510315, 3907775.929866383317858 ], [ 4958167.030598424375057, 3907797.002377049531788 ], [ 4958152.666029660031199, 3907774.042337896768004 ], [ 4958186.957750804722309, 3907752.969809194095433 ], [ 4958201.322301608510315, 3907775.929866383317858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958098.568793706595898, 3900820.521075739525259 ], [ 4958105.819133149459958, 3900783.753856612835079 ], [ 4958142.385211608372629, 3900790.722500741481781 ], [ 4958135.134823978878558, 3900827.489710157271475 ], [ 4958098.568793706595898, 3900820.521075739525259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957893.772802197374403, 3899575.280029049143195 ], [ 4957918.922038845717907, 3899507.586143746972084 ], [ 4957946.845120483078063, 3899517.819894070271403 ], [ 4957921.695822981186211, 3899585.513753664214164 ], [ 4957893.772802197374403, 3899575.280029049143195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957562.680587845854461, 3897141.715606168378145 ], [ 4957559.174481542780995, 3897178.487949568312615 ], [ 4957546.790439215488732, 3897177.378835641779006 ], [ 4957544.455182014964521, 3897200.31584133580327 ], [ 4957533.211984655819833, 3897207.583252814598382 ], [ 4957530.620161341503263, 3897207.215624910779297 ], [ 4957513.323325232602656, 3897218.116169749759138 ], [ 4957492.628019603900611, 3897186.044861094094813 ], [ 4957517.420173193328083, 3897170.420731512364 ], [ 4957520.632782885804772, 3897137.653411326464266 ], [ 4957562.680587845854461, 3897141.715606168378145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957543.904600725509226, 3897394.760267426725477 ], [ 4957527.776720105670393, 3897393.281977618578821 ], [ 4957526.313458356074989, 3897410.394091791473329 ], [ 4957494.057712214998901, 3897407.437542952597141 ], [ 4957498.442040354013443, 3897360.1066137207672 ], [ 4957502.185982709750533, 3897360.475792389828712 ], [ 4957503.64432059507817, 3897347.004966198466718 ], [ 4957533.307837172411382, 3897349.958027124870569 ], [ 4957531.552604413591325, 3897369.982782832812518 ], [ 4957546.240332706831396, 3897371.459130150265992 ], [ 4957543.904600725509226, 3897394.760267426725477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957352.954965247772634, 3896524.597851886413991 ], [ 4957309.473278759047389, 3896515.072124002035707 ], [ 4957317.587812154553831, 3896478.305945863481611 ], [ 4957361.069555290043354, 3896487.83168667415157 ], [ 4957352.954965247772634, 3896524.597851886413991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957268.056635700166225, 3905494.834801777265966 ], [ 4957287.886342689394951, 3905523.627763343509287 ], [ 4957225.633973388001323, 3905565.419451386667788 ], [ 4957206.092663682065904, 3905536.262789612170309 ], [ 4957268.056635700166225, 3905494.834801777265966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957234.469317465089262, 3893586.645854528993368 ], [ 4957239.626859783194959, 3893607.408096275292337 ], [ 4957247.119210060685873, 3893605.597483864985406 ], [ 4957260.299870881251991, 3893658.413803287316114 ], [ 4957222.261078431271017, 3893668.194353443104774 ], [ 4957209.652111124247313, 3893618.65597576694563 ], [ 4957210.804891940206289, 3893618.293389030266553 ], [ 4957204.787491462193429, 3893594.252844116650522 ], [ 4957234.469317465089262, 3893586.645854528993368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957150.615254702977836, 3898781.202119435649365 ], [ 4957179.406357675790787, 3898789.251446973066777 ], [ 4957168.987101517617702, 3898827.107025668025017 ], [ 4957140.195549802854657, 3898819.421838317997754 ], [ 4957150.615254702977836, 3898781.202119435649365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957121.423005684278905, 3899936.91167060425505 ], [ 4957152.547080705873668, 3899922.388024362269789 ], [ 4957190.169217180460691, 3900002.182799010071903 ], [ 4957159.333218929357827, 3900016.706787167582661 ], [ 4957121.423005684278905, 3899936.91167060425505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956881.627409687265754, 3898982.207999581936747 ], [ 4956903.865015814080834, 3898936.721253665629774 ], [ 4956934.950487731024623, 3898952.05596134904772 ], [ 4956912.712841585278511, 3898997.542681974824518 ], [ 4956881.627409687265754, 3898982.207999581936747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956815.296104525215924, 3904924.002203290350735 ], [ 4956874.226882296614349, 3904999.091289872769266 ], [ 4956854.049050332978368, 3905015.086320968810469 ], [ 4956795.118251432664692, 3904939.997277910355479 ], [ 4956815.296104525215924, 3904924.002203290350735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956344.156450660899282, 3906063.84203919628635 ], [ 4956399.787472184747458, 3906019.126586019527167 ], [ 4956419.335498992353678, 3906043.548969525378197 ], [ 4956363.704495340585709, 3906088.264382900204509 ], [ 4956344.156450660899282, 3906063.84203919628635 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955806.902463207021356, 3899759.678713344503194 ], [ 4955835.172192001715302, 3899724.758592325262725 ], [ 4955882.069170023314655, 3899762.324372567236423 ], [ 4955853.511412394233048, 3899797.244074243120849 ], [ 4955806.902463207021356, 3899759.678713344503194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955667.088514647446573, 3900086.123985510319471 ], [ 4955618.12594978697598, 3900087.517851974349469 ], [ 4955616.739007578231394, 3900046.005247244145721 ], [ 4955645.54039566218853, 3900045.313829828053713 ], [ 4955645.819546348415315, 3900052.23265888215974 ], [ 4955665.980793486349285, 3900051.530207558069378 ], [ 4955667.088514647446573, 3900086.123985510319471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955193.591482627205551, 3895082.017640273552388 ], [ 4955171.958203352056444, 3895104.93046086281538 ], [ 4955115.853504665195942, 3895052.061015118844807 ], [ 4955137.774836814962327, 3895029.148513218387961 ], [ 4955193.591482627205551, 3895082.017640273552388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954861.822303890250623, 3894101.365760033018887 ], [ 4954894.623805678449571, 3894131.993611164391041 ], [ 4954872.989563631825149, 3894155.270787794608623 ], [ 4954840.188520678319037, 3894124.278834413737059 ], [ 4954861.822303890250623, 3894101.365760033018887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954808.718291663564742, 3896257.671519984025508 ], [ 4954815.953067253343761, 3896230.734988056123257 ], [ 4954841.292420796118677, 3896237.685096933506429 ], [ 4954834.058076583780348, 3896264.257493460085243 ], [ 4954808.718291663564742, 3896257.671519984025508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954043.244328996166587, 3901327.23418605607003 ], [ 4954067.778239856474102, 3901282.476100725121796 ], [ 4954057.12922868411988, 3901277.001144367735833 ], [ 4954069.540426447056234, 3901254.440216705668718 ], [ 4954114.149738878943026, 3901278.527330777142197 ], [ 4954094.81159795448184, 3901313.460203634109348 ], [ 4954104.596614237874746, 3901318.934118864126503 ], [ 4954095.071553553454578, 3901336.400733296759427 ], [ 4954080.393811877816916, 3901328.371931811328977 ], [ 4954072.311836314387619, 3901343.291404782328755 ], [ 4954043.244328996166587, 3901327.23418605607003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953394.882744721136987, 3898274.677323782350868 ], [ 4953405.563138902187347, 3898255.027096601203084 ], [ 4953417.364704610779881, 3898261.231421960052103 ], [ 4953406.683868622407317, 3898281.245773670263588 ], [ 4953394.882744721136987, 3898274.677323782350868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953354.686554040759802, 3893103.267600848339498 ], [ 4953398.219569091685116, 3893075.645852487534285 ], [ 4953424.386409115977585, 3893116.095426060725003 ], [ 4953381.141075847670436, 3893144.081605060491711 ], [ 4953354.686554040759802, 3893103.267600848339498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952843.662852962501347, 3892343.090203389059752 ], [ 4952801.809455764479935, 3892411.861319133546203 ], [ 4952775.036210708320141, 3892395.808261673897505 ], [ 4952788.314247999340296, 3892373.612002426758409 ], [ 4952783.99593604542315, 3892371.05803821189329 ], [ 4952800.159991123713553, 3892344.495629670564085 ], [ 4952806.781720075756311, 3892348.144685226492584 ], [ 4952818.904892478138208, 3892328.131856440100819 ], [ 4952843.662852962501347, 3892343.090203389059752 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952491.90546072088182, 3892593.19948399066925 ], [ 4952443.219615703448653, 3892592.778822838328779 ], [ 4952443.520374830812216, 3892581.855318683199584 ], [ 4952424.218710348010063, 3892581.83293029665947 ], [ 4952424.543529118411243, 3892550.154133336618543 ], [ 4952492.530715343542397, 3892550.961312171537429 ], [ 4952491.90546072088182, 3892593.19948399066925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952122.620128314010799, 3892308.024470184464008 ], [ 4952110.745426808483899, 3892362.994221904315054 ], [ 4952070.135193644091487, 3892354.20855523692444 ], [ 4952079.402830947190523, 3892311.616160888690501 ], [ 4952054.921239631250501, 3892306.490301211830229 ], [ 4952060.423695499077439, 3892281.371749086305499 ], [ 4952093.545433455146849, 3892288.69229490077123 ], [ 4952090.938442140817642, 3892301.069668728858232 ], [ 4952122.620128314010799, 3892308.024470184464008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951953.296071039512753, 3889470.180506671778858 ], [ 4951975.777588402852416, 3889462.923632552381605 ], [ 4951967.165248581208289, 3889435.604209568817168 ], [ 4951991.087390268221498, 3889428.348994192201644 ], [ 4952006.876834533177316, 3889478.252555627375841 ], [ 4951960.185530748218298, 3889492.400168989319354 ], [ 4951953.296071039512753, 3889470.180506671778858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951609.883813891559839, 3894805.727103497833014 ], [ 4951603.017226704396307, 3894764.208655753638595 ], [ 4951687.147163887508214, 3894750.102752473205328 ], [ 4951694.300036175176501, 3894793.07806130964309 ], [ 4951658.285427822731435, 3894799.227489979937673 ], [ 4951660.00184706132859, 3894809.789169610012323 ], [ 4951637.528998659923673, 3894813.405046060215682 ], [ 4951635.526156408712268, 3894801.386528508737683 ], [ 4951609.883813891559839, 3894805.727103497833014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951507.412024742923677, 3896271.959265918470919 ], [ 4951544.568598922342062, 3896273.093503178097308 ], [ 4951541.869506506249309, 3896367.764058933127671 ], [ 4951504.713063082657754, 3896366.629825334530324 ], [ 4951507.412024742923677, 3896271.959265918470919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951078.99523729737848, 3896875.206775534898043 ], [ 4951078.363399057649076, 3896925.455923188012093 ], [ 4951029.685783841647208, 3896924.673692023381591 ], [ 4951030.317531098611653, 3896874.424543245695531 ], [ 4951078.99523729737848, 3896875.206775534898043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950810.090742588974535, 3890212.81253317091614 ], [ 4950813.490007004700601, 3890265.614818576723337 ], [ 4950830.201551944948733, 3890264.540815235115588 ], [ 4950831.900161153636873, 3890291.85227845935151 ], [ 4950789.833034510724247, 3890294.719050890300423 ], [ 4950788.695399854332209, 3890281.245067737065256 ], [ 4950780.339433286339045, 3890281.964144751895219 ], [ 4950778.920882352627814, 3890261.935550996102393 ], [ 4950784.683470418676734, 3890261.577752546407282 ], [ 4950781.565459823235869, 3890214.965954380575567 ], [ 4950810.090742588974535, 3890212.81253317091614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950788.196562194265425, 3895454.781860593240708 ], [ 4950814.120599570684135, 3895455.538617113605142 ], [ 4950813.206782161258161, 3895500.689611742738634 ], [ 4950749.260155520401895, 3895499.526974965352565 ], [ 4950749.876621127128601, 3895462.750619541853666 ], [ 4950787.898905808106065, 3895463.520630116574466 ], [ 4950788.196562194265425, 3895454.781860593240708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950534.762783794663846, 3893025.401615102775395 ], [ 4950533.02161318436265, 3893037.051830587442964 ], [ 4950503.066082417964935, 3893032.649676654022187 ], [ 4950504.806844088248909, 3893021.363587324973196 ], [ 4950534.762783794663846, 3893025.401615102775395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950422.646565097384155, 3891746.82503376621753 ], [ 4950431.551773572340608, 3891770.50303312484175 ], [ 4950403.883766781538725, 3891780.66860684659332 ], [ 4950395.266630720347166, 3891756.990928815212101 ], [ 4950422.646565097384155, 3891746.82503376621753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949787.552056100219488, 3894588.530646084807813 ], [ 4949795.375769781880081, 3894545.207623094785959 ], [ 4949827.633076079189777, 3894550.703827291727066 ], [ 4949816.040890308097005, 3894616.234694846440107 ], [ 4949773.415717521682382, 3894608.542728567961603 ], [ 4949777.183718631975353, 3894586.698997288476676 ], [ 4949787.552056100219488, 3894588.530646084807813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948835.282795669510961, 3891995.305579259060323 ], [ 4948829.776572179980576, 3892026.979089023545384 ], [ 4948788.586718655191362, 3892020.018429345451295 ], [ 4948793.804804109968245, 3891988.344616109039634 ], [ 4948835.282795669510961, 3891995.305579259060323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948013.614049166440964, 3900418.238802498672158 ], [ 4948038.679535338655114, 3900408.796392696443945 ], [ 4948057.063274546526372, 3900457.244021048769355 ], [ 4948031.998189895413816, 3900466.322284274734557 ], [ 4948013.614049166440964, 3900418.238802498672158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947569.347953096963465, 3889998.978994692675769 ], [ 4947565.28943511005491, 3890024.463969863951206 ], [ 4947509.403896486386657, 3890016.034390873275697 ], [ 4947516.65329738240689, 3889968.340727682691067 ], [ 4947550.069366658106446, 3889973.471182800829411 ], [ 4947546.87840502243489, 3889995.679858609568328 ], [ 4947569.347953096963465, 3889998.978994692675769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946689.927812774665654, 3898933.124015669804066 ], [ 4946714.706545078195632, 3898923.315977540332824 ], [ 4946736.545050266198814, 3898976.863745836075395 ], [ 4946711.478343388065696, 3898986.671491319779307 ], [ 4946689.927812774665654, 3898933.124015669804066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946531.174316411837935, 3889803.538547386880964 ], [ 4946505.24368595611304, 3889803.878305981401354 ], [ 4946504.989431749098003, 3889767.829418612644076 ], [ 4946530.631982267834246, 3889767.489388876128942 ], [ 4946531.174316411837935, 3889803.538547386880964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946245.814538322389126, 3889939.45553672593087 ], [ 4946246.41784574650228, 3889910.325874471571296 ], [ 4946289.633804118260741, 3889911.458469492848963 ], [ 4946289.030449891462922, 3889940.588130803778768 ], [ 4946245.814538322389126, 3889939.45553672593087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943911.742977567017078, 3891728.53236045408994 ], [ 4943944.296027495525777, 3891730.380459923762828 ], [ 4943940.497337062843144, 3891793.735551567282528 ], [ 4943908.232456606812775, 3891791.887699416838586 ], [ 4943911.742977567017078, 3891728.53236045408994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943813.001665149815381, 3893012.36561435693875 ], [ 4943846.129326957277954, 3893014.214079890400171 ], [ 4943844.666587133891881, 3893040.794224857818335 ], [ 4943811.538652393966913, 3893039.309889261145145 ], [ 4943813.001665149815381, 3893012.36561435693875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943220.485734230838716, 3890465.162678990513086 ], [ 4943249.006264057010412, 3890467.734894840512425 ], [ 4943245.52157202642411, 3890501.231808036100119 ], [ 4943217.289184272289276, 3890498.65983122959733 ], [ 4943220.485734230838716, 3890465.162678990513086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992547.644649588502944, 3910490.178598928730935 ], [ 4992580.756170806474984, 3910488.809955988544971 ], [ 4992582.105723001994193, 3910522.67794463224709 ], [ 4992548.994243442080915, 3910524.046585941687226 ], [ 4992547.644649588502944, 3910490.178598928730935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992121.429319241084158, 3910430.789565530605614 ], [ 4992159.625902999192476, 3910466.211287697777152 ], [ 4992139.416713517159224, 3910487.641825654078275 ], [ 4992101.22013380844146, 3910452.220131737180054 ], [ 4992121.429319241084158, 3910430.789565530605614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992069.93174886610359, 3910744.90088839456439 ], [ 4992034.493467359803617, 3910755.367365568410605 ], [ 4992023.936508215032518, 3910719.290344136767089 ], [ 4992059.37483308557421, 3910708.823853273876011 ], [ 4992069.93174886610359, 3910744.90088839456439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991594.811438178643584, 3903193.728123665321618 ], [ 4991622.178202239796519, 3903190.15845535043627 ], [ 4991626.980256400071084, 3903225.855939431115985 ], [ 4991642.824355932883918, 3903223.712646091822535 ], [ 4991645.364583833143115, 3903243.382413480896503 ], [ 4991632.113181819207966, 3903245.168363686650991 ], [ 4991635.219818675890565, 3903268.480931154917926 ], [ 4991605.260449340566993, 3903272.407930364366621 ], [ 4991594.811438178643584, 3903193.728123665321618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989953.468336344696581, 3900337.605164842680097 ], [ 4989927.40770910680294, 3900392.522347332444042 ], [ 4989883.972583007998765, 3900371.655924187973142 ], [ 4989910.032211189158261, 3900317.102828915696591 ], [ 4989953.468336344696581, 3900337.605164842680097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989863.613822115585208, 3908456.789380061905831 ], [ 4989885.298560516908765, 3908421.159746961668134 ], [ 4989923.245614218525589, 3908443.83294408256188 ], [ 4989901.84875775501132, 3908479.463282700162381 ], [ 4989863.613822115585208, 3908456.789380061905831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989139.63037858530879, 3908520.858359187841415 ], [ 4989133.180359416641295, 3908566.722799067851156 ], [ 4989110.442569466307759, 3908563.752299105282873 ], [ 4989111.613535926677287, 3908556.10846708714962 ], [ 4989088.587821247056127, 3908553.137258466798812 ], [ 4989093.8677230598405, 3908514.552510259672999 ], [ 4989139.63037858530879, 3908520.858359187841415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989007.954244770109653, 3913468.370362968184054 ], [ 4989016.223209802992642, 3913499.706740726251155 ], [ 4988959.477082125842571, 3913514.493144687730819 ], [ 4988951.20805558282882, 3913483.156784093938768 ], [ 4989007.954244770109653, 3913468.370362968184054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989619.351191740483046, 3908499.862663961946964 ], [ 4989580.752198570407927, 3908507.047130065504462 ], [ 4989573.648797043599188, 3908469.887517103925347 ], [ 4989612.247841616161168, 3908462.703040972817689 ], [ 4989619.351191740483046, 3908499.862663961946964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988761.02441839594394, 3908634.242098357062787 ], [ 4988771.767774740234017, 3908598.219944221433252 ], [ 4988808.306163762696087, 3908608.87164389481768 ], [ 4988797.274850161746144, 3908644.893059840425849 ], [ 4988761.02441839594394, 3908634.242098357062787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988565.100577089935541, 3907541.716532707214355 ], [ 4988566.661528778262436, 3907493.29081019712612 ], [ 4988615.029236493632197, 3907494.868560151197016 ], [ 4988613.469110601581633, 3907542.930149587802589 ], [ 4988565.100577089935541, 3907541.716532707214355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989168.618159806355834, 3908784.927939573768526 ], [ 4989194.816211685538292, 3908785.722442456986755 ], [ 4989194.462923056446016, 3908811.574984217993915 ], [ 4989168.263975916430354, 3908811.144612229429185 ], [ 4989168.618159806355834, 3908784.927939573768526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988346.1013576798141, 3904844.405139770358801 ], [ 4988352.785201000981033, 3904820.024987024255097 ], [ 4988404.007238239981234, 3904833.625825503375381 ], [ 4988390.636747909709811, 3904883.478497073054314 ], [ 4988360.4217180153355, 3904875.392117678187788 ], [ 4988367.107385694980621, 3904850.28370862128213 ], [ 4988346.1013576798141, 3904844.405139770358801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988213.511342072859406, 3907900.965166924055666 ], [ 4988182.118948858231306, 3907904.528275524266064 ], [ 4988176.200505678541958, 3907853.170829719863832 ], [ 4988207.592958062887192, 3907849.6077143214643 ], [ 4988213.511342072859406, 3907900.965166924055666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988138.582353571429849, 3896820.987601153086871 ], [ 4988177.18322195392102, 3896819.627162035554647 ], [ 4988178.257408237084746, 3896850.945035104639828 ], [ 4988139.656584761105478, 3896852.305472704116255 ], [ 4988138.582353571429849, 3896820.987601153086871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988384.308855194598436, 3908568.482543209102005 ], [ 4988397.698816012591124, 3908625.320722512900829 ], [ 4988366.873972906731069, 3908632.526361467782408 ], [ 4988353.483950586989522, 3908575.688197260256857 ], [ 4988384.308855194598436, 3908568.482543209102005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988300.338419411331415, 3908297.35807778313756 ], [ 4988330.872075958177447, 3908291.608167096506804 ], [ 4988339.968105589970946, 3908338.604002858512104 ], [ 4988309.434500422328711, 3908344.353903364855796 ], [ 4988300.338419411331415, 3908297.35807778313756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987857.646832237020135, 3908827.162609685678035 ], [ 4987835.473214386962354, 3908828.928313670679927 ], [ 4987835.751198435202241, 3908832.934463948011398 ], [ 4987802.92309867311269, 3908835.402058323845267 ], [ 4987800.406764646060765, 3908805.172799084335566 ], [ 4987819.989203236065805, 3908803.400646005757153 ], [ 4987818.868234125897288, 3908791.017351986840367 ], [ 4987830.674383749254048, 3908790.318339810241014 ], [ 4987831.51555779017508, 3908799.423745363485068 ], [ 4987855.129656283184886, 3908797.297476084437221 ], [ 4987857.646832237020135, 3908827.162609685678035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987514.994382325559855, 3902653.547162686940283 ], [ 4987466.573039473034441, 3902670.177859801333398 ], [ 4987457.994747012853622, 3902645.395785513799638 ], [ 4987444.448182240128517, 3902650.096124512143433 ], [ 4987437.586066118441522, 3902630.051993173547089 ], [ 4987449.979835119098425, 3902625.712942492682487 ], [ 4987441.400616138242185, 3902601.295003410894424 ], [ 4987480.599612745456398, 3902587.5545834293589 ], [ 4987494.609974361024797, 3902628.371837374288589 ], [ 4987504.986119444482028, 3902624.756101650651544 ], [ 4987514.994382325559855, 3902653.547162686940283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986964.480039640329778, 3909323.825296453665942 ], [ 4986901.408348687924445, 3909332.04616413731128 ], [ 4986893.779035304673016, 3909273.037988778669387 ], [ 4986936.979132125154138, 3909267.317443795036525 ], [ 4986937.827715188264847, 3909273.509778102859855 ], [ 4986957.411535169929266, 3909271.008734325412661 ], [ 4986964.480039640329778, 3909323.825296453665942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986937.136716414242983, 3906022.896761717740446 ], [ 4986951.716624201275408, 3906065.900005908682942 ], [ 4986944.2239512167871, 3906068.43061219714582 ], [ 4986950.799385176040232, 3906087.745695439632982 ], [ 4986905.843405510298908, 3906102.929366329219192 ], [ 4986904.415273141115904, 3906098.192158197984099 ], [ 4986891.447312138043344, 3906102.530062936712056 ], [ 4986877.724923243746161, 3906062.07787036895752 ], [ 4986892.999091234058142, 3906056.65319619467482 ], [ 4986888.425848545506597, 3906042.805001214612275 ], [ 4986909.174455472268164, 3906035.937180560547858 ], [ 4986908.030701566487551, 3906032.657196095678955 ], [ 4986937.136716414242983, 3906022.896761717740446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986907.156981453299522, 3908157.731926235835999 ], [ 4986893.905653148889542, 3908160.612609784584492 ], [ 4986895.044868774712086, 3908165.713250431232154 ], [ 4986863.35615386813879, 3908172.918501949403435 ], [ 4986855.384262651205063, 3908136.121636578813195 ], [ 4986900.323472225107253, 3908126.399819446261972 ], [ 4986907.156981453299522, 3908157.731926235835999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986662.734758999198675, 3895725.329630204476416 ], [ 4986679.00032202154398, 3895670.021467500831932 ], [ 4986732.251699469052255, 3895685.808719887863845 ], [ 4986725.571531268768013, 3895708.368503234349191 ], [ 4986699.66555530205369, 3895700.658687562216073 ], [ 4986695.308441754430532, 3895715.577406279277056 ], [ 4986688.399650655686855, 3895713.739937417209148 ], [ 4986683.171302251517773, 3895731.56957675749436 ], [ 4986662.734758999198675, 3895725.329630204476416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986402.695805393159389, 3909237.250030449591577 ], [ 4986401.738491245545447, 3909275.845796526409686 ], [ 4986345.311628858558834, 3909274.616627597715706 ], [ 4986346.268861976452172, 3909236.0208595325239 ], [ 4986402.695805393159389, 3909237.250030449591577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986768.347853713668883, 3908643.146137171890587 ], [ 4986703.827968882396817, 3908654.276999704074115 ], [ 4986698.433915083296597, 3908622.948441574349999 ], [ 4986762.953872813843191, 3908611.817566302139312 ], [ 4986768.347853713668883, 3908643.146137171890587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986186.492569098249078, 3901008.800657243467867 ], [ 4986125.351650964468718, 3901044.337845303118229 ], [ 4986106.995612861588597, 3901012.978271327912807 ], [ 4986124.299875289201736, 3901002.824365778360516 ], [ 4986122.291825396940112, 3900999.542339268140495 ], [ 4986142.480442731641233, 3900987.574752493295819 ], [ 4986147.355246566236019, 3900996.325668436009437 ], [ 4986171.004209479317069, 3900982.545803691726178 ], [ 4986186.492569098249078, 3901008.800657243467867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986341.952047144062817, 3908284.531429135706276 ], [ 4986316.898039956577122, 3908286.655541422311217 ], [ 4986314.657315316610038, 3908260.79669524775818 ], [ 4986303.714723759330809, 3908261.498464608564973 ], [ 4986302.319221064448357, 3908243.288452361244708 ], [ 4986357.322785324417055, 3908238.687953418120742 ], [ 4986360.124303332529962, 3908270.738417325541377 ], [ 4986341.117408447898924, 3908272.513028780929744 ], [ 4986341.952047144062817, 3908284.531429135706276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986256.694160648621619, 3914366.444648179225624 ], [ 4986198.230452100746334, 3914378.683790094684809 ], [ 4986191.686465950682759, 3914346.988305767066777 ], [ 4986250.150240392424166, 3914334.749149861745536 ], [ 4986256.694160648621619, 3914366.444648179225624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986112.224490636959672, 3906721.119202854577452 ], [ 4986126.066376042552292, 3906712.413443581201136 ], [ 4986099.962008756585419, 3906671.931742795277387 ], [ 4986119.57225826382637, 3906659.234447184950113 ], [ 4986128.464793613180518, 3906673.092944424599409 ], [ 4986140.577348406426609, 3906665.111282030120492 ], [ 4986175.000050444155931, 3906718.721883505582809 ], [ 4986129.148357826285064, 3906747.741720292717218 ], [ 4986112.224490636959672, 3906721.119202854577452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984853.901289159432054, 3914767.639518368057907 ], [ 4984911.732608730904758, 3914778.700535523239523 ], [ 4984906.484925254248083, 3914806.726426459848881 ], [ 4984848.65280183032155, 3914796.029552483931184 ], [ 4984853.901289159432054, 3914767.639518368057907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984759.334259402938187, 3909595.991601631976664 ], [ 4984722.462128701619804, 3909604.643658841960132 ], [ 4984714.196398393251002, 3909569.303239526692778 ], [ 4984751.068574852310121, 3909560.651171165052801 ], [ 4984759.334259402938187, 3909595.991601631976664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984740.025524714030325, 3905339.237681597005576 ], [ 4984720.035854843445122, 3905390.533067598938942 ], [ 4984714.282928912900388, 3905387.970556145068258 ], [ 4984708.199059405364096, 3905403.613863383419812 ], [ 4984673.964288160204887, 3905390.424287608359009 ], [ 4984677.440283311530948, 3905381.693324604537338 ], [ 4984656.151938249357045, 3905373.268049042206258 ], [ 4984666.870445421896875, 3905345.98344463435933 ], [ 4984682.980907941237092, 3905352.21171335503459 ], [ 4984694.858980127610266, 3905321.652669976465404 ], [ 4984740.025524714030325, 3905339.237681597005576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984547.04994688462466, 3909638.094194935634732 ], [ 4984502.109837830066681, 3909649.640611747279763 ], [ 4984494.693823719397187, 3909620.128386803437024 ], [ 4984539.633121109567583, 3909608.946088685188442 ], [ 4984547.04994688462466, 3909638.094194935634732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984209.537064217031002, 3909430.837817039806396 ], [ 4984210.76376982498914, 3909398.796999346930534 ], [ 4984256.824194570071995, 3909400.725639480166137 ], [ 4984255.5982880089432, 3909432.402324248570949 ], [ 4984209.537064217031002, 3909430.837817039806396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985097.515017608180642, 3915818.016457135789096 ], [ 4985121.608351123519242, 3915853.758904079906642 ], [ 4985108.634992303326726, 3915862.467283574864268 ], [ 4985114.945720081217587, 3915871.585646462161094 ], [ 4985092.746942863799632, 3915886.462385419290513 ], [ 4985085.289198189042509, 3915875.520629903767258 ], [ 4985092.784157507121563, 3915870.804695761762559 ], [ 4985088.195240188390017, 3915863.87523631285876 ], [ 4985076.087132473476231, 3915871.857419170904905 ], [ 4985056.294850973412395, 3915843.04378205165267 ], [ 4985062.637607825919986, 3915838.68923703674227 ], [ 4985052.311861925758421, 3915823.371065558400005 ], [ 4985071.915821876376867, 3915810.308800142724067 ], [ 4985083.676412377506495, 3915827.451060612220317 ], [ 4985097.515017608180642, 3915818.016457135789096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985058.597360297106206, 3908813.450913833919913 ], [ 4985045.001582660712302, 3908840.364453354850411 ], [ 4985003.015059789642692, 3908819.873360318131745 ], [ 4985022.686318394728005, 3908780.593706094194204 ], [ 4985043.104653965681791, 3908790.473761623725295 ], [ 4985036.741223233751953, 3908802.839167362544686 ], [ 4985058.597360297106206, 3908813.450913833919913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984975.106028231792152, 3909540.426038512960076 ], [ 4985001.314689153805375, 3909536.482751533389091 ], [ 4985005.286572884768248, 3909561.253215022850782 ], [ 4984978.790032961405814, 3909565.195815295446664 ], [ 4984975.106028231792152, 3909540.426038512960076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984398.607311424799263, 3907016.354103581979871 ], [ 4984408.289084544405341, 3907062.257533512543887 ], [ 4984381.785893237218261, 3907068.021368021611124 ], [ 4984384.63267464376986, 3907081.865085880737752 ], [ 4984359.570008542388678, 3907087.268194711301476 ], [ 4984357.292231720872223, 3907076.338874621782452 ], [ 4984333.381282708607614, 3907081.744712822139263 ], [ 4984335.943578182719648, 3907094.131228304933757 ], [ 4984311.169716966338456, 3907099.170927988365293 ], [ 4984308.892776045948267, 3907087.877481566742063 ], [ 4984285.270630396902561, 3907092.919908009003848 ], [ 4984287.83209269028157, 3907105.670549320988357 ], [ 4984261.905681888572872, 3907111.071722881868482 ], [ 4984259.627867422997952, 3907100.142410895321518 ], [ 4984236.870382215827703, 3907104.822775159031153 ], [ 4984239.718087866902351, 3907118.302347626537085 ], [ 4984214.368409728631377, 3907123.340786694549024 ], [ 4984204.401811299845576, 3907075.980228939559311 ], [ 4984226.295527348294854, 3907071.297812757547945 ], [ 4984223.731472344137728, 3907059.639568579383194 ], [ 4984253.691498843953013, 3907053.155418802984059 ], [ 4984255.683098088018596, 3907063.35579414665699 ], [ 4984274.695831118151546, 3907059.394926808774471 ], [ 4984272.132649988867342, 3907047.372547768056393 ], [ 4984302.379777106456459, 3907041.253257988020778 ], [ 4984304.37306774687022, 3907050.725376198999584 ], [ 4984322.809957876801491, 3907046.763191602192819 ], [ 4984320.246797032654285, 3907034.740808072965592 ], [ 4984350.49480454903096, 3907028.257442170754075 ], [ 4984352.774298584088683, 3907038.458500708919019 ], [ 4984368.618981909006834, 3907034.854392357170582 ], [ 4984366.054985065944493, 3907023.19613486668095 ], [ 4984398.607311424799263, 3907016.354103581979871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983678.353973956778646, 3905588.001291383523494 ], [ 4983749.229985598474741, 3905570.323577743489295 ], [ 4983754.938920396380126, 3905591.820643998682499 ], [ 4983743.414340334013104, 3905594.706895461305976 ], [ 4983745.411325078457594, 3905602.722443700768054 ], [ 4983686.059962912462652, 3905617.513886716216803 ], [ 4983678.353973956778646, 3905588.001291383523494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983598.829627820290625, 3907347.303374205250293 ], [ 4983660.648364258930087, 3907384.224261368159205 ], [ 4983641.57169334590435, 3907415.859476859681308 ], [ 4983579.465077793225646, 3907378.937964958138764 ], [ 4983598.829627820290625, 3907347.303374205250293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984145.95183620788157, 3909535.923294132109731 ], [ 4984187.138153173029423, 3909529.10121640516445 ], [ 4984192.248750350438058, 3909559.700351675972342 ], [ 4984151.062478939071298, 3909566.522421709261835 ], [ 4984145.95183620788157, 3909535.923294132109731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983961.73635262157768, 3904582.564739094581455 ], [ 4984001.143802789971232, 3904600.863321195822209 ], [ 4983993.908350436016917, 3904616.504092991352081 ], [ 4984001.67549850884825, 3904619.799415513407439 ], [ 4983970.131116005592048, 3904687.09015413466841 ], [ 4983945.39333650842309, 3904675.744341872166842 ], [ 4983957.548623312264681, 3904649.555214703083038 ], [ 4983935.112747917883098, 3904638.943047484848648 ], [ 4983961.73635262157768, 3904582.564739094581455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983186.096216399222612, 3909528.231459989212453 ], [ 4983153.548081235960126, 3909534.710840017534792 ], [ 4983146.714749525301158, 3909501.559006683994085 ], [ 4983179.262923144735396, 3909495.079618510324508 ], [ 4983186.096216399222612, 3909528.231459989212453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982999.316605159081519, 3917387.264465054031461 ], [ 4983078.964442260563374, 3917421.312214134261012 ], [ 4983065.074576583690941, 3917453.688230226747692 ], [ 4983005.554012482985854, 3917428.426022434607148 ], [ 4983009.604400308802724, 3917419.331968647427857 ], [ 4982989.476363482885063, 3917410.91059760376811 ], [ 4982999.316605159081519, 3917387.264465054031461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983518.830120365135372, 3917760.609512220136821 ], [ 4983530.963933958671987, 3917740.974368080962449 ], [ 4983522.6282754605636, 3917736.221288952976465 ], [ 4983549.208606213331223, 3917692.586757476907223 ], [ 4983601.80614035576582, 3917724.024395477026701 ], [ 4983573.779922185465693, 3917770.568598986137658 ], [ 4983557.68510992731899, 3917760.699619090184569 ], [ 4983547.28408473636955, 3917777.789827011525631 ], [ 4983518.830120365135372, 3917760.609512220136821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983181.469077375717461, 3897541.375143692363054 ], [ 4983156.376800528727472, 3897555.882550212088972 ], [ 4983129.120290648192167, 3897509.575253452174366 ], [ 4983161.999521429650486, 3897490.716194085311145 ], [ 4983176.919298161752522, 3897515.875546853989363 ], [ 4983169.131538617424667, 3897520.591298665385693 ], [ 4983181.469077375717461, 3897541.375143692363054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982989.253347843885422, 3894323.117425262462348 ], [ 4983017.198248628526926, 3894322.089229821693152 ], [ 4983018.019777183420956, 3894340.661722592543811 ], [ 4983048.846155053935945, 3894339.27605143841356 ], [ 4983049.383781033568084, 3894356.027245164383203 ], [ 4982990.900623715482652, 3894358.441771345213056 ], [ 4982989.253347843885422, 3894323.117425262462348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982497.57088531088084, 3916536.589764704462141 ], [ 4982535.008445596322417, 3916527.935929412487894 ], [ 4982548.409217971377075, 3916583.67907919595018 ], [ 4982533.146060628816485, 3916587.285596032161266 ], [ 4982536.850428245961666, 3916603.680098698008806 ], [ 4982505.172004873864353, 3916611.254661285318434 ], [ 4982492.626337486319244, 3916559.154826427344233 ], [ 4982502.705286120995879, 3916556.993001841939986 ], [ 4982497.57088531088084, 3916536.589764704462141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982399.604769673198462, 3908488.287539747077972 ], [ 4982409.129971377551556, 3908477.749374189879745 ], [ 4982426.943343441933393, 3908494.175894525367767 ], [ 4982417.418969493359327, 3908504.349923161324114 ], [ 4982399.604769673198462, 3908488.287539747077972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981673.095947933383286, 3901488.394898794591427 ], [ 4981669.402842960320413, 3901465.810472786426544 ], [ 4981727.887623349204659, 3901455.746348253916949 ], [ 4981737.553057514131069, 3901511.844277593307197 ], [ 4981693.185576473362744, 3901519.391210086643696 ], [ 4981687.501135124824941, 3901485.878371973056346 ], [ 4981673.095947933383286, 3901488.394898794591427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981398.864931505173445, 3901774.350890519097447 ], [ 4981405.398956371471286, 3901814.419933908618987 ], [ 4981393.299486314877868, 3901816.213509606197476 ], [ 4981395.287678845226765, 3901828.59841596474871 ], [ 4981376.561292134225368, 3901831.833693711087108 ], [ 4981374.857003664597869, 3901821.270079302135855 ], [ 4981346.047864779829979, 3901825.939347576349974 ], [ 4981336.100256357342005, 3901766.927870501764119 ], [ 4981360.588035279884934, 3901762.97718803724274 ], [ 4981363.429616943001747, 3901780.097704340703785 ], [ 4981398.864931505173445, 3901774.350890519097447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981389.41369201708585, 3905096.665030066855252 ], [ 4981354.809143028222024, 3905119.163779903203249 ], [ 4981347.061361137777567, 3905107.130101611372083 ], [ 4981338.698588093742728, 3905112.573377429973334 ], [ 4981309.141439400613308, 3905066.990824655629694 ], [ 4981352.1079977825284, 3905039.412872683256865 ], [ 4981389.41369201708585, 3905096.665030066855252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981331.281922280788422, 3902762.815883979666978 ], [ 4981316.243717912584543, 3902791.184509233571589 ], [ 4981236.855234834365547, 3902749.496219505090266 ], [ 4981250.158206399530172, 3902724.400858040899038 ], [ 4981272.019160775467753, 3902735.737743870355189 ], [ 4981276.356689827516675, 3902727.736543537117541 ], [ 4981289.87528358027339, 3902735.049367664847523 ], [ 4981294.503234586678445, 3902725.956425230484456 ], [ 4981326.143947738222778, 3902742.4130455465056 ], [ 4981318.624838657677174, 3902756.597358327358961 ], [ 4981331.281922280788422, 3902762.815883979666978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981965.152532301843166, 3894204.991800165735185 ], [ 4981983.202722358517349, 3894120.918670721817762 ], [ 4982024.664765299297869, 3894129.751479058060795 ], [ 4982014.474567012861371, 3894177.42940111970529 ], [ 4981999.501642562448978, 3894174.482525821309537 ], [ 4981991.929613390937448, 3894210.878360995557159 ], [ 4981965.152532301843166, 3894204.991800165735185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981935.259497746825218, 3895706.958960477262735 ], [ 4981970.678262603469193, 3895712.136759269516915 ], [ 4981970.969603646546602, 3895710.680898257531226 ], [ 4982004.948102015070617, 3895715.855488930363208 ], [ 4981999.683363384567201, 3895751.164179439190775 ], [ 4981929.998136817477643, 3895740.811152751557529 ], [ 4981935.259497746825218, 3895706.958960477262735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981250.672226274386048, 3901591.225844889879227 ], [ 4981268.820349539630115, 3901589.0815812619403 ], [ 4981267.973461991176009, 3901581.432938325684518 ], [ 4981286.121593271382153, 3901579.288686407264322 ], [ 4981287.254836921580136, 3901587.666231668088585 ], [ 4981303.098247406072915, 3901585.880973820574582 ], [ 4981309.879762838594615, 3901644.15709422249347 ], [ 4981257.452227897010744, 3901650.230210706125945 ], [ 4981250.672226274386048, 3901591.225844889879227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981192.491671099327505, 3903014.484828391578048 ], [ 4981209.270457774400711, 3902980.293912596534938 ], [ 4981235.160404339432716, 3902992.732154100667685 ], [ 4981218.669565003365278, 3903026.9236965989694 ], [ 4981192.491671099327505, 3903014.484828391578048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981165.842902352102101, 3905279.68804948264733 ], [ 4981120.590370383113623, 3905299.614439959172159 ], [ 4981128.039701499044895, 3905316.381103318650275 ], [ 4981105.269092507660389, 3905326.52606538310647 ], [ 4981071.749409722164273, 3905249.983735726214945 ], [ 4981089.043365524150431, 3905242.375472323503345 ], [ 4981079.876023795455694, 3905221.235413474962115 ], [ 4981098.034658907912672, 3905213.264949332457036 ], [ 4981107.489126968197525, 3905234.769785707816482 ], [ 4981140.059009755961597, 3905220.641213889699429 ], [ 4981165.842902352102101, 3905279.68804948264733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981085.766006830148399, 3904774.458833143580705 ], [ 4981108.206132913939655, 3904783.612102591898292 ], [ 4981091.702759020961821, 3904823.993969186209142 ], [ 4981069.261850555427372, 3904815.204843237996101 ], [ 4981085.766006830148399, 3904774.458833143580705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980746.435453419573605, 3906648.984836835414171 ], [ 4980746.348377739079297, 3906688.310915554407984 ], [ 4980705.46183704584837, 3906688.220415810588747 ], [ 4980705.548852887004614, 3906648.894336962141097 ], [ 4980746.435453419573605, 3906648.984836835414171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980641.74709425214678, 3903728.416121192276478 ], [ 4980672.238383355550468, 3903743.412917111534625 ], [ 4980680.336833653971553, 3903727.409040110185742 ], [ 4980697.596213771961629, 3903735.822238940745592 ], [ 4980686.604416109621525, 3903758.009946757927537 ], [ 4980704.150933675467968, 3903766.787916569504887 ], [ 4980689.688267101533711, 3903795.88644337002188 ], [ 4980662.649401700124145, 3903782.353785562328994 ], [ 4980660.046451010741293, 3903787.4458719631657 ], [ 4980639.910665722563863, 3903777.569813951384276 ], [ 4980643.671105500310659, 3903769.93136334978044 ], [ 4980625.548640819266438, 3903761.152160518337041 ], [ 4980641.74709425214678, 3903728.416121192276478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980491.73735699057579, 3903196.453132478520274 ], [ 4980505.896902650594711, 3903174.272336941678077 ], [ 4980533.216398102231324, 3903191.44676323607564 ], [ 4980519.056838847696781, 3903213.62754460144788 ], [ 4980491.73735699057579, 3903196.453132478520274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980465.178105665370822, 3903487.699713526759297 ], [ 4980475.024378058500588, 3903462.596342985052615 ], [ 4980499.481583474203944, 3903471.753539353143424 ], [ 4980489.635291536338627, 3903496.856901066377759 ], [ 4980465.178105665370822, 3903487.699713526759297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980399.669566145166755, 3902504.400892108213156 ], [ 4980415.835627192631364, 3902486.594048567116261 ], [ 4980396.291561845690012, 3902469.072730684652925 ], [ 4980415.055863989517093, 3902448.358555835671723 ], [ 4980457.01734178699553, 3902486.320612621959299 ], [ 4980422.086969916708767, 3902524.841588919982314 ], [ 4980399.669566145166755, 3902504.400892108213156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981137.805342797189951, 3916047.040148018859327 ], [ 4981187.335386442951858, 3916036.954862794838846 ], [ 4981193.887291033752263, 3916067.556764198932797 ], [ 4981169.410124307498336, 3916072.600031512789428 ], [ 4981172.541355605237186, 3916088.26479154964909 ], [ 4981161.598841549828649, 3916090.425188616849482 ], [ 4981159.320544708520174, 3916079.496078076306731 ], [ 4981145.210244242101908, 3916082.377685333136469 ], [ 4981137.805342797189951, 3916047.040148018859327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980988.941195451654494, 3905842.970381857827306 ], [ 4981010.269181383773685, 3905833.914506600238383 ], [ 4981020.86716874409467, 3905859.06318384828046 ], [ 4980999.539199142716825, 3905868.11905083945021 ], [ 4980988.941195451654494, 3905842.970381857827306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980278.21018398180604, 3903128.983105641324073 ], [ 4980302.211836620233953, 3903083.519418333657086 ], [ 4980316.593630433082581, 3903091.197782373055816 ], [ 4980309.94306808616966, 3903103.563631301280111 ], [ 4980323.17456291243434, 3903110.511208363808692 ], [ 4980327.51174913905561, 3903102.509853062219918 ], [ 4980339.017010812647641, 3903108.725380488205701 ], [ 4980320.799555110745132, 3903142.913677376229316 ], [ 4980298.651361760683358, 3903131.212800193578005 ], [ 4980294.893331684172153, 3903137.758907336276025 ], [ 4980278.21018398180604, 3903128.983105641324073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980253.982359152287245, 3903277.495494686067104 ], [ 4980266.144266530871391, 3903246.935164839494973 ], [ 4980321.675303342752159, 3903268.540921800304204 ], [ 4980309.512542199343443, 3903299.465356534346938 ], [ 4980253.982359152287245, 3903277.495494686067104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980171.899688865989447, 3907353.407049703877419 ], [ 4980158.89031838439405, 3907377.411255612969398 ], [ 4980126.680904486216605, 3907359.86230975529179 ], [ 4980139.689456531777978, 3907336.222219035029411 ], [ 4980171.899688865989447, 3907353.407049703877419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980157.357990619726479, 3899800.196705788839608 ], [ 4980169.105620385147631, 3899827.896382280159742 ], [ 4980105.68589468114078, 3899854.338966189417988 ], [ 4980093.938211295753717, 3899826.639316977001727 ], [ 4980157.357990619726479, 3899800.196705788839608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979939.656135355122387, 3907301.191990849561989 ], [ 4979928.368940542452037, 3907327.748994756955653 ], [ 4979873.712155069224536, 3907305.053490137681365 ], [ 4979884.999305247329175, 3907278.496463649440557 ], [ 4979939.656135355122387, 3907301.191990849561989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980808.109371445141733, 3902985.956233327742666 ], [ 4980824.302860166877508, 3902955.769226192496717 ], [ 4980885.281302534975111, 3902988.312159767840058 ], [ 4980869.087764682248235, 3903018.499130753800273 ], [ 4980808.109371445141733, 3902985.956233327742666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980778.293206146918237, 3916309.874248461332172 ], [ 4980790.021604895591736, 3916342.672334459610283 ], [ 4980762.6559784617275, 3916352.443316711112857 ], [ 4980750.927550645545125, 3916319.645242459606379 ], [ 4980778.293206146918237, 3916309.874248461332172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980761.605883420445025, 3902658.863315480295569 ], [ 4980819.136626198887825, 3902688.121275634504855 ], [ 4980786.454947722144425, 3902751.407694568857551 ], [ 4980747.333802036009729, 3902731.657966813072562 ], [ 4980753.696681239642203, 3902719.291591296438128 ], [ 4980735.286372276954353, 3902710.147552928421646 ], [ 4980761.605883420445025, 3902658.863315480295569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980580.120459944941103, 3899032.811172692105174 ], [ 4980525.341318280436099, 3899058.179441856220365 ], [ 4980511.581621474586427, 3899028.654533744323999 ], [ 4980566.360810143873096, 3899003.286236990708858 ], [ 4980580.120459944941103, 3899032.811172692105174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979766.964692247100174, 3901320.318106170743704 ], [ 4979769.165548390708864, 3901367.659919711295515 ], [ 4979749.867813869379461, 3901368.710300586652011 ], [ 4979750.416053606197238, 3901381.456076863221824 ], [ 4979724.20656399987638, 3901382.49143219506368 ], [ 4979723.655142905190587, 3901371.202173316385597 ], [ 4979712.998707450926304, 3901371.543121096212417 ], [ 4979711.351556485518813, 3901334.398182725068182 ], [ 4979740.15380182210356, 3901333.004326376132667 ], [ 4979739.603178771212697, 3901321.350938294548541 ], [ 4979766.964692247100174, 3901320.318106170743704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979733.743770737200975, 3899514.157370338216424 ], [ 4979701.171687415800989, 3899526.466953617054969 ], [ 4979690.864286596886814, 3899498.406488923821598 ], [ 4979723.436399119906127, 3899486.096893374808133 ], [ 4979733.743770737200975, 3899514.157370338216424 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979670.973486371338367, 3901361.620200789533556 ], [ 4979649.679599225521088, 3901353.563041199464351 ], [ 4979646.203141725622118, 3901363.022891525179148 ], [ 4979630.952303651720285, 3901357.16366353072226 ], [ 4979635.877411124296486, 3901343.701518078800291 ], [ 4979619.475387781858444, 3901337.475664909463376 ], [ 4979632.798897491768003, 3901302.548035738989711 ], [ 4979663.589410686865449, 3901313.902998856734484 ], [ 4979665.618010710924864, 3901308.081313232891262 ], [ 4979688.063101246021688, 3901316.505119226872921 ], [ 4979670.973486371338367, 3901361.620200789533556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979592.291813394986093, 3917432.083318784367293 ], [ 4979527.150870044715703, 3917475.273918120190501 ], [ 4979506.782148074358702, 3917444.642427827231586 ], [ 4979571.923132636584342, 3917401.451779935974628 ], [ 4979592.291813394986093, 3917432.083318784367293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979583.894195844419301, 3902737.118290091399103 ], [ 4979599.694911861792207, 3902754.630891456734389 ], [ 4979579.497898267582059, 3902772.429478012956679 ], [ 4979563.98515515960753, 3902754.917513201478869 ], [ 4979583.894195844419301, 3902737.118290091399103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980396.818911212496459, 3903407.076129994820803 ], [ 4980426.162837331183255, 3903420.249460397288203 ], [ 4980409.669280299916863, 3903456.262156495358795 ], [ 4980380.325385534204543, 3903443.088843808509409 ], [ 4980396.818911212496459, 3903407.076129994820803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980381.503656621091068, 3906571.711538962554187 ], [ 4980393.031461020931602, 3906567.003192188683897 ], [ 4980401.336678508669138, 3906587.412871899548918 ], [ 4980363.294883253984153, 3906602.986836555413902 ], [ 4980350.979381780140102, 3906573.100912735331804 ], [ 4980377.493404345586896, 3906562.23527940036729 ], [ 4980381.503656621091068, 3906571.711538962554187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980336.877201061695814, 3908926.821567274164408 ], [ 4980361.112059929408133, 3908903.934517919551581 ], [ 4980406.785469019785523, 3908951.3722835467197 ], [ 4980382.261903486214578, 3908974.622789623681456 ], [ 4980336.877201061695814, 3908926.821567274164408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980326.3963752258569, 3899155.328399539925158 ], [ 4980266.448665338568389, 3899173.767358325887471 ], [ 4980257.581788366660476, 3899145.709844288881868 ], [ 4980279.485262813977897, 3899139.203591462690383 ], [ 4980277.198741330765188, 3899131.187699626199901 ], [ 4980315.242243260145187, 3899119.619099725503474 ], [ 4980326.3963752258569, 3899155.328399539925158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980160.04275712929666, 3906195.076682063285261 ], [ 4980186.845811839215457, 3906183.847364131826907 ], [ 4980206.324186166748405, 3906230.13486088020727 ], [ 4980179.233231182210147, 3906241.363528225570917 ], [ 4980160.04275712929666, 3906195.076682063285261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980090.295476117171347, 3902411.232433271594346 ], [ 4980056.554100936278701, 3902433.006450785323977 ], [ 4980036.750458034686744, 3902402.376105164177716 ], [ 4980070.779835008084774, 3902380.602693502791226 ], [ 4980090.295476117171347, 3902411.232433271594346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979487.226795858703554, 3899903.241805312223732 ], [ 4979497.946152062155306, 3899874.134585389867425 ], [ 4979537.083436155691743, 3899888.784656011965126 ], [ 4979526.076037372462451, 3899917.891236113384366 ], [ 4979487.226795858703554, 3899903.241805312223732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979473.068310783244669, 3900456.325619963463396 ], [ 4979513.717380924150348, 3900437.478911136742681 ], [ 4979530.344022119417787, 3900473.19977166550234 ], [ 4979505.262767437845469, 3900484.797579747159034 ], [ 4979501.82334244903177, 3900477.143379490356892 ], [ 4979486.255565703846514, 3900484.392257463652641 ], [ 4979473.068310783244669, 3900456.325619963463396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979385.280228200368583, 3903227.901011666283011 ], [ 4979367.156987993046641, 3903219.122660314664245 ], [ 4979362.528986629098654, 3903228.58006700547412 ], [ 4979348.145420629531145, 3903221.63047216180712 ], [ 4979354.220356871373951, 3903208.899009434971958 ], [ 4979344.726770704612136, 3903204.508908964227885 ], [ 4979392.74576841853559, 3903104.840774783864617 ], [ 4979434.746288101188838, 3903124.958899440709502 ], [ 4979385.280228200368583, 3903227.901011666283011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979178.851593043655157, 3908815.788348346482962 ], [ 4979209.639959463849664, 3908824.229796085972339 ], [ 4979196.292414897121489, 3908872.26650805445388 ], [ 4979165.504099423065782, 3908863.825075360015035 ], [ 4979178.851593043655157, 3908815.788348346482962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979146.98934848792851, 3916384.961532455869019 ], [ 4979166.030061278492212, 3916364.611059181857854 ], [ 4979200.499706762842834, 3916397.093357253819704 ], [ 4979181.458990724757314, 3916417.443806520197541 ], [ 4979146.98934848792851, 3916384.961532455869019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979771.78057801630348, 3904530.874116086866707 ], [ 4979787.809371350333095, 3904575.333088146522641 ], [ 4979764.178740823641419, 3904583.656650608405471 ], [ 4979761.030253687873483, 3904574.910635474603623 ], [ 4979731.3478017244488, 3904585.405840388964862 ], [ 4979718.46742716152221, 3904549.692911323159933 ], [ 4979771.78057801630348, 3904530.874116086866707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979754.590807457454503, 3901845.003918857313693 ], [ 4979781.401195022277534, 3901832.317709111142904 ], [ 4979802.901728936471045, 3901877.516793488990515 ], [ 4979776.092169132083654, 3901889.838852802757174 ], [ 4979754.590807457454503, 3901845.003918857313693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979021.888798360712826, 3899731.096171564888209 ], [ 4979063.111528595909476, 3899713.706543072126806 ], [ 4979077.438291824422777, 3899747.965636495500803 ], [ 4979049.188474136404693, 3899759.55704907560721 ], [ 4979047.181817017495632, 3899755.183167069219053 ], [ 4979034.2097287774086, 3899760.617233437020332 ], [ 4979021.888798360712826, 3899731.096171564888209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978900.074422114528716, 3908315.598929772153497 ], [ 4978909.066235985606909, 3908284.666965443640947 ], [ 4978925.46730269677937, 3908289.435888200532645 ], [ 4978922.856516813859344, 3908298.533595512621105 ], [ 4978960.550066673196852, 3908309.538503537420183 ], [ 4978949.527934769168496, 3908347.384608011227101 ], [ 4978910.971467845141888, 3908336.013730769045651 ], [ 4978915.612505312077701, 3908320.00186256505549 ], [ 4978900.074422114528716, 3908315.598929772153497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978812.660899213515222, 3901675.833814173936844 ], [ 4978822.728746977634728, 3901681.317344426177442 ], [ 4978829.667740595526993, 3901668.587625788524747 ], [ 4978867.063918527215719, 3901688.330844884272665 ], [ 4978846.822112027555704, 3901726.885341637767851 ], [ 4978799.070145471021533, 3901701.658008225262165 ], [ 4978812.660899213515222, 3901675.833814173936844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978743.761924164369702, 3900227.538064695894718 ], [ 4978758.794157635420561, 3900201.35281779197976 ], [ 4978796.763761149719357, 3900223.281928156968206 ], [ 4978781.732282258570194, 3900249.103025175631046 ], [ 4978743.761924164369702, 3900227.538064695894718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978705.112691476009786, 3905372.629629998002201 ], [ 4978659.009198891930282, 3905387.460498066619039 ], [ 4978645.564337977208197, 3905345.920753397978842 ], [ 4978691.667894258163869, 3905331.089862640481442 ], [ 4978705.112691476009786, 3905372.629629998002201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978666.217788798734546, 3906595.665649776812643 ], [ 4978684.560752627439797, 3906635.395246686879545 ], [ 4978660.926828715018928, 3906646.26870277710259 ], [ 4978642.583837475627661, 3906606.539121734909713 ], [ 4978666.217788798734546, 3906595.665649776812643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979611.335281636565924, 3899913.706666206475347 ], [ 4979602.63660113606602, 3899940.633445076178759 ], [ 4979557.450515451841056, 3899926.334285932593048 ], [ 4979566.437951411120594, 3899899.043988668825477 ], [ 4979611.335281636565924, 3899913.706666206475347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979455.755188913084567, 3906853.349193355534226 ], [ 4979481.889890158548951, 3906884.357051413506269 ], [ 4979462.563784025609493, 3906900.336990569252521 ], [ 4979420.919404800049961, 3906851.453094635158777 ], [ 4979448.611317045986652, 3906828.208601431455463 ], [ 4979463.832262908108532, 3906846.448180171661079 ], [ 4979455.755188913084567, 3906853.349193355534226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978656.302452147938311, 3907328.278348096646369 ], [ 4978637.496237128041685, 3907370.841647364199162 ], [ 4978602.113973539322615, 3907355.472548360936344 ], [ 4978620.920920583419502, 3907312.54509416455403 ], [ 4978656.302452147938311, 3907328.278348096646369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978661.334576889872551, 3902277.054605243261904 ], [ 4978691.290012827143073, 3902274.569696504157037 ], [ 4978692.13294105604291, 3902284.40303811756894 ], [ 4978698.469292087480426, 3902284.052451056893915 ], [ 4978701.274370106868446, 3902319.015034409239888 ], [ 4978694.361288557760417, 3902319.728519158437848 ], [ 4978696.61142385751009, 3902344.858376235701144 ], [ 4978667.520005438476801, 3902347.345124933402985 ], [ 4978661.334576889872551, 3902277.054605243261904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978466.91008313652128, 3901888.476259540766478 ], [ 4978486.329143946990371, 3901830.25664770277217 ], [ 4978511.07882380951196, 3901838.320250721182674 ], [ 4978503.251246117986739, 3901862.700351864099503 ], [ 4978525.6985630011186, 3901870.030801842920482 ], [ 4978514.394991473294795, 3901903.870899022556841 ], [ 4978466.91008313652128, 3901888.476259540766478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978440.167071491479874, 3905929.186178522650152 ], [ 4978449.612558513879776, 3905955.787912892643362 ], [ 4978408.695470034144819, 3905969.537858192343265 ], [ 4978399.537888797000051, 3905942.936750369146466 ], [ 4978440.167071491479874, 3905929.186178522650152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978312.587799921631813, 3903497.97214263305068 ], [ 4978349.916041259653866, 3903548.6656912593171 ], [ 4978240.317912411876023, 3903628.906080817803741 ], [ 4978202.989576756022871, 3903578.212681949604303 ], [ 4978312.587799921631813, 3903497.97214263305068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978271.141752817668021, 3907965.782133209519088 ], [ 4978255.652029789052904, 3907938.43933869432658 ], [ 4978297.449906907044351, 3907915.223578945733607 ], [ 4978318.675571367144585, 3907953.13841792056337 ], [ 4978290.714107986539602, 3907968.736735333222896 ], [ 4978284.690210145898163, 3907958.164109282195568 ], [ 4978271.141752817668021, 3907965.782133209519088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978241.23372549097985, 3906455.662475845310837 ], [ 4978203.477851291187108, 3906472.696629241108894 ], [ 4978191.727273571304977, 3906446.818352291360497 ], [ 4978229.770340588875115, 3906430.148923606611788 ], [ 4978241.23372549097985, 3906455.662475845310837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978960.846714633516967, 3907501.165280769113451 ], [ 4978979.10175400134176, 3907447.312918989919126 ], [ 4979083.54338017757982, 3907482.494211865589023 ], [ 4979076.010314725339413, 3907504.325935724657029 ], [ 4979088.093743911013007, 3907508.721530584152788 ], [ 4979082.878184195607901, 3907524.003860322758555 ], [ 4979068.780073250643909, 3907519.239800138864666 ], [ 4979062.986327501013875, 3907535.613286528270692 ], [ 4978960.846714633516967, 3907501.165280769113451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978934.377362987026572, 3916742.812296948395669 ], [ 4978933.105634923093021, 3916798.886262830812484 ], [ 4978907.202162617817521, 3916798.466512593906373 ], [ 4978907.834090816788375, 3916772.250192374456674 ], [ 4978884.233195144683123, 3916771.835407117847353 ], [ 4978885.161521706730127, 3916741.614244567230344 ], [ 4978934.377362987026572, 3916742.812296948395669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978952.017858394421637, 3907992.360837243497372 ], [ 4978969.556693708524108, 3908003.686612136662006 ], [ 4978972.156572091393173, 3907999.68674095813185 ], [ 4978987.970226288773119, 3908009.916424662806094 ], [ 4978984.503459310159087, 3908015.370961190201342 ], [ 4979000.317882196977735, 3908025.236521546728909 ], [ 4978971.716896526515484, 3908070.327481789048761 ], [ 4978951.014909908175468, 3908057.174249873962253 ], [ 4978956.792053335346282, 3908048.447479208 ], [ 4978928.039255081675947, 3908030.179122108966112 ], [ 4978952.017858394421637, 3907992.360837243497372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978912.459476713091135, 3909923.271119603421539 ], [ 4978935.26680207438767, 3909893.825320008676499 ], [ 4978968.033316596411169, 3909919.02085608523339 ], [ 4978945.225976533256471, 3909948.46662833634764 ], [ 4978912.459476713091135, 3909923.271119603421539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978830.649616522714496, 3901747.970284732989967 ], [ 4978806.091237490996718, 3901785.059041372966021 ], [ 4978760.651797248981893, 3901755.831286836415529 ], [ 4978785.210919551551342, 3901718.37835999764502 ], [ 4978830.649616522714496, 3901747.970284732989967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978177.990750343538821, 3911434.677345304749906 ], [ 4978167.863946037366986, 3911458.688676449004561 ], [ 4978139.676158118061721, 3911446.976711450144649 ], [ 4978149.803712783381343, 3911422.601238343399018 ], [ 4978177.990750343538821, 3911434.677345304749906 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978109.35580822173506, 3907817.60155033133924 ], [ 4978088.822504317387938, 3907860.525721550919116 ], [ 4978064.085951601155102, 3907848.82117090979591 ], [ 4978084.331303403712809, 3907805.896372071001679 ], [ 4978109.35580822173506, 3907817.60155033133924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977867.58146742451936, 3908735.797108141705394 ], [ 4977863.255890540778637, 3908739.065186277963221 ], [ 4977840.863223687745631, 3908708.43088104063645 ], [ 4977867.680449732579291, 3908688.824221630115062 ], [ 4977906.149315697140992, 3908741.704527287278324 ], [ 4977883.657689391635358, 3908758.043073360342532 ], [ 4977867.58146742451936, 3908735.797108141705394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977791.432472352869809, 3907844.604714549612254 ], [ 4977763.759124363772571, 3907860.204185179434717 ], [ 4977742.24391702003777, 3907822.653312081471086 ], [ 4977775.393925811164081, 3907804.152281881775707 ], [ 4977786.007177653722465, 3907823.109491672366858 ], [ 4977780.818466790951788, 3907826.011633070651442 ], [ 4977791.432472352869809, 3907844.604714549612254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977773.475420095957816, 3910632.002266021445394 ], [ 4977767.073641463182867, 3910664.396631347481161 ], [ 4977744.051567406393588, 3910659.978615733794868 ], [ 4977750.453319299034774, 3910627.584245014004409 ], [ 4977773.475420095957816, 3910632.002266021445394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978688.151159897446632, 3904686.205080984625965 ], [ 4978734.543825128115714, 3904671.374885295052081 ], [ 4978747.988111462444067, 3904713.27878735633567 ], [ 4978701.883465399965644, 3904728.109575854614377 ], [ 4978688.151159897446632, 3904686.205080984625965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978614.088861717842519, 3905792.279174197930843 ], [ 4978642.778945121914148, 3905841.1341098616831 ], [ 4978617.696078022941947, 3905856.00995633052662 ], [ 4978588.718022244051099, 3905807.15443257894367 ], [ 4978614.088861717842519, 3905792.279174197930843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978491.459611043334007, 3906722.010761469602585 ], [ 4978495.753782102838159, 3906733.672136543784291 ], [ 4978480.192996795289218, 3906739.465103180147707 ], [ 4978477.616336016915739, 3906732.541105595417321 ], [ 4978453.98723267391324, 3906741.229961698874831 ], [ 4978444.253321244381368, 3906714.991730543319136 ], [ 4978494.105309757404029, 3906696.527151564601809 ], [ 4978502.12089136056602, 3906718.392154218163341 ], [ 4978491.459611043334007, 3906722.010761469602585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978337.660985372029245, 3904979.676599536091089 ], [ 4978342.798471350222826, 3905001.171284484211355 ], [ 4978335.019914180971682, 3905002.975417692679912 ], [ 4978338.443614844232798, 3905017.912090822122991 ], [ 4978291.484367216005921, 3905028.736320297699422 ], [ 4978281.49649447016418, 3904986.111711750738323 ], [ 4978301.087254853919148, 3904981.419584914110601 ], [ 4978303.940485901199281, 3904993.806120376102626 ], [ 4978314.312154166400433, 3904991.279221264179796 ], [ 4978312.884767998941243, 3904985.450083000585437 ], [ 4978337.660985372029245, 3904979.676599536091089 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977746.006435324437916, 3903704.694067777600139 ], [ 4977798.543954250402749, 3903780.908033069223166 ], [ 4977769.70614517852664, 3903800.510462678037584 ], [ 4977717.168583141639829, 3903724.296552860178053 ], [ 4977746.006435324437916, 3903704.694067777600139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977708.752553019672632, 3907044.432346968911588 ], [ 4977759.310225340537727, 3907100.614976054057479 ], [ 4977732.194384517148137, 3907124.590685694478452 ], [ 4977681.63670093473047, 3907068.408106794580817 ], [ 4977708.752553019672632, 3907044.432346968911588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977693.753188782371581, 3904863.979039994999766 ], [ 4977736.107528497464955, 3904852.051691995467991 ], [ 4977744.684112606570125, 3904881.564385622274131 ], [ 4977702.329815517179668, 3904893.49172033322975 ], [ 4977693.753188782371581, 3904863.979039994999766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977630.318778943270445, 3906139.39954632660374 ], [ 4977668.362694958224893, 3906122.365195644553751 ], [ 4977680.685974293388426, 3906150.065099633764476 ], [ 4977642.642853751778603, 3906166.735302820801735 ], [ 4977630.318778943270445, 3906139.39954632660374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977505.588656763546169, 3908227.071968719363213 ], [ 4977522.524658446200192, 3908251.504304191097617 ], [ 4977483.311601949855685, 3908278.368005488999188 ], [ 4977466.375581698492169, 3908253.935694332234561 ], [ 4977505.588656763546169, 3908227.071968719363213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977451.323123577982187, 3913384.537987204734236 ], [ 4977499.127215258777142, 3913375.53470096597448 ], [ 4977508.806990492157638, 3913426.897805311717093 ], [ 4977468.490423060022295, 3913434.460208452306688 ], [ 4977463.366070444695652, 3913407.139466484542936 ], [ 4977455.878626906313002, 3913408.580334055237472 ], [ 4977451.323123577982187, 3913384.537987204734236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978287.186049170792103, 3907596.221879886463284 ], [ 4978293.785874868743122, 3907606.795726649928838 ], [ 4978274.469495550729334, 3907618.771090375259519 ], [ 4978252.373551281169057, 3907583.767506779171526 ], [ 4978290.43050947971642, 3907559.815539589617401 ], [ 4978305.925829557701945, 3907584.609433318022639 ], [ 4978287.186049170792103, 3907596.221879886463284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978225.45087927673012, 3905208.113171993754804 ], [ 4978201.246936390176415, 3905215.708630808163434 ], [ 4978197.813925051130354, 3905205.141534644179046 ], [ 4978177.067691900767386, 3905211.651947900187224 ], [ 4978169.059875441715121, 3905185.781631225720048 ], [ 4978229.281467041000724, 3905166.974407488945872 ], [ 4978238.719711519777775, 3905197.217356375418603 ], [ 4978223.448358967900276, 3905201.918686557561159 ], [ 4978225.45087927673012, 3905208.113171993754804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978219.283565392717719, 3900102.616826770361513 ], [ 4978176.273800138384104, 3900148.406154749915004 ], [ 4978152.991003910079598, 3900126.873144249431789 ], [ 4978195.712759541347623, 3900081.083169386256486 ], [ 4978219.283565392717719, 3900102.616826770361513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978190.806647132150829, 3903348.055848227348179 ], [ 4978223.012877091765404, 3903369.971987025812268 ], [ 4978119.890488419681787, 3903519.775678901933134 ], [ 4978087.684354673139751, 3903497.85966170579195 ], [ 4978190.806647132150829, 3903348.055848227348179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978051.706131607294083, 3913567.50342386867851 ], [ 4978053.215496345423162, 3913534.370455339085311 ], [ 4978092.073517691344023, 3913535.909183568321168 ], [ 4978090.851964756846428, 3913569.042759031057358 ], [ 4978051.706131607294083, 3913567.50342386867851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978068.672508550807834, 3904590.213903159368783 ], [ 4978112.756723866797984, 3904577.562544021755457 ], [ 4978121.334524707868695, 3904606.347092954907566 ], [ 4978077.249582460150123, 3904619.362568225711584 ], [ 4978068.672508550807834, 3904590.213903159368783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978060.573941043578088, 3906105.349080895539373 ], [ 4978099.483539384789765, 3906087.588906646240503 ], [ 4978112.381499323062599, 3906115.654356679413468 ], [ 4978073.183993645012379, 3906133.413903667591512 ], [ 4978060.573941043578088, 3906105.349080895539373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978022.106745537370443, 3903732.949919854290783 ], [ 4977987.497892929241061, 3903758.001895678695291 ], [ 4977970.269961639307439, 3903734.296986140776426 ], [ 4978004.878828581422567, 3903709.244988492690027 ], [ 4978022.106745537370443, 3903732.949919854290783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977315.054857353679836, 3897151.260204938706011 ], [ 4977320.460692268796265, 3897183.314916846342385 ], [ 4977295.104480830952525, 3897187.631596211344004 ], [ 4977289.410581045784056, 3897155.576288813725114 ], [ 4977315.054857353679836, 3897151.260204938706011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977178.460483864881098, 3901334.833972994238138 ], [ 4977174.362693564034998, 3901366.504830834455788 ], [ 4977148.450372654944658, 3901363.173745863139629 ], [ 4977152.54813290387392, 3901331.502884133718908 ], [ 4977178.460483864881098, 3901334.833972994238138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977149.722240960225463, 3913208.032202218659222 ], [ 4977163.073856096714735, 3913155.260628248099238 ], [ 4977186.666579969227314, 3913161.135879381094128 ], [ 4977184.924990398809314, 3913168.050789827480912 ], [ 4977201.899862519465387, 3913172.455741744954139 ], [ 4977190.578388004563749, 3913217.948854024987668 ], [ 4977149.722240960225463, 3913208.032202218659222 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977150.973605759441853, 3906518.187704178038985 ], [ 4977166.763062042184174, 3906540.796741498168558 ], [ 4977146.867522845976055, 3906554.228231363929808 ], [ 4977131.078057789243758, 3906531.61920554889366 ], [ 4977150.973605759441853, 3906518.187704178038985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977117.880331004038453, 3907616.705511873587966 ], [ 4977063.953177036717534, 3907657.740383768454194 ], [ 4977042.704338417388499, 3907630.022201974876225 ], [ 4977096.631515300832689, 3907588.987288132309914 ], [ 4977117.880331004038453, 3907616.705511873587966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977110.032726245932281, 3907929.114698614459485 ], [ 4977140.5196861801669, 3907944.835787217132747 ], [ 4977133.581586698070168, 3907958.294252306688577 ], [ 4977126.391164667904377, 3907954.637975018471479 ], [ 4977111.649719160050154, 3907982.281380304135382 ], [ 4977069.658100978471339, 3907960.710303790867329 ], [ 4977084.112351598218083, 3907932.702146785333753 ], [ 4977103.094638020731509, 3907942.573171453550458 ], [ 4977110.032726245932281, 3907929.114698614459485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977094.986694414168596, 3905332.457909965887666 ], [ 4977118.03766845818609, 3905325.223189672920853 ], [ 4977132.629117244854569, 3905370.405866556335241 ], [ 4977091.424626161344349, 3905383.793083729222417 ], [ 4977079.980871946550906, 3905348.084393901750445 ], [ 4977098.133688410744071, 3905342.29600727558136 ], [ 4977094.986694414168596, 3905332.457909965887666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977089.003939715214074, 3906271.541506287641823 ], [ 4977095.278787722811103, 3906300.320970827713609 ], [ 4977050.052933452650905, 3906309.694447326473892 ], [ 4977044.065977011807263, 3906280.915591043420136 ], [ 4977089.003939715214074, 3906271.541506287641823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977087.402174985967577, 3901083.030232071876526 ], [ 4977080.431331546977162, 3901111.417953117750585 ], [ 4977033.51263393368572, 3901099.668342420831323 ], [ 4977040.483430786058307, 3901071.28060939675197 ], [ 4977087.402174985967577, 3901083.030232071876526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977851.092752526514232, 3911369.170944164507091 ], [ 4977836.316372053697705, 3911413.928191722370684 ], [ 4977805.821497584693134, 3911404.032384126447141 ], [ 4977820.597832592204213, 3911359.275120068341494 ], [ 4977851.092752526514232, 3911369.170944164507091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977852.297054274007678, 3909294.344294920098037 ], [ 4977840.440777570940554, 3909319.080340402200818 ], [ 4977780.328350602649152, 3909290.551448566373438 ], [ 4977792.184584385715425, 3909265.815376995131373 ], [ 4977852.297054274007678, 3909294.344294920098037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977792.107100318185985, 3913953.301589113194495 ], [ 4977759.839704415760934, 3913966.342505025211722 ], [ 4977750.962139650247991, 3913944.475808770395815 ], [ 4977736.845728500746191, 3913949.908127216622233 ], [ 4977726.535750402137637, 3913924.761223984416574 ], [ 4977772.632525696419179, 3913905.923223868943751 ], [ 4977792.107100318185985, 3913953.301589113194495 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977624.544146498665214, 3912321.63125154748559 ], [ 4977627.480188227258623, 3912294.327413097955287 ], [ 4977668.636895331554115, 3912298.783414555247873 ], [ 4977663.056430857628584, 3912351.571029200218618 ], [ 4977613.265149259008467, 3912346.36865225341171 ], [ 4977615.909483890980482, 3912320.884866806678474 ], [ 4977624.544146498665214, 3912321.63125154748559 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977528.098714080639184, 3905864.993941424880177 ], [ 4977482.539836895652115, 3905895.485640588682145 ], [ 4977467.899747521616518, 3905873.971227114554495 ], [ 4977483.470719976350665, 3905863.443983766250312 ], [ 4977479.739662512205541, 3905857.610066123306751 ], [ 4977509.440410538576543, 3905837.280848666559905 ], [ 4977528.098714080639184, 3905864.993941424880177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976868.469707577489316, 3905423.749315795022994 ], [ 4976875.024648712947965, 3905456.534742163028568 ], [ 4976839.304206736385822, 3905463.743458835408092 ], [ 4976832.749977018684149, 3905430.593910838011652 ], [ 4976868.469707577489316, 3905423.749315795022994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976841.398489531129599, 3912800.655312425456941 ], [ 4976818.919185215607285, 3912812.989340795669705 ], [ 4976788.806743626482785, 3912757.942924054805189 ], [ 4976805.521933248266578, 3912748.874150690622628 ], [ 4976811.25746208243072, 3912759.445881271269172 ], [ 4976842.094035182148218, 3912742.759538845624775 ], [ 4976861.020240118727088, 3912778.119651717599481 ], [ 4976836.236457088030875, 3912791.177161989733577 ], [ 4976841.398489531129599, 3912800.655312425456941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977473.755411856807768, 3913119.495708310510963 ], [ 4977475.287712044082582, 3913075.074627503287047 ], [ 4977508.389893157407641, 3913076.23632993735373 ], [ 4977506.857538293115795, 3913120.657408886123449 ], [ 4977473.755411856807768, 3913119.495708310510963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977462.724498922936618, 3913713.738625793717802 ], [ 4977468.172465872950852, 3913723.945768620818853 ], [ 4977483.444946610368788, 3913716.330927726812661 ], [ 4977495.485429340973496, 3913740.02482231752947 ], [ 4977449.090804483741522, 3913763.596410671249032 ], [ 4977431.602316022850573, 3913729.695399905089289 ], [ 4977462.724498922936618, 3913713.738625793717802 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977458.020718366838992, 3907843.541046410799026 ], [ 4977430.342234096489847, 3907861.68977550463751 ], [ 4977399.917745608836412, 3907816.109639958944172 ], [ 4977427.596256085671484, 3907797.960880054626614 ], [ 4977458.020718366838992, 3907843.541046410799026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977435.471298649907112, 3907611.905750461854041 ], [ 4977461.989968734793365, 3907597.760057352483273 ], [ 4977484.359611358493567, 3907640.046207331586629 ], [ 4977457.841732810251415, 3907653.827748056966811 ], [ 4977435.471298649907112, 3907611.905750461854041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977216.843521122820675, 3911940.987793867476285 ], [ 4977186.857296142727137, 3911963.501602436415851 ], [ 4977188.005770821124315, 3911964.960526700597256 ], [ 4977156.00142952427268, 3911988.926700906362385 ], [ 4977125.569818943738937, 3911948.808734006248415 ], [ 4977158.439328045584261, 3911924.11605811631307 ], [ 4977156.716610940173268, 3911921.927673683036119 ], [ 4977185.837707906961441, 3911900.140297180972993 ], [ 4977216.843521122820675, 3911940.987793867476285 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977155.361650938168168, 3912711.365889655426145 ], [ 4977219.541230224072933, 3912718.782193694729358 ], [ 4977216.023083510808647, 3912749.362071140203625 ], [ 4977151.842818642035127, 3912742.309907209593803 ], [ 4977155.361650938168168, 3912711.365889655426145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976604.914259428158402, 3911473.265377089381218 ], [ 4976597.118187316693366, 3911484.537441379390657 ], [ 4976559.460371291264892, 3911457.878170095849782 ], [ 4976567.256435265764594, 3911446.606095063500106 ], [ 4976604.914259428158402, 3911473.265377089381218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976557.447254913859069, 3900824.858110906090587 ], [ 4976613.587014549411833, 3900834.441096078138798 ], [ 4976608.048337352462113, 3900866.837322884704918 ], [ 4976551.621396865695715, 3900856.889627316966653 ], [ 4976557.447254913859069, 3900824.858110906090587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976409.827887027524412, 3906096.083671255968511 ], [ 4976362.31932502053678, 3906095.257925554178655 ], [ 4976363.275752642191947, 3906050.107533370144665 ], [ 4976410.783646970055997, 3906051.297411085572094 ], [ 4976409.827887027524412, 3906096.083671255968511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977075.483755223453045, 3908898.363425333052874 ], [ 4977101.717599963769317, 3908882.031981360632926 ], [ 4977116.352547481656075, 3908905.366890012752265 ], [ 4977090.118716536089778, 3908921.698319924995303 ], [ 4977075.483755223453045, 3908898.363425333052874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976978.942306144163013, 3912134.576261650770903 ], [ 4976945.489165678620338, 3912163.273415642790496 ], [ 4976925.959717996418476, 3912141.020805144682527 ], [ 4976959.70149552449584, 3912111.960092503111809 ], [ 4976978.942306144163013, 3912134.576261650770903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976798.929755142889917, 3904657.836576277390122 ], [ 4976807.787857316434383, 3904690.990862984210253 ], [ 4976751.893793607130647, 3904705.804757187142968 ], [ 4976743.604769826866686, 3904675.928848177194595 ], [ 4976757.434128790162504, 3904672.316094574984163 ], [ 4976750.859295553527772, 3904648.998093228787184 ], [ 4976776.790314987301826, 3904641.769030665047467 ], [ 4976782.506529724225402, 3904662.536342846229672 ], [ 4976798.929755142889917, 3904657.836576277390122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976186.253499587066472, 3908836.448674737475812 ], [ 4976146.453422564081848, 3908869.867517258506268 ], [ 4976127.210306487977505, 3908846.887859291397035 ], [ 4976147.110337592661381, 3908830.178416559007019 ], [ 4976139.930430199950933, 3908821.424567616544664 ], [ 4976159.829743873327971, 3908805.079265546053648 ], [ 4976186.253499587066472, 3908836.448674737475812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976186.448904567398131, 3904093.266040839720517 ], [ 4976160.51900452747941, 3904099.767410787753761 ], [ 4976153.660013796761632, 3904074.264195778407156 ], [ 4976179.877898208796978, 3904067.763407915364951 ], [ 4976186.448904567398131, 3904093.266040839720517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976062.045343740843236, 3901694.844113387167454 ], [ 4976062.948664838448167, 3901675.547017724253237 ], [ 4976109.598115212284029, 3901677.826986152213067 ], [ 4976108.102435188367963, 3901705.133751225657761 ], [ 4976074.41095279995352, 3901703.608477554284036 ], [ 4976074.716024214401841, 3901695.234088981058449 ], [ 4976062.045343740843236, 3901694.844113387167454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976038.255012507550418, 3907571.514807796571404 ], [ 4976012.309205943718553, 3907587.483732954598963 ], [ 4975985.620567406527698, 3907544.097619522362947 ], [ 4976011.566399845294654, 3907528.128669014200568 ], [ 4976038.255012507550418, 3907571.514807796571404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976002.353411997668445, 3906962.612682915758342 ], [ 4976033.182014263235033, 3906952.843953001312912 ], [ 4976041.192836921662092, 3906977.985400065314025 ], [ 4976010.364260536618531, 3906987.754120943136513 ], [ 4976002.353411997668445, 3906962.612682915758342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976584.542460703290999, 3909902.71807418577373 ], [ 4976591.215889045968652, 3909877.606659510638565 ], [ 4976615.385916003026068, 3909884.21084542805329 ], [ 4976617.12831864412874, 3909876.931781068909913 ], [ 4976646.766171283088624, 3909884.639661968220025 ], [ 4976634.000278057530522, 3909932.314734428655356 ], [ 4976602.348683878779411, 3909923.874452939722687 ], [ 4976606.410776210017502, 3909908.589246251620352 ], [ 4976584.542460703290999, 3909902.71807418577373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976588.963206670247018, 3900624.651094659231603 ], [ 4976571.594862567260861, 3900667.582760216202587 ], [ 4976545.120781129226089, 3900656.968489680439234 ], [ 4976562.489089698530734, 3900614.03680728469044 ], [ 4976588.963206670247018, 3900624.651094659231603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976510.865745237097144, 3912549.449592851102352 ], [ 4976477.133236159570515, 3912574.505427199881524 ], [ 4976458.760422035120428, 3912549.706595086026937 ], [ 4976492.492196195758879, 3912525.014869858045131 ], [ 4976510.865745237097144, 3912549.449592851102352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976475.3594218371436, 3908955.748554048594087 ], [ 4976490.845871600322425, 3908985.275125475600362 ], [ 4976457.700449024327099, 3909002.685361029580235 ], [ 4976442.213972981087863, 3908973.158808393403888 ], [ 4976475.3594218371436, 3908955.748554048594087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975971.300089309923351, 3910899.550205744802952 ], [ 4975954.04310529306531, 3910891.504136935807765 ], [ 4975979.77866022195667, 3910835.844208961352706 ], [ 4975993.87260483391583, 3910842.063183875754476 ], [ 4975981.727862004190683, 3910868.256012593861669 ], [ 4975985.179557718336582, 3910869.719576422590762 ], [ 4975971.300089309923351, 3910899.550205744802952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975912.313975499011576, 3909893.695202427450567 ], [ 4975891.540811356157064, 3909915.500910785980523 ], [ 4975839.530267954804003, 3909866.601397925522178 ], [ 4975860.303427452221513, 3909844.795650018379092 ], [ 4975912.313975499011576, 3909893.695202427450567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975902.705794100649655, 3909097.317565909121186 ], [ 4975912.148960364982486, 3909125.739115491043776 ], [ 4975863.747232395224273, 3909142.026652262080461 ], [ 4975854.304020764306188, 3909113.605119398795068 ], [ 4975902.705794100649655, 3909097.317565909121186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975878.120051824487746, 3903346.168227412272245 ], [ 4975891.607220096513629, 3903369.500048342626542 ], [ 4975857.586928800679743, 3903389.093986085150391 ], [ 4975844.100480660796165, 3903365.398052176926285 ], [ 4975878.120051824487746, 3903346.168227412272245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975861.151543796062469, 3910135.739444221369922 ], [ 4975833.475756556726992, 3910154.253975432366133 ], [ 4975796.735189584083855, 3910099.92357288626954 ], [ 4975838.249300297349691, 3910071.969665380194783 ], [ 4975854.036278765648603, 3910095.306243499275297 ], [ 4975840.197992130182683, 3910104.745574584230781 ], [ 4975861.151543796062469, 3910135.739444221369922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975854.211676694452763, 3905333.549289158079773 ], [ 4975833.542297368869185, 3905302.556101549882442 ], [ 4975869.583935036323965, 3905278.960775257553905 ], [ 4975890.253291109576821, 3905309.95399013068527 ], [ 4975854.211676694452763, 3905333.549289158079773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975751.035862861201167, 3910487.996416458394378 ], [ 4975769.97914266679436, 3910516.437214772682637 ], [ 4975711.746642310172319, 3910554.917192011605948 ], [ 4975692.803328242152929, 3910526.476434093900025 ], [ 4975751.035862861201167, 3910487.996416458394378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976288.652036873623729, 3912538.069413611199707 ], [ 4976266.746272049844265, 3912551.497477014083415 ], [ 4976252.687582900747657, 3912528.528288698755205 ], [ 4976274.593359352089465, 3912515.100214032456279 ], [ 4976288.652036873623729, 3912538.069413611199707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976194.222183082252741, 3907896.275123029947281 ], [ 4976175.561691937968135, 3907869.655314165633172 ], [ 4976214.485365834087133, 3907843.153252868447453 ], [ 4976232.857916259206831, 3907869.772499153856188 ], [ 4976194.222183082252741, 3907896.275123029947281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976194.639369079843163, 3906143.344079220667481 ], [ 4976159.787561574950814, 3906148.734816676005721 ], [ 4976152.114385615102947, 3906099.197200669441372 ], [ 4976199.64007274620235, 3906091.647576357703656 ], [ 4976203.048435715027153, 3906114.594855438917875 ], [ 4976190.375373775139451, 3906116.389600569847971 ], [ 4976194.639369079843163, 3906143.344079220667481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975933.173583626747131, 3907990.416974809486419 ], [ 4975903.201076855883002, 3908004.557152272667736 ], [ 4975883.420532092452049, 3907962.277577894739807 ], [ 4975913.104414795525372, 3907948.500923773739487 ], [ 4975933.173583626747131, 3907990.416974809486419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975913.716762571595609, 3906939.85602881712839 ], [ 4975922.595196597278118, 3906963.178544785361737 ], [ 4975897.525993884541094, 3906972.594982116948813 ], [ 4975888.64828169438988, 3906948.908343742601573 ], [ 4975913.716762571595609, 3906939.85602881712839 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975844.38895514048636, 3906766.752358114346862 ], [ 4975834.879784160293639, 3906770.374359596986324 ], [ 4975840.03667723108083, 3906783.129456921480596 ], [ 4975806.321974693797529, 3906796.16973597696051 ], [ 4975787.417481346987188, 3906747.337668182328343 ], [ 4975816.233679429627955, 3906736.108077831100672 ], [ 4975820.52974780742079, 3906747.404894940555096 ], [ 4975834.649548087269068, 3906741.971593995112926 ], [ 4975844.38895514048636, 3906766.752358114346862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975826.809699798002839, 3908900.531725947279483 ], [ 4975815.562734800390899, 3908909.612195236608386 ], [ 4975803.213674717582762, 3908894.293553587514907 ], [ 4975814.171992600895464, 3908885.57662552036345 ], [ 4975826.809699798002839, 3908900.531725947279483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975816.859049667604268, 3911106.427749799098819 ], [ 4975814.585543244145811, 3911091.857812047470361 ], [ 4975860.950024539604783, 3911084.669357826001942 ], [ 4975859.813282645307481, 3911077.384387150406837 ], [ 4975876.51661420520395, 3911074.50528074754402 ], [ 4975880.210268325172365, 3911098.545569509733468 ], [ 4975844.212663303129375, 3911104.298522972967476 ], [ 4975845.632854430004954, 3911113.768867167644203 ], [ 4975834.114456647075713, 3911115.201994577422738 ], [ 4975832.409334651194513, 3911104.274540084414184 ], [ 4975816.859049667604268, 3911106.427749799098819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975808.715779723599553, 3906184.432896735146642 ], [ 4975792.084066961891949, 3906150.534866934176534 ], [ 4975832.146809664554894, 3906131.317225359845906 ], [ 4975857.953311710618436, 3906184.532913801260293 ], [ 4975833.166167485527694, 3906196.498904591426253 ], [ 4975823.703387163579464, 3906177.180693873669952 ], [ 4975808.715779723599553, 3906184.432896735146642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975420.924930073320866, 3910293.974253935273737 ], [ 4975380.854737443849444, 3910320.111053683795035 ], [ 4975353.589089843444526, 3910278.180859826970845 ], [ 4975393.947213434614241, 3910252.044600284658372 ], [ 4975420.924930073320866, 3910293.974253935273737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975683.711000892333686, 3904924.283516995608807 ], [ 4975715.120679013431072, 3904913.059080566745251 ], [ 4975731.728160469792783, 3904959.337461248971522 ], [ 4975709.827580105513334, 3904967.303963623475283 ], [ 4975707.824462126009166, 3904961.109666571486741 ], [ 4975685.06003490742296, 3904969.074438503477722 ], [ 4975667.879524173215032, 3904921.33839967334643 ], [ 4975680.846229271963239, 3904916.995081899221987 ], [ 4975683.711000892333686, 3904924.283516995608807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975464.0414266185835, 3905761.342346766032279 ], [ 4975421.701279561966658, 3905767.447197529021651 ], [ 4975415.45460669323802, 3905723.73879071790725 ], [ 4975457.794821131974459, 3905717.633930281270295 ], [ 4975464.0414266185835, 3905761.342346766032279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975256.204227367416024, 3909313.397420555353165 ], [ 4975237.164433516561985, 3909332.294050371274352 ], [ 4975219.34942892473191, 3909314.779895299114287 ], [ 4975238.389222578145564, 3909295.883253058418632 ], [ 4975256.204227367416024, 3909313.397420555353165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975314.105651270598173, 3905290.582061254419386 ], [ 4975277.792676764540374, 3905306.166689103469253 ], [ 4975257.442029759287834, 3905259.516925268806517 ], [ 4975294.04300420358777, 3905243.932849474716932 ], [ 4975314.105651270598173, 3905290.582061254419386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975162.605241523124278, 3906171.112448930740356 ], [ 4975203.23826190456748, 3906154.443937699776143 ], [ 4975219.572536707855761, 3906193.438850593753159 ], [ 4975178.938834219239652, 3906210.47146794013679 ], [ 4975162.605241523124278, 3906171.112448930740356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975003.437944123521447, 3899948.519952983595431 ], [ 4974986.954646335914731, 3899981.986997919622809 ], [ 4974946.961200940422714, 3899962.244019456673414 ], [ 4974963.443733187392354, 3899929.141079413238913 ], [ 4975003.437944123521447, 3899948.519952983595431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974945.389470611698925, 3901325.54602171946317 ], [ 4974996.060568256303668, 3901333.294052624609321 ], [ 4975000.729593310505152, 3901302.716403261758387 ], [ 4975047.658292891457677, 3901309.728785275481641 ], [ 4975033.361645104363561, 3901402.189395806752145 ], [ 4974997.373086312785745, 3901397.019568553660065 ], [ 4974994.163690174929798, 3901417.768606909085065 ], [ 4975006.543612586334348, 3901419.614020396955311 ], [ 4975004.791639437898993, 3901431.626833220943809 ], [ 4974990.108532687649131, 3901429.412684197537601 ], [ 4974981.354546154849231, 3901486.563721033278853 ], [ 4974889.226368838921189, 3901472.178588282316923 ], [ 4974895.644264439120889, 3901431.044615139253438 ], [ 4974928.465637905523181, 3901435.843849535565823 ], [ 4974945.389470611698925, 3901325.54602171946317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974920.762671242468059, 3910625.787854521069676 ], [ 4974899.141019575297832, 3910640.674117774702609 ], [ 4974903.733459481969476, 3910647.601813378743827 ], [ 4974883.264124893583357, 3910662.12625794345513 ], [ 4974856.278676783666015, 3910623.838448748923838 ], [ 4974898.657581746578217, 3910594.428277874365449 ], [ 4974920.762671242468059, 3910625.787854521069676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974926.572074341587722, 3905555.621308607049286 ], [ 4974886.221180064603686, 3905574.839718777220696 ], [ 4974868.156914720311761, 3905536.569836465176195 ], [ 4974908.50785337947309, 3905517.351399609353393 ], [ 4974926.572074341587722, 3905555.621308607049286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974848.979676342569292, 3900425.222498227376491 ], [ 4974853.384652223438025, 3900382.628003985621035 ], [ 4974888.226227345876396, 3900385.974690539762378 ], [ 4974883.821196760050952, 3900428.569179154932499 ], [ 4974848.979676342569292, 3900425.222498227376491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974814.146887426264584, 3897093.361424939706922 ], [ 4974838.615445750765502, 3897100.692792386282235 ], [ 4974822.667503754608333, 3897153.823965251911432 ], [ 4974769.988172790966928, 3897138.061440161895007 ], [ 4974778.399218329228461, 3897108.94779832335189 ], [ 4974785.595767862163484, 3897111.146909639239311 ], [ 4974790.81450457777828, 3897094.043200036045164 ], [ 4974787.071484533138573, 3897093.307485031895339 ], [ 4974798.960037072189152, 3897053.641010680701584 ], [ 4974823.716672257520258, 3897060.97293820604682 ], [ 4974814.146887426264584, 3897093.361424939706922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974775.249641348607838, 3910111.706163488328457 ], [ 4974736.618564859032631, 3910138.210920246317983 ], [ 4974707.33644933719188, 3910096.277375034987926 ], [ 4974745.967556984163821, 3910069.772576868068427 ], [ 4974775.249641348607838, 3910111.706163488328457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974739.839224887080491, 3898827.200786123517901 ], [ 4974695.158843400888145, 3898846.046678593382239 ], [ 4974676.238718947395682, 3898801.221044289879501 ], [ 4974697.57014530338347, 3898792.160197510384023 ], [ 4974701.297000336460769, 3898800.906734329648316 ], [ 4974724.646010306663811, 3898791.12166088167578 ], [ 4974739.839224887080491, 3898827.200786123517901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974669.89030668977648, 3900691.045428392011672 ], [ 4974693.750667227432132, 3900712.940703343600035 ], [ 4974669.795495670288801, 3900738.746355768293142 ], [ 4974645.935138653963804, 3900716.851101748645306 ], [ 4974669.89030668977648, 3900691.045428392011672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974410.336014281958342, 3896501.941247567534447 ], [ 4974459.635976880788803, 3896479.46274735359475 ], [ 4974470.819900591857731, 3896504.609839611221105 ], [ 4974478.604258772917092, 3896500.983955618459731 ], [ 4974485.486992223188281, 3896516.291034555528313 ], [ 4974479.144291359931231, 3896519.191511834505945 ], [ 4974489.181781326420605, 3896541.423304285854101 ], [ 4974449.396657621487975, 3896559.186893429607153 ], [ 4974432.189065210521221, 3896521.283350104466081 ], [ 4974421.234093176200986, 3896525.995364932809025 ], [ 4974410.336014281958342, 3896501.941247567534447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974625.567667879164219, 3899661.19621236436069 ], [ 4974630.373417279683053, 3899706.722060086671263 ], [ 4974598.974018936045468, 3899709.936890890821815 ], [ 4974594.168216962367296, 3899664.41104870615527 ], [ 4974625.567667879164219, 3899661.19621236436069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974570.040600947104394, 3905582.585504143498838 ], [ 4974577.60666636377573, 3905542.546028626617044 ], [ 4974608.405283427797258, 3905548.433274849317968 ], [ 4974600.839173722080886, 3905588.47274183947593 ], [ 4974570.040600947104394, 3905582.585504143498838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974566.329321851953864, 3900340.910273565910757 ], [ 4974518.202055362984538, 3900356.472459488082677 ], [ 4974507.037831206806004, 3900322.222061468288302 ], [ 4974555.165152443572879, 3900306.659855882637203 ], [ 4974566.329321851953864, 3900340.910273565910757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974398.072796123102307, 3907944.004897532053292 ], [ 4974411.271004526875913, 3907967.335471633821726 ], [ 4974391.093581545166671, 3907978.947789914440364 ], [ 4974393.962694172747433, 3907984.051316185388714 ], [ 4974359.66140743996948, 3908003.646636311896145 ], [ 4974343.594050195068121, 3907975.212565851863474 ], [ 4974398.072796123102307, 3907944.004897532053292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974400.764209002256393, 3903817.30463655712083 ], [ 4974411.138841979205608, 3903813.319713181816041 ], [ 4974420.019623218104243, 3903836.641688093543053 ], [ 4974412.814761854708195, 3903839.540484587196261 ], [ 4974421.408289694227278, 3903862.497760747559369 ], [ 4974388.555951040238142, 3903874.813244761899114 ], [ 4974361.339747630059719, 3903803.75383142195642 ], [ 4974391.310356040485203, 3903792.525009778793901 ], [ 4974400.764209002256393, 3903817.30463655712083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974381.485296393744648, 3910216.887210332788527 ], [ 4974429.620075773447752, 3910188.580088439863175 ], [ 4974450.280080792494118, 3910223.213602926582098 ], [ 4974402.145341475494206, 3910251.520688415504992 ], [ 4974381.485296393744648, 3910216.887210332788527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974380.454515662975609, 3898941.189013165887445 ], [ 4974395.360810201615095, 3898976.903248762711883 ], [ 4974351.258390219882131, 3898995.022595886606723 ], [ 4974333.771407771855593, 3898953.477203330025077 ], [ 4974355.101878075860441, 3898944.78021277114749 ], [ 4974357.39449749328196, 3898950.610826740972698 ], [ 4974380.454515662975609, 3898941.189013165887445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974265.483779008500278, 3908017.661807337310165 ], [ 4974284.721175365149975, 3908044.64555954746902 ], [ 4974260.213589927181602, 3908062.075546219479293 ], [ 4974240.976181542500854, 3908035.09181126113981 ], [ 4974265.483779008500278, 3908017.661807337310165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974263.253754439763725, 3896008.98332078801468 ], [ 4974213.966009480878711, 3896024.907867072615772 ], [ 4974193.067619795911014, 3895959.323367709759623 ], [ 4974242.066706052981317, 3895943.762344065587968 ], [ 4974263.253754439763725, 3896008.98332078801468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974239.705397116951644, 3895826.507959232665598 ], [ 4974252.587943065911531, 3895866.951741353608668 ], [ 4974224.91726643871516, 3895876.000436218455434 ], [ 4974211.746633594855666, 3895835.556099631357938 ], [ 4974239.705397116951644, 3895826.507959232665598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974132.270869425497949, 3901531.488337519578636 ], [ 4974118.021897058002651, 3901601.373422850389034 ], [ 4974019.857347789220512, 3901581.153302386403084 ], [ 4974034.105360151268542, 3901511.632295268587768 ], [ 4974132.270869425497949, 3901531.488337519578636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974124.290869204327464, 3903099.056558536365628 ], [ 4974145.82568677701056, 3903131.14247958548367 ], [ 4974098.536061899736524, 3903162.72885356657207 ], [ 4974072.11929636914283, 3903123.714881467632949 ], [ 4974098.071109879761934, 3903106.287607527337968 ], [ 4974102.664335591718554, 3903113.579263896681368 ], [ 4974124.290869204327464, 3903099.056558536365628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974040.001142118126154, 3892349.045241122599691 ], [ 4974038.784446364268661, 3892381.814447665121406 ], [ 4974008.824859923683107, 3892381.027380276937038 ], [ 4974010.042233772575855, 3892347.894044959452003 ], [ 4974040.001142118126154, 3892349.045241122599691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973947.708697391673923, 3908706.339192757382989 ], [ 4973962.635817151516676, 3908728.944683643057942 ], [ 4973901.807995108887553, 3908768.879981580656022 ], [ 4973886.880846559070051, 3908746.274523925967515 ], [ 4973947.708697391673923, 3908706.339192757382989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973871.429023091681302, 3899727.073283130303025 ], [ 4973835.135030826553702, 3899729.551162917166948 ], [ 4973832.33758666832, 3899687.306561975739896 ], [ 4973868.631635698489845, 3899684.828678475692868 ], [ 4973871.429023091681302, 3899727.073283130303025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973789.538326693698764, 3912882.633590249810368 ], [ 4973821.13885295484215, 3912915.8315474181436 ], [ 4973762.883732175454497, 3912969.973482030909508 ], [ 4973731.571064444258809, 3912936.776154628023505 ], [ 4973789.538326693698764, 3912882.633590249810368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973592.258708842098713, 3903617.630291614215821 ], [ 4973615.517990751191974, 3903651.539812610950321 ], [ 4973603.407106158323586, 3903659.891235414892435 ], [ 4973609.437361658550799, 3903668.64213456120342 ], [ 4973581.467812336049974, 3903687.522480505052954 ], [ 4973567.109941897913814, 3903666.739041913300753 ], [ 4973561.919469994492829, 3903670.370250379666686 ], [ 4973546.988477810285985, 3903648.129182071425021 ], [ 4973592.258708842098713, 3903617.630291614215821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973789.445871868170798, 3895255.397342331241816 ], [ 4973849.651691392064095, 3895254.422691232059151 ], [ 4973850.17080345749855, 3895283.554063284303993 ], [ 4973837.783700586296618, 3895283.893957488704473 ], [ 4973838.574496258981526, 3895321.400838960427791 ], [ 4973790.179089470766485, 3895322.398595375008881 ], [ 4973789.920213227160275, 3895307.468781454488635 ], [ 4973780.414387080818415, 3895307.450204179622233 ], [ 4973779.622798239812255, 3895270.307452793698758 ], [ 4973789.705460668541491, 3895269.963027718476951 ], [ 4973789.445871868170798, 3895255.397342331241816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973698.389641328714788, 3900732.463563618715852 ], [ 4973656.325008858926594, 3900741.120643880683929 ], [ 4973648.047632549889386, 3900702.870788914617151 ], [ 4973670.232674426399171, 3900698.180351770948619 ], [ 4973671.661298703402281, 3900704.009228241164237 ], [ 4973691.540942326188087, 3900700.042573414277285 ], [ 4973698.389641328714788, 3900732.463563618715852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973608.858420107513666, 3905148.107054326683283 ], [ 4973597.926964486017823, 3905142.623782990965992 ], [ 4973589.831741130910814, 3905159.358068180736154 ], [ 4973551.281907727010548, 3905141.076430086512119 ], [ 4973560.245215945877135, 3905122.159033743198961 ], [ 4973577.505917408503592, 3905130.567666600923985 ], [ 4973585.601141683757305, 3905113.833377991337329 ], [ 4973618.109716663137078, 3905129.190238274633884 ], [ 4973608.858420107513666, 3905148.107054326683283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973601.586313168518245, 3904003.263516975101084 ], [ 4973584.654694839380682, 3903973.371767212636769 ], [ 4973629.049178139306605, 3903948.697329608723521 ], [ 4973644.545920310541987, 3903976.037389911711216 ], [ 4973637.339050774462521, 3903980.028784445486963 ], [ 4973648.531244622543454, 3903999.713698109611869 ], [ 4973625.180758230388165, 3904012.776906971354038 ], [ 4973615.423397246748209, 3903995.643718251492828 ], [ 4973601.586313168518245, 3904003.263516975101084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973421.001397032290697, 3903129.725587488152087 ], [ 4973483.281803297810256, 3903089.428008247166872 ], [ 4973501.94475678820163, 3903117.866518414113671 ], [ 4973439.663681038655341, 3903158.528184896800667 ], [ 4973421.001397032290697, 3903129.725587488152087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973424.434330564923584, 3899432.712776463478804 ], [ 4973452.393334243446589, 3899421.47902393527329 ], [ 4973463.858609090559185, 3899449.903461334761232 ], [ 4973435.899630122818053, 3899461.137202126439661 ], [ 4973424.434330564923584, 3899432.712776463478804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973437.080523606389761, 3902116.015985727310181 ], [ 4973443.114717426709831, 3902122.94619158655405 ], [ 4973426.382759176194668, 3902137.843070389237255 ], [ 4973422.072216439060867, 3902133.100999878719449 ], [ 4973399.859431928955019, 3902152.720958122517914 ], [ 4973380.030347220599651, 3902131.198762646876276 ], [ 4973429.65024731028825, 3902086.506953211966902 ], [ 4973447.754259586334229, 3902106.569310436025262 ], [ 4973437.080523606389761, 3902116.015985727310181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973372.558966536074877, 3910435.57537292316556 ], [ 4973388.410053712315857, 3910426.866942539811134 ], [ 4973406.484419669024646, 3910459.309842833783478 ], [ 4973390.633345708250999, 3910468.018262738827616 ], [ 4973372.558966536074877, 3910435.57537292316556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973362.320099080912769, 3902205.082996275741607 ], [ 4973351.643608467653394, 3902215.986224393825978 ], [ 4973357.392644531093538, 3902221.459334785118699 ], [ 4973336.615650957450271, 3902243.266915719024837 ], [ 4973296.371647337451577, 3902205.319329368881881 ], [ 4973318.015404270961881, 3902182.056873319204897 ], [ 4973339.574506814591587, 3902202.489983943291008 ], [ 4973349.096953896805644, 3902192.676906727720052 ], [ 4973362.320099080912769, 3902205.082996275741607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973326.154495488852262, 3903480.564093529246747 ], [ 4973287.516754182055593, 3903506.342565767932683 ], [ 4973280.05074945371598, 3903495.404172799549997 ], [ 4973264.192092940211296, 3903505.933279198594391 ], [ 4973244.953928217291832, 3903477.129683247301728 ], [ 4973299.45107198599726, 3903440.457925833761692 ], [ 4973326.154495488852262, 3903480.564093529246747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973158.43937114905566, 3905181.097444958984852 ], [ 4973149.171537849120796, 3905208.753545845858753 ], [ 4973103.992315999232233, 3905193.736930841114372 ], [ 4973113.260107886977494, 3905166.080814625602216 ], [ 4973158.43937114905566, 3905181.097444958984852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973150.749788266606629, 3899917.932836149353534 ], [ 4973169.386469383724034, 3899961.300353824626654 ], [ 4973139.40929580014199, 3899973.987028500065207 ], [ 4973120.772575234994292, 3899930.619531284086406 ], [ 4973150.749788266606629, 3899917.932836149353534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973034.381719905883074, 3900074.28447303082794 ], [ 4973045.856277798302472, 3900097.975064605008811 ], [ 4973038.073153433389962, 3900101.601371295750141 ], [ 4973047.253491120412946, 3900120.189716575201601 ], [ 4973008.337220271117985, 3900138.685400030110031 ], [ 4972987.970276584848762, 3900096.40705030830577 ], [ 4973034.381719905883074, 3900074.28447303082794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973162.698342396877706, 3899994.423306359443814 ], [ 4973196.425202646292746, 3899978.830860777758062 ], [ 4973223.671634105965495, 3900037.872669806238264 ], [ 4973200.322142934426665, 3900048.751441811677068 ], [ 4973191.432002257555723, 3900029.071214319672436 ], [ 4973180.766680547036231, 3900033.784301169216633 ], [ 4973162.698342396877706, 3899994.423306359443814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973045.98478961456567, 3898088.340412957593799 ], [ 4973065.87259073369205, 3898081.096143417526037 ], [ 4973064.726805652491748, 3898077.81676431465894 ], [ 4973096.720128622837365, 3898066.226295729633421 ], [ 4973116.775834575295448, 3898121.248625087551773 ], [ 4973095.447221448644996, 3898128.854208013508469 ], [ 4973093.728201052173972, 3898124.117201680317521 ], [ 4973063.175775258801877, 3898135.346321549732238 ], [ 4973045.98478961456567, 3898088.340412957593799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972913.310667090117931, 3903276.946172608528286 ], [ 4972954.252839652821422, 3903250.807468382641673 ], [ 4972959.420889472588897, 3903258.828297735191882 ], [ 4972974.990199725143611, 3903249.026718442793936 ], [ 4973001.404925916343927, 3903289.860264200251549 ], [ 4972980.357196101918817, 3903303.292594032362103 ], [ 4972969.160016665235162, 3903285.792745930142701 ], [ 4972933.695607108063996, 3903308.664781594183296 ], [ 4972913.310667090117931, 3903276.946172608528286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972914.232326274737716, 3901898.712030051741749 ], [ 4972945.911344572901726, 3901898.408816856332123 ], [ 4972946.958217578940094, 3901953.030461986549199 ], [ 4972915.278563635423779, 3901953.697803496848792 ], [ 4972914.232326274737716, 3901898.712030051741749 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972608.368444523774087, 3913810.710413117427379 ], [ 4972643.694052649661899, 3913853.017464745789766 ], [ 4972619.764352701604366, 3913872.634905884973705 ], [ 4972584.438037025742233, 3913830.69201741553843 ], [ 4972608.368444523774087, 3913810.710413117427379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972610.3985666166991, 3903711.502349022775888 ], [ 4972656.816701392643154, 3903682.460602713748813 ], [ 4972649.351882400922477, 3903670.79412395413965 ], [ 4972665.498166118748486, 3903660.26520461961627 ], [ 4972690.188648018054664, 3903699.274499388877302 ], [ 4972627.912236632779241, 3903738.845671738497913 ], [ 4972610.3985666166991, 3903711.502349022775888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972769.402880749665201, 3903987.454099662601948 ], [ 4972765.561645436100662, 3904038.425122269429266 ], [ 4972732.450923818163574, 3904035.812750154640526 ], [ 4972736.580059033818543, 3903984.842274589464068 ], [ 4972769.402880749665201, 3903987.454099662601948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972739.767538191750646, 3910435.447578328195959 ], [ 4972788.209040247835219, 3910396.214120738673955 ], [ 4972807.73899055365473, 3910420.648487499915063 ], [ 4972759.298201950266957, 3910459.517779044341296 ], [ 4972739.767538191750646, 3910435.447578328195959 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972601.05748035479337, 3913720.027187720872462 ], [ 4972577.699234702624381, 3913741.830558373127133 ], [ 4972537.766948635689914, 3913699.878934982232749 ], [ 4972561.125198161229491, 3913678.075530193280429 ], [ 4972601.05748035479337, 3913720.027187720872462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972453.454780536703765, 3902050.036897394340485 ], [ 4972421.470631497912109, 3902059.443382038269192 ], [ 4972425.764027830213308, 3902073.288531189784408 ], [ 4972399.542343020439148, 3902081.249491985887289 ], [ 4972390.957600212655962, 3902052.466814016457647 ], [ 4972415.450025150552392, 3902045.23081443971023 ], [ 4972404.288684626109898, 3902008.432348164264113 ], [ 4972437.713499956764281, 3901998.664456309285015 ], [ 4972453.454780536703765, 3902050.036897394340485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972414.803144075907767, 3903897.564452665392309 ], [ 4972386.845067637972534, 3903910.984094891697168 ], [ 4972355.578268041834235, 3903847.201639508362859 ], [ 4972383.536395043134689, 3903833.781965281814337 ], [ 4972414.803144075907767, 3903897.564452665392309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972416.658882221207023, 3912901.831667413935065 ], [ 4972398.775782166980207, 3912920.368412227835506 ], [ 4972381.82214754447341, 3912904.314271771814674 ], [ 4972375.765164458192885, 3912910.493010485079139 ], [ 4972337.548831256106496, 3912873.642841764725745 ], [ 4972361.489603598602116, 3912848.563181664794683 ], [ 4972416.658882221207023, 3912901.831667413935065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972328.616152366623282, 3903488.116971271578223 ], [ 4972346.131639871746302, 3903514.731846853625029 ], [ 4972317.299611275084317, 3903533.247734302654862 ], [ 4972318.161436972208321, 3903534.341765674296767 ], [ 4972302.880498988553882, 3903544.144274269696325 ], [ 4972299.721161682158709, 3903539.768697923980653 ], [ 4972277.808695121668279, 3903553.928198787849396 ], [ 4972262.878650136291981, 3903530.595455794129521 ], [ 4972328.616152366623282, 3903488.116971271578223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972069.673111814074218, 3905042.102866739500314 ], [ 4972082.021254633553326, 3905059.968667772132903 ], [ 4972044.250826830975711, 3905085.750586519017816 ], [ 4972025.299068529158831, 3905057.676640775986016 ], [ 4972052.689508562907577, 3905039.157700834330171 ], [ 4972059.293105064891279, 3905049.365869232453406 ], [ 4972069.673111814074218, 3905042.102866739500314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972043.104982795193791, 3907215.191127559635788 ], [ 4972006.191766601987183, 3907246.072597108315676 ], [ 4971980.623288361355662, 3907215.801352806389332 ], [ 4971989.852103164419532, 3907207.807873926125467 ], [ 4971971.752517618238926, 3907186.654044303577393 ], [ 4971999.436937287449837, 3907163.766000736039132 ], [ 4972043.104982795193791, 3907215.191127559635788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971669.107852102257311, 3902599.119940037839115 ], [ 4971627.886156965047121, 3902620.890495398081839 ], [ 4971614.111712591722608, 3902595.011377392336726 ], [ 4971655.333436153829098, 3902573.240801243111491 ], [ 4971669.107852102257311, 3902599.119940037839115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971558.993415949866176, 3907731.712031677830964 ], [ 4971568.445751063525677, 3907757.947245212737471 ], [ 4971545.972845707088709, 3907765.916076431982219 ], [ 4971536.520491503179073, 3907739.680870675947517 ], [ 4971558.993415949866176, 3907731.712031677830964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971585.829488167539239, 3891706.384832323528826 ], [ 4971566.7416897052899, 3891745.674995461944491 ], [ 4971517.80936583597213, 3891722.279228562023491 ], [ 4971536.897109204903245, 3891682.989031221717596 ], [ 4971585.829488167539239, 3891706.384832323528826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971375.757278294302523, 3901001.857590922620147 ], [ 4971377.269918503239751, 3900962.898434828035533 ], [ 4971416.434483863413334, 3900964.428032595664263 ], [ 4971414.633792648091912, 3901003.386648976709694 ], [ 4971375.757278294302523, 3901001.857590922620147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971236.581148544326425, 3898564.10972399963066 ], [ 4971184.121516615152359, 3898585.495890707708895 ], [ 4971171.505436218343675, 3898554.885527652222663 ], [ 4971223.965117716230452, 3898533.499336712993681 ], [ 4971236.581148544326425, 3898564.10972399963066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971162.201027358882129, 3906045.041175911668688 ], [ 4971142.015459983609617, 3906061.025486161466688 ], [ 4971119.89475591480732, 3906033.674542503897101 ], [ 4971140.368947216309607, 3906017.326620020437986 ], [ 4971162.201027358882129, 3906045.041175911668688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971241.817607098259032, 3906586.289044018834829 ], [ 4971273.816973731853068, 3906565.593080673832446 ], [ 4971296.786642475053668, 3906600.592511543538421 ], [ 4971264.787299681454897, 3906621.28844799567014 ], [ 4971241.817607098259032, 3906586.289044018834829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971217.402975785546005, 3893851.144792312290519 ], [ 4971173.311892599798739, 3893859.80197513429448 ], [ 4971167.031127571128309, 3893829.203469410538673 ], [ 4971211.411006851121783, 3893820.182683982420713 ], [ 4971217.402975785546005, 3893851.144792312290519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971177.910397274419665, 3911691.307039196137339 ], [ 4971130.939344199374318, 3911716.344965493772179 ], [ 4971116.021652687340975, 3911688.279029398225248 ], [ 4971162.992064262740314, 3911663.605209210887551 ], [ 4971177.910397274419665, 3911691.307039196137339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971071.002067670226097, 3901808.932853621896356 ], [ 4971072.068956093862653, 3901854.815313238184899 ], [ 4971064.292681337334216, 3901855.165029309689999 ], [ 4971065.093867433257401, 3901889.030680307652801 ], [ 4971025.061955310404301, 3901890.048900576774031 ], [ 4971024.268811444751918, 3901851.813695993740112 ], [ 4971032.620382556691766, 3901851.829164814203978 ], [ 4971032.080160181038082, 3901832.529231240041554 ], [ 4971041.584353572688997, 3901832.182707090396434 ], [ 4971041.050208698026836, 3901809.605607585981488 ], [ 4971071.002067670226097, 3901808.932853621896356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970920.771404138766229, 3912347.362347834277898 ], [ 4970899.727083271369338, 3912363.345306009054184 ], [ 4970883.644565787166357, 3912342.559997801668942 ], [ 4970904.689566330984235, 3912326.212895323056728 ], [ 4970920.771404138766229, 3912347.362347834277898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970928.667043573223054, 3898886.158144203480333 ], [ 4970876.245262129232287, 3898887.51782538369298 ], [ 4970875.715616697445512, 3898862.391866663936526 ], [ 4970884.644823684357107, 3898862.044224140234292 ], [ 4970884.383030599914491, 3898847.842664745170623 ], [ 4970875.453818895854056, 3898848.190307357814163 ], [ 4970874.924171809107065, 3898823.064349242020398 ], [ 4970883.852719449438155, 3898823.080835367552936 ], [ 4970883.599666718393564, 3898804.145600609946996 ], [ 4970927.092383782379329, 3898803.133559290785342 ], [ 4970928.667043573223054, 3898886.158144203480333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970741.352541853673756, 3892370.808401315007359 ], [ 4970765.569270174950361, 3892361.385644479189068 ], [ 4970779.333042237907648, 3892396.367358703166246 ], [ 4970755.116340534761548, 3892405.790103341452777 ], [ 4970741.352541853673756, 3892370.808401315007359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970666.09859339799732, 3896949.5952118774876 ], [ 4970702.997570120729506, 3896933.277233785949647 ], [ 4970720.207469657063484, 3896972.634912930894643 ], [ 4970683.308536386117339, 3896988.952867767773569 ], [ 4970666.09859339799732, 3896949.5952118774876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970653.375262166373432, 3900580.677460208069533 ], [ 4970792.084647384472191, 3900638.465412729419768 ], [ 4970782.249759239144623, 3900661.751640283502638 ], [ 4970643.541142528876662, 3900603.599608414806426 ], [ 4970653.375262166373432, 3900580.677460208069533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970645.859942328184843, 3903885.879702003672719 ], [ 4970671.111658811569214, 3903934.355586452409625 ], [ 4970643.153156219050288, 3903948.505303131882101 ], [ 4970617.901402737013996, 3903900.02944454504177 ], [ 4970645.859942328184843, 3903885.879702003672719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970523.726714224554598, 3912069.890005578752607 ], [ 4970475.853274315595627, 3912116.77541158394888 ], [ 4970454.589857002720237, 3912095.252605439163744 ], [ 4970502.463297944515944, 3912048.367162173613906 ], [ 4970523.726714224554598, 3912069.890005578752607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970475.444448925554752, 3902438.510061524808407 ], [ 4970461.005496529862285, 3902460.331473770551383 ], [ 4970418.435947131365538, 3902432.215475587639958 ], [ 4970438.361147375777364, 3902402.393201509024948 ], [ 4970457.057134265080094, 3902414.807878292165697 ], [ 4970451.570863778702915, 3902422.808713867794722 ], [ 4970475.444448925554752, 3902438.510061524808407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970454.087436179630458, 3901362.828543934971094 ], [ 4970498.428624022752047, 3901368.007590071298182 ], [ 4970490.825457157567143, 3901430.988269613590091 ], [ 4970446.485038381069899, 3901425.445106345228851 ], [ 4970454.087436179630458, 3901362.828543934971094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970520.004621193744242, 3898395.650944187305868 ], [ 4970528.376626133918762, 3898385.106520552653819 ], [ 4970510.832621223293245, 3898371.237420247867703 ], [ 4970541.432453537359834, 3898333.423994573764503 ], [ 4970578.53328026458621, 3898362.986590140499175 ], [ 4970539.561421422287822, 3898411.344391884282231 ], [ 4970520.004621193744242, 3898395.650944187305868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970382.659400342963636, 3894590.609032413456589 ], [ 4970393.838608104735613, 3894620.852192424237728 ], [ 4970327.251586366444826, 3894645.127205471042544 ], [ 4970316.071649331599474, 3894615.248200729023665 ], [ 4970382.659400342963636, 3894590.609032413456589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970337.368915106169879, 3906452.441709846258163 ], [ 4970347.965990000404418, 3906483.412275296635926 ], [ 4970311.375566558912396, 3906495.725924149155617 ], [ 4970314.526234320364892, 3906504.834972580894828 ], [ 4970276.783450172282755, 3906517.510696311015636 ], [ 4970263.034956383518875, 3906477.795246237423271 ], [ 4970337.368915106169879, 3906452.441709846258163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970217.675489742308855, 3910985.306596440728754 ], [ 4970228.867912512272596, 3911004.626039105467498 ], [ 4970207.542367519810796, 3911016.603553234133869 ], [ 4970196.349934452213347, 3910997.284119323827326 ], [ 4970217.675489742308855, 3910985.306596440728754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970206.834662907756865, 3897179.24896091548726 ], [ 4970191.93174627609551, 3897138.075158296152949 ], [ 4970210.954042351804674, 3897131.555464322678745 ], [ 4970206.082634811289608, 3897117.709660733118653 ], [ 4970221.358490440063179, 3897112.275540364440531 ], [ 4970226.517263504676521, 3897126.486000046599656 ], [ 4970242.657226019538939, 3897121.053466215264052 ], [ 4970261.283953692764044, 3897173.522109112236649 ], [ 4970239.090632487088442, 3897181.492507261224091 ], [ 4970234.792001522146165, 3897169.468390776310116 ], [ 4970206.834662907756865, 3897179.24896091548726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969911.789005490019917, 3904549.444191694259644 ], [ 4969904.321260679513216, 3904538.870859865099192 ], [ 4969884.716499794274569, 3904551.944101085886359 ], [ 4969866.910642164759338, 3904525.694422272499651 ], [ 4969909.868258220143616, 3904497.00579567020759 ], [ 4969935.141833050176501, 3904533.828840704169124 ], [ 4969911.789005490019917, 3904549.444191694259644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970218.895277757197618, 3894353.262118651997298 ], [ 4970240.013645895756781, 3894304.14315880741924 ], [ 4970290.962152114138007, 3894325.719673864077777 ], [ 4970273.024378621950746, 3894368.290069270413369 ], [ 4970242.225270301103592, 3894355.125271924771369 ], [ 4970239.332007174380124, 3894362.03845347231254 ], [ 4970218.895277757197618, 3894353.262118651997298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970104.410426853224635, 3902502.284185171127319 ], [ 4970113.096118017099798, 3902476.810810937546194 ], [ 4970135.831848550587893, 3902484.863038809970021 ], [ 4970145.674789866432548, 3902456.478733035270125 ], [ 4970178.195835399441421, 3902467.825980148743838 ], [ 4970168.932134510949254, 3902494.390673965215683 ], [ 4970179.868018290959299, 3902498.416022678371519 ], [ 4970174.94653457775712, 3902512.608169155661017 ], [ 4970162.570764983072877, 3902508.580201731529087 ], [ 4970158.228561636060476, 3902520.952750956173986 ], [ 4970104.410426853224635, 3902502.284185171127319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970009.954947067424655, 3893927.579522995743901 ], [ 4969980.271843476220965, 3893934.080024221446365 ], [ 4969964.269246129319072, 3893862.681725186295807 ], [ 4970008.649983759969473, 3893852.930698308162391 ], [ 4970014.936024169437587, 3893881.34416665835306 ], [ 4970000.526550335809588, 3893884.595193915534765 ], [ 4970009.954947067424655, 3893927.579522995743901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969934.737301080487669, 3906028.588095036800951 ], [ 4969936.121584529988468, 3906059.177667074836791 ], [ 4969911.932635643519461, 3906060.226246498059481 ], [ 4969910.548324717208743, 3906029.636675691232085 ], [ 4969934.737301080487669, 3906028.588095036800951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969798.620573092252016, 3905347.05154302995652 ], [ 4969814.395840061828494, 3905381.308415084611624 ], [ 4969782.695321028120816, 3905395.816404975019395 ], [ 4969766.9206796977669, 3905361.195420858450234 ], [ 4969798.620573092252016, 3905347.05154302995652 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969874.423579648137093, 3903397.265274686738849 ], [ 4969894.604454312473536, 3903384.557207606267184 ], [ 4969888.00028405431658, 3903373.985451591666788 ], [ 4969913.370559595525265, 3903358.009611343033612 ], [ 4969919.11411420814693, 3903366.759159292094409 ], [ 4969939.583002029918134, 3903354.051647746935487 ], [ 4969956.812971644103527, 3903380.664442095439881 ], [ 4969963.443515255115926, 3903376.671017988119274 ], [ 4969979.81086147017777, 3903402.554001609794796 ], [ 4969956.747635462321341, 3903416.713305192068219 ], [ 4969943.538694700226188, 3903395.933893822133541 ], [ 4969893.374805009923875, 3903427.522454751655459 ], [ 4969874.423579648137093, 3903397.265274686738849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969872.606199314817786, 3900263.188373286277056 ], [ 4969878.153346891514957, 3900221.687540073879063 ], [ 4969898.884266960434616, 3900224.638099810108542 ], [ 4969897.715779315680265, 3900233.739245508331805 ], [ 4969912.688615459017456, 3900235.587002992630005 ], [ 4969908.310565570369363, 3900267.622554668691009 ], [ 4969872.606199314817786, 3900263.188373286277056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969665.738681391812861, 3900628.037788555026054 ], [ 4969664.523062538355589, 3900663.356258555781096 ], [ 4969586.192860018461943, 3900660.302226492203772 ], [ 4969587.407721171155572, 3900625.347882330883294 ], [ 4969665.738681391812861, 3900628.037788555026054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969641.715850344859064, 3905171.985389300156385 ], [ 4969665.052891656756401, 3905164.744795206002891 ], [ 4969674.498144336976111, 3905196.441256159450859 ], [ 4969651.161127961240709, 3905203.681842186953872 ], [ 4969641.715850344859064, 3905171.985389300156385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969545.754122900776565, 3898963.382198003586382 ], [ 4969559.039516226388514, 3898943.014785103034228 ], [ 4969617.151334206573665, 3898980.62469930620864 ], [ 4969597.80120962113142, 3899010.08442802913487 ], [ 4969556.375381853431463, 3898983.064312717877328 ], [ 4969562.15206350106746, 3898973.971441740635782 ], [ 4969545.754122900776565, 3898963.382198003586382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969677.188989761285484, 3892672.553860818501562 ], [ 4969641.129386710003018, 3892699.798590251710266 ], [ 4969596.581248498521745, 3892641.457834882196039 ], [ 4969632.352144837379456, 3892614.57665576832369 ], [ 4969677.188989761285484, 3892672.553860818501562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969426.59596493281424, 3901810.304354252293706 ], [ 4969378.43649959564209, 3901846.995274169836193 ], [ 4969359.186462949030101, 3901821.835784991271794 ], [ 4969407.345946904271841, 3901785.144831131678075 ], [ 4969426.59596493281424, 3901810.304354252293706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969404.403574676252902, 3892333.788261854089797 ], [ 4969397.153790828771889, 3892360.356673980131745 ], [ 4969377.573006180115044, 3892355.223812295123935 ], [ 4969372.350941493175924, 3892375.605673036072403 ], [ 4969339.812770128250122, 3892366.808361577335745 ], [ 4969345.32355029322207, 3892346.062882442958653 ], [ 4969340.716111185960472, 3892344.962254222482443 ], [ 4969349.416703501716256, 3892312.570363415870816 ], [ 4969355.751369233243167, 3892314.402341038919985 ], [ 4969360.972129820846021, 3892294.748732877895236 ], [ 4969392.934858601540327, 3892303.180910257156938 ], [ 4969386.26255636382848, 3892329.02210152707994 ], [ 4969404.403574676252902, 3892333.788261854089797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969410.446403973735869, 3891211.918873867485672 ], [ 4969419.284189685247838, 3891264.005079835187644 ], [ 4969379.2260901639238, 3891270.851781949400902 ], [ 4969370.100130021572113, 3891218.765073305461556 ], [ 4969410.446403973735869, 3891211.918873867485672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969337.313989216461778, 3891992.115477395709604 ], [ 4969328.094430411234498, 3891992.4631172940135 ], [ 4969326.412767241708934, 3891966.242847966961563 ], [ 4969367.326271064579487, 3891963.76714082993567 ], [ 4969371.506208528764546, 3892042.790538409724832 ], [ 4969340.101758232340217, 3892044.190860578790307 ], [ 4969337.313989216461778, 3891992.115477395709604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969218.291699656285346, 3897180.743855895940214 ], [ 4969174.189194671809673, 3897199.235806628596038 ], [ 4969160.994099801406264, 3897168.625385394319892 ], [ 4969205.096645814366639, 3897150.133413358125836 ], [ 4969218.291699656285346, 3897180.743855895940214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969191.919105557724833, 3897432.674610968213528 ], [ 4969200.514612711034715, 3897458.179029539227486 ], [ 4969152.095986591652036, 3897474.478540690615773 ], [ 4969133.470549218356609, 3897420.19001382496208 ], [ 4969172.378334162756801, 3897407.150679604150355 ], [ 4969182.120154484175146, 3897435.934303811751306 ], [ 4969191.919105557724833, 3897432.674610968213528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968935.864760022610426, 3894505.710490270983428 ], [ 4968936.398903146386147, 3894529.379833860788494 ], [ 4968900.101589146070182, 3894530.043729668017477 ], [ 4968900.362544701434672, 3894545.337617536075413 ], [ 4968871.84296765178442, 3894546.015338940080255 ], [ 4968871.048440753482282, 3894506.687980996444821 ], [ 4968935.864760022610426, 3894505.710490270983428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968955.147122598253191, 3893379.493554394226521 ], [ 4968982.203638397157192, 3893392.286092369817197 ], [ 4968958.203521884046495, 3893442.8574128895998 ], [ 4968931.147045690566301, 3893430.064898684155196 ], [ 4968940.400341334752738, 3893410.418349444400519 ], [ 4968930.326088551431894, 3893405.666803917847574 ], [ 4968939.579391929320991, 3893386.020254672970623 ], [ 4968949.653650461696088, 3893390.771803605370224 ], [ 4968955.147122598253191, 3893379.493554394226521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968741.517111602239311, 3899016.204532158561051 ], [ 4968766.006805619224906, 3899011.514122985769063 ], [ 4968769.716889172792435, 3899030.819579366594553 ], [ 4968784.410828342661262, 3899027.932520774658769 ], [ 4968793.544235181994736, 3899074.921463660430163 ], [ 4968754.360684772953391, 3899082.498914994765073 ], [ 4968741.517111602239311, 3899016.204532158561051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968813.161892683245242, 3900358.515445574186742 ], [ 4968831.584945290349424, 3900363.645880806259811 ], [ 4968823.180060399696231, 3900393.489698097575456 ], [ 4968804.757026675157249, 3900388.359268538653851 ], [ 4968813.161892683245242, 3900358.515445574186742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968693.104855064302683, 3902456.788231453858316 ], [ 4968632.557418392971158, 3902497.464072121307254 ], [ 4968613.600265012122691, 3902469.392576762940735 ], [ 4968674.147736016660929, 3902428.716694083064795 ], [ 4968693.104855064302683, 3902456.788231453858316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968692.082848146557808, 3898304.24296843027696 ], [ 4968633.035519236698747, 3898305.595332386437804 ], [ 4968632.240773702040315, 3898266.267894092947245 ], [ 4968691.000165311619639, 3898264.915020057465881 ], [ 4968692.082848146557808, 3898304.24296843027696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968467.764205009676516, 3890402.245923169888556 ], [ 4968439.251109139993787, 3890396.733939956873655 ], [ 4968436.341272462159395, 3890413.114605944603682 ], [ 4968370.674394944682717, 3890400.619078479707241 ], [ 4968378.526070592924953, 3890359.122216221410781 ], [ 4968415.968021033331752, 3890366.106309869792312 ], [ 4968416.840650051832199, 3890361.374173080082983 ], [ 4968473.579445634968579, 3890372.033488794229925 ], [ 4968467.764205009676516, 3890402.245923169888556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968349.927639822475612, 3914228.578515650238842 ], [ 4968309.629553548060358, 3914227.779622256290168 ], [ 4968310.262670842930675, 3914195.008713875431567 ], [ 4968320.625376880168915, 3914195.026869979221374 ], [ 4968320.936199865303934, 3914181.918607794679701 ], [ 4968350.583790774457157, 3914182.69884165469557 ], [ 4968349.927639822475612, 3914228.578515650238842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968278.747869847342372, 3896834.252805250231177 ], [ 4968260.021515439264476, 3896836.404826713260263 ], [ 4968261.440694737248123, 3896848.423587295226753 ], [ 4968235.512108583934605, 3896851.291289962362498 ], [ 4968230.408870896324515, 3896804.673774974420667 ], [ 4968259.218531492166221, 3896801.446976114064455 ], [ 4968258.085477748885751, 3896790.521105292253196 ], [ 4968273.642792795784771, 3896788.727668113540858 ], [ 4968278.747869847342372, 3896834.252805250231177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968204.080412107519805, 3905608.213400109205395 ], [ 4968206.963679525069892, 3905606.033648918848485 ], [ 4968199.208887201733887, 3905594.732020021416247 ], [ 4968224.001446673646569, 3905578.025296140927821 ], [ 4968250.711572877131402, 3905617.398211330641061 ], [ 4968223.036403564736247, 3905635.920529705006629 ], [ 4968204.080412107519805, 3905608.213400109205395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968183.693821790628135, 3899144.126757506281137 ], [ 4968184.320081781595945, 3899115.361569405067712 ], [ 4968210.52876812685281, 3899115.7714779432863 ], [ 4968210.542764468118548, 3899107.760639229789376 ], [ 4968224.654844215139747, 3899108.149429354351014 ], [ 4968224.352829137817025, 3899116.15976470336318 ], [ 4968250.561514165252447, 3899116.569712280761451 ], [ 4968250.22319751419127, 3899145.335402497556061 ], [ 4968183.693821790628135, 3899144.126757506281137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968082.053054546937346, 3906398.894419327378273 ], [ 4968050.639438257552683, 3906415.225616672541946 ], [ 4968039.447965370491147, 3906393.358221853151917 ], [ 4968070.57366363145411, 3906377.026509925723076 ], [ 4968082.053054546937346, 3906398.894419327378273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968039.226070713251829, 3905363.229448489379138 ], [ 4968067.18743774946779, 3905345.799836797174066 ], [ 4968092.457019235007465, 3905385.898341597057879 ], [ 4968064.495677396655083, 3905403.327927422709763 ], [ 4968039.226070713251829, 3905363.229448489379138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967954.63902891241014, 3895876.391143998131156 ], [ 4968003.337716683745384, 3895865.916045698802918 ], [ 4968010.481943604536355, 3895898.700122027192265 ], [ 4967961.78331237565726, 3895909.17520758183673 ], [ 4967954.63902891241014, 3895876.391143998131156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967639.54718088824302, 3905033.361647382378578 ], [ 4967662.893233621492982, 3905020.657359921373427 ], [ 4967677.532822012901306, 3905047.264243902172893 ], [ 4967638.910933549515903, 3905068.317167097702622 ], [ 4967616.234449425712228, 3905026.76704665273428 ], [ 4967631.510317794978619, 3905018.418385716155171 ], [ 4967639.54718088824302, 3905033.361647382378578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967647.712987403385341, 3896298.613951927050948 ], [ 4967650.82616700977087, 3896330.662723933812231 ], [ 4967630.371875121258199, 3896332.448071722872555 ], [ 4967627.258043113164604, 3896300.763430498540401 ], [ 4967647.712987403385341, 3896298.613951927050948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967470.453145479783416, 3902058.119177985005081 ], [ 4967496.683409117162228, 3902044.327333052642643 ], [ 4967500.70326682459563, 3902051.252735379152 ], [ 4967522.610042721964419, 3902039.638260208070278 ], [ 4967539.835097018629313, 3902070.983169769402593 ], [ 4967523.693009615875781, 3902079.694509952329099 ], [ 4967527.711601017974317, 3902087.348175866063684 ], [ 4967495.427464192733169, 3902104.770880708936602 ], [ 4967470.453145479783416, 3902058.119177985005081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967419.618315461091697, 3900636.465878754854202 ], [ 4967385.020399265922606, 3900658.618425197899342 ], [ 4967366.923385797068477, 3900631.277582196053118 ], [ 4967401.52194741833955, 3900608.760883444920182 ], [ 4967419.618315461091697, 3900636.465878754854202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967372.614435959607363, 3902181.755556582007557 ], [ 4967336.860373345203698, 3902207.547506099101156 ], [ 4967308.704969780519605, 3902168.537242779508233 ], [ 4967344.459057082422078, 3902142.745256412308663 ], [ 4967372.614435959607363, 3902181.755556582007557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967346.66459022462368, 3903711.061087653040886 ], [ 4967351.039039724506438, 3903679.025052126962692 ], [ 4967376.086424605920911, 3903682.345212468877435 ], [ 4967371.711945761926472, 3903714.381243985146284 ], [ 4967346.66459022462368, 3903711.061087653040886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967458.827514543198049, 3897094.275903222616762 ], [ 4967490.810180478729308, 3897088.140698249451816 ], [ 4967498.232714106328785, 3897126.75121554499492 ], [ 4967466.249466302804649, 3897133.250540441833436 ], [ 4967458.827514543198049, 3897094.275903222616762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966869.999444156885147, 3906811.91952119441703 ], [ 4966901.115903032943606, 3906800.320150304585695 ], [ 4966931.215687145479023, 3906878.659646648447961 ], [ 4966900.963099476881325, 3906890.260450771544129 ], [ 4966886.91693277657032, 3906853.459276187699288 ], [ 4966875.392248681746423, 3906857.809286800678819 ], [ 4966868.512182692065835, 3906839.955146106425673 ], [ 4966878.884527751244605, 3906835.967307564336807 ], [ 4966869.999444156885147, 3906811.91952119441703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966846.276995507068932, 3913663.398023079615086 ], [ 4966876.167909689247608, 3913690.758777555543929 ], [ 4966840.984302639961243, 3913728.933047722559422 ], [ 4966811.092777719721198, 3913701.936464062891901 ], [ 4966846.276995507068932, 3913663.398023079615086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966825.803743253462017, 3894497.680804771836847 ], [ 4966851.157082599587739, 3894495.539025184698403 ], [ 4966855.952861919999123, 3894555.264337116386741 ], [ 4966830.599578495137393, 3894557.406112257856876 ], [ 4966825.803743253462017, 3894497.680804771836847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966650.788175490684807, 3897662.397866997867823 ], [ 4966664.539793998934329, 3897706.116673653014004 ], [ 4966676.067133141681552, 3897702.494854310061783 ], [ 4966682.369935535825789, 3897722.532646091189235 ], [ 4966672.572011297568679, 3897725.429125564172864 ], [ 4966676.582269450649619, 3897738.544575832318515 ], [ 4966640.560161624103785, 3897749.407616299111396 ], [ 4966616.494770693592727, 3897672.899729513097554 ], [ 4966650.788175490684807, 3897662.397866997867823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966752.194157364778221, 3893056.333677721675485 ], [ 4966775.131990499794483, 3893120.459182273596525 ], [ 4966727.28257979825139, 3893137.128122866619378 ], [ 4966704.632726232521236, 3893073.003145581111312 ], [ 4966752.194157364778221, 3893056.333677721675485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966437.163809834979475, 3906512.600092717446387 ], [ 4966445.156790108419955, 3906553.760422227438539 ], [ 4966418.370281953364611, 3906558.81322619644925 ], [ 4966410.376650213263929, 3906518.017035238444805 ], [ 4966437.163809834979475, 3906512.600092717446387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966302.758161562494934, 3908365.441857101395726 ], [ 4966313.672686564736068, 3908381.117843055166304 ], [ 4966298.971914641559124, 3908391.288891562726349 ], [ 4966288.919299997389317, 3908376.706752713304013 ], [ 4966277.965704053640366, 3908384.335169096942991 ], [ 4966257.573740215040743, 3908354.442166613880545 ], [ 4966306.576167720369995, 3908320.660005424637347 ], [ 4966326.39410438016057, 3908349.459685059264302 ], [ 4966302.758161562494934, 3908365.441857101395726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966259.677563986741006, 3898673.292953755240887 ], [ 4966235.485164089128375, 3898672.524192856624722 ], [ 4966235.477850925177336, 3898676.89374067587778 ], [ 4966194.869574665091932, 3898675.369286646135151 ], [ 4966196.380912163294852, 3898632.768603989854455 ], [ 4966241.021528352983296, 3898634.299809468444437 ], [ 4966240.715223647654057, 3898645.223196668084711 ], [ 4966260.587354530580342, 3898645.984727145172656 ], [ 4966259.677563986741006, 3898673.292953755240887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966253.547303915023804, 3899926.254503486212343 ], [ 4966255.343018709681928, 3899885.839050020556897 ], [ 4966289.325318668037653, 3899887.352495274972171 ], [ 4966287.528942699544132, 3899928.132075759582222 ], [ 4966253.547303915023804, 3899926.254503486212343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966032.665947067551315, 3908208.777648841962218 ], [ 4966058.846362942829728, 3908220.837656458839774 ], [ 4966046.422223147004843, 3908247.034452032763511 ], [ 4966020.241827280260623, 3908234.974456329829991 ], [ 4966032.665947067551315, 3908208.777648841962218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965997.187301876023412, 3904962.484040779527277 ], [ 4966036.662804990075529, 3904946.892154616769403 ], [ 4966046.125159847550094, 3904970.940597994718701 ], [ 4966006.937638117931783, 3904986.532950081396848 ], [ 4965997.187301876023412, 3904962.484040779527277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965910.282134380191565, 3892621.244560236111283 ], [ 4965963.011218277737498, 3892615.506145956926048 ], [ 4965968.401234680786729, 3892665.764871940482408 ], [ 4965915.672248155809939, 3892671.503275825642049 ], [ 4965910.282134380191565, 3892621.244560236111283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965496.436796971596777, 3893415.817508392501622 ], [ 4965468.472500756382942, 3893428.516007982660085 ], [ 4965458.42518749833107, 3893407.015881401952356 ], [ 4965448.622831152752042, 3893411.733438974246383 ], [ 4965435.131152966059744, 3893382.580952944699675 ], [ 4965472.897855214774609, 3893365.164866826031357 ], [ 4965496.436796971596777, 3893415.817508392501622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965938.937305133789778, 3898604.665458559524268 ], [ 4965935.149459089152515, 3898630.876519988290966 ], [ 4965867.192519224248827, 3898621.296248573809862 ], [ 4965872.728974427096546, 3898582.707661496475339 ], [ 4965920.241421353071928, 3898589.340921558905393 ], [ 4965918.49272576533258, 3898601.718434737529606 ], [ 4965938.937305133789778, 3898604.665458559524268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965738.109136500395834, 3898303.560971166007221 ], [ 4965733.745398989878595, 3898329.77110285544768 ], [ 4965707.83056059665978, 3898325.358667859341949 ], [ 4965712.19427353516221, 3898299.148532039020211 ], [ 4965738.109136500395834, 3898303.560971166007221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965676.973380336537957, 3904446.342786802910268 ], [ 4965647.571644732728601, 3904464.500757765490562 ], [ 4965639.529293331317604, 3904452.107008907012641 ], [ 4965626.845941098406911, 3904460.096948657650501 ], [ 4965614.783597198314965, 3904440.778075146954507 ], [ 4965625.737405714578927, 3904433.877667441964149 ], [ 4965611.664754931814969, 3904411.278294787276536 ], [ 4965642.50872031506151, 3904391.66614255355671 ], [ 4965676.973380336537957, 3904446.342786802910268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965396.268793862313032, 3900556.234721638262272 ], [ 4965421.603138942271471, 3900562.102433071471751 ], [ 4965408.843833347782493, 3900615.24450506689027 ], [ 4965376.600560241378844, 3900607.54480918450281 ], [ 4965385.297920294106007, 3900572.602571468334645 ], [ 4965391.630906294099987, 3900574.433623929973692 ], [ 4965396.268793862313032, 3900556.234721638262272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965126.472145334817469, 3901049.18967077601701 ], [ 4965158.705441010184586, 3901062.715141081716865 ], [ 4965142.516543826088309, 3901100.194139415863901 ], [ 4965110.283879288472235, 3901086.304558687843382 ], [ 4965126.472145334817469, 3901049.18967077601701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965666.500610342249274, 3892135.457219265867025 ], [ 4965705.966439766809344, 3892136.978963909205049 ], [ 4965705.060627179220319, 3892162.102339025121182 ], [ 4965665.594834591262043, 3892160.580595701467246 ], [ 4965666.500610342249274, 3892135.457219265867025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965450.507345872931182, 3899973.351202357560396 ], [ 4965477.273267613723874, 3899984.68327175732702 ], [ 4965459.927668489515781, 3900024.344934706110507 ], [ 4965433.450382531620562, 3900012.649226462468505 ], [ 4965450.507345872931182, 3899973.351202357560396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965446.010692026466131, 3894650.131830574478954 ], [ 4965443.924217190593481, 3894692.731507913209498 ], [ 4965403.311074120923877, 3894690.479996920563281 ], [ 4965405.397484756074846, 3894647.880316491704434 ], [ 4965446.010692026466131, 3894650.131830574478954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965010.694922175258398, 3901228.153121527750045 ], [ 4965044.986131716519594, 3901215.828540003858507 ], [ 4965046.419564675539732, 3901219.836311732884496 ], [ 4965063.997760726138949, 3901213.310612993780524 ], [ 4965073.745553052052855, 3901240.272165605798364 ], [ 4965021.876197012141347, 3901259.122425568755716 ], [ 4965010.694922175258398, 3901228.153121527750045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964960.550325646065176, 3901603.126012372784317 ], [ 4964947.54113916028291, 3901633.691829257179052 ], [ 4964902.069860952906311, 3901614.683142499066889 ], [ 4964915.079596424475312, 3901583.75317430915311 ], [ 4964960.550325646065176, 3901603.126012372784317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964848.824446165002882, 3900529.48783067939803 ], [ 4964824.603570621460676, 3900547.290939388796687 ], [ 4964792.417862019501626, 3900503.907261594664305 ], [ 4964816.926755041815341, 3900486.104591186158359 ], [ 4964848.824446165002882, 3900529.48783067939803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965378.205079209059477, 3897174.165363719686866 ], [ 4965345.06906898971647, 3897181.393578632734716 ], [ 4965339.065719739533961, 3897153.709877104964107 ], [ 4965328.981489765457809, 3897155.513986896257848 ], [ 4965322.691276313737035, 3897127.101559770293534 ], [ 4965331.623373076319695, 3897125.295558181591332 ], [ 4965326.478134924545884, 3897101.254564120899886 ], [ 4965360.766383597627282, 3897094.028217300307006 ], [ 4965378.205079209059477, 3897174.165363719686866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965242.523832002654672, 3901583.194781365804374 ], [ 4965232.661919422447681, 3901626.146053647622466 ], [ 4965201.570569766685367, 3901619.176707617472857 ], [ 4965211.432435155846179, 3901576.225424113683403 ], [ 4965242.523832002654672, 3901583.194781365804374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965180.805345823056996, 3903927.732527678832412 ], [ 4965223.41611884534359, 3903932.53592403838411 ], [ 4965219.910517406649888, 3903963.117203614208847 ], [ 4965177.012424846179783, 3903957.949211854021996 ], [ 4965180.805345823056996, 3903927.732527678832412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965161.186912333592772, 3904478.995092113967985 ], [ 4965143.038480476476252, 3904483.335017868317664 ], [ 4965151.048928212374449, 3904515.391654002480209 ], [ 4965114.751528414897621, 3904524.43566194595769 ], [ 4965100.733755483292043, 3904467.972439034841955 ], [ 4965155.179674089886248, 3904454.588482717052102 ], [ 4965161.186912333592772, 3904478.995092113967985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965093.082023633643985, 3899979.320123173296452 ], [ 4965127.903911472298205, 3899995.762810644228011 ], [ 4965109.984608662314713, 3900034.331371434498578 ], [ 4965074.874161341227591, 3900018.252366492524743 ], [ 4965093.082023633643985, 3899979.320123173296452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965040.239904332906008, 3901654.234025717712939 ], [ 4964985.814447213895619, 3901651.596486784517765 ], [ 4964987.301790949888527, 3901622.468457327224314 ], [ 4965041.727306924760342, 3901625.105999225750566 ], [ 4965040.239904332906008, 3901654.234025717712939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964939.668634357862175, 3899567.239033333491534 ], [ 4964926.931118292734027, 3899607.272650558967143 ], [ 4964897.281538602896035, 3899597.757100615650415 ], [ 4964907.122356275096536, 3899567.914409076329321 ], [ 4964917.485380546189845, 3899571.208415259141475 ], [ 4964920.669460914097726, 3899561.382074003573507 ], [ 4964939.668634357862175, 3899567.239033333491534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964816.75031231995672, 3900417.283667021431029 ], [ 4964797.393504513427615, 3900454.757723587565124 ], [ 4964754.516841846518219, 3900432.840464576147497 ], [ 4964766.940361210145056, 3900408.463843433186412 ], [ 4964779.314364713616669, 3900414.674097415991127 ], [ 4964785.95961270481348, 3900401.576168237254024 ], [ 4964816.75031231995672, 3900417.283667021431029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964406.956947934813797, 3895912.33622157946229 ], [ 4964414.228917472995818, 3895868.288244576659054 ], [ 4964461.744764421135187, 3895876.011301201302558 ], [ 4964457.964421639218926, 3895898.217115703504533 ], [ 4964443.565481821075082, 3895896.009198971092701 ], [ 4964440.07379065733403, 3895917.851350663695484 ], [ 4964406.956947934813797, 3895912.33622157946229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964276.710861125960946, 3901699.60951314214617 ], [ 4964260.528237437829375, 3901734.176019583363086 ], [ 4964221.103201209567487, 3901715.906422467436641 ], [ 4964237.573772116564214, 3901681.340353319421411 ], [ 4964276.710861125960946, 3901699.60951314214617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964773.578830240294337, 3902533.540676244534552 ], [ 4964846.109685763716698, 3902558.055003507062793 ], [ 4964824.119474772363901, 3902622.106365921907127 ], [ 4964773.751223906874657, 3902604.910597070585936 ], [ 4964783.010730441659689, 3902577.615782392211258 ], [ 4964760.848848393186927, 3902569.93314499175176 ], [ 4964773.578830240294337, 3902533.540676244534552 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964025.661959160119295, 3898032.417487325612456 ], [ 4964028.86269992403686, 3898012.031311578117311 ], [ 4964014.464858050458133, 3898009.823621962219477 ], [ 4964018.245122423395514, 3897987.253588414285332 ], [ 4964061.150069828145206, 3897994.24035655008629 ], [ 4964059.403932536020875, 3898005.525599604006857 ], [ 4964060.844064665026963, 3898005.527893294580281 ], [ 4964055.609138991683722, 3898037.198849963955581 ], [ 4964025.661959160119295, 3898032.417487325612456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964397.194451102055609, 3900737.405710709281266 ], [ 4964418.812953196465969, 3900725.788252450060099 ], [ 4964441.497443151660264, 3900767.699695815332234 ], [ 4964421.032121482305229, 3900778.590727551840246 ], [ 4964426.487679827958345, 3900788.795143191702664 ], [ 4964404.86922499909997, 3900800.412595716770738 ], [ 4964382.185874487273395, 3900757.772923479322344 ], [ 4964402.363199140876532, 3900746.881399887613952 ], [ 4964397.194451102055609, 3900737.405710709281266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964334.492117431946099, 3902123.91431245720014 ], [ 4964348.066992988809943, 3902099.175189788453281 ], [ 4964366.769502067938447, 3902109.400848561432213 ], [ 4964370.524958742782474, 3902102.124259590171278 ], [ 4964401.02421263512224, 3902118.923225425649434 ], [ 4964383.694427127018571, 3902150.574778632260859 ], [ 4964334.492117431946099, 3902123.91431245720014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964173.580964246764779, 3908929.273987541906536 ], [ 4964185.89647735375911, 3908969.712343362625688 ], [ 4964115.900910601019859, 3908990.72024993179366 ], [ 4964106.449292238801718, 3908959.753931886982173 ], [ 4964143.895488960668445, 3908948.525587839540094 ], [ 4964141.031510639004409, 3908939.053577691782266 ], [ 4964173.580964246764779, 3908929.273987541906536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963706.557391822338104, 3893454.441908588632941 ], [ 4963711.506431209854782, 3893421.678130780812353 ], [ 4963751.539721283130348, 3893427.567452474497259 ], [ 4963746.301983429118991, 3893460.694895553868264 ], [ 4963706.557391822338104, 3893454.441908588632941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963580.616341748274863, 3899706.346741172019392 ], [ 4963569.341021828353405, 3899733.638748493976891 ], [ 4963525.591884017921984, 3899715.72752099763602 ], [ 4963536.866594048216939, 3899688.799624868668616 ], [ 4963580.616341748274863, 3899706.346741172019392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964074.051806058734655, 3906887.062917878385633 ], [ 4964108.916462323628366, 3906871.460839571431279 ], [ 4964133.591975226998329, 3906925.755843431688845 ], [ 4964098.438863595947623, 3906941.721561948303133 ], [ 4964074.051806058734655, 3906887.062917878385633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963915.103796197101474, 3903447.225029165390879 ], [ 4963919.470148752443492, 3903417.73735086992383 ], [ 4964002.673908662982285, 3903429.885911826975644 ], [ 4963998.307466716505587, 3903459.373576824553311 ], [ 4963915.103796197101474, 3903447.225029165390879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963296.505737130530179, 3904025.582553048618138 ], [ 4963303.426510163582861, 3904019.403153471183032 ], [ 4963313.199548943899572, 3904030.706513563171029 ], [ 4963275.423586441203952, 3904064.511605218052864 ], [ 4963258.462887905538082, 3904045.914399378467351 ], [ 4963254.137770841829479, 3904049.548949799500406 ], [ 4963238.902543473988771, 3904032.410978038329631 ], [ 4963274.083428534679115, 3904000.786564069334418 ], [ 4963296.505737130530179, 3904025.582553048618138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963787.767511365003884, 3893653.748765056487173 ], [ 4963767.309717142023146, 3893656.629433356225491 ], [ 4963768.732229266315699, 3893667.919678209815174 ], [ 4963745.104495080187917, 3893671.523607771843672 ], [ 4963738.54902938567102, 3893627.089524178765714 ], [ 4963782.92269400972873, 3893620.605372562538832 ], [ 4963787.767511365003884, 3893653.748765056487173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963662.827101425267756, 3893600.752676513046026 ], [ 4963688.461630435660481, 3893603.342033155728132 ], [ 4963687.293241656385362, 3893613.535796818323433 ], [ 4963708.319155850447714, 3893615.753768966067582 ], [ 4963702.474885641597211, 3893668.17909631319344 ], [ 4963686.345676964148879, 3893666.332986638415605 ], [ 4963687.806159838102758, 3893653.590781631413847 ], [ 4963657.275584992021322, 3893650.265444022603333 ], [ 4963662.827101425267756, 3893600.752676513046026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963606.592270225286484, 3893090.519564875401556 ], [ 4963592.817809944041073, 3893056.633893136866391 ], [ 4963630.291673901490867, 3893041.763662927784026 ], [ 4963649.517777959816158, 3893089.494843403343111 ], [ 4963633.663668144494295, 3893095.660032833460718 ], [ 4963628.211403951980174, 3893082.178674017544836 ], [ 4963606.592270225286484, 3893090.519564875401556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963247.340780531987548, 3899737.867368789855391 ], [ 4963231.457691233605146, 3899765.152318324428052 ], [ 4963179.950916840694845, 3899735.213241694960743 ], [ 4963193.813368136994541, 3899710.838150170631707 ], [ 4963216.83355223480612, 3899723.982770433649421 ], [ 4963218.278140920214355, 3899721.07198474323377 ], [ 4963247.340780531987548, 3899737.867368789855391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963149.446131219156086, 3899904.486207139212638 ], [ 4963123.260837201029062, 3899889.516060701571405 ], [ 4963148.673502662219107, 3899845.860040598548949 ], [ 4963174.858825172297657, 3899860.830211402848363 ], [ 4963149.446131219156086, 3899904.486207139212638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963045.06120113376528, 3903689.461461588740349 ], [ 4963070.052435813471675, 3903729.190624448936433 ], [ 4963035.174688439816236, 3903750.984233465511352 ], [ 4963024.546026420779526, 3903734.217680969275534 ], [ 4963016.475082284770906, 3903739.302970563061535 ], [ 4963002.112474325112998, 3903716.340396352577955 ], [ 4963045.06120113376528, 3903689.461461588740349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962904.184228929691017, 3893693.147619940340519 ], [ 4962894.384118680842221, 3893696.773725664708763 ], [ 4962902.417993665672839, 3893717.541517193894833 ], [ 4962878.493890375830233, 3893726.607682100497186 ], [ 4962858.696367667987943, 3893675.234863689169288 ], [ 4962892.421193751506507, 3893662.178443504031748 ], [ 4962904.184228929691017, 3893693.147619940340519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962773.808508488349617, 3900327.022585634607822 ], [ 4962750.72790195979178, 3900353.204317746683955 ], [ 4962744.400306602008641, 3900347.732593548949808 ], [ 4962729.398386987857521, 3900364.459430205170065 ], [ 4962704.375984769314528, 3900342.573006586171687 ], [ 4962735.246651268564165, 3900307.300000838469714 ], [ 4962740.99881674721837, 3900312.406704129651189 ], [ 4962747.923226500861347, 3900304.406528284307569 ], [ 4962773.808508488349617, 3900327.022585634607822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963009.877866735681891, 3903907.885400899685919 ], [ 4963033.728987762704492, 3903939.966010884847492 ], [ 4963001.152415111660957, 3903963.58389995759353 ], [ 4962977.589239221997559, 3903931.503765557426959 ], [ 4963009.877866735681891, 3903907.885400899685919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962911.322567339986563, 3896893.854381887707859 ], [ 4962905.506501016207039, 3896929.530064281076193 ], [ 4962889.956399866379797, 3896926.957064291927963 ], [ 4962884.139804940670729, 3896962.996880687307566 ], [ 4962852.463559061288834, 3896957.850022738799453 ], [ 4962857.406980405561626, 3896927.634920919779688 ], [ 4962854.527727820910513, 3896926.902205210644752 ], [ 4962861.504335750825703, 3896885.766365299932659 ], [ 4962911.322567339986563, 3896893.854381887707859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962321.344373975880444, 3896942.468073041643947 ], [ 4962293.693299458362162, 3896942.061708432622254 ], [ 4962293.385802000761032, 3896954.805773042608052 ], [ 4962264.007069245912135, 3896954.032671494875103 ], [ 4962265.243672324344516, 3896898.686868073418736 ], [ 4962286.269911354407668, 3896899.083088804967701 ], [ 4962286.582409061491489, 3896883.061866372823715 ], [ 4962311.065121423453093, 3896883.463383514434099 ], [ 4962310.753165351226926, 3896899.120476984418929 ], [ 4962322.274696633219719, 3896899.138079138472676 ], [ 4962321.344373975880444, 3896942.468073041643947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962214.791498412378132, 3897117.451797037851065 ], [ 4962185.988458668813109, 3897117.043787355069071 ], [ 4962185.970713445916772, 3897128.695906956214458 ], [ 4962169.840707405470312, 3897128.671347121242434 ], [ 4962169.858445636928082, 3897117.019227511715144 ], [ 4962157.472899902611971, 3897117.000375625211746 ], [ 4962157.826326235197484, 3897074.033623570110649 ], [ 4962187.205485251732171, 3897074.442480396479368 ], [ 4962187.512931179255247, 3897061.698413663543761 ], [ 4962215.163884062319994, 3897062.104669077321887 ], [ 4962214.791498412378132, 3897117.451797037851065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962205.668065036647022, 3901025.281111483927816 ], [ 4962238.234718415886164, 3901010.037280545104295 ], [ 4962260.340265040285885, 3901055.951437134761363 ], [ 4962227.773654636926949, 3901071.195241719018668 ], [ 4962205.668065036647022, 3901025.281111483927816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962193.439335016533732, 3900356.355011711828411 ], [ 4962157.346071674488485, 3900417.473941069096327 ], [ 4962118.788323002867401, 3900394.839204074814916 ], [ 4962154.593527342192829, 3900333.719785444438457 ], [ 4962193.439335016533732, 3900356.355011711828411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962009.882494168356061, 3899662.407970965839922 ], [ 4962022.883760612457991, 3899635.48206127807498 ], [ 4962076.415262749418616, 3899660.688300270587206 ], [ 4962063.413954757153988, 3899687.614184472709894 ], [ 4962009.882494168356061, 3899662.407970965839922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961621.828887294046581, 3895705.189047209918499 ], [ 4961625.911372194997966, 3895672.059415960218757 ], [ 4961686.39121775329113, 3895679.432909993920475 ], [ 4961682.597258084453642, 3895712.198837016243488 ], [ 4961621.828887294046581, 3895705.189047209918499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961907.090919010341167, 3896406.932103489059955 ], [ 4961898.085031972266734, 3896457.532473972532898 ], [ 4961898.948610376566648, 3896457.897909292951226 ], [ 4961894.88242276571691, 3896480.103656250052154 ], [ 4961866.085848203860223, 3896474.962317641358823 ], [ 4961869.863969722762704, 3896452.756131124217063 ], [ 4961855.465666788630188, 3896450.185471396427602 ], [ 4961858.951338868588209, 3896430.891877324320376 ], [ 4961864.135017933323979, 3896431.627967731561512 ], [ 4961869.655160951428115, 3896400.32117831427604 ], [ 4961907.090919010341167, 3896406.932103489059955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961864.769723907113075, 3898870.93371998006478 ], [ 4961850.045097519643605, 3898894.579921306110919 ], [ 4961806.307186659425497, 3898867.5682732029818 ], [ 4961820.743771811015904, 3898843.921613563783467 ], [ 4961864.769723907113075, 3898870.93371998006478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961841.908578658476472, 3908474.490456716623157 ], [ 4961796.963184172287583, 3908494.813989355694503 ], [ 4961785.196613851934671, 3908469.671121625695378 ], [ 4961773.383889929391444, 3908475.115284190047532 ], [ 4961761.331021429039538, 3908448.879599239211529 ], [ 4961814.632040143013, 3908424.563168244436383 ], [ 4961822.380996031686664, 3908440.960811415221542 ], [ 4961833.041536269709468, 3908435.879062233492732 ], [ 4961843.372905859723687, 3908458.106725473888218 ], [ 4961835.8816306181252, 3908461.736729398369789 ], [ 4961841.908578658476472, 3908474.490456716623157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961602.856781570240855, 3893759.983139455318451 ], [ 4961583.55814815312624, 3893758.497663038317114 ], [ 4961582.966707874089479, 3893768.692383472342044 ], [ 4961548.401363636367023, 3893766.455774302594364 ], [ 4961551.647122367285192, 3893715.118472948670387 ], [ 4961605.511741776950657, 3893718.476436493452638 ], [ 4961602.856781570240855, 3893759.983139455318451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960998.980224587023258, 3908416.061487256083637 ], [ 4960992.406656455248594, 3908383.279879081062973 ], [ 4961044.246496780775487, 3908373.160909968428314 ], [ 4961042.818245044909418, 3908365.51202181680128 ], [ 4961071.905796810984612, 3908360.093135899398476 ], [ 4961079.05024601239711, 3908396.152797850780189 ], [ 4961058.314425531774759, 3908400.127520438749343 ], [ 4961060.886237913742661, 3908413.240084704943001 ], [ 4961038.422404943965375, 3908417.576394398231059 ], [ 4961036.420480857603252, 3908408.470128672663122 ], [ 4960998.980224587023258, 3908416.061487256083637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960896.479493184015155, 3899439.35145525727421 ], [ 4960928.428831667639315, 3899452.871414090041071 ], [ 4960924.094155637547374, 3899462.696527032181621 ], [ 4960892.432837628759444, 3899449.176998063921928 ], [ 4960896.479493184015155, 3899439.35145525727421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960823.740600508637726, 3898961.141561686061323 ], [ 4960811.889059909619391, 3898990.254511292558163 ], [ 4960739.927890124730766, 3898961.018291540443897 ], [ 4960751.779365530237556, 3898931.90531071042642 ], [ 4960823.740600508637726, 3898961.141561686061323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960607.168302111327648, 3901900.083102975506335 ], [ 4960639.986282237805426, 3901908.506186711601913 ], [ 4960625.212641580961645, 3901967.473694839049131 ], [ 4960592.106211808510125, 3901959.414337084628642 ], [ 4960607.168302111327648, 3901900.083102975506335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960875.783371771685779, 3895894.882688522338867 ], [ 4960886.561990925110877, 3895812.969490903429687 ], [ 4960919.393770982511342, 3895817.023343590088189 ], [ 4960913.568300322629511, 3895860.710261036641896 ], [ 4960923.936466806568205, 3895861.817949242889881 ], [ 4960920.439033948816359, 3895889.48661351762712 ], [ 4960908.919218759052455, 3895888.013098233845085 ], [ 4960907.46285735629499, 3895898.934828395489603 ], [ 4960875.783371771685779, 3895894.882688522338867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960862.878560965880752, 3894683.04182025231421 ], [ 4960868.701515539549291, 3894641.175563265569508 ], [ 4960862.36575070861727, 3894640.073839442804456 ], [ 4960865.857916470617056, 3894616.046470226254314 ], [ 4960874.210125969722867, 3894617.151166970841587 ], [ 4960876.248571659438312, 3894602.224882013164461 ], [ 4960926.937429871410131, 3894609.218099251389503 ], [ 4960915.583166571334004, 3894690.402116066310555 ], [ 4960862.878560965880752, 3894683.04182025231421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960835.673959041014314, 3896333.963574224151671 ], [ 4960842.640655555762351, 3896297.560896438546479 ], [ 4960870.572943636216223, 3896303.063993019983172 ], [ 4960863.31816640496254, 3896339.466239205561578 ], [ 4960835.673959041014314, 3896333.963574224151671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960380.46022223494947, 3896602.388692903798074 ], [ 4960417.610673320479691, 3896607.176481885835528 ], [ 4960420.52292413264513, 3896585.332959486171603 ], [ 4960455.945673272944987, 3896589.754154387395829 ], [ 4960450.120588676072657, 3896633.805320891086012 ], [ 4960431.977182389236987, 3896631.594091597944498 ], [ 4960431.102443819865584, 3896638.875405394472182 ], [ 4960376.672751716338098, 3896631.877664069645107 ], [ 4960380.46022223494947, 3896602.388692903798074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960764.974451398476958, 3897792.926622882019728 ], [ 4960757.703621975146234, 3897840.616926266811788 ], [ 4960724.011809796094894, 3897835.469610515981913 ], [ 4960731.570609551854432, 3897787.779721229802817 ], [ 4960764.974451398476958, 3897792.926622882019728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960569.540799360722303, 3896123.106204864103347 ], [ 4960653.056164877489209, 3896135.608892355579883 ], [ 4960648.112410602159798, 3896167.645028183236718 ], [ 4960641.776996752247214, 3896166.543355373200029 ], [ 4960637.4130878765136, 3896196.031437991186976 ], [ 4960605.734978534281254, 3896191.251358530949801 ], [ 4960610.095121221616864, 3896164.312170794699341 ], [ 4960564.305900822393596, 3896157.326705918181688 ], [ 4960569.540799360722303, 3896123.106204864103347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960409.231819172389805, 3893065.280949551612139 ], [ 4960355.34720688033849, 3893074.669860910624266 ], [ 4960344.775114462710917, 3893014.937382659874856 ], [ 4960369.268264404498041, 3893010.603467734064907 ], [ 4960370.982437632977962, 3893020.437436089385301 ], [ 4960400.374005509540439, 3893015.382420647423714 ], [ 4960409.231819172389805, 3893065.280949551612139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960316.113587681204081, 3895292.886165696661919 ], [ 4960345.766886750236154, 3895304.217279612552375 ], [ 4960335.935943226329982, 3895329.692024669144303 ], [ 4960343.133613943122327, 3895332.25139513053 ], [ 4960321.447450434789062, 3895388.659887206275016 ], [ 4960282.581774737685919, 3895373.674129664897919 ], [ 4960291.834426536224782, 3895349.655041303485632 ], [ 4960276.864030733704567, 3895343.807236549444497 ], [ 4960282.64627845492214, 3895329.250465430784971 ], [ 4960299.632537466473877, 3895335.465330756269395 ], [ 4960316.113587681204081, 3895292.886165696661919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960237.983578669838607, 3899310.578551331534982 ], [ 4960280.027578730136156, 3899314.645002017728984 ], [ 4960275.643419493921101, 3899358.69836893863976 ], [ 4960233.599487717263401, 3899354.631925008725375 ], [ 4960237.983578669838607, 3899310.578551331534982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960099.200078547000885, 3909243.146022381726652 ], [ 4960081.043054486624897, 3909256.228534548077732 ], [ 4960064.952414733357728, 3909233.99321880703792 ], [ 4960058.323736850172281, 3909238.717362248338759 ], [ 4960048.266480261459947, 3909225.229945294093341 ], [ 4960096.1099768076092, 3909189.978251325432211 ], [ 4960118.235588257201016, 3909219.869091370608658 ], [ 4960094.890438124537468, 3909236.949543539900333 ], [ 4960099.200078547000885, 3909243.146022381726652 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960012.872633818536997, 3907615.715276804752648 ], [ 4960038.003449155017734, 3907559.311107202898711 ], [ 4960088.933899514377117, 3907581.596719443798065 ], [ 4960070.447327427566051, 3907622.716903035994619 ], [ 4960045.413766544312239, 3907611.756791169755161 ], [ 4960038.482050899416208, 3907626.676189658232033 ], [ 4960012.872633818536997, 3907615.715276804752648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959639.488547088578343, 3901531.275705705396831 ], [ 4959597.666287151165307, 3901576.004049655515701 ], [ 4959569.48030867241323, 3901550.110581569373608 ], [ 4959599.477350010536611, 3901517.745754709932953 ], [ 4959603.503477025777102, 3901521.756935376208276 ], [ 4959615.329208715818822, 3901509.029247134458274 ], [ 4959639.488547088578343, 3901531.275705705396831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959623.832202513702214, 3906646.202303755562752 ], [ 4959619.521514318883419, 3906640.370041988790035 ], [ 4959590.986962286755443, 3906660.720682431943715 ], [ 4959563.111910654231906, 3906622.447101924102753 ], [ 4959612.400106341578066, 3906586.468394426628947 ], [ 4959644.873225224204361, 3906630.938832571730018 ], [ 4959623.832202513702214, 3906646.202303755562752 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959734.091622365638614, 3906860.833535188809037 ], [ 4959714.212357696145773, 3906869.18009961117059 ], [ 4959718.517254154197872, 3906879.017817661166191 ], [ 4959691.723490197211504, 3906890.267554047517478 ], [ 4959689.140443726442754, 3906884.437751843594015 ], [ 4959667.532582119107246, 3906893.510141453705728 ], [ 4959649.740691439248621, 3906851.609566598664969 ], [ 4959708.802116218954325, 3906826.933081453666091 ], [ 4959714.828357178717852, 3906841.142842477187514 ], [ 4959724.04738687723875, 3906837.514724418055266 ], [ 4959734.091622365638614, 3906860.833535188809037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959378.143132274970412, 3905485.729625019710511 ], [ 4959372.104009329341352, 3905480.259086368605494 ], [ 4959357.108079433441162, 3905496.259596121497452 ], [ 4959337.841492773033679, 3905478.02571263955906 ], [ 4959380.522140144370496, 3905432.569822712801397 ], [ 4959405.827854516915977, 3905456.274281069170684 ], [ 4959378.143132274970412, 3905485.729625019710511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959219.508349126204848, 3907098.971856278367341 ], [ 4959235.30840992834419, 3907124.483408317435533 ], [ 4959163.551992179825902, 3907168.442003347445279 ], [ 4959146.315328048542142, 3907140.74367633741349 ], [ 4959197.322904175147414, 3907109.500335471238941 ], [ 4959198.759462933056056, 3907111.687154625076801 ], [ 4959219.508349126204848, 3907098.971856278367341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959447.223891753703356, 3893547.459829276427627 ], [ 4959446.430029608309269, 3893497.937190466094762 ], [ 4959504.334604259580374, 3893496.927137883380055 ], [ 4959505.144940645433962, 3893534.797681602183729 ], [ 4959493.333374999463558, 3893535.145005164202303 ], [ 4959493.605391450226307, 3893546.433383719064295 ], [ 4959447.223891753703356, 3893547.459829276427627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959366.461319697089493, 3908240.005002993158996 ], [ 4959381.391133207827806, 3908269.520877339877188 ], [ 4959312.530099702998996, 3908304.015779038425535 ], [ 4959297.59971425589174, 3908274.864073575008661 ], [ 4959366.461319697089493, 3908240.005002993158996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959317.556036353111267, 3896826.258538370486349 ], [ 4959310.30350198969245, 3896862.661214948631823 ], [ 4959279.779645276255906, 3896856.791941376402974 ], [ 4959278.619247952476144, 3896862.616371183190495 ], [ 4959260.765999272465706, 3896858.949824657291174 ], [ 4959262.505560012534261, 3896850.941436320077628 ], [ 4959239.46863154694438, 3896846.539315093308687 ], [ 4959246.141907529905438, 3896812.32057780912146 ], [ 4959317.556036353111267, 3896826.258538370486349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959283.206184817478061, 3892805.861294673755765 ], [ 4959328.698923336341977, 3892823.039736141450703 ], [ 4959311.927275951951742, 3892867.43967652041465 ], [ 4959262.115951186977327, 3892848.434513377491385 ], [ 4959266.742250201292336, 3892836.424810907337815 ], [ 4959256.376967268064618, 3892832.404740794096142 ], [ 4959262.449339759536088, 3892816.391667425632477 ], [ 4959277.133797595277429, 3892821.874363265465945 ], [ 4959283.206184817478061, 3892805.861294673755765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959228.058768747374415, 3905123.57055838778615 ], [ 4959187.702564865350723, 3905154.100581008940935 ], [ 4959163.846398524940014, 3905123.115752691868693 ], [ 4959203.915185498073697, 3905092.221157571766526 ], [ 4959228.058768747374415, 3905123.57055838778615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959145.09221732057631, 3889417.817111684940755 ], [ 4959196.080446663312614, 3889424.079196173232049 ], [ 4959195.206327902153134, 3889430.996392406523228 ], [ 4959207.305240672081709, 3889432.469981270842254 ], [ 4959203.517041898332536, 3889462.687248706817627 ], [ 4959140.429982552304864, 3889454.951585751958191 ], [ 4959145.09221732057631, 3889417.817111684940755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958673.306766920723021, 3897585.292211982887238 ], [ 4958666.68408303335309, 3897583.826473840512335 ], [ 4958661.182607538998127, 3897604.574204341042787 ], [ 4958608.49171035271138, 3897591.028124399017543 ], [ 4958618.337912703864276, 3897552.80820192489773 ], [ 4958677.651060863398015, 3897568.184168968815356 ], [ 4958673.306766920723021, 3897585.292211982887238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958661.523920343257487, 3905841.571129108313471 ], [ 4958683.370010048151016, 3905868.547279166523367 ], [ 4958638.11242492031306, 3905904.897414254490286 ], [ 4958632.938084669411182, 3905898.699980759061873 ], [ 4958616.507170747034252, 3905911.785859143361449 ], [ 4958599.835401018150151, 3905891.007188803516328 ], [ 4958661.523920343257487, 3905841.571129108313471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959035.315992766991258, 3903558.991636845748872 ], [ 4959020.899734333157539, 3903571.715953345410526 ], [ 4958993.584826291538775, 3903541.818839990533888 ], [ 4959007.713632138445973, 3903528.729974266141653 ], [ 4959035.315992766991258, 3903558.991636845748872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959032.022625291720033, 3896272.743131548631936 ], [ 4959022.546817231923342, 3896251.610313189215958 ], [ 4959041.857621380127966, 3896243.262480745557696 ], [ 4959065.116040361113846, 3896295.36568509740755 ], [ 4959031.105264647863805, 3896310.611293676774949 ], [ 4959029.956668680533767, 3896308.060773929581046 ], [ 4959007.186823112890124, 3896318.224403055850416 ], [ 4958994.264700591564178, 3896289.804166751448065 ], [ 4959032.022625291720033, 3896272.743131548631936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958810.395169978030026, 3907898.030296671204269 ], [ 4958857.252808436751366, 3907950.530833112541586 ], [ 4958830.731586461886764, 3907973.798167914152145 ], [ 4958783.873936952091753, 3907921.297676966525614 ], [ 4958810.395169978030026, 3907898.030296671204269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958441.566735179163516, 3900408.798065978568047 ], [ 4958443.367804828099906, 3900356.001676746178418 ], [ 4958462.663383697159588, 3900356.392516075633466 ], [ 4958462.069735825993121, 3900369.136251626070589 ], [ 4958496.052351594902575, 3900370.275714279618114 ], [ 4958494.552299328148365, 3900413.605131804477423 ], [ 4958466.617247387766838, 3900412.838174659293145 ], [ 4958466.621785338968039, 3900409.561008925084025 ], [ 4958441.566735179163516, 3900408.798065978568047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958298.662473644129932, 3907342.018794627394527 ], [ 4958273.660543253645301, 3907307.391816460061818 ], [ 4958297.293631264939904, 3907290.674330324400216 ], [ 4958314.823520465753973, 3907315.095332905184478 ], [ 4958320.011224112473428, 3907311.461171946953982 ], [ 4958342.42577532492578, 3907343.17156745120883 ], [ 4958299.483073505572975, 3907373.33525751484558 ], [ 4958284.252102068625391, 3907352.194618337787688 ], [ 4958298.662473644129932, 3907342.018794627394527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958305.125096943229437, 3898268.253539130091667 ], [ 4958330.836557956412435, 3898212.213015847373754 ], [ 4958346.955862714909017, 3898219.51785300206393 ], [ 4958351.578322103247046, 3898209.328600276727229 ], [ 4958375.181221874430776, 3898220.28508264105767 ], [ 4958370.26972564868629, 3898231.202191716991365 ], [ 4958380.344026840291917, 3898235.949793164618313 ], [ 4958363.588862079195678, 3898271.975498399697244 ], [ 4958336.531728436239064, 3898259.557740535587072 ], [ 4958327.864897894673049, 3898278.480531007051468 ], [ 4958305.125096943229437, 3898268.253539130091667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958279.327068940736353, 3900686.769562392961234 ], [ 4958279.941192951984704, 3900659.096507355105132 ], [ 4958317.091427238658071, 3900660.240108907222748 ], [ 4958316.477265002205968, 3900687.913163103628904 ], [ 4958279.327068940736353, 3900686.769562392961234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958252.503490625880659, 3907407.863038355950266 ], [ 4958230.016722800210118, 3907428.587592075113207 ], [ 4958194.078610179014504, 3907390.304319520480931 ], [ 4958216.853809248656034, 3907369.216001268010587 ], [ 4958252.503490625880659, 3907407.863038355950266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957879.082588797435164, 3906337.532620808575302 ], [ 4957896.902412041090429, 3906361.22546724230051 ], [ 4957866.061408514156938, 3906384.487841329537332 ], [ 4957848.242069535888731, 3906360.430884157773107 ], [ 4957879.082588797435164, 3906337.532620808575302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957846.451540634036064, 3905772.356132389977574 ], [ 4957871.529396750964224, 3905752.727202634327114 ], [ 4957879.290467102080584, 3905762.569328570272774 ], [ 4957854.212614472024143, 3905782.198251206893474 ], [ 4957846.451540634036064, 3905772.356132389977574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958144.559982893057168, 3901723.991711440961808 ], [ 4958169.616816254332662, 3901722.569599177222699 ], [ 4958172.140160972252488, 3901772.458945848979056 ], [ 4958124.33097751904279, 3901774.942220257595181 ], [ 4958122.367031376808882, 3901737.069952336605638 ], [ 4958145.119959697127342, 3901735.644656426273286 ], [ 4958144.559982893057168, 3901723.991711440961808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957584.956352092325687, 3898561.487219600006938 ], [ 4957607.418008306995034, 3898564.430631576105952 ], [ 4957612.362138730473816, 3898529.116728882770985 ], [ 4957627.048243479803205, 3898531.321379625238478 ], [ 4957625.885318897664547, 3898539.330661370884627 ], [ 4957642.587561747990549, 3898541.538049239199609 ], [ 4957638.5148492064327, 3898571.391179270576686 ], [ 4957640.818519110791385, 3898571.758427924942225 ], [ 4957637.03679072484374, 3898599.427173786330968 ], [ 4957580.88272216822952, 3898592.068617014214396 ], [ 4957584.956352092325687, 3898561.487219600006938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957522.466517648659647, 3907301.269408218562603 ], [ 4957506.89979853015393, 3907315.085404607467353 ], [ 4957487.063304953277111, 3907292.482477930840105 ], [ 4957502.63002691231668, 3907278.66647024685517 ], [ 4957522.466517648659647, 3907301.269408218562603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957304.163858842104673, 3896822.754337451886386 ], [ 4957300.365143609233201, 3896863.167609098833054 ], [ 4957294.893385482020676, 3896862.432012350298464 ], [ 4957291.680042560212314, 3896895.9276117477566 ], [ 4957262.591587466187775, 3896893.339718828909099 ], [ 4957269.60355816129595, 3896819.430839555338025 ], [ 4957304.163858842104673, 3896822.754337451886386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957149.305087376385927, 3905582.795674908906221 ], [ 4957129.181496039032936, 3905558.371998337563127 ], [ 4957149.936435708776116, 3905541.285545826889575 ], [ 4957194.495440888218582, 3905595.600682577583939 ], [ 4957153.562963908538222, 3905628.681913446635008 ], [ 4957129.127042577601969, 3905599.154635876882821 ], [ 4957149.305087376385927, 3905582.795674908906221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957575.990092993713915, 3901146.434586443006992 ], [ 4957608.517019947990775, 3901158.494872337672859 ], [ 4957599.267274325713515, 3901183.60735648823902 ], [ 4957566.452381161041558, 3901171.546692453324795 ], [ 4957575.990092993713915, 3901146.434586443006992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957533.545244656503201, 3897600.843620734289289 ], [ 4957509.64655052870512, 3897594.985297941602767 ], [ 4957517.177603848278522, 3897563.680313313379884 ], [ 4957541.076324195601046, 3897569.538642695639282 ], [ 4957533.545244656503201, 3897600.843620734289289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957092.978507279418409, 3900317.753846298437566 ], [ 4957117.737416233867407, 3900324.705349727999419 ], [ 4957108.477156632579863, 3900357.828840067144483 ], [ 4957083.71827582642436, 3900350.877345033921301 ], [ 4957092.978507279418409, 3900317.753846298437566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956940.61898036673665, 3894031.583619466517121 ], [ 4956981.828336170874536, 3894019.98623943189159 ], [ 4956999.031619817949831, 3894080.818624421022832 ], [ 4956957.822833396494389, 3894092.051850301679224 ], [ 4956940.61898036673665, 3894031.583619466517121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957217.166880969889462, 3897044.756752617657185 ], [ 4957219.547674281522632, 3896987.591612473130226 ], [ 4957251.518355266191065, 3896988.726801361422986 ], [ 4957249.137494053691626, 3897045.891938713379204 ], [ 4957217.166880969889462, 3897044.756752617657185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956829.660239598713815, 3894288.511500978842378 ], [ 4956791.046363274566829, 3894298.291902397293597 ], [ 4956782.734317235648632, 3894266.601702873129398 ], [ 4956821.636302604340017, 3894256.821670867502689 ], [ 4956829.660239598713815, 3894288.511500978842378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956720.824769461527467, 3898613.495909146498889 ], [ 4956779.547619694843888, 3898638.698424871079624 ], [ 4956761.347538927569985, 3898680.185171641409397 ], [ 4956702.91278188675642, 3898654.983074949122965 ], [ 4956720.824769461527467, 3898613.495909146498889 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956488.403133269399405, 3893990.932881083805114 ], [ 4956496.401285648345947, 3894042.649657010566443 ], [ 4956449.724589712917805, 3894049.87107590213418 ], [ 4956442.014895782805979, 3893997.790562576148659 ], [ 4956488.403133269399405, 3893990.932881083805114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956756.447968450374901, 3905439.898358465638012 ], [ 4956779.796691821888089, 3905420.994392378255725 ], [ 4956824.930126883089542, 3905477.130327151156962 ], [ 4956801.581420375965536, 3905496.034254677128047 ], [ 4956756.447968450374901, 3905439.898358465638012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956754.474851513281465, 3892979.733438219875097 ], [ 4956691.360308312810957, 3892998.584846952930093 ], [ 4956678.739488783292472, 3892957.057552592363209 ], [ 4956741.854120509698987, 3892938.206114693079144 ], [ 4956754.474851513281465, 3892979.733438219875097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956671.638931138440967, 3905774.059000960085541 ], [ 4956663.544849565252662, 3905798.081003638915718 ], [ 4956694.052870796062052, 3905808.681037476751953 ], [ 4956684.804128264077008, 3905834.886299609206617 ], [ 4956652.568957052193582, 3905823.919869130942971 ], [ 4956645.919895512983203, 3905843.938336335588247 ], [ 4956618.865768138319254, 3905834.435296974144876 ], [ 4956642.857562310993671, 3905764.189529774710536 ], [ 4956671.638931138440967, 3905774.059000960085541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956381.527833517640829, 3900603.384934508707374 ], [ 4956412.94540505670011, 3900583.762987989466637 ], [ 4956420.130603708326817, 3900595.060426487587392 ], [ 4956440.59567357879132, 3900581.978526357095689 ], [ 4956462.438739378936589, 3900616.235376916825771 ], [ 4956443.12663175072521, 3900628.590509900357574 ], [ 4956450.311805699951947, 3900639.887956771068275 ], [ 4956419.47074478585273, 3900659.146484375465661 ], [ 4956414.010693256743252, 3900650.036084096413106 ], [ 4956393.546164225786924, 3900662.753875375259668 ], [ 4956371.703524490818381, 3900628.132950240280479 ], [ 4956389.86217746604234, 3900616.868648561649024 ], [ 4956381.527833517640829, 3900603.384934508707374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956337.412149875424802, 3893140.494850140064955 ], [ 4956310.609921792522073, 3893148.834840977564454 ], [ 4956306.592967172153294, 3893136.449229552876204 ], [ 4956269.127096556127071, 3893148.416644656099379 ], [ 4956256.502377025783062, 3893109.438440832775086 ], [ 4956320.771045353263617, 3893088.766873233485967 ], [ 4956337.412149875424802, 3893140.494850140064955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956215.044558667577803, 3905487.982031339779496 ], [ 4956242.42790253367275, 3905466.169798027258366 ], [ 4956273.763761409558356, 3905504.808540483471006 ], [ 4956246.380431350320578, 3905526.620742395054549 ], [ 4956215.044558667577803, 3905487.982031339779496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956167.092456491664052, 3893190.522847678046674 ], [ 4956155.329480472020805, 3893153.366452909074724 ], [ 4956167.145425030961633, 3893149.740510808769614 ], [ 4956163.702670119702816, 3893138.812181056477129 ], [ 4956182.723899590782821, 3893132.646703855134547 ], [ 4956185.304777886718512, 3893141.753272931557149 ], [ 4956214.989181079901755, 3893132.324519773945212 ], [ 4956233.922766798175871, 3893193.522759687155485 ], [ 4956207.985330963507295, 3893201.499849727842957 ], [ 4956201.099864883348346, 3893179.643179601524025 ], [ 4956167.092456491664052, 3893190.522847678046674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955500.444834625348449, 3900903.019254910293967 ], [ 4955502.211788156069815, 3900872.434563525486737 ], [ 4955531.585027793422341, 3900874.292665482498705 ], [ 4955531.878132587298751, 3900870.287606345955282 ], [ 4955597.248044011183083, 3900874.376501264516264 ], [ 4955595.187868530862033, 3900908.966244956012815 ], [ 4955500.444834625348449, 3900903.019254910293967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955943.098984614014626, 3891525.801729791797698 ], [ 4956016.541769157163799, 3891542.646501145325601 ], [ 4956008.720817427150905, 3891575.407933775801212 ], [ 4955991.15217808354646, 3891571.379814947023988 ], [ 4955989.703232183121145, 3891577.932251732796431 ], [ 4955952.261652770452201, 3891569.508947789203376 ], [ 4955953.710589989088476, 3891562.956509024370462 ], [ 4955935.566213068552315, 3891558.563555137254298 ], [ 4955943.098984614014626, 3891525.801729791797698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955888.665528632700443, 3893525.161030061077327 ], [ 4955858.692661896348, 3893535.318031031172723 ], [ 4955856.971247017383575, 3893529.853884606156498 ], [ 4955841.696745107881725, 3893534.932027915958315 ], [ 4955830.217330824583769, 3893501.053291355725378 ], [ 4955838.575244874693453, 3893498.151013896334916 ], [ 4955830.539128876291215, 3893474.836440040264279 ], [ 4955876.939367226324975, 3893459.238631730433553 ], [ 4955885.835919348523021, 3893485.467357305809855 ], [ 4955876.03715308662504, 3893488.731892878655344 ], [ 4955888.665528632700443, 3893525.161030061077327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955743.851642657071352, 3895252.766341297887266 ], [ 4955723.360447396524251, 3895283.326896727550775 ], [ 4955703.213823065161705, 3895269.828292788937688 ], [ 4955723.705005647614598, 3895239.267722239717841 ], [ 4955743.851642657071352, 3895252.766341297887266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955307.751638286747038, 3900012.840224240906537 ], [ 4955306.536407172679901, 3900062.724506304133683 ], [ 4955272.552811936475337, 3900061.953206152655184 ], [ 4955273.767980009317398, 3900012.068922584876418 ], [ 4955307.751638286747038, 3900012.840224240906537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955577.918590679764748, 3905634.997874838300049 ], [ 4955552.841838432475924, 3905654.993074405938387 ], [ 4955513.168183003552258, 3905605.784729256760329 ], [ 4955538.244951502420008, 3905585.789493266493082 ], [ 4955577.918590679764748, 3905634.997874838300049 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955179.11752947140485, 3899702.07460225885734 ], [ 4955168.10015294700861, 3899759.957369368523359 ], [ 4955132.971944264136255, 3899752.994591514579952 ], [ 4955141.089421280659735, 3899710.76574401371181 ], [ 4955147.136214806698263, 3899711.865759461186826 ], [ 4955150.035585603676736, 3899696.575955751352012 ], [ 4955179.11752947140485, 3899702.07460225885734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955030.110062973573804, 3894515.591194115579128 ], [ 4955004.152771707624197, 3894540.683482746127993 ], [ 4954986.316136470064521, 3894522.090519202407449 ], [ 4955012.561035679653287, 3894497.362703720573336 ], [ 4955030.110062973573804, 3894515.591194115579128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954574.233490101061761, 3893946.617124363780022 ], [ 4954595.867640628479421, 3893923.339710148517042 ], [ 4954643.057324140332639, 3893966.729608217719942 ], [ 4954621.423167533241212, 3893990.006985039450228 ], [ 4954574.233490101061761, 3893946.617124363780022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954440.779012796469033, 3894709.66607371205464 ], [ 4954466.962485971860588, 3894734.095052250195295 ], [ 4954423.120074625127017, 3894780.285288708750159 ], [ 4954396.937055735848844, 3894755.492223835550249 ], [ 4954440.779012796469033, 3894709.66607371205464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953561.170453283004463, 3895557.379133943933994 ], [ 4953528.610009051859379, 3895566.079114662483335 ], [ 4953522.588008694350719, 3895543.495880865491927 ], [ 4953506.73986095096916, 3895547.846408094279468 ], [ 4953500.717401247471571, 3895525.627307992894202 ], [ 4953514.260699692182243, 3895521.638139873743057 ], [ 4953509.958694288507104, 3895505.975426426623017 ], [ 4953497.856528076343238, 3895509.238067315891385 ], [ 4953492.693845067173243, 3895490.661291695665568 ], [ 4953543.119370521046221, 3895477.249045386444777 ], [ 4953557.172288190573454, 3895528.608130771666765 ], [ 4953553.426286894828081, 3895529.696016205940396 ], [ 4953561.170453283004463, 3895557.379133943933994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953479.31260615773499, 3892716.348098570015281 ], [ 4953506.403340036049485, 3892707.277376916725188 ], [ 4953516.738061896525323, 3892737.512442769948393 ], [ 4953489.64735496416688, 3892746.583154168911278 ], [ 4953479.31260615773499, 3892716.348098570015281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953827.072590809315443, 3892680.718526950571686 ], [ 4953780.381917466409504, 3892698.140157291200012 ], [ 4953770.617917931638658, 3892672.639350994490087 ], [ 4953789.64024811424315, 3892665.379798494745046 ], [ 4953772.123527623713017, 3892618.75015865219757 ], [ 4953799.503424875438213, 3892608.95182550419122 ], [ 4953803.810138499364257, 3892620.973279397003353 ], [ 4953810.72724455781281, 3892618.432756797876209 ], [ 4953824.510281931608915, 3892655.590557349845767 ], [ 4953818.457876408472657, 3892657.76799547392875 ], [ 4953827.072590809315443, 3892680.718526950571686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953245.787609956227243, 3889960.347050623036921 ], [ 4953246.308803476393223, 3890006.591914195101708 ], [ 4953212.887362351641059, 3890006.916290503460914 ], [ 4953212.366111356765032, 3889960.671427576802671 ], [ 4953245.787609956227243, 3889960.347050623036921 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953172.281835501082242, 3894843.949915769509971 ], [ 4953172.825093320570886, 3894871.624359741806984 ], [ 4953136.816728455945849, 3894872.309881532564759 ], [ 4953136.273433583788574, 3894844.635438275989145 ], [ 4953172.281835501082242, 3894843.949915769509971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952478.519239570014179, 3895188.693413228727877 ], [ 4952501.568424886092544, 3895184.714780271053314 ], [ 4952497.848237888887525, 3895163.590974228456616 ], [ 4952530.117387624457479, 3895157.802439833059907 ], [ 4952538.988664951175451, 3895208.062564913183451 ], [ 4952483.670412487350404, 3895217.829717439133674 ], [ 4952478.519239570014179, 3895188.693413228727877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952359.470127773471177, 3890031.040131815709174 ], [ 4952354.887718880549073, 3890007.366517062764615 ], [ 4952363.244656142778695, 3890005.919674691744149 ], [ 4952359.808376121334732, 3889987.709304047282785 ], [ 4952393.524690256454051, 3889981.558162685018033 ], [ 4952404.97956854943186, 3890041.652535741683096 ], [ 4952372.992418785579503, 3890047.441536507103592 ], [ 4952369.556150736287236, 3890029.231164185795933 ], [ 4952359.470127773471177, 3890031.040131815709174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952428.185597536154091, 3894129.384081416763365 ], [ 4952401.682079212740064, 3894130.445742651820183 ], [ 4952402.23753927834332, 3894148.288695891853422 ], [ 4952354.128116949461401, 3894150.053633050993085 ], [ 4952353.009549076668918, 3894120.922037659212947 ], [ 4952357.619059260003269, 3894120.563242390286177 ], [ 4952357.061462248675525, 3894104.540931716561317 ], [ 4952427.06541983038187, 3894101.708996368572116 ], [ 4952428.185597536154091, 3894129.384081416763365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952017.016154961660504, 3888674.634341620840132 ], [ 4951973.220108075998724, 3888675.312518953811377 ], [ 4951972.942383039742708, 3888666.20901147229597 ], [ 4951952.484985545277596, 3888666.549772061407566 ], [ 4951951.948646464385092, 3888631.592909973114729 ], [ 4952015.914478931576014, 3888630.209513546898961 ], [ 4952017.016154961660504, 3888674.634341620840132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951797.577836846001446, 3893898.894885351881385 ], [ 4951820.020416188053787, 3893922.588762495666742 ], [ 4951763.785562319681048, 3893976.415924238972366 ], [ 4951741.054908657446504, 3893952.721766558475792 ], [ 4951797.577836846001446, 3893898.894885351881385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951707.240056795068085, 3892270.409592317417264 ], [ 4951703.241885399445891, 3892239.454152958001941 ], [ 4951777.579807884991169, 3892229.706994938198477 ], [ 4951781.577481660060585, 3892261.026573062408715 ], [ 4951707.240056795068085, 3892270.409592317417264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951668.122798821888864, 3889413.780700733885169 ], [ 4951665.528496677055955, 3889414.870149181690067 ], [ 4951670.989152551628649, 3889426.892542877234519 ], [ 4951638.126787577755749, 3889441.784620304591954 ], [ 4951608.236498428508639, 3889376.207859415095299 ], [ 4951643.693233177997172, 3889360.226295254193246 ], [ 4951668.122798821888864, 3889413.780700733885169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951830.424370613880455, 3889840.722588819917291 ], [ 4951815.403122577816248, 3889875.29765438940376 ], [ 4951733.330393102951348, 3889840.248205656651407 ], [ 4951746.32938592415303, 3889810.404463172890246 ], [ 4951766.1997633529827, 3889818.801948432810605 ], [ 4951768.221935319714248, 3889814.070581665728241 ], [ 4951830.424370613880455, 3889840.722588819917291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951493.656424642540514, 3896977.262212716508657 ], [ 4951527.067537770606577, 3896978.392213470768183 ], [ 4951524.656608589924872, 3897073.063134903088212 ], [ 4951490.957166951149702, 3897072.296941955108196 ], [ 4951493.656424642540514, 3896977.262212716508657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951363.705247204750776, 3890589.206944028381258 ], [ 4951367.654296796768904, 3890664.585864743217826 ], [ 4951335.672594608739018, 3890666.370698540471494 ], [ 4951331.723863032646477, 3890590.62765490077436 ], [ 4951363.705247204750776, 3890589.206944028381258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951648.173593380488455, 3893551.710911702364683 ], [ 4951677.841933915391564, 3893554.657504169736058 ], [ 4951678.425088576041162, 3893548.467977501451969 ], [ 4951697.43592287786305, 3893550.310144997667521 ], [ 4951698.311280488967896, 3893540.479663416277617 ], [ 4951730.571883303113282, 3893543.793378801085055 ], [ 4951725.908207732252777, 3893591.853071295656264 ], [ 4951689.038894211873412, 3893588.170014064759016 ], [ 4951688.164366050623357, 3893597.272239874117076 ], [ 4951668.001681610010564, 3893595.064646894112229 ], [ 4951668.876203009858727, 3893585.962420448195189 ], [ 4951644.968549011275172, 3893583.750607564579695 ], [ 4951648.173593380488455, 3893551.710911702364683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951635.593772422522306, 3896015.756908757612109 ], [ 4951673.042040164582431, 3896013.978619508910924 ], [ 4951674.726640843786299, 3896052.578217240050435 ], [ 4951637.278426754288375, 3896054.356504179071635 ], [ 4951635.593772422522306, 3896015.756908757612109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951491.15344927739352, 3888190.112254317849874 ], [ 4951430.071183792315423, 3888188.587116269860417 ], [ 4951431.279703746549785, 3888138.703006379306316 ], [ 4951457.787043899297714, 3888139.461027371697128 ], [ 4951457.475594960153103, 3888160.215944369789213 ], [ 4951491.762474951334298, 3888160.982739670667797 ], [ 4951491.15344927739352, 3888190.112254317849874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951348.423897406086326, 3890342.311067479662597 ], [ 4951353.230420140549541, 3890423.881110530346632 ], [ 4951324.706131741404533, 3890425.305700733326375 ], [ 4951323.294510629959404, 3890399.451036557555199 ], [ 4951317.531944818794727, 3890399.808719585649669 ], [ 4951314.136537873186171, 3890344.457473959773779 ], [ 4951348.423897406086326, 3890342.311067479662597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951412.229514211416245, 3901005.538670815527439 ], [ 4951383.718897088430822, 3901004.778428836259991 ], [ 4951383.413755795918405, 3901020.071556699462235 ], [ 4951364.694545772857964, 3901019.686445022933185 ], [ 4951364.994780262932181, 3901008.762874299194664 ], [ 4951337.347740397788584, 3901008.367779418360442 ], [ 4951337.958378751762211, 3900977.417393228504807 ], [ 4951365.605042429640889, 3900978.17661850200966 ], [ 4951365.899973412975669, 3900971.986735082231462 ], [ 4951412.84228215739131, 3900972.76763752521947 ], [ 4951412.229514211416245, 3901005.538670815527439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951190.016053583472967, 3889778.100110515486449 ], [ 4951217.73065466992557, 3889728.245474584866315 ], [ 4951245.08493650238961, 3889743.205217169132084 ], [ 4951217.370300021953881, 3889793.059825332369655 ], [ 4951190.016053583472967, 3889778.100110515486449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951077.864607432857156, 3890624.572856944520026 ], [ 4951091.694884734228253, 3890623.495819817762822 ], [ 4951091.127564825117588, 3890615.484374127816409 ], [ 4951131.46518374979496, 3890612.980278852861375 ], [ 4951135.436332187615335, 3890669.060405601747334 ], [ 4951096.827427096664906, 3890671.566413909196854 ], [ 4951096.262939251959324, 3890661.006074955686927 ], [ 4951080.415945239365101, 3890662.080872114747763 ], [ 4951077.864607432857156, 3890624.572856944520026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950797.53475368861109, 3890102.832106084097177 ], [ 4950799.799623531289399, 3890139.247384341433644 ], [ 4950821.985350316390395, 3890138.179392789956182 ], [ 4950823.684376652352512, 3890165.126726035960019 ], [ 4950804.379776331596076, 3890166.197882991749793 ], [ 4950804.94438963662833, 3890176.758212810382247 ], [ 4950774.978917428292334, 3890178.54593001678586 ], [ 4950773.849267065525055, 3890157.789399182423949 ], [ 4950766.357993813231587, 3890158.145302144344896 ], [ 4950763.247133562341332, 3890104.979214782826602 ], [ 4950797.53475368861109, 3890102.832106084097177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950777.659484345465899, 3893508.865893865004182 ], [ 4950747.124774157069623, 3893507.739987482782453 ], [ 4950748.897172516211867, 3893467.687785930465907 ], [ 4950779.431528163142502, 3893469.177822444587946 ], [ 4950777.659484345465899, 3893508.865893865004182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950857.597183112986386, 3893904.033399064093828 ], [ 4950903.121942051686347, 3893895.344487338792533 ], [ 4950908.851615202613175, 3893924.116974906530231 ], [ 4950863.326903107576072, 3893932.805877078790218 ], [ 4950857.597183112986386, 3893904.033399064093828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950765.188758884556592, 3896733.214072857052088 ], [ 4950766.081267192959785, 3896707.361872871872038 ], [ 4950810.726318062283099, 3896708.503320461139083 ], [ 4950809.519298945553601, 3896758.387707096524537 ], [ 4950776.971602603793144, 3896757.623676437884569 ], [ 4950777.574081469327211, 3896733.591804350260645 ], [ 4950765.188758884556592, 3896733.214072857052088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950584.886283519677818, 3893027.641032288782299 ], [ 4950583.989067380316556, 3893057.862719289958477 ], [ 4950570.738207233138382, 3893057.120007119141519 ], [ 4950569.25651029124856, 3893094.987756497226655 ], [ 4950530.07934635784477, 3893093.488544976338744 ], [ 4950530.678506671451032, 3893072.369743752293289 ], [ 4950541.62512288428843, 3893072.745796972885728 ], [ 4950543.404384019784629, 3893026.139286769554019 ], [ 4950584.886283519677818, 3893027.641032288782299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950465.897415617480874, 3891978.093440345022827 ], [ 4950442.264463438652456, 3891986.806847635190934 ], [ 4950434.508934262208641, 3891965.678987570106983 ], [ 4950458.141902476549149, 3891956.965573570225388 ], [ 4950465.897415617480874, 3891978.093440345022827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950591.161768776364625, 3892028.843687959946692 ], [ 4950607.24712171126157, 3892072.556643116753548 ], [ 4950576.409575676545501, 3892083.4468366028741 ], [ 4950560.611872548237443, 3892040.098341552074999 ], [ 4950591.161768776364625, 3892028.843687959946692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950561.169269409030676, 3892321.570142761338502 ], [ 4950549.037855212576687, 3892350.687187645584345 ], [ 4950498.645602791570127, 3892329.512872665189207 ], [ 4950510.776575578376651, 3892300.759933319408447 ], [ 4950561.169269409030676, 3892321.570142761338502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950215.297209463082254, 3892209.043752484023571 ], [ 4950203.739550930447876, 3892240.710467382334173 ], [ 4950176.6698382422328, 3892230.849863295443356 ], [ 4950187.938988515175879, 3892199.546954742632806 ], [ 4950215.297209463082254, 3892209.043752484023571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950492.68964646756649, 3893832.264766046311706 ], [ 4950521.205518068745732, 3893835.208829161711037 ], [ 4950517.125348730944097, 3893878.535699580330402 ], [ 4950488.321055945940316, 3893875.95545567246154 ], [ 4950492.68964646756649, 3893832.264766046311706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950455.555056869983673, 3894072.91346717858687 ], [ 4950504.812800456769764, 3894074.787669260986149 ], [ 4950503.916102935560048, 3894104.645249144174159 ], [ 4950498.154738400131464, 3894104.638980271760374 ], [ 4950497.26795301400125, 3894125.393353262916207 ], [ 4950449.738709794357419, 3894123.521042253356427 ], [ 4950450.624667502008379, 3894103.494924318045378 ], [ 4950454.36915904097259, 3894103.863120618741959 ], [ 4950455.555056869983673, 3894072.91346717858687 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950224.840796252712607, 3889769.031863646581769 ], [ 4950232.873466793447733, 3889801.08376872818917 ], [ 4950186.474517544731498, 3889812.685883634258062 ], [ 4950174.998130771331489, 3889767.885813980363309 ], [ 4950214.1923205005005, 3889758.096556285396218 ], [ 4950217.347852947190404, 3889770.844429044052958 ], [ 4950224.840796252712607, 3889769.031863646581769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950211.865044786594808, 3896998.790739066433161 ], [ 4950216.503069611266255, 3896971.486035826615989 ], [ 4950243.861526813358068, 3896976.249213175848126 ], [ 4950239.223475003615022, 3897003.553911774419248 ], [ 4950211.865044786594808, 3896998.790739066433161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949892.607059027068317, 3900888.082800524309278 ], [ 4949890.565091945230961, 3900912.477347263135016 ], [ 4949858.888324758037925, 3900909.89469825848937 ], [ 4949860.93026327341795, 3900885.500149154569954 ], [ 4949892.607059027068317, 3900888.082800524309278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949807.090444198809564, 3894635.524013465736061 ], [ 4949801.877473124302924, 3894661.735752518288791 ], [ 4949739.95682255551219, 3894649.653806144371629 ], [ 4949745.169735562987626, 3894623.442055257502943 ], [ 4949807.090444198809564, 3894635.524013465736061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949408.514812112785876, 3893436.756009345408529 ], [ 4949380.861099363304675, 3893435.2705441811122 ], [ 4949382.040073534473777, 3893409.782777999527752 ], [ 4949409.694193852134049, 3893410.90411618584767 ], [ 4949408.514812112785876, 3893436.756009345408529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949003.332517182454467, 3898601.870371816214174 ], [ 4948992.638192173093557, 3898638.272299703676254 ], [ 4948931.020362946204841, 3898620.366416916251183 ], [ 4948933.33239733800292, 3898612.722074806690216 ], [ 4948915.480409380048513, 3898607.605878683272749 ], [ 4948914.035437478683889, 3898612.33807726111263 ], [ 4948887.257447125390172, 3898604.663806753233075 ], [ 4948895.060952297411859, 3898578.454495142679662 ], [ 4948918.095828372985125, 3898585.032530934084207 ], [ 4948920.119092101231217, 3898578.116149933543056 ], [ 4949003.332517182454467, 3898601.870371816214174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948921.883258174173534, 3895185.525233292486519 ], [ 4948948.389346888288856, 3895180.818855163641274 ], [ 4948946.097648670896888, 3895168.436110086273402 ], [ 4948972.02726922929287, 3895164.093290310353041 ], [ 4948973.744720056653023, 3895174.65480066370219 ], [ 4949005.724659963510931, 3895169.225867039524019 ], [ 4949010.306495112366974, 3895195.44788189092651 ], [ 4948974.004611655138433, 3895201.964739268179983 ], [ 4948976.009364489465952, 3895213.254804198630154 ], [ 4948928.183012841269374, 3895221.944613277446479 ], [ 4948921.883258174173534, 3895185.525233292486519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948016.568395487032831, 3900343.59508390724659 ], [ 4948048.549255258403718, 3900330.882401191629469 ], [ 4948059.466434414498508, 3900357.838912129867822 ], [ 4948045.636930396780372, 3900363.287071509752423 ], [ 4948043.338003102689981, 3900358.186958943028003 ], [ 4948025.474672547541559, 3900365.45175793627277 ], [ 4948016.568395487032831, 3900343.59508390724659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947524.641439487226307, 3890933.651637737639248 ], [ 4947529.803432816639543, 3890958.053260171320289 ], [ 4947508.191163876093924, 3890962.765808277763426 ], [ 4947502.741049688309431, 3890938.363908611238003 ], [ 4947524.641439487226307, 3890933.651637737639248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947458.471181145869195, 3898815.520264909602702 ], [ 4947391.925977888517082, 3898828.928259422071278 ], [ 4947385.04683708678931, 3898794.693377658259124 ], [ 4947407.804509120061994, 3898790.345959286205471 ], [ 4947406.085968342609704, 3898780.51278506917879 ], [ 4947425.963119499385357, 3898776.526708825025707 ], [ 4947427.683781090192497, 3898784.175108187366277 ], [ 4947451.305878298357129, 3898779.464438869152218 ], [ 4947458.471181145869195, 3898815.520264909602702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946824.533221244812012, 3889742.278390720952302 ], [ 4946825.634419256821275, 3889796.170347198378295 ], [ 4946796.534519402310252, 3889796.506810409482569 ], [ 4946795.432917126454413, 3889742.97898253519088 ], [ 4946824.533221244812012, 3889742.278390720952302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946814.260675915516913, 3890849.58148709172383 ], [ 4946774.205010648816824, 3890859.37488653883338 ], [ 4946764.446827854029834, 3890820.039801761507988 ], [ 4946782.889596517197788, 3890815.687774045392871 ], [ 4946777.436374052427709, 3890793.83491703402251 ], [ 4946817.49213809799403, 3890784.041522782295942 ], [ 4946822.37120086979121, 3890803.709073829464614 ], [ 4946804.216521117836237, 3890808.06134826131165 ], [ 4946814.260675915516913, 3890849.58148709172383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946811.169504621997476, 3889858.422441463917494 ], [ 4946855.833027527667582, 3889852.274767021648586 ], [ 4946864.704195443540812, 3889915.641452025156468 ], [ 4946820.040429442189634, 3889922.153239426668733 ], [ 4946811.169504621997476, 3889858.422441463917494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946389.309381550177932, 3889923.931825506966561 ], [ 4946406.884957499802113, 3889923.220008709933609 ], [ 4946408.01049352157861, 3889951.987157548312098 ], [ 4946367.384898461401463, 3889953.769814280793071 ], [ 4946367.389320542104542, 3889949.036157058086246 ], [ 4946353.271115523763001, 3889949.751227429602295 ], [ 4946352.430574283003807, 3889924.261497160885483 ], [ 4946374.615957494825125, 3889923.553963481914252 ], [ 4946374.335670303553343, 3889915.178762413095683 ], [ 4946389.030120299197733, 3889914.464241870678961 ], [ 4946389.309381550177932, 3889923.931825506966561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946240.773835918866098, 3891642.841500550508499 ], [ 4946288.592114719562232, 3891648.712041944265366 ], [ 4946287.721388130448759, 3891655.629665954969823 ], [ 4946314.511118581518531, 3891658.931781292427331 ], [ 4946310.448267719708383, 3891690.607143695931882 ], [ 4946292.876223812811077, 3891688.770129360258579 ], [ 4946292.003801587969065, 3891697.508392638526857 ], [ 4946247.642062222585082, 3891692.369314865209162 ], [ 4946249.093367166817188, 3891680.718563188798726 ], [ 4946236.130481755360961, 3891679.25000027474016 ], [ 4946240.773835918866098, 3891642.841500550508499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946207.468636273406446, 3892140.937944843433797 ], [ 4946198.782706325873733, 3892187.538300392217934 ], [ 4946166.810252425260842, 3892181.682597217150033 ], [ 4946175.496128816157579, 3892135.08223148714751 ], [ 4946207.468636273406446, 3892140.937944843433797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946148.12032472062856, 3892454.033244761638343 ], [ 4946145.771465345285833, 3892501.731880306266248 ], [ 4946113.795332638546824, 3892500.245775335002691 ], [ 4946116.144135400652885, 3892452.547137025743723 ], [ 4946148.12032472062856, 3892454.033244761638343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946070.880018149502575, 3892490.010526802856475 ], [ 4946071.462912901304662, 3892482.728498414158821 ], [ 4946095.947833835147321, 3892485.300013793632388 ], [ 4946092.75096517521888, 3892515.519710957072675 ], [ 4946055.879748200066388, 3892511.480253643356264 ], [ 4946058.205598910339177, 3892488.542314971797168 ], [ 4946070.880018149502575, 3892490.010526802856475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946246.301659233868122, 3889415.476175758056343 ], [ 4946249.43642970174551, 3889452.620114197023213 ], [ 4946215.148011978715658, 3889455.137149391695857 ], [ 4946214.578537566587329, 3889447.854066852480173 ], [ 4946202.764680578373373, 3889448.93548360420391 ], [ 4946200.484063952229917, 3889422.716173814143986 ], [ 4946215.179116446524858, 3889421.637431098148227 ], [ 4946214.324903636239469, 3889410.71280750958249 ], [ 4946233.630198180675507, 3889409.274228054098785 ], [ 4946234.199668269604445, 3889416.557310830336064 ], [ 4946246.301659233868122, 3889415.476175758056343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944845.63563709706068, 3891194.795716446824372 ], [ 4944848.251543070189655, 3891168.580793706234545 ], [ 4944837.59281296748668, 3891167.479056362528354 ], [ 4944839.337065713480115, 3891149.638313143514097 ], [ 4944851.724402099847794, 3891150.741568556055427 ], [ 4944853.176729205064476, 3891137.270106451585889 ], [ 4944890.914630537852645, 3891140.944543323945254 ], [ 4944888.005138237960637, 3891173.349379997234792 ], [ 4944905.289834978990257, 3891174.821094339713454 ], [ 4944902.674514660611749, 3891200.307756114285439 ], [ 4944845.63563709706068, 3891194.795716446824372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944614.39423221629113, 3892402.771017616149038 ], [ 4944608.29569595772773, 3892458.841476210393012 ], [ 4944553.564432042650878, 3892452.967926655896008 ], [ 4944556.467387828044593, 3892427.481462135910988 ], [ 4944572.886721704155207, 3892429.316342645790428 ], [ 4944576.082523726858199, 3892398.368210252840072 ], [ 4944614.39423221629113, 3892402.771017616149038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944252.458653092384338, 3892181.433053727261722 ], [ 4944256.234344257041812, 3892145.751717173028737 ], [ 4944250.473182940855622, 3892145.018531321082264 ], [ 4944254.248876508325338, 3892109.337195250205696 ], [ 4944292.849450912326574, 3892113.375662208534777 ], [ 4944289.073706675320864, 3892149.05699294898659 ], [ 4944298.291936169378459, 3892149.79315057117492 ], [ 4944296.83962877932936, 3892163.628778539597988 ], [ 4944286.181270820088685, 3892162.527259158436209 ], [ 4944283.857528374530375, 3892184.737090799957514 ], [ 4944252.458653092384338, 3892181.433053727261722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943394.895765644498169, 3889638.007442770991474 ], [ 4943451.671172050759196, 3889618.027240599039942 ], [ 4943461.156149413436651, 3889645.708779084961861 ], [ 4943449.628202066756785, 3889649.704663237556815 ], [ 4943455.376988949254155, 3889666.095156862866133 ], [ 4943412.147315105423331, 3889680.988725571893156 ], [ 4943405.249042276293039, 3889660.956016859970987 ], [ 4943403.231631343252957, 3889661.682609989773482 ], [ 4943394.895765644498169, 3889638.007442770991474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942936.667527792975307, 3890148.141041145659983 ], [ 4942943.025938992388546, 3890123.385480440687388 ], [ 4942964.053622767329216, 3890128.864371189847589 ], [ 4942957.69519349373877, 3890153.619926996529102 ], [ 4942936.667527792975307, 3890148.141041145659983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942409.783570256084204, 3889692.197417675051838 ], [ 4942352.06787574570626, 3889810.129436075687408 ], [ 4942287.842901262454689, 3889778.76412316551432 ], [ 4942345.269979543052614, 3889661.195870436728001 ], [ 4942409.783570256084204, 3889692.197417675051838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992937.42284226603806, 3908451.705913681071252 ], [ 4992949.809967132285237, 3908449.190035677049309 ], [ 4992952.939129089005291, 3908463.399570874869823 ], [ 4992942.280468080192804, 3908465.555926428176463 ], [ 4992944.838661821559072, 3908477.943272606469691 ], [ 4992921.504983929917216, 3908482.614748630672693 ], [ 4992920.082896395586431, 3908476.056562247220427 ], [ 4992876.295666201040149, 3908485.043122270144522 ], [ 4992867.481944526545703, 3908443.144339867867529 ], [ 4992932.587554971687496, 3908429.480903991498053 ], [ 4992937.42284226603806, 3908451.705913681071252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989821.40081843174994, 3908526.230987852904946 ], [ 4989842.508687470108271, 3908490.963979589287192 ], [ 4989874.130874215625226, 3908509.979634050279856 ], [ 4989853.022978418506682, 3908545.246617888100445 ], [ 4989821.40081843174994, 3908526.230987852904946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988502.340802050195634, 3908228.677706982940435 ], [ 4988453.656437588855624, 3908239.115744243375957 ], [ 4988447.109937048517168, 3908208.876354103442281 ], [ 4988437.604120369069278, 3908210.673246087972075 ], [ 4988434.187356016598642, 3908195.371127782855183 ], [ 4988486.039794016629457, 3908184.57685013813898 ], [ 4988490.591796454042196, 3908206.436205140314996 ], [ 4988497.217535515315831, 3908204.996256241574883 ], [ 4988502.340802050195634, 3908228.677706982940435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988350.171875297091901, 3905174.683038459159434 ], [ 4988374.064415857195854, 3905177.655766054056585 ], [ 4988370.543535347096622, 3905203.864479197189212 ], [ 4988346.651926915161312, 3905200.527624899055809 ], [ 4988350.171875297091901, 3905174.683038459159434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988217.155773626640439, 3907247.356266813352704 ], [ 4988266.705622691661119, 3907236.919961849227548 ], [ 4988274.672221899032593, 3907275.173746429849416 ], [ 4988225.410367151722312, 3907285.610754624940455 ], [ 4988217.155773626640439, 3907247.356266813352704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987588.687920933589339, 3901031.888222326058894 ], [ 4987631.424352244473994, 3900986.11322428798303 ], [ 4987660.445213339291513, 3901013.13062039995566 ], [ 4987617.708775218576193, 3901058.90557304630056 ], [ 4987588.687920933589339, 3901031.888222326058894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987545.694694923236966, 3907251.517307410016656 ], [ 4987503.348724093288183, 3907259.787908131722361 ], [ 4987500.503567985258996, 3907245.943858499638736 ], [ 4987486.100016655400395, 3907248.821408709976822 ], [ 4987480.980151450261474, 3907223.319514696020633 ], [ 4987491.063005303032696, 3907221.15957474289462 ], [ 4987488.788308467715979, 3907209.501727893948555 ], [ 4987511.636073085479438, 3907168.411091957241297 ], [ 4987529.78453416377306, 3907164.814527798444033 ], [ 4987555.950963971205056, 3907179.080251325853169 ], [ 4987541.778702192939818, 3907204.898688233923167 ], [ 4987532.849345904774964, 3907206.333189640659839 ], [ 4987537.400496517308056, 3907228.920630513690412 ], [ 4987541.713121866807342, 3907231.480197393801063 ], [ 4987545.694694923236966, 3907251.517307410016656 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987037.217791112139821, 3894777.68527452647686 ], [ 4987066.864896417595446, 3894787.225217372179031 ], [ 4987057.284901979379356, 3894817.424532597418875 ], [ 4987027.637826656922698, 3894807.884600145276636 ], [ 4987037.217791112139821, 3894777.68527452647686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986776.297695957124233, 3908807.025280730333179 ], [ 4986747.474672355689108, 3908820.063783892430365 ], [ 4986732.583194497972727, 3908787.255533847026527 ], [ 4986724.224905245006084, 3908790.87649263208732 ], [ 4986706.469351192004979, 3908751.871021023020148 ], [ 4986743.363710822537541, 3908734.846686757635325 ], [ 4986776.297695957124233, 3908807.025280730333179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986178.90935620572418, 3907603.208981746342033 ], [ 4986130.507420768029988, 3907615.836702444124967 ], [ 4986119.664789151400328, 3907575.027681477367878 ], [ 4986168.066792867146432, 3907562.399941571056843 ], [ 4986178.90935620572418, 3907603.208981746342033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986111.313268158584833, 3906144.331509293057024 ], [ 4986162.527744156308472, 3906160.476996646262705 ], [ 4986150.632537036202848, 3906197.589748316444457 ], [ 4986141.425535253249109, 3906194.654454808216542 ], [ 4986132.141159649007022, 3906223.762611805461347 ], [ 4986106.533980658277869, 3906215.689884557388723 ], [ 4986108.854187523946166, 3906208.77697286894545 ], [ 4986087.27549197897315, 3906201.806384650990367 ], [ 4986093.367894856259227, 3906182.886211316101253 ], [ 4986086.462635261937976, 3906180.68475561356172 ], [ 4986094.585553610697389, 3906155.579234965611249 ], [ 4986106.381388816982508, 3906159.613157257437706 ], [ 4986111.313268158584833, 3906144.331509293057024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985977.67039561085403, 3900421.317773762624711 ], [ 4986003.079361992888153, 3900394.43329066503793 ], [ 4986049.343901632353663, 3900437.512242989614606 ], [ 4986043.858727119863033, 3900442.960982776712626 ], [ 4986066.559818977490067, 3900464.135313922539353 ], [ 4986046.636018699966371, 3900485.570997627917677 ], [ 4985977.67039561085403, 3900421.317773762624711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985785.599706321023405, 3904367.675591196864843 ], [ 4985753.516597562469542, 3904417.484617092646658 ], [ 4985738.278431853279471, 3904407.616486190352589 ], [ 4985730.764442909508944, 3904418.886541011743248 ], [ 4985701.725254818797112, 3904400.246155976783484 ], [ 4985741.32142321486026, 3904339.531144968699664 ], [ 4985785.599706321023405, 3904367.675591196864843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985698.605383727699518, 3901378.311721289530396 ], [ 4985671.488037280738354, 3901397.545656492933631 ], [ 4985631.591747587546706, 3901341.373861705884337 ], [ 4985658.708249220624566, 3901322.504015922546387 ], [ 4985698.605383727699518, 3901378.311721289530396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985543.822935183532536, 3905044.017159655224532 ], [ 4985528.016985908150673, 3905030.870597775559872 ], [ 4985545.344586156308651, 3905009.792399489786476 ], [ 4985589.027755469083786, 3905045.581882072146982 ], [ 4985547.152014406397939, 3905096.824255446903408 ], [ 4985518.987736745737493, 3905073.816568959504366 ], [ 4985543.822935183532536, 3905044.017159655224532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985518.282883473671973, 3906452.054835128132254 ], [ 4985527.726408820599318, 3906476.474283881951123 ], [ 4985519.945178638212383, 3906479.368729353882372 ], [ 4985531.107594029046595, 3906507.433613635133952 ], [ 4985521.309083473868668, 3906511.051497491076589 ], [ 4985525.602853274904191, 3906521.621603465639055 ], [ 4985492.171033126302063, 3906534.650415120646358 ], [ 4985467.270363865420222, 3906471.96014682482928 ], [ 4985518.282883473671973, 3906452.054835128132254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985439.004251034930348, 3901308.141403777059168 ], [ 4985410.175591791979969, 3901320.453023431822658 ], [ 4985383.253030985593796, 3901258.122348068747669 ], [ 4985421.019051059149206, 3901241.82659605005756 ], [ 4985432.476111112162471, 3901268.071392616722733 ], [ 4985423.538811598904431, 3901272.055492818821222 ], [ 4985439.004251034930348, 3901308.141403777059168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985400.871896980330348, 3916189.428062904626131 ], [ 4985360.561570960097015, 3916195.157972798682749 ], [ 4985352.914385980926454, 3916143.068495498038828 ], [ 4985364.143313320353627, 3916141.638757603708655 ], [ 4985361.875421153381467, 3916127.067966788541526 ], [ 4985391.531706747598946, 3916123.133288086391985 ], [ 4985400.871896980330348, 3916189.428062904626131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985216.782014841213822, 3916016.753453134093434 ], [ 4985238.806397630833089, 3916075.067417770624161 ], [ 4985205.387448159977794, 3916087.732532191555947 ], [ 4985192.51645886618644, 3916053.473254068288952 ], [ 4985200.8714191140607, 3916050.215934530366212 ], [ 4985191.717970002442598, 3916026.161272154655308 ], [ 4985216.782014841213822, 3916016.753453134093434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985174.012025120668113, 3900476.927003374323249 ], [ 4985183.752052039839327, 3900498.79802575474605 ], [ 4985153.768048365600407, 3900512.199560663662851 ], [ 4985143.454599302262068, 3900489.234793088864535 ], [ 4985137.400544347241521, 3900491.769317906349897 ], [ 4985127.372477157972753, 3900469.897627928294241 ], [ 4985174.077845174819231, 3900449.253211089409888 ], [ 4985184.390417412854731, 3900472.582118707709014 ], [ 4985174.012025120668113, 3900476.927003374323249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984965.028866698034108, 3909055.013031194452196 ], [ 4984994.67561799287796, 3909058.360547352116555 ], [ 4984989.672338639385998, 3909104.229412303771824 ], [ 4984959.73772983904928, 3909100.881218884140253 ], [ 4984965.028866698034108, 3909055.013031194452196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984944.663041504099965, 3915458.253004576079547 ], [ 4984920.120738564990461, 3915490.238636986352503 ], [ 4984895.698419268243015, 3915471.609911699779332 ], [ 4984920.24070998467505, 3915439.624257349409163 ], [ 4984944.663041504099965, 3915458.253004576079547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984772.834517549723387, 3909852.737249959260225 ], [ 4984771.473362423479557, 3909819.597930608317256 ], [ 4984805.448126523755491, 3909818.585878672078252 ], [ 4984806.521340316161513, 3909851.724518674425781 ], [ 4984772.834517549723387, 3909852.737249959260225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984693.05611486453563, 3909255.734901008196175 ], [ 4984668.825608764775097, 3909275.340870165266097 ], [ 4984639.257234747521579, 3909238.857808723114431 ], [ 4984663.487751982174814, 3909219.251813350245357 ], [ 4984693.05611486453563, 3909255.734901008196175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984612.21965538430959, 3909594.187723418232054 ], [ 4984619.921732009388506, 3909624.428921182174236 ], [ 4984576.710695832967758, 3909635.251025669276714 ], [ 4984569.296475881710649, 3909605.010518590919673 ], [ 4984612.21965538430959, 3909594.187723418232054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984603.87358655128628, 3909837.044717885553837 ], [ 4984611.003237933851779, 3909865.828036080580205 ], [ 4984569.808745862916112, 3909876.290775095112622 ], [ 4984562.391153670847416, 3909847.506789209786803 ], [ 4984603.87358655128628, 3909837.044717885553837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984479.180564808659256, 3909483.542033939622343 ], [ 4984445.186547997407615, 3909492.565377508290112 ], [ 4984434.061076193116605, 3909448.843265228904784 ], [ 4984468.054287704639137, 3909440.184038698207587 ], [ 4984479.180564808659256, 3909483.542033939622343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984246.396676857955754, 3917161.119691542349756 ], [ 4984203.449875718913972, 3917187.236694452818483 ], [ 4984176.211819855496287, 3917142.384307233151048 ], [ 4984218.869990622624755, 3917116.630719404667616 ], [ 4984246.396676857955754, 3917161.119691542349756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983804.060561330057681, 3909476.135588720906526 ], [ 4983760.854701824486256, 3909484.774218974169344 ], [ 4983735.817293186672032, 3909356.541213520802557 ], [ 4983779.022503124549985, 3909348.26667457446456 ], [ 4983804.060561330057681, 3909476.135588720906526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983680.533425592817366, 3917038.905803022440523 ], [ 4983679.615792540833354, 3917062.208284740336239 ], [ 4983690.552190480753779, 3917062.59784058528021 ], [ 4983688.728760396130383, 3917104.10494734859094 ], [ 4983650.164026529528201, 3917102.558788981754333 ], [ 4983652.905006222426891, 3917037.749196983873844 ], [ 4983680.533425592817366, 3917038.905803022440523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983652.651279312558472, 3916651.401846086606383 ], [ 4983684.931873749941587, 3916632.541865953244269 ], [ 4983718.191064455546439, 3916687.967640776187181 ], [ 4983685.909666586667299, 3916707.191714154090732 ], [ 4983652.651279312558472, 3916651.401846086606383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983558.316495024599135, 3915751.406745625194162 ], [ 4983589.434924695640802, 3915737.641843576915562 ], [ 4983605.471770649775863, 3915773.000093495938927 ], [ 4983574.352528727613389, 3915787.129109618719667 ], [ 4983558.316495024599135, 3915751.406745625194162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983184.183025725185871, 3894237.995375431142747 ], [ 4983183.678197719156742, 3894207.043205310124904 ], [ 4983240.718008193187416, 3894206.082287580240518 ], [ 4983241.225289559923112, 3894235.942076058126986 ], [ 4983226.244975456036627, 3894236.271665475331247 ], [ 4983226.513734447769821, 3894244.647263580933213 ], [ 4983205.484024208039045, 3894244.962918776553124 ], [ 4983205.501647111028433, 3894237.316239899490029 ], [ 4983184.183025725185871, 3894237.995375431142747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982176.691269108094275, 3905343.135099022183567 ], [ 4982197.642910207621753, 3905373.405558380763978 ], [ 4982172.552679372020066, 3905390.462862259708345 ], [ 4982151.600198183208704, 3905360.556552176363766 ], [ 4982176.691269108094275, 3905343.135099022183567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982052.806218995712698, 3902699.98739617690444 ], [ 4982060.218619841150939, 3902733.140116321388632 ], [ 4982022.4748555123806, 3902741.429757811129093 ], [ 4982015.350386496633291, 3902708.277699047233909 ], [ 4982052.806218995712698, 3902699.98739617690444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981906.144975701346993, 3904777.026332485489547 ], [ 4981919.911680471152067, 3904801.454238077625632 ], [ 4981878.393782982602715, 3904824.664967488031834 ], [ 4981864.627052506431937, 3904800.237082818988711 ], [ 4981906.144975701346993, 3904777.026332485489547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981641.062904893420637, 3901389.643395665101707 ], [ 4981690.909769794903696, 3901378.831520340871066 ], [ 4981703.452749088406563, 3901436.028299117460847 ], [ 4981663.113732810132205, 3901445.040867048781365 ], [ 4981656.271549151279032, 3901414.074351769406348 ], [ 4981647.050962509587407, 3901416.238415013533086 ], [ 4981641.062904893420637, 3901389.643395665101707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981286.626375596038997, 3906122.558947981335223 ], [ 4981179.152684005908668, 3906154.726790469605476 ], [ 4981166.862239562906325, 3906113.916594302747399 ], [ 4981274.335265938192606, 3906082.112833675462753 ], [ 4981286.626375596038997, 3906122.558947981335223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981218.18091684114188, 3904794.417117499280721 ], [ 4981212.723609739914536, 3904788.214699977543205 ], [ 4981227.1489292467013, 3904775.866413383744657 ], [ 4981232.319094512611628, 3904781.70406112447381 ], [ 4981282.230279056355357, 3904739.212102585006505 ], [ 4981335.364222551696002, 3904800.869118813890964 ], [ 4981243.908145094290376, 3904878.953108576126397 ], [ 4981191.061288570053875, 3904817.661042474210262 ], [ 4981218.18091684114188, 3904794.417117499280721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981167.100502503104508, 3901615.800307644996792 ], [ 4981219.540271442383528, 3901604.265076703391969 ], [ 4981229.516640237532556, 3901650.53198170941323 ], [ 4981205.890303457155824, 3901655.577098413836211 ], [ 4981203.609961584210396, 3901645.012211063411087 ], [ 4981174.797416437417269, 3901651.138179343193769 ], [ 4981167.100502503104508, 3901615.800307644996792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981082.558696716092527, 3906473.491231431718916 ], [ 4981068.153806267306209, 3906477.100481142289937 ], [ 4981065.298766940832138, 3906466.170162263326347 ], [ 4981056.656641711480916, 3906467.971586406230927 ], [ 4981049.238381988368928, 3906437.367979659233242 ], [ 4981084.961915162391961, 3906428.70833386015147 ], [ 4981092.093011754564941, 3906458.947178756352514 ], [ 4981079.705284386873245, 3906461.832650438882411 ], [ 4981082.558696716092527, 3906473.491231431718916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980737.968463186174631, 3900977.981975981034338 ], [ 4980697.056319830007851, 3900985.53820011112839 ], [ 4980692.501561176031828, 3900961.495487744919956 ], [ 4980733.413739805109799, 3900953.939256789628416 ], [ 4980737.968463186174631, 3900977.981975981034338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980640.140388054773211, 3907712.380006584804505 ], [ 4980593.987554446794093, 3907750.876065330579877 ], [ 4980575.608784969896078, 3907728.987537269480526 ], [ 4980594.069585288874805, 3907713.734743967652321 ], [ 4980591.485521415248513, 3907710.451845534611493 ], [ 4980619.176762331277132, 3907687.572677014395595 ], [ 4980640.140388054773211, 3907712.380006584804505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980650.580993522889912, 3901425.30560522666201 ], [ 4980643.415851121768355, 3901409.632137812674046 ], [ 4980701.646204927004874, 3901384.271717870607972 ], [ 4980711.674302619881928, 3901407.598285171203315 ], [ 4980716.286170592531562, 3901405.787834316492081 ], [ 4980722.876903482712805, 3901420.731788146309555 ], [ 4980670.700024608522654, 3901443.556628879159689 ], [ 4980660.958284902386367, 3901420.958971383515745 ], [ 4980650.580993522889912, 3901425.30560522666201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980484.932153875939548, 3906675.352867487352341 ], [ 4980499.537275240756571, 3906711.434150018263608 ], [ 4980472.446681424975395, 3906722.662525080610067 ], [ 4980457.842332232743502, 3906686.217126662842929 ], [ 4980484.932153875939548, 3906675.352867487352341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980487.77949348744005, 3904338.724891950841993 ], [ 4980496.355632094666362, 3904367.146064759232104 ], [ 4980454.574408792890608, 3904379.4344572420232 ], [ 4980446.285386318340898, 3904351.378061737399548 ], [ 4980487.77949348744005, 3904338.724891950841993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980466.893236265517771, 3903232.083250674419105 ], [ 4980481.063978527672589, 3903204.804627205245197 ], [ 4980533.99034402705729, 3903232.231183809693903 ], [ 4980519.531592194922268, 3903259.509144690819085 ], [ 4980466.893236265517771, 3903232.083250674419105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980424.087325579486787, 3899915.847902711946517 ], [ 4980402.46684408467263, 3899924.90357673773542 ], [ 4980399.314806601963937, 3899917.614026955794543 ], [ 4980381.73042222391814, 3899924.85794708551839 ], [ 4980368.549430877901614, 3899894.241977569647133 ], [ 4980408.042344437912107, 3899877.942995890974998 ], [ 4980424.087325579486787, 3899915.847902711946517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980143.223929863423109, 3900467.253138348925859 ], [ 4980106.619217404164374, 3900480.281660565175116 ], [ 4980098.604652004316449, 3900457.688004141673446 ], [ 4980082.751890539191663, 3900463.479389890562743 ], [ 4980071.873235278762877, 3900433.596857509575784 ], [ 4980084.555615512654185, 3900428.89091731980443 ], [ 4980071.101676316931844, 3900391.356003137305379 ], [ 4980110.588894723914564, 3900377.241353426128626 ], [ 4980143.223929863423109, 3900467.253138348925859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980108.150792046450078, 3906355.1810637046583 ], [ 4980151.09250895678997, 3906337.432687717489898 ], [ 4980162.550119588151574, 3906364.767709570936859 ], [ 4980119.896375332027674, 3906382.516698383260518 ], [ 4980108.150792046450078, 3906355.1810637046583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980043.221303936094046, 3905367.877223090734333 ], [ 4979994.189028519205749, 3905404.911436215974391 ], [ 4979975.23862963821739, 3905380.109050578437746 ], [ 4980024.270923967473209, 3905343.074803446419537 ], [ 4980043.221303936094046, 3905367.877223090734333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980010.343139350414276, 3899728.141165764536709 ], [ 4980034.558107798919082, 3899717.998459944501519 ], [ 4980045.733070954680443, 3899744.240305938757956 ], [ 4980021.517325635999441, 3899754.747130701784045 ], [ 4980010.343139350414276, 3899728.141165764536709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979926.681816061027348, 3904276.319768921472132 ], [ 4979970.482650156132877, 3904262.214311729650944 ], [ 4979985.931380004622042, 3904308.492785507347435 ], [ 4979942.129817781038582, 3904322.962347782682627 ], [ 4979926.681816061027348, 3904276.319768921472132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979747.624637990258634, 3907161.31058893352747 ], [ 4979727.668035355396569, 3907202.41409134818241 ], [ 4979700.630538525059819, 3907189.610634402371943 ], [ 4979720.5879015494138, 3907148.142981736455113 ], [ 4979747.624637990258634, 3907161.31058893352747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979763.430083989165723, 3897519.880233068950474 ], [ 4979774.034929108805954, 3897543.935907448176295 ], [ 4979752.123147021979094, 3897553.719721400178969 ], [ 4979741.229462324641645, 3897530.027557121124119 ], [ 4979763.430083989165723, 3897519.880233068950474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979736.017634834162891, 3908525.325209300499409 ], [ 4979790.066074939444661, 3908561.856167070101947 ], [ 4979772.157552641816437, 3908588.398830343037844 ], [ 4979718.109141820110381, 3908551.867908002343029 ], [ 4979736.017634834162891, 3908525.325209300499409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979686.647187546826899, 3907132.047328550368547 ], [ 4979670.160045385360718, 3907166.6040383358486 ], [ 4979640.534294737502933, 3907152.338486191816628 ], [ 4979653.26092120911926, 3907125.784493344835937 ], [ 4979670.231297204270959, 3907133.832293441519141 ], [ 4979673.99178736936301, 3907125.829560961108655 ], [ 4979686.647187546826899, 3907132.047328550368547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979673.811794850975275, 3906943.763072443660349 ], [ 4979628.062466205097735, 3906929.098351676482707 ], [ 4979638.496022642590106, 3906897.805655350442976 ], [ 4979686.259332067333162, 3906913.203037677332759 ], [ 4979690.896322139538825, 3906899.376100122928619 ], [ 4979721.39483468234539, 3906909.638150373008102 ], [ 4979703.424292124807835, 3906964.218877193052322 ], [ 4979670.623182184994221, 3906953.587708348408341 ], [ 4979673.811794850975275, 3906943.763072443660349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979666.483953284099698, 3909387.075869103427976 ], [ 4979702.265702286735177, 3909349.648020355962217 ], [ 4979731.28385760076344, 3909377.385253399144858 ], [ 4979695.50210486445576, 3909414.813064152840525 ], [ 4979666.483953284099698, 3909387.075869103427976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979529.986931204795837, 3906613.182894284836948 ], [ 4979520.142683719284832, 3906638.286659450735897 ], [ 4979498.852939253672957, 3906630.229593625757843 ], [ 4979508.985893513076007, 3906604.762314688414335 ], [ 4979529.986931204795837, 3906613.182894284836948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979528.985920341685414, 3903357.114769760053605 ], [ 4979518.282903905026615, 3903379.303574847523123 ], [ 4979491.241452858783305, 3903366.500358386430889 ], [ 4979484.009088203310966, 3903381.778202932327986 ], [ 4979460.132126977667212, 3903370.438400755170733 ], [ 4979477.77870664652437, 3903333.335230550263077 ], [ 4979500.792575129307806, 3903344.309045896865427 ], [ 4979495.586242192424834, 3903354.85757098486647 ], [ 4979508.244252733886242, 3903360.711110616568476 ], [ 4979513.451378965750337, 3903349.798458286561072 ], [ 4979528.985920341685414, 3903357.114769760053605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979474.293122626841068, 3904277.520577143877745 ], [ 4979414.360851236619055, 3904427.413005387876183 ], [ 4979380.410997114144266, 3904413.86667498992756 ], [ 4979440.343108855187893, 3904263.974172254558653 ], [ 4979474.293122626841068, 3904277.520577143877745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979358.303596503101289, 3900254.71296870848164 ], [ 4979365.277852831408381, 3900225.96172429760918 ], [ 4979390.03347629122436, 3900231.841355143580586 ], [ 4979383.347197220660746, 3900260.59321616217494 ], [ 4979358.303596503101289, 3900254.71296870848164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979345.421688136644661, 3904481.519488609861583 ], [ 4979378.842819939367473, 3904473.216734813526273 ], [ 4979383.126729471608996, 3904489.611924516968429 ], [ 4979394.940055112354457, 3904486.360298165120184 ], [ 4979404.077454252168536, 3904522.064969482831657 ], [ 4979358.555902823805809, 3904533.254576658364385 ], [ 4979345.421688136644661, 3904481.519488609861583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979082.239551512524486, 3908623.318233695812523 ], [ 4979071.240883333608508, 3908650.240369934588671 ], [ 4978990.119240930303931, 3908617.658121965825558 ], [ 4979001.117840951308608, 3908590.735953053459525 ], [ 4979082.239551512524486, 3908623.318233695812523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978863.134668375365436, 3907684.478268516249955 ], [ 4978847.539228164590895, 3907706.656904890667647 ], [ 4978820.802227993495762, 3907688.028856168035418 ], [ 4978836.397656854242086, 3907665.850204539950937 ], [ 4978863.134668375365436, 3907684.478268516249955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978803.640311870723963, 3909113.570735550485551 ], [ 4978842.48283342923969, 3909125.306212309747934 ], [ 4978817.260138516314328, 3909206.817871841602027 ], [ 4978778.41772401239723, 3909195.082430952694267 ], [ 4978803.640311870723963, 3909113.570735550485551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978800.073156374506652, 3905536.328020589891821 ], [ 4978776.448354604654014, 3905542.467675543390214 ], [ 4978771.591471945866942, 3905524.614818598143756 ], [ 4978754.304590708576143, 3905529.311533441767097 ], [ 4978744.590784643776715, 3905493.605828905012459 ], [ 4978788.960227278992534, 3905481.684448462445289 ], [ 4978797.817939166910946, 3905513.747017179150134 ], [ 4978794.360248207114637, 3905514.832007951568812 ], [ 4978800.073156374506652, 3905536.328020589891821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978773.324572145007551, 3903638.780863364227116 ], [ 4978831.758210345171392, 3903515.465461114421487 ], [ 4978908.280189905315638, 3903551.678540864959359 ], [ 4978905.38802048470825, 3903557.498438105918467 ], [ 4979073.103507399559021, 3903636.511168816126883 ], [ 4979024.504445065744221, 3903739.091706258710474 ], [ 4978945.968962063081563, 3903702.145704130176455 ], [ 4978943.076800525188446, 3903707.965597844216973 ], [ 4978906.253957294858992, 3903690.772392839659005 ], [ 4978902.203691961243749, 3903699.502857654821128 ], [ 4978773.324572145007551, 3903638.780863364227116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978618.951719254255295, 3909178.719625612720847 ], [ 4978614.319556619971991, 3909190.726112706586719 ], [ 4978594.757453318685293, 3909183.401700784917921 ], [ 4978600.259546759538352, 3909168.484006118960679 ], [ 4978574.368133296258748, 3909158.961304010357708 ], [ 4978583.055069415830076, 3909135.675350659526885 ], [ 4978627.357779307290912, 3909152.155892736278474 ], [ 4978623.014292792417109, 3909163.798861974850297 ], [ 4978630.493649856187403, 3909166.727895379066467 ], [ 4978624.993094421923161, 3909180.917321862187237 ], [ 4978618.951719254255295, 3909178.719625612720847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978619.764701123349369, 3904887.059673468116671 ], [ 4978633.483012885786593, 3904935.518479144666344 ], [ 4978619.076853373087943, 3904939.493168375454843 ], [ 4978621.935384371317923, 3904949.330826998688281 ], [ 4978602.342989795841277, 3904954.750979911070317 ], [ 4978601.200507579371333, 3904950.378961188253015 ], [ 4978583.336606573313475, 3904955.438685295172036 ], [ 4978571.333501919172704, 3904912.809670489281416 ], [ 4978598.705299979075789, 3904905.221306057646871 ], [ 4978595.562688417732716, 3904893.562385533004999 ], [ 4978619.764701123349369, 3904887.059673468116671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978551.20568326022476, 3909354.81526788091287 ], [ 4978510.628177607432008, 3909346.717839262913913 ], [ 4978522.559574802406132, 3909287.025511422194541 ], [ 4978562.849261675029993, 3909295.122343617025763 ], [ 4978551.20568326022476, 3909354.81526788091287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978543.538523580878973, 3909980.014857673086226 ], [ 4978555.376519297249615, 3909964.018260278739035 ], [ 4978599.069437102414668, 3909995.791045224294066 ], [ 4978587.230652153491974, 3910012.151754862163216 ], [ 4978543.538523580878973, 3909980.014857673086226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978468.250832121819258, 3905451.504965099971741 ], [ 4978446.927279704250395, 3905458.742205057293177 ], [ 4978435.1981858368963, 3905422.668193509336561 ], [ 4978480.149705327115953, 3905407.834488068241626 ], [ 4978495.599556935951114, 3905454.476267596706748 ], [ 4978471.97087642736733, 3905462.436840723734349 ], [ 4978468.250832121819258, 3905451.504965099971741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978450.76086039468646, 3904469.404545115306973 ], [ 4978513.002283087000251, 3904449.509866374079138 ], [ 4978524.731702951714396, 3904485.583890458103269 ], [ 4978501.102938805706799, 3904493.180303289089352 ], [ 4978498.241211453452706, 3904484.799180001951754 ], [ 4978459.915798551402986, 3904497.462166224140674 ], [ 4978450.76086039468646, 3904469.404545115306973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978451.321206221356988, 3903935.588918496854603 ], [ 4978491.887518115341663, 3903952.789476419333369 ], [ 4978480.311625490896404, 3903979.710550566203892 ], [ 4978440.032534609548748, 3903962.874752486124635 ], [ 4978451.321206221356988, 3903935.588918496854603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978428.80271278321743, 3906939.628361152950674 ], [ 4978440.838450213894248, 3906966.59975391626358 ], [ 4978398.472409644164145, 3906985.444486203603446 ], [ 4978383.28256496693939, 3906952.276159110013396 ], [ 4978399.134234665893018, 3906945.027226015925407 ], [ 4978401.999600092880428, 3906951.58769891038537 ], [ 4978428.80271278321743, 3906939.628361152950674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978242.301582053303719, 3909345.783187796827406 ], [ 4978279.393395093269646, 3909368.438119177240878 ], [ 4978273.90388569701463, 3909377.529784733895212 ], [ 4978286.26832215860486, 3909384.838683462236077 ], [ 4978271.243965825997293, 3909409.931948468089104 ], [ 4978221.500621492043138, 3909379.603411463089287 ], [ 4978242.301582053303719, 3909345.783187796827406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978247.26772534288466, 3906054.401833584532142 ], [ 4978207.501107455231249, 3906068.882789758499712 ], [ 4978197.481083942577243, 3906041.551657589618117 ], [ 4978237.247736786492169, 3906027.070686834864318 ], [ 4978247.26772534288466, 3906054.401833584532142 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978222.601505155675113, 3905058.084858836140484 ], [ 4978211.457869784906507, 3905017.278483916074038 ], [ 4978239.981264642439783, 3905009.692195136100054 ], [ 4978237.124917035922408, 3904998.762186586856842 ], [ 4978263.631905275397003, 3904991.535778558813035 ], [ 4978272.205547175370157, 3905022.141033245716244 ], [ 4978265.578805731609464, 3905023.947630718816072 ], [ 4978271.295333375222981, 3905043.987004214897752 ], [ 4978257.465187851339579, 3905047.96310961805284 ], [ 4978261.752778172492981, 3905062.901606012135744 ], [ 4978243.025164028629661, 3905067.959723973181099 ], [ 4978239.023970572277904, 3905053.750101333949715 ], [ 4978222.601505155675113, 3905058.084858836140484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978171.039871798828244, 3909823.738389796111733 ], [ 4978233.433034283109009, 3909862.104591076727957 ], [ 4978217.543750856071711, 3909887.924324047286063 ], [ 4978155.150625878944993, 3909849.558159055188298 ], [ 4978171.039871798828244, 3909823.738389796111733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978142.07127423863858, 3905420.589465965982527 ], [ 4978122.725651300512254, 3905445.673608465585858 ], [ 4978083.915998160839081, 3905415.73269064584747 ], [ 4978103.549553538672626, 3905390.649129892233759 ], [ 4978142.07127423863858, 3905420.589465965982527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978131.612797652371228, 3905736.269617434591055 ], [ 4978176.856196824461222, 3905719.251229946501553 ], [ 4978188.023507421836257, 3905748.769570881035179 ], [ 4978142.492207489907742, 3905765.787330243270844 ], [ 4978131.612797652371228, 3905736.269617434591055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978076.776183605194092, 3904026.191282529383898 ], [ 4978033.873705897480249, 3904024.279936213977635 ], [ 4978035.086339133791625, 3903995.516112212557346 ], [ 4978077.988862688653171, 3903997.427460442762822 ], [ 4978076.776183605194092, 3904026.191282529383898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978011.937023867852986, 3906638.699674509931356 ], [ 4977989.458187086507678, 3906648.119632468093187 ], [ 4977975.992175729013979, 3906616.411712245550007 ], [ 4977998.471034240908921, 3906606.991743210703135 ], [ 4978011.937023867852986, 3906638.699674509931356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977808.443627056665719, 3910568.716724679339677 ], [ 4977788.839397913776338, 3910581.784247521311045 ], [ 4977780.517355892807245, 3910569.022082726005465 ], [ 4977800.120823821984231, 3910556.318685226142406 ], [ 4977808.443627056665719, 3910568.716724679339677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977582.193741776049137, 3908355.407077600248158 ], [ 4977622.839488584548235, 3908331.823717068880796 ], [ 4977635.461933736689389, 3908353.698148766998202 ], [ 4977595.104887703433633, 3908376.917963462416083 ], [ 4977582.193741776049137, 3908355.407077600248158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977561.067751923575997, 3908544.347536536864936 ], [ 4977589.254260458052158, 3908558.243658678140491 ], [ 4977581.447772930376232, 3908573.884987383149564 ], [ 4977584.036701169796288, 3908574.982812796719372 ], [ 4977564.664856944233179, 3908613.90437957784161 ], [ 4977533.890229272656143, 3908598.546331025194377 ], [ 4977561.067751923575997, 3908544.347536536864936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977547.274726004339755, 3907157.33863665163517 ], [ 4977569.195441990159452, 3907139.177965385839343 ], [ 4977592.459626449272037, 3907166.900781297590584 ], [ 4977570.538917232304811, 3907185.061433883849531 ], [ 4977547.274726004339755, 3907157.33863665163517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977436.086128259077668, 3910897.475765084382147 ], [ 4977483.516813339665532, 3910931.439369971863925 ], [ 4977461.573334854096174, 3910961.980622324626893 ], [ 4977435.989415314048529, 3910943.720454880967736 ], [ 4977427.905715025030077, 3910954.627540849149227 ], [ 4977406.058980083093047, 3910938.92414795095101 ], [ 4977436.086128259077668, 3910897.475765084382147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977308.507770471274853, 3916298.039079736918211 ], [ 4977257.548880409449339, 3916304.123058852273971 ], [ 4977254.72220363188535, 3916279.356036941055208 ], [ 4977305.680380098521709, 3916273.636185206938535 ], [ 4977308.507770471274853, 3916298.039079736918211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977290.544604294002056, 3906417.613863362465054 ], [ 4977267.179255451075733, 3906437.956534984987229 ], [ 4977254.827602975070477, 3906423.729640742763877 ], [ 4977278.480131954886019, 3906403.751689333468676 ], [ 4977290.544604294002056, 3906417.613863362465054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977011.29634815081954, 3909861.360987913794816 ], [ 4976985.061246127821505, 3909878.784923714119941 ], [ 4976962.386675903573632, 3909845.237682247534394 ], [ 4976964.404993185773492, 3909843.785336534492671 ], [ 4976944.887453924864531, 3909814.978383230511099 ], [ 4976970.258136572316289, 3909797.916748829651624 ], [ 4977004.986742401495576, 3909849.695645310450345 ], [ 4977003.833633105270565, 3909850.421517906244844 ], [ 4977011.29634815081954, 3909861.360987913794816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977002.991194040514529, 3913169.493258497212082 ], [ 4977025.757393605075777, 3913157.524110986385494 ], [ 4977050.417645515874028, 3913203.820278991479427 ], [ 4977003.73311395291239, 3913228.120294489897788 ], [ 4976986.5293098250404, 3913195.312578174285591 ], [ 4977010.159827367402613, 3913182.981077074073255 ], [ 4977002.991194040514529, 3913169.493258497212082 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976982.534081961028278, 3913594.758806013036519 ], [ 4976999.572194147855043, 3913568.576540116220713 ], [ 4977052.755885508842766, 3913602.551389771979302 ], [ 4977035.716986652463675, 3913629.097754530142993 ], [ 4976982.534081961028278, 3913594.758806013036519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976981.011940205469728, 3906139.865682470612228 ], [ 4976981.60367841552943, 3906132.220139503013343 ], [ 4977003.484801950864494, 3906133.35792662575841 ], [ 4977000.796645926311612, 3906179.961235233582556 ], [ 4976957.32241159491241, 3906177.686280057765543 ], [ 4976959.419515257701278, 3906138.364380247890949 ], [ 4976981.011940205469728, 3906139.865682470612228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976735.209857621230185, 3913341.173999594524503 ], [ 4976741.521762795746326, 3913351.382776361890137 ], [ 4976765.444407550618052, 3913336.866861485410482 ], [ 4976786.673938338644803, 3913371.867562351748347 ], [ 4976763.904264566488564, 3913385.65757410088554 ], [ 4976769.928286826238036, 3913395.865762952249497 ], [ 4976756.958718803711236, 3913403.485766198020428 ], [ 4976750.646831808611751, 3913393.276985471602529 ], [ 4976741.135366348549724, 3913399.083473262377083 ], [ 4976713.880997738800943, 3913354.238762320019305 ], [ 4976735.209857621230185, 3913341.173999594524503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976631.130975824780762, 3908251.472869331948459 ], [ 4976612.965967752039433, 3908264.18006776412949 ], [ 4976597.177064909599721, 3908241.571331880986691 ], [ 4976615.054163855500519, 3908228.863529669586569 ], [ 4976631.130975824780762, 3908251.472869331948459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976603.573576391674578, 3912543.08605418773368 ], [ 4976587.721939098089933, 3912552.156730956863612 ], [ 4976577.108974848873913, 3912533.56407051673159 ], [ 4976592.960619494318962, 3912524.493387605529279 ], [ 4976603.573576391674578, 3912543.08605418773368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976562.032076467759907, 3902375.336920011788607 ], [ 4976585.437147574499249, 3902337.151339153759181 ], [ 4976602.982178611680865, 3902347.747271199245006 ], [ 4976608.18306802585721, 3902339.382969301193953 ], [ 4976632.342621137388051, 3902354.362119149416685 ], [ 4976626.275536961853504, 3902363.817024835385382 ], [ 4976642.670117102563381, 3902373.682350357063115 ], [ 4976619.843955450691283, 3902410.412550712469965 ], [ 4976562.032076467759907, 3902375.336920011788607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976439.330374663695693, 3903928.468527420423925 ], [ 4976445.601988380774856, 3903959.432578361127526 ], [ 4976384.817220594733953, 3903971.324136033188552 ], [ 4976378.833502537570894, 3903940.360689790919423 ], [ 4976439.330374663695693, 3903928.468527420423925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976439.873466275632381, 3901420.33439420349896 ], [ 4976470.394403391517699, 3901423.310133936814964 ], [ 4976464.222436144948006, 3901483.743177000433207 ], [ 4976433.125588648021221, 3901480.766261515207589 ], [ 4976434.595441732555628, 3901466.204044817946851 ], [ 4976429.700370513834059, 3901465.829863184131682 ], [ 4976432.048396262340248, 3901444.350963106378913 ], [ 4976437.230713225901127, 3901445.089865850284696 ], [ 4976439.873466275632381, 3901420.33439420349896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976354.324288391508162, 3892576.17195584718138 ], [ 4976367.32094232365489, 3892560.176924230065197 ], [ 4976382.275962258689106, 3892572.587972551584244 ], [ 4976369.568136404268444, 3892588.21946028387174 ], [ 4976354.324288391508162, 3892576.17195584718138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976315.51967440918088, 3910384.64131403202191 ], [ 4976286.982385850511491, 3910402.061216788366437 ], [ 4976280.381716846488416, 3910391.851975982543081 ], [ 4976259.91591502726078, 3910404.190581324975938 ], [ 4976243.559646316803992, 3910377.939531042706221 ], [ 4976303.807060761377215, 3910340.193102889694273 ], [ 4976319.303343734703958, 3910364.621762301772833 ], [ 4976307.484765952453017, 3910371.880197138991207 ], [ 4976315.51967440918088, 3910384.64131403202191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976302.151948800310493, 3912693.217887935228646 ], [ 4976276.494311669841409, 3912711.371990146115422 ], [ 4976250.660665982402861, 3912674.905749303288758 ], [ 4976276.030450901016593, 3912656.75103318830952 ], [ 4976302.151948800310493, 3912693.217887935228646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976222.318469131365418, 3903310.092849278822541 ], [ 4976260.635567401535809, 3903301.796237925533205 ], [ 4976262.630483887158334, 3903311.995997102465481 ], [ 4976290.287494414485991, 3903306.22652699938044 ], [ 4976298.847518582828343, 3903344.841975156683475 ], [ 4976283.290469980798662, 3903348.087293718475848 ], [ 4976282.721988367848098, 3903344.444816778879613 ], [ 4976232.017056568525732, 3903355.264968088362366 ], [ 4976222.318469131365418, 3903310.092849278822541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976201.136740323156118, 3912398.427195091266185 ], [ 4976166.830076736398041, 3912422.75397544214502 ], [ 4976149.032616651616991, 3912397.956534442491829 ], [ 4976183.051423187367618, 3912373.629143097437918 ], [ 4976201.136740323156118, 3912398.427195091266185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976202.824639631435275, 3909039.668511048424989 ], [ 4976231.310412073507905, 3909048.101836338639259 ], [ 4976217.103092356584966, 3909096.866529466118664 ], [ 4976188.617367252707481, 3909088.433218988589942 ], [ 4976202.824639631435275, 3909039.668511048424989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976011.319856471382082, 3910333.040955769829452 ], [ 4976020.217115061357617, 3910346.532007115893066 ], [ 4975998.021066324785352, 3910360.323815606534481 ], [ 4975965.020037366077304, 3910307.821459400467575 ], [ 4975986.639581019990146, 3910294.392582345288247 ], [ 4975992.378185565583408, 3910303.871727922465652 ], [ 4976016.880405296571553, 3910288.628084815107286 ], [ 4976035.245528954081237, 3910318.160286854021251 ], [ 4976011.319856471382082, 3910333.040955769829452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975965.494917099364102, 3901165.565253087785095 ], [ 4975975.087644935585558, 3901121.889090118464082 ], [ 4976003.299092870205641, 3901127.772641830146313 ], [ 4975993.705579535104334, 3901171.81292417505756 ], [ 4975965.494917099364102, 3901165.565253087785095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975845.573430395685136, 3910434.6608293261379 ], [ 4975828.356794045306742, 3910406.587619514670223 ], [ 4975871.594867059029639, 3910380.093792635947466 ], [ 4975899.715876509435475, 3910425.667585073504597 ], [ 4975877.519955047406256, 3910439.459493801929057 ], [ 4975866.616285344585776, 3910421.594815914984792 ], [ 4975845.573430395685136, 3910434.6608293261379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975842.66022283397615, 3907901.020505766384304 ], [ 4975869.182947765104473, 3907884.324322693049908 ], [ 4975894.727158928290009, 3907924.066679515410215 ], [ 4975868.204457201063633, 3907940.762837796472013 ], [ 4975842.66022283397615, 3907901.020505766384304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975668.777459742501378, 3910022.467945127747953 ], [ 4975683.690593822859228, 3910050.900510807521641 ], [ 4975666.398314909078181, 3910059.968800600152463 ], [ 4975670.126228, 3910067.259006679058075 ], [ 4975650.528575656935573, 3910077.415035520680249 ], [ 4975647.947086432017386, 3910072.676082658581436 ], [ 4975619.991590560413897, 3910087.18480609357357 ], [ 4975603.931977006606758, 3910056.201026449445635 ], [ 4975625.835017227567732, 3910044.957231210544705 ], [ 4975625.835017227567732, 3910044.957231210544705 ], [ 4975668.777459742501378, 3910022.467945127747953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975583.144382612779737, 3903107.792534151114523 ], [ 4975614.014078723266721, 3903079.816860794555396 ], [ 4975624.358233452774584, 3903091.125855466816574 ], [ 4975643.976438311859965, 3903073.323127396870404 ], [ 4975667.826510888524354, 3903098.860595624428242 ], [ 4975632.340393384918571, 3903131.196439887396991 ], [ 4975644.695898073725402, 3903144.69430033955723 ], [ 4975619.3080078009516, 3903167.583192207850516 ], [ 4975583.964862054213881, 3903129.277934264857322 ], [ 4975594.063010079786181, 3903119.830941227264702 ], [ 4975583.144382612779737, 3903107.792534151114523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975563.406671222299337, 3909595.127062478568405 ], [ 4975585.616381915286183, 3909574.780540578067303 ], [ 4975634.167233874090016, 3909626.585609093308449 ], [ 4975612.244693910703063, 3909647.296805216930807 ], [ 4975563.406671222299337, 3909595.127062478568405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975534.455111899413168, 3897842.729407171253115 ], [ 4975539.983541839756072, 3897815.066688977647573 ], [ 4975552.939673430286348, 3897817.641770858783275 ], [ 4975560.50640060659498, 3897779.059273969847709 ], [ 4975593.616467382758856, 3897785.680535063613206 ], [ 4975587.504558331333101, 3897816.983362819999456 ], [ 4975578.579356377013028, 3897815.144671410787851 ], [ 4975576.833522637374699, 3897823.880263946950436 ], [ 4975588.06221252027899, 3897826.087741393595934 ], [ 4975582.825443549081683, 3897851.93038923619315 ], [ 4975534.455111899413168, 3897842.729407171253115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975521.349837265908718, 3904331.877234207466245 ], [ 4975541.183671676553786, 3904349.395608236081898 ], [ 4975522.712412944994867, 3904370.113791400566697 ], [ 4975502.878581867553294, 3904352.595430790446699 ], [ 4975521.349837265908718, 3904331.877234207466245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975510.183841526508331, 3906011.229909874498844 ], [ 4975543.028203318826854, 3906001.828823805321008 ], [ 4975552.749017837457359, 3906036.076860528904945 ], [ 4975519.904694434255362, 3906045.477934926282614 ], [ 4975510.183841526508331, 3906011.229909874498844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975410.052978086285293, 3903546.221295415889472 ], [ 4975380.365967143326998, 3903559.270208337344229 ], [ 4975365.172645861282945, 3903525.011267446912825 ], [ 4975418.493566811084747, 3903501.81428982457146 ], [ 4975420.213298080489039, 3903505.823200482875109 ], [ 4975440.965313952416182, 3903496.761756987310946 ], [ 4975451.857407089322805, 3903521.908782345242798 ], [ 4975427.358896721154451, 3903532.419189483392984 ], [ 4975433.090342400595546, 3903546.267734045628458 ], [ 4975413.779669946059585, 3903554.603826204314828 ], [ 4975410.052978086285293, 3903546.221295415889472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975340.69875249825418, 3909959.902864628937095 ], [ 4975357.421788356266916, 3909947.55602488713339 ], [ 4975389.293402024544775, 3909989.859627066645771 ], [ 4975346.90860839933157, 3910021.453800519462675 ], [ 4975319.343712721951306, 3909984.98503845045343 ], [ 4975345.2933952473104, 3909965.738239007536322 ], [ 4975340.69875249825418, 3909959.902864628937095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975269.644148363731802, 3903056.910431241150945 ], [ 4975298.18855740968138, 3903039.489526805467904 ], [ 4975333.78209431655705, 3903096.729731805156916 ], [ 4975303.507695461623371, 3903115.239512858446687 ], [ 4975279.395674585364759, 3903076.5931187979877 ], [ 4975281.125703390687704, 3903075.504203448072076 ], [ 4975269.644148363731802, 3903056.910431241150945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975172.050716542638838, 3905481.829906860366464 ], [ 4975191.988452672027051, 3905447.277409177273512 ], [ 4975226.501826433464885, 3905467.373957784846425 ], [ 4975206.276114578358829, 3905501.925852102227509 ], [ 4975172.050716542638838, 3905481.829906860366464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975164.215164683759212, 3906086.272954309359193 ], [ 4975171.380048745311797, 3906103.037396439816803 ], [ 4975180.314217031933367, 3906099.0498754568398 ], [ 4975189.772370589897037, 3906120.916771460324526 ], [ 4975145.103775959461927, 3906139.761999534908682 ], [ 4975128.768630119971931, 3906101.131263585295528 ], [ 4975164.215164683759212, 3906086.272954309359193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975077.736368391662836, 3898945.489428126718849 ], [ 4975088.596382459625602, 3898987.750292260199785 ], [ 4975058.33867559209466, 3898995.700567485764623 ], [ 4975047.479346053674817, 3898953.075586551334709 ], [ 4975077.736368391662836, 3898945.489428126718849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974889.869712806306779, 3900284.021408704575151 ], [ 4974920.451733597554266, 3900257.1367989461869 ], [ 4974942.865719851106405, 3900282.306575869210064 ], [ 4974912.283705123700202, 3900309.191160523332655 ], [ 4974889.869712806306779, 3900284.021408704575151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974669.241465885192156, 3899858.277550646103919 ], [ 4974622.006218625232577, 3899859.27610217500478 ], [ 4974621.494558633305132, 3899826.867474916391075 ], [ 4974668.441855902783573, 3899825.868350089993328 ], [ 4974669.241465885192156, 3899858.277550646103919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974312.665205333381891, 3899286.250619282480329 ], [ 4974354.174286605790257, 3899268.490213037002832 ], [ 4974367.076578549109399, 3899298.010265103075653 ], [ 4974325.279521839693189, 3899315.770082991570234 ], [ 4974312.665205333381891, 3899286.250619282480329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974285.952042260207236, 3909608.960988490842283 ], [ 4974264.625732719898224, 3909619.842877955175936 ], [ 4974239.959524556063116, 3909572.456977383699268 ], [ 4974261.574482657946646, 3909561.211505517363548 ], [ 4974267.023794641718268, 3909571.782103797420859 ], [ 4974287.197814010083675, 3909561.262074430473149 ], [ 4974301.539018991403282, 3909588.600334521383047 ], [ 4974281.076393549330533, 3909599.483916251920164 ], [ 4974285.952042260207236, 3909608.960988490842283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974103.253555433824658, 3900031.577089191414416 ], [ 4974074.428751269355416, 3900043.900857875589281 ], [ 4974056.082307518459857, 3900000.169147342443466 ], [ 4974084.906434250064194, 3899988.209488369058818 ], [ 4974103.253555433824658, 3900031.577089191414416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974044.991323868744075, 3909455.186591282486916 ], [ 4974017.31895340513438, 3909472.24646074231714 ], [ 4974004.403331771492958, 3909451.829673145432025 ], [ 4974032.364334291778505, 3909434.406225024256855 ], [ 4974044.991323868744075, 3909455.186591282486916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974042.946366846561432, 3899942.974857288878411 ], [ 4974039.266659689135849, 3899910.19588778167963 ], [ 4974087.663123798556626, 3899904.464899096172303 ], [ 4974093.895448438823223, 3899957.276069837156683 ], [ 4974069.409255153499544, 3899960.140981782227755 ], [ 4974067.143851639702916, 3899940.473484363872558 ], [ 4974042.946366846561432, 3899942.974857288878411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974006.310593826696277, 3911559.434189194347709 ], [ 4973971.70982834789902, 3911587.404511224944144 ], [ 4973942.990302102640271, 3911552.391392515972257 ], [ 4973977.591082558967173, 3911524.421034107450396 ], [ 4974006.310593826696277, 3911559.434189194347709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974028.559597686864436, 3897589.208902818150818 ], [ 4974012.213312404230237, 3897552.763816081453115 ], [ 4974052.573456214740872, 3897534.636572432238609 ], [ 4974068.633097899146378, 3897570.352860240265727 ], [ 4974061.42659729719162, 3897573.251739964354783 ], [ 4974070.030321107245982, 3897592.203403283841908 ], [ 4974046.391049648635089, 3897602.71672975178808 ], [ 4974038.361229148693383, 3897584.858590852003545 ], [ 4974028.559597686864436, 3897589.208902818150818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974008.893997518345714, 3899243.77763802325353 ], [ 4974052.419751396402717, 3899225.656594789586961 ], [ 4974064.459787121973932, 3899254.446545587852597 ], [ 4974021.222084484063089, 3899272.568135105539113 ], [ 4974008.893997518345714, 3899243.77763802325353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973904.554052222520113, 3900901.095041669905186 ], [ 4973777.831806334666908, 3900903.031856203917414 ], [ 4973777.593627452850342, 3900877.542243791278452 ], [ 4973904.027997825294733, 3900875.604863941669464 ], [ 4973904.554052222520113, 3900901.095041669905186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973822.24154248367995, 3898517.336219448130578 ], [ 4973843.461755413562059, 3898565.078783698379993 ], [ 4973802.527969177812338, 3898582.841097432654351 ], [ 4973781.595718503929675, 3898535.099127905908972 ], [ 4973822.24154248367995, 3898517.336219448130578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973808.523493152111769, 3895369.043027658946812 ], [ 4973851.744520124979317, 3895362.573236642871052 ], [ 4973855.158423064276576, 3895384.427685711998492 ], [ 4973863.226800134405494, 3895382.98695811489597 ], [ 4973867.494162942282856, 3895410.305021719075739 ], [ 4973815.917501889169216, 3895417.850835541263223 ], [ 4973808.523493152111769, 3895369.043027658946812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973790.236824920400977, 3897798.116741910111159 ], [ 4973764.869672937318683, 3897808.626939303707331 ], [ 4973762.863432531245053, 3897803.525199751835316 ], [ 4973742.397758258506656, 3897811.496084617916495 ], [ 4973727.777262348681688, 3897776.146926832385361 ], [ 4973741.61402627453208, 3897770.347864732611924 ], [ 4973735.305829749442637, 3897755.770346907898784 ], [ 4973758.078623035922647, 3897746.347443697042763 ], [ 4973764.672704285942018, 3897762.017915300093591 ], [ 4973773.89746025390923, 3897758.030509609729052 ], [ 4973790.236824920400977, 3897798.116741910111159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973750.70523698721081, 3906384.975226743146777 ], [ 4973774.635295647196472, 3906369.000189679209143 ], [ 4973797.604016313329339, 3906402.909362342208624 ], [ 4973773.386037804186344, 3906418.883816475979984 ], [ 4973750.70523698721081, 3906384.975226743146777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973724.120159315876663, 3902746.885679556522518 ], [ 4973764.325034809298813, 3902804.132792831398547 ], [ 4973740.10170747153461, 3902821.199630894698203 ], [ 4973727.465656047686934, 3902803.332529989536852 ], [ 4973722.274996113963425, 3902806.963705572765321 ], [ 4973694.706142345443368, 3902767.583734091836959 ], [ 4973724.120159315876663, 3902746.885679556522518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973654.70215459074825, 3898914.639218752272427 ], [ 4973640.084278425201774, 3898878.197698935866356 ], [ 4973666.890459578484297, 3898867.690185410901904 ], [ 4973670.616928992792964, 3898876.800708564464003 ], [ 4973690.793754827231169, 3898868.829202030785382 ], [ 4973701.398518076166511, 3898895.431401344947517 ], [ 4973695.057173036970198, 3898897.96793891582638 ], [ 4973701.361567987129092, 3898914.366101453546435 ], [ 4973686.662061223760247, 3898919.799373701680452 ], [ 4973680.643544513732195, 3898904.494162932038307 ], [ 4973654.70215459074825, 3898914.639218752272427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973610.742059863172472, 3902999.007393163163215 ], [ 4973671.581766346469522, 3902959.435707645490766 ], [ 4973688.235194974578917, 3902984.593245221301913 ], [ 4973627.395520696416497, 3903024.164893642533571 ], [ 4973610.742059863172472, 3902999.007393163163215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973490.644702542573214, 3903745.970908020157367 ], [ 4973447.391262166202068, 3903776.109757350292057 ], [ 4973418.960524635389447, 3903736.000107796862721 ], [ 4973437.127070390619338, 3903723.290785431396216 ], [ 4973443.158072858117521, 3903731.677517692092806 ], [ 4973468.244996009394526, 3903714.247951246798038 ], [ 4973490.644702542573214, 3903745.970908020157367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973254.877392749302089, 3897901.580928677227348 ], [ 4973227.492948308587074, 3897912.815990370698273 ], [ 4973217.171832644380629, 3897888.035193643067032 ], [ 4973244.556297956034541, 3897876.800121592823416 ], [ 4973254.877392749302089, 3897901.580928677227348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973212.139367127791047, 3898703.312735818792135 ], [ 4973247.310082246549428, 3898686.630763804540038 ], [ 4973265.956629988737404, 3898725.264641860499978 ], [ 4973255.866111467592418, 3898730.342938809189945 ], [ 4973264.472847779281437, 3898747.83784202625975 ], [ 4973239.391998269595206, 3898759.805613989010453 ], [ 4973212.139367127791047, 3898703.312735818792135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972928.345571183599532, 3897703.592703229747713 ], [ 4972949.386444013565779, 3897695.986435649450868 ], [ 4972941.93688511941582, 3897675.580831073690206 ], [ 4972960.96017237752676, 3897668.698952567763627 ], [ 4972964.1123899333179, 3897677.080005845986307 ], [ 4972989.1892185267061, 3897667.660884944256395 ], [ 4973000.93675736989826, 3897699.726935672573745 ], [ 4972992.578288422897458, 3897702.623884043190628 ], [ 4973002.894074162468314, 3897730.317620699293911 ], [ 4972979.547577059827745, 3897738.647669160738587 ], [ 4972976.682700254954398, 3897730.631296665873379 ], [ 4972956.217905327677727, 3897738.238651158753783 ], [ 4972955.646049414761364, 3897736.052771348971874 ], [ 4972941.810838736593723, 3897741.123980698175728 ], [ 4972928.345571183599532, 3897703.592703229747713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972657.664449634961784, 3899776.430854721460491 ], [ 4972613.861570032313466, 3899789.819934299681336 ], [ 4972599.548163931816816, 3899744.276285194326192 ], [ 4972621.161275897175074, 3899737.763239045161754 ], [ 4972624.308482118882239, 3899748.693166227079928 ], [ 4972646.786316338926554, 3899741.817663148976862 ], [ 4972657.664449634961784, 3899776.430854721460491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972509.780079480260611, 3913733.689933865331113 ], [ 4972479.503614354878664, 3913760.578059033490717 ], [ 4972462.556113528087735, 3913741.610801565460861 ], [ 4972492.832582966424525, 3913714.722657615784556 ], [ 4972509.780079480260611, 3913733.689933865331113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972516.192348926328123, 3906148.090663614682853 ], [ 4972513.027796695008874, 3906146.628099048975855 ], [ 4972525.747844446450472, 3906120.070747468620539 ], [ 4972555.090556397102773, 3906134.327895976603031 ], [ 4972532.830971401184797, 3906180.530143717303872 ], [ 4972506.364215118810534, 3906168.099163802340627 ], [ 4972516.192348926328123, 3906148.090663614682853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972201.293518425896764, 3898040.481448722537607 ], [ 4972239.051179462112486, 3898026.716107485350221 ], [ 4972257.104928211309016, 3898075.179652805440128 ], [ 4972218.771274800412357, 3898088.943876760080457 ], [ 4972221.064431013539433, 3898094.774305542930961 ], [ 4972195.412220112979412, 3898104.193053625989705 ], [ 4972180.511485700495541, 3898063.746383510529995 ], [ 4972206.451755800284445, 3898054.328167451545596 ], [ 4972201.293518425896764, 3898040.481448722537607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972152.477210976183414, 3907844.618371992371976 ], [ 4972106.65297431871295, 3907868.200190568342805 ], [ 4972083.129584494978189, 3907822.639155688229948 ], [ 4972128.953877980820835, 3907799.057297663763165 ], [ 4972152.477210976183414, 3907844.618371992371976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971934.600126672536135, 3907954.902680215425789 ], [ 4971954.772379470057786, 3907945.473302760161459 ], [ 4971949.610433468595147, 3907934.53959648963064 ], [ 4971999.465302838012576, 3907910.965122190304101 ], [ 4972019.252679412253201, 3907952.877704800572246 ], [ 4971985.24788608122617, 3907968.835290770977736 ], [ 4971981.519368262030184, 3907961.181474606506526 ], [ 4971945.785029385238886, 3907978.228241636417806 ], [ 4971934.600126672536135, 3907954.902680215425789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971920.121672250330448, 3911967.617119542788714 ], [ 4971942.045657555572689, 3911943.625694668851793 ], [ 4972002.683157552964985, 3911999.088412247598171 ], [ 4971981.047726914286613, 3912022.716200271155685 ], [ 4971920.121672250330448, 3911967.617119542788714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971814.070462245494127, 3902847.001390294637531 ], [ 4971817.225164299830794, 3902853.925816047005355 ], [ 4971838.267178556881845, 3902843.405616980046034 ], [ 4971852.899031243287027, 3902872.563648354727775 ], [ 4971803.608852382749319, 3902897.231794388499111 ], [ 4971785.822936878539622, 3902860.785237158183008 ], [ 4971814.070462245494127, 3902847.001390294637531 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971787.247934446670115, 3904093.736122312024236 ], [ 4971826.670519077219069, 3904108.739673644304276 ], [ 4971802.653305172920227, 3904170.596809539943933 ], [ 4971763.518758592195809, 3904155.593834164086729 ], [ 4971787.247934446670115, 3904093.736122312024236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970815.102839675731957, 3910953.266054981853813 ], [ 4970820.55389363784343, 3910963.471831757109612 ], [ 4970802.111627114936709, 3910972.90526432171464 ], [ 4970767.683922065421939, 3910908.390275252517313 ], [ 4970808.89223128836602, 3910886.618289092555642 ], [ 4970825.532644791528583, 3910917.600280702114105 ], [ 4970847.145088375546038, 3910906.352052506059408 ], [ 4970859.7691357024014, 3910929.679861943237484 ], [ 4970815.102839675731957, 3910953.266054981853813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970686.914476624689996, 3903170.801572582684457 ], [ 4970705.003717001527548, 3903199.601212099660188 ], [ 4970640.712620812468231, 3903239.537397883366793 ], [ 4970622.623338654637337, 3903210.737800937145948 ], [ 4970686.914476624689996, 3903170.801572582684457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970070.461836947128177, 3899947.481848537456244 ], [ 4970112.799986558966339, 3899946.830525467172265 ], [ 4970113.842778287827969, 3900006.913933698553592 ], [ 4970071.216718318872154, 3900007.564732005819678 ], [ 4970070.461836947128177, 3899947.481848537456244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970031.82165742944926, 3898069.228296326473355 ], [ 4970070.156197209842503, 3898054.368567341938615 ], [ 4970076.463663282804191, 3898070.401742557063699 ], [ 4970092.316326779313385, 3898064.240334670525044 ], [ 4970102.924307414330542, 3898091.205230096820742 ], [ 4970049.024533620104194, 3898112.590988756623119 ], [ 4970031.82165742944926, 3898069.228296326473355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969834.544033706188202, 3904430.233468201011419 ], [ 4969858.472835098393261, 3904414.619092954788357 ], [ 4969876.278774949721992, 3904440.868764407932758 ], [ 4969852.061370631679893, 3904456.84673340851441 ], [ 4969834.544033706188202, 3904430.233468201011419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969814.408865623176098, 3902665.253359042108059 ], [ 4969827.700541516765952, 3902640.516476360149682 ], [ 4969853.018130456097424, 3902654.035097289364785 ], [ 4969869.199497564695776, 3902623.841497138608247 ], [ 4969885.311049688607454, 3902632.245661694090813 ], [ 4969887.911408437415957, 3902627.516665339004248 ], [ 4969916.969380246475339, 3902642.862770912703127 ], [ 4969889.518666883930564, 3902694.155540246982127 ], [ 4969845.500450442545116, 3902670.771526650991291 ], [ 4969840.877026529051363, 3902679.502309903968126 ], [ 4969814.408865623176098, 3902665.253359042108059 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969751.95509934425354, 3903921.028729709796607 ], [ 4969849.973822755739093, 3903859.667638970538974 ], [ 4969825.853324907831848, 3903821.7543811108917 ], [ 4969839.97936721984297, 3903813.040769730694592 ], [ 4969834.811153043992817, 3903804.65640757093206 ], [ 4969854.415116268210113, 3903792.311395952943712 ], [ 4969887.149477663449943, 3903844.077253829222172 ], [ 4969857.166987528093159, 3903862.957829733379185 ], [ 4969865.494219159707427, 3903876.081617202144116 ], [ 4969810.142714513465762, 3903910.574006574228406 ], [ 4969824.212101788260043, 3903933.17557062394917 ], [ 4969779.527217848226428, 3903961.132943958044052 ], [ 4969767.467631025239825, 3903941.812212604563683 ], [ 4969765.737881975248456, 3903942.90148345194757 ], [ 4969751.95509934425354, 3903921.028729709796607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969524.106998685747385, 3903959.216375621035695 ], [ 4969539.034598960541189, 3903985.096513549331576 ], [ 4969499.832492023706436, 3904006.87397363036871 ], [ 4969485.192828604020178, 3903980.994373999070376 ], [ 4969524.106998685747385, 3903959.216375621035695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969116.746668625622988, 3901473.293920551426709 ], [ 4969162.590841648168862, 3901443.152763884048909 ], [ 4969171.494495814666152, 3901456.641473453491926 ], [ 4969188.506007695570588, 3901445.383760748431087 ], [ 4969204.015862533822656, 3901468.71579394582659 ], [ 4969164.226596213877201, 3901494.862236938904971 ], [ 4969168.821436019614339, 3901502.153042870108038 ], [ 4969144.601811490952969, 3901518.131620890460908 ], [ 4969141.443018988706172, 3901513.02816214133054 ], [ 4969127.891975023783743, 3901521.743154626805335 ], [ 4969112.669425466097891, 3901498.77580701187253 ], [ 4969127.373729733750224, 3901489.33460004767403 ], [ 4969116.746668625622988, 3901473.293920551426709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968834.978273143991828, 3899260.337043949402869 ], [ 4968802.420566180720925, 3899267.197896561119705 ], [ 4968786.994738969951868, 3899195.436963262036443 ], [ 4968819.552528825588524, 3899188.576092259492725 ], [ 4968834.978273143991828, 3899260.337043949402869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968824.143310043029487, 3897733.884797433391213 ], [ 4968815.20989009924233, 3897736.417896548751742 ], [ 4968821.221128230914474, 3897757.548066631425172 ], [ 4968794.996955879963934, 3897765.148394872900099 ], [ 4968786.983017702586949, 3897736.367961605545133 ], [ 4968780.643153434619308, 3897738.177399405743927 ], [ 4968773.486842655576766, 3897713.039785756729543 ], [ 4968814.983718555420637, 3897701.461030111648142 ], [ 4968824.143310043029487, 3897733.884797433391213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968567.812077484093606, 3892160.798216509167105 ], [ 4968574.448381115682423, 3892154.983838748186827 ], [ 4968591.12484953738749, 3892173.583760581444949 ], [ 4968555.346082493662834, 3892205.199976225849241 ], [ 4968513.36772667709738, 3892158.153548270463943 ], [ 4968542.510201523080468, 3892132.351661539170891 ], [ 4968567.812077484093606, 3892160.798216509167105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968223.549317312426865, 3902541.898293239064515 ], [ 4968196.455231172963977, 3902555.687923703808337 ], [ 4968168.903460768982768, 3902501.748436320573092 ], [ 4968219.920795077458024, 3902475.984260397963226 ], [ 4968238.28839164879173, 3902512.065326229669154 ], [ 4968214.653185430914164, 3902524.040331521071494 ], [ 4968223.549317312426865, 3902541.898293239064515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968132.667708459310234, 3890086.688589779194444 ], [ 4968153.698561581782997, 3890087.453525777906179 ], [ 4968153.089308487251401, 3890106.387130172923207 ], [ 4968132.058470159769058, 3890105.622194643132389 ], [ 4968132.667708459310234, 3890086.688589779194444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968020.491874166764319, 3899747.206035688985139 ], [ 4968025.421592463739216, 3899727.915709916502237 ], [ 4968052.194286356680095, 3899734.880791762843728 ], [ 4968047.553191786631942, 3899753.807484987191856 ], [ 4968020.491874166764319, 3899747.206035688985139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967934.155062400735915, 3913133.631881008390337 ], [ 4967907.379253734834492, 3913136.134296278469265 ], [ 4967905.121239410713315, 3913110.276912591420114 ], [ 4967931.897073625586927, 3913107.774495119228959 ], [ 4967934.155062400735915, 3913133.631881008390337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967602.435403912328184, 3905013.634509207680821 ], [ 4967590.618096474558115, 3905020.168493512552232 ], [ 4967582.292622979730368, 3905005.588880465831608 ], [ 4967594.109934786334634, 3904999.054892550688237 ], [ 4967602.435403912328184, 3905013.634509207680821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967370.294193181209266, 3901184.397622019518167 ], [ 4967331.683861989527941, 3901195.619440549518913 ], [ 4967323.665648067370057, 3901169.024161564186215 ], [ 4967362.276638814248145, 3901157.438202182296664 ], [ 4967370.294193181209266, 3901184.397622019518167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966801.01054157037288, 3913196.866454090923071 ], [ 4966861.191971647553146, 3913186.4087019325234 ], [ 4966866.036190448328853, 3913215.54758818494156 ], [ 4966806.142687035724521, 3913226.005817837547511 ], [ 4966801.01054157037288, 3913196.866454090923071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966794.429006137885153, 3898393.449530414305627 ], [ 4966755.537369150668383, 3898398.481478236615658 ], [ 4966745.878975175321102, 3898319.08479983266443 ], [ 4966796.869547286070883, 3898312.980947543866932 ], [ 4966802.549169143661857, 3898360.691595071926713 ], [ 4966790.449751311913133, 3898362.127612176816911 ], [ 4966794.429006137885153, 3898393.449530414305627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966571.577356411144137, 3897492.943847409915179 ], [ 4966543.91463412437588, 3897499.815684989560395 ], [ 4966538.193261439912021, 3897476.501740443985909 ], [ 4966530.413327879272401, 3897478.309282278642058 ], [ 4966525.550515835173428, 3897458.273954785894603 ], [ 4966525.839161462150514, 3897457.910311222076416 ], [ 4966519.259185640141368, 3897431.31775744818151 ], [ 4966553.549177871085703, 3897423.000544613692909 ], [ 4966560.414699013344944, 3897451.050107040908188 ], [ 4966567.618577716872096, 3897449.241602691821754 ], [ 4966573.3405447518453, 3897472.191424404270947 ], [ 4966566.713349942117929, 3897473.636769722215831 ], [ 4966571.577356411144137, 3897492.943847409915179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966557.629789463244379, 3892950.771853276528418 ], [ 4966563.936875087209046, 3892968.9889225079678 ], [ 4966539.147239127196372, 3892977.686241182498634 ], [ 4966532.551444951444864, 3892959.832820194307715 ], [ 4966557.629789463244379, 3892950.771853276528418 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966227.254933062009513, 3894295.673455821815878 ], [ 4966283.153191272169352, 3894287.756197249051183 ], [ 4966286.287149162963033, 3894308.516803920734674 ], [ 4966266.405714261345565, 3894311.396536747924984 ], [ 4966270.392903165891767, 3894338.712893890682608 ], [ 4966266.934895032085478, 3894339.435361154843122 ], [ 4966268.930012571625412, 3894352.183219723403454 ], [ 4966232.913285616785288, 3894357.220735789276659 ], [ 4966228.641651056706905, 3894327.719133639708161 ], [ 4966231.810984533280134, 3894327.360307495109737 ], [ 4966227.254933062009513, 3894295.673455821815878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966024.971651628613472, 3907124.379768848884851 ], [ 4965990.697827634401619, 3907130.512919956352562 ], [ 4965981.285896832123399, 3907076.605734761338681 ], [ 4966015.847110016271472, 3907070.837182390969247 ], [ 4966024.971651628613472, 3907124.379768848884851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965881.444754180498421, 3891770.956374079920352 ], [ 4965910.85808820463717, 3891754.255306570790708 ], [ 4965923.497290545143187, 3891776.488144805654883 ], [ 4965894.084577571600676, 3891792.825071188621223 ], [ 4965881.444754180498421, 3891770.956374079920352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965783.645411972887814, 3906280.649548519868404 ], [ 4965806.041159050539136, 3906318.920500805135816 ], [ 4965724.476542022079229, 3906366.122496210504323 ], [ 4965702.080718451179564, 3906327.851610791869462 ], [ 4965783.645411972887814, 3906280.649548519868404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965733.216348931193352, 3911347.830267156939954 ], [ 4965729.414783322252333, 3911383.508989050518721 ], [ 4965686.528035117313266, 3911378.70429243799299 ], [ 4965687.694625072181225, 3911369.602901566773653 ], [ 4965659.487486569210887, 3911366.279064527712762 ], [ 4965662.410261862911284, 3911339.702200731262565 ], [ 4965733.216348931193352, 3911347.830267156939954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965478.213381670415401, 3899938.440274749416858 ], [ 4965484.878864083439112, 3899913.326256128028035 ], [ 4965503.591458901762962, 3899918.090753498021513 ], [ 4965505.330886265262961, 3899911.175142631400377 ], [ 4965539.301194285973907, 3899919.970225040800869 ], [ 4965530.895630489103496, 3899952.363968768622726 ], [ 4965478.213381670415401, 3899938.440274749416858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965448.693984942510724, 3906503.673369524534792 ], [ 4965432.246943101286888, 3906524.765960753429681 ], [ 4965398.31367202848196, 3906498.492703577969223 ], [ 4965415.048638854175806, 3906477.400565180461854 ], [ 4965448.693984942510724, 3906503.673369524534792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965233.221618393436074, 3899700.26119921496138 ], [ 4965221.651247307658195, 3899730.829205017071217 ], [ 4965188.550573545508087, 3899718.394645186141133 ], [ 4965199.83290386851877, 3899687.826154414564371 ], [ 4965233.221618393436074, 3899700.26119921496138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965186.718430430628359, 3904185.911188956350088 ], [ 4965199.599817051552236, 3904232.905177252367139 ], [ 4965149.760780236683786, 3904246.296567971818149 ], [ 4965138.596963518299162, 3904205.495638676919043 ], [ 4965163.372233156114817, 3904198.981751386541873 ], [ 4965161.655182924121618, 3904192.424584120512009 ], [ 4965186.718430430628359, 3904185.911188956350088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965030.409903376363218, 3900086.636393551249057 ], [ 4965045.426464998163283, 3900061.899999230634421 ], [ 4965038.233474127948284, 3900057.518716038670391 ], [ 4965049.495316904969513, 3900039.330552399624139 ], [ 4965088.624747881665826, 3900063.426945575978607 ], [ 4965072.453756047412753, 3900089.617954687681049 ], [ 4965080.222147030755877, 3900094.36431576916948 ], [ 4965069.827286280691624, 3900110.733229183126241 ], [ 4965030.409903376363218, 3900086.636393551249057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964929.642213393002748, 3897407.203961765859276 ], [ 4964961.894785397686064, 3897411.625948165543377 ], [ 4964957.23652552627027, 3897442.20526858465746 ], [ 4964925.272613636218011, 3897437.419626944698393 ], [ 4964929.642213393002748, 3897407.203961765859276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964713.037862722761929, 3897230.97821695310995 ], [ 4964749.03277526050806, 3897236.862517127767205 ], [ 4964739.723171662539244, 3897294.015810835175216 ], [ 4964703.440299569629133, 3897288.13105730060488 ], [ 4964713.037862722761929, 3897230.97821695310995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964694.580729364417493, 3900808.890212420839816 ], [ 4964703.541585872881114, 3900788.513394526205957 ], [ 4964726.564821236766875, 3900798.746280439663678 ], [ 4964717.604539557360113, 3900818.758961302693933 ], [ 4964694.580729364417493, 3900808.890212420839816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964612.173127688467503, 3899941.398661124520004 ], [ 4964575.294313108548522, 3899950.078313957434148 ], [ 4964568.145231078378856, 3899918.387459692079574 ], [ 4964620.870293814688921, 3899906.09206070471555 ], [ 4964626.30421117413789, 3899929.769295388832688 ], [ 4964610.170011591166258, 3899933.384564110543579 ], [ 4964612.173127688467503, 3899941.398661124520004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964481.543967220000923, 3903980.854047686327249 ], [ 4964488.812747376970947, 3903937.534138191025704 ], [ 4964519.616565248928964, 3903942.681554815266281 ], [ 4964512.347736791707575, 3903986.001456091180444 ], [ 4964481.543967220000923, 3903980.854047686327249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964402.155308604240417, 3892443.271563858725131 ], [ 4964342.229328876361251, 3892445.724344688467681 ], [ 4964340.843759618699551, 3892411.49403333151713 ], [ 4964331.336325912736356, 3892411.84292507218197 ], [ 4964331.886824467219412, 3892427.865466533694416 ], [ 4964304.516886570490897, 3892428.91400679666549 ], [ 4964303.128352794796228, 3892396.504336120560765 ], [ 4964399.932439861819148, 3892392.289989019744098 ], [ 4964402.155308604240417, 3892443.271563858725131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964032.457438645884395, 3907512.575158548541367 ], [ 4964057.764052726328373, 3907531.914455657359213 ], [ 4964007.849419869482517, 3907597.014593224972486 ], [ 4963982.542831398546696, 3907577.675342347938567 ], [ 4964032.457438645884395, 3907512.575158548541367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964003.887809199281037, 3897959.55688275815919 ], [ 4964002.414083139970899, 3897980.674067270476371 ], [ 4963982.542556915432215, 3897979.185948848724365 ], [ 4963984.016267443075776, 3897958.068763267248869 ], [ 4964003.887809199281037, 3897959.55688275815919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963825.698784922249615, 3903713.9912801659666 ], [ 4963831.505978752858937, 3903683.777603681664914 ], [ 4963877.853997089900076, 3903692.954359441995621 ], [ 4963871.758787921629846, 3903723.167569360695779 ], [ 4963825.698784922249615, 3903713.9912801659666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963697.23001507576555, 3900272.389041536487639 ], [ 4963674.418070233426988, 3900310.222575052641332 ], [ 4963649.960900721140206, 3900295.618768927175552 ], [ 4963673.060825725086033, 3900257.785669571720064 ], [ 4963697.23001507576555, 3900272.389041536487639 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963286.430421748198569, 3893710.492532811593264 ], [ 4963239.446744225919247, 3893728.261422225739807 ], [ 4963222.807342816144228, 3893684.175844752695411 ], [ 4963262.00856501609087, 3893669.307794373948127 ], [ 4963269.753522640094161, 3893690.439373129513115 ], [ 4963277.536607854068279, 3893687.17437969846651 ], [ 4963286.430421748198569, 3893710.492532811593264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963123.671846803277731, 3904061.725798602215946 ], [ 4963089.072243287228048, 3904090.074135139584541 ], [ 4963058.893532144837081, 3904053.249923105817288 ], [ 4963093.493151053786278, 3904024.901548352092505 ], [ 4963123.671846803277731, 3904061.725798602215946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963005.764515929855406, 3893578.24048740696162 ], [ 4962997.693923973478377, 3893581.140983995981514 ], [ 4962988.799251303076744, 3893558.187056123744696 ], [ 4963032.900052892044187, 3893541.869764767121524 ], [ 4963048.392654517665505, 3893582.676277788355947 ], [ 4963012.650571346282959, 3893596.093496991321445 ], [ 4963005.764515929855406, 3893578.24048740696162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962840.778959337621927, 3899483.072334109339863 ], [ 4962885.667434934526682, 3899509.723330777604133 ], [ 4962860.545709418132901, 3899551.559390399139374 ], [ 4962842.417429241351783, 3899540.971557640004903 ], [ 4962849.636276693083346, 3899528.966435691341758 ], [ 4962822.87611875962466, 3899512.903306011110544 ], [ 4962840.778959337621927, 3899483.072334109339863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962759.279834172688425, 3899477.848523312713951 ], [ 4962740.574318674392998, 3899467.988128583412617 ], [ 4962759.060430286452174, 3899433.424312301445752 ], [ 4962776.039584744721651, 3899442.189662084449083 ], [ 4962772.284190733917058, 3899449.46646220702678 ], [ 4962793.292105880565941, 3899460.422827792819589 ], [ 4962773.361978519707918, 3899497.533300980459899 ], [ 4962754.080460807308555, 3899487.672006844542921 ], [ 4962759.279834172688425, 3899477.848523312713951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962425.598763657733798, 3895448.240565210115165 ], [ 4962407.754478930495679, 3895438.381749305408448 ], [ 4962421.040651859715581, 3895415.097824483644217 ], [ 4962411.255172898061574, 3895409.620900888927281 ], [ 4962423.097744257189333, 3895388.519542335998267 ], [ 4962470.299034025520086, 3895414.445053617935628 ], [ 4962466.832334198988974, 3895420.994063982274383 ], [ 4962481.510248740203679, 3895429.391545311547816 ], [ 4962465.624288589693606, 3895457.405134299769998 ], [ 4962431.08684763405472, 3895438.417482979595661 ], [ 4962425.598763657733798, 3895448.240565210115165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962108.116777211427689, 3896615.518951875623316 ], [ 4962115.33331021014601, 3896605.334296766668558 ], [ 4962108.140023070387542, 3896600.225549497175962 ], [ 4962133.541393901221454, 3896564.943613344337791 ], [ 4962184.181865928694606, 3896601.069499031174928 ], [ 4962157.336932222358882, 3896638.533968115225434 ], [ 4962130.28986741323024, 3896619.558088154997677 ], [ 4962124.516860560514033, 3896627.560157489497215 ], [ 4962108.116777211427689, 3896615.518951875623316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962082.320093747228384, 3893876.864216988906264 ], [ 4962090.427007414400578, 3893849.930994444061071 ], [ 4962082.364892104640603, 3893847.369845714885741 ], [ 4962089.024820388294756, 3893824.803971918299794 ], [ 4962140.854378830641508, 3893840.176170197315514 ], [ 4962126.087457075715065, 3893889.675240909215063 ], [ 4962082.320093747228384, 3893876.864216988906264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962068.169185559265316, 3899590.762792310677469 ], [ 4962056.618954733945429, 3899610.408280062489212 ], [ 4962032.447174869477749, 3899596.534647777210921 ], [ 4962043.70938435383141, 3899576.888712658546865 ], [ 4962068.169185559265316, 3899590.762792310677469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962002.177057448774576, 3893155.767574817407876 ], [ 4961967.596068628132343, 3893163.361880543641746 ], [ 4961965.878628229722381, 3893156.076704844366759 ], [ 4961950.604960819706321, 3893159.694864385761321 ], [ 4961945.167850863188505, 3893135.654137610923499 ], [ 4961934.793714582920074, 3893137.823208266869187 ], [ 4961926.493978564627469, 3893101.761905944440514 ], [ 4961987.011529667302966, 3893088.016648247372359 ], [ 4962002.177057448774576, 3893155.767574817407876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961958.161558631807566, 3896159.401406876277179 ], [ 4961945.935723654925823, 3896243.860910838469863 ], [ 4961915.409531695768237, 3896239.445160762406886 ], [ 4961918.902435401454568, 3896215.417905740439892 ], [ 4961913.142624878324568, 3896214.680933400988579 ], [ 4961921.875449472106993, 3896154.248668941669166 ], [ 4961958.161558631807566, 3896159.401406876277179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961942.184044015593827, 3898912.197495174128562 ], [ 4961929.179204240441322, 3898941.308207070454955 ], [ 4961886.005921511910856, 3898921.9440121143125 ], [ 4961898.722706886939704, 3898892.832844079472125 ], [ 4961942.184044015593827, 3898912.197495174128562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961900.361291984096169, 3893809.224618082866073 ], [ 4961907.343291426077485, 3893764.083197772502899 ], [ 4961964.656910845078528, 3893772.544901602901518 ], [ 4961957.674817295745015, 3893817.686307243537158 ], [ 4961900.361291984096169, 3893809.224618082866073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961368.475129057653248, 3892914.489507066085935 ], [ 4961412.205233102664351, 3892953.516567436046898 ], [ 4961376.712083484046161, 3892993.153593447059393 ], [ 4961351.106626166030765, 3892970.539409341756254 ], [ 4961356.589388066902757, 3892964.357400661334395 ], [ 4961338.464210744947195, 3892948.308705458417535 ], [ 4961368.475129057653248, 3892914.489507066085935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961213.673901624977589, 3897826.725800205487758 ], [ 4961170.770657780580223, 3897817.922933452762663 ], [ 4961175.70446097664535, 3897792.805311577860266 ], [ 4961240.491416851058602, 3897806.010291820392013 ], [ 4961232.658856811001897, 3897843.504000438377261 ], [ 4961211.351268980652094, 3897839.102757398039103 ], [ 4961213.673901624977589, 3897826.725800205487758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961109.521185736171901, 3905128.844408717937768 ], [ 4961141.084343161433935, 3905203.902298243716359 ], [ 4961066.747564832679927, 3905234.743212232831866 ], [ 4961035.183697272092104, 3905160.049539127852768 ], [ 4961109.521185736171901, 3905128.844408717937768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960690.947534962557256, 3899758.027024841401726 ], [ 4960706.826977965421975, 3899731.468832830898464 ], [ 4960741.356898466125131, 3899752.639093106146902 ], [ 4960725.189961141906679, 3899778.832712705712765 ], [ 4960690.947534962557256, 3899758.027024841401726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960669.828968259505928, 3907870.835118029732257 ], [ 4960630.08630358427763, 3907877.331215529236943 ], [ 4960624.9490886926651, 3907846.372473775409162 ], [ 4960664.691797881387174, 3907839.876368804369122 ], [ 4960669.828968259505928, 3907870.835118029732257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960538.064150888472795, 3897557.002106548752636 ], [ 4960568.302103936672211, 3897560.687616851646453 ], [ 4960563.053634899668396, 3897604.375498012173921 ], [ 4960532.815730304457247, 3897600.689993511885405 ], [ 4960538.064150888472795, 3897557.002106548752636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960244.396842493675649, 3892903.368232663255185 ], [ 4960252.550804712809622, 3892842.93470767699182 ], [ 4960278.185322670266032, 3892846.249067059252411 ], [ 4960278.475518833845854, 3892844.792973828967661 ], [ 4960298.925619197078049, 3892847.371569885406643 ], [ 4960297.467757975682616, 3892859.385697213467211 ], [ 4960308.700294106267393, 3892861.222657199017704 ], [ 4960303.457699341699481, 3892900.540933742653579 ], [ 4960272.351279710419476, 3892896.126221160404384 ], [ 4960270.895546993240714, 3892906.683838767465204 ], [ 4960244.396842493675649, 3892903.368232663255185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960093.800604800693691, 3900229.798332085367292 ], [ 4960097.871588252484798, 3900202.858580245636404 ], [ 4960105.646086765453219, 3900203.962209267076105 ], [ 4960108.84570599719882, 3900182.119022649712861 ], [ 4960137.927697082050145, 3900186.530647840350866 ], [ 4960130.369032611139119, 3900235.313160769641399 ], [ 4960093.800604800693691, 3900229.798332085367292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960034.356721299700439, 3907293.125490990001708 ], [ 4960016.777944855391979, 3907303.65994482068345 ], [ 4960001.266658273525536, 3907278.148345713503659 ], [ 4960018.845445286482573, 3907267.613881916273385 ], [ 4960034.356721299700439, 3907293.125490990001708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959791.721797913312912, 3892771.265026426874101 ], [ 4959772.934866172261536, 3892814.205275478307158 ], [ 4959728.885933679528534, 3892794.8433768004179 ], [ 4959747.67280846554786, 3892751.903097463771701 ], [ 4959791.721797913312912, 3892771.265026426874101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959261.591206316836178, 3898923.202210349030793 ], [ 4959207.416832889430225, 3898942.42453609360382 ], [ 4959193.072556791827083, 3898902.349992404691875 ], [ 4959204.887416535057127, 3898897.997114757075906 ], [ 4959200.584129911847413, 3898885.97475146735087 ], [ 4959215.280711431056261, 3898880.53355769906193 ], [ 4959219.01104480214417, 3898890.370334483217448 ], [ 4959246.386038052849472, 3898880.941641659010202 ], [ 4959261.591206316836178, 3898923.202210349030793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958619.653953799977899, 3906754.754743517376482 ], [ 4958589.131572473794222, 3906755.804707033094019 ], [ 4958588.023862298578024, 3906724.123716188129038 ], [ 4958559.229045405052602, 3906725.176114315632731 ], [ 4958558.68149215169251, 3906704.783983240835369 ], [ 4958564.728089521639049, 3906704.792379433754832 ], [ 4958563.612763542681932, 3906678.573354249820113 ], [ 4958627.24961010646075, 3906676.112877670675516 ], [ 4958628.646222417242825, 3906707.06600789912045 ], [ 4958617.70425504911691, 3906707.414920669514686 ], [ 4958619.653953799977899, 3906754.754743517376482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958090.183952591381967, 3901264.748615203425288 ], [ 4958098.283660070970654, 3901238.542330212891102 ], [ 4958089.07141684833914, 3901235.98078850377351 ], [ 4958094.27873124089092, 3901218.873798107262701 ], [ 4958106.944885984994471, 3901222.896599542349577 ], [ 4958112.729696847498417, 3901204.698013631161302 ], [ 4958143.531860128045082, 3901214.207669500727206 ], [ 4958134.564128082245588, 3901243.325792442075908 ], [ 4958139.745480225421488, 3901245.153555876109749 ], [ 4958129.91029061935842, 3901276.819403084460646 ], [ 4958090.183952591381967, 3901264.748615203425288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957900.812839010730386, 3906449.714764870237559 ], [ 4957911.477398638613522, 3906441.718419076874852 ], [ 4957924.985542289912701, 3906459.943430094514042 ], [ 4957882.327354629524052, 3906491.928817828651518 ], [ 4957866.232242818921804, 3906470.423118575941771 ], [ 4957867.961842014454305, 3906468.968949316069484 ], [ 4957832.322256500832736, 3906421.583303874358535 ], [ 4957861.721521283499897, 3906399.775452342815697 ], [ 4957875.517159774899483, 3906418.364961215294898 ], [ 4957876.669897559098899, 3906417.638269367162138 ], [ 4957900.812839010730386, 3906449.714764870237559 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957888.941751352511346, 3898048.476917509920895 ], [ 4957962.94950401969254, 3898059.501790772657841 ], [ 4957958.587841208092868, 3898089.718599365558475 ], [ 4957934.398666794411838, 3898086.044278053566813 ], [ 4957933.816652212291956, 3898090.413040233310312 ], [ 4957883.99816336389631, 3898083.062501151580364 ], [ 4957888.941751352511346, 3898048.476917509920895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957836.825791313312948, 3900575.103813308756799 ], [ 4957853.014725649729371, 3900530.337836047634482 ], [ 4957884.39127083029598, 3900541.668623356614262 ], [ 4957887.281190733425319, 3900534.389957822859287 ], [ 4957907.719210062175989, 3900541.700430910568684 ], [ 4957877.075667157769203, 3900626.501001339871436 ], [ 4957842.820720725692809, 3900614.07391193555668 ], [ 4957854.67329178377986, 3900581.318329181522131 ], [ 4957836.825791313312948, 3900575.103813308756799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957822.703210787847638, 3898042.924763596151024 ], [ 4957817.764660863205791, 3898073.869068999309093 ], [ 4957767.946604600176215, 3898066.154616058804095 ], [ 4957772.885098556987941, 3898035.210301636252552 ], [ 4957822.703210787847638, 3898042.924763596151024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957650.979493839666247, 3897874.463747728150338 ], [ 4957637.910779767669737, 3897953.8263198742643 ], [ 4957611.993770043365657, 3897949.785820527002215 ], [ 4957615.190147515386343, 3897929.034753522835672 ], [ 4957609.142560455016792, 3897928.298312997911125 ], [ 4957618.727274326607585, 3897869.322274544741958 ], [ 4957650.979493839666247, 3897874.463747728150338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957578.159857061691582, 3905719.193030123598874 ], [ 4957626.45751253888011, 3905776.062865037936717 ], [ 4957603.971836664713919, 3905795.331398940179497 ], [ 4957555.67466037068516, 3905738.097473053727299 ], [ 4957578.159857061691582, 3905719.193030123598874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957287.018687820993364, 3896720.410981324966997 ], [ 4957282.922670414671302, 3896767.742313206195831 ], [ 4957250.665638850070536, 3896765.150186308659613 ], [ 4957254.176740377210081, 3896724.372395414859056 ], [ 4957251.87241914216429, 3896724.369309055618942 ], [ 4957254.505749546922743, 3896693.785966613329947 ], [ 4957282.154707231558859, 3896696.00779116153717 ], [ 4957280.106699235737324, 3896719.673456883989275 ], [ 4957287.018687820993364, 3896720.410981324966997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957112.814962599426508, 3907033.810994390863925 ], [ 4957147.587321409024298, 3907084.107597566675395 ], [ 4957124.820014145225286, 3907099.734852947294712 ], [ 4957090.047633060254157, 3907049.438278737943619 ], [ 4957112.814962599426508, 3907033.810994390863925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957026.87990287784487, 3895883.294339060317725 ], [ 4957040.671356200240552, 3895909.530001839157194 ], [ 4957010.692957993596792, 3895925.51178997149691 ], [ 4956996.613434677012265, 3895899.275759280659258 ], [ 4957026.87990287784487, 3895883.294339060317725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956892.10943881701678, 3900851.301640026271343 ], [ 4956887.179227268323302, 3900877.148353196680546 ], [ 4956813.183134934864938, 3900862.849256584886461 ], [ 4956818.984012770466506, 3900831.905858389101923 ], [ 4956833.955955199897289, 3900834.838719247374684 ], [ 4956835.115653559565544, 3900829.014170115347952 ], [ 4956855.558557699434459, 3900832.682547891978174 ], [ 4956853.527631303295493, 3900843.967896359972656 ], [ 4956892.10943881701678, 3900851.301640026271343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956577.499800770543516, 3893270.074937106110156 ], [ 4956504.009084972552955, 3893293.646827174816281 ], [ 4956492.245665237307549, 3893257.218538809102029 ], [ 4956565.736470171250403, 3893233.646617074962705 ], [ 4956577.499800770543516, 3893270.074937106110156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956512.504784279502928, 3895601.506940303370357 ], [ 4956497.504585198126733, 3895617.873079275712371 ], [ 4956481.393239141441882, 3895602.922663496807218 ], [ 4956496.392959279939532, 3895586.920644192956388 ], [ 4956512.504784279502928, 3895601.506940303370357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956092.909550962038338, 3893748.2717448878102 ], [ 4956128.642767546698451, 3893738.850734357256442 ], [ 4956135.236768600530922, 3893763.255916188471019 ], [ 4956099.215510324575007, 3893772.676544662099332 ], [ 4956092.909550962038338, 3893748.2717448878102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956041.506912238895893, 3906082.383310991339386 ], [ 4956059.046716357581317, 3906101.340861293487251 ], [ 4956020.993916706182063, 3906135.884081154596061 ], [ 4956013.230390327982605, 3906127.499013036023825 ], [ 4956005.446607195772231, 3906134.771573103033006 ], [ 4955988.481724735349417, 3906116.543063551187515 ], [ 4955999.436611163429916, 3906106.361547794193029 ], [ 4955988.797909133136272, 3906094.695585967041552 ], [ 4956013.013583381660283, 3906072.514885374810547 ], [ 4956031.128350957296789, 3906092.201424021739513 ], [ 4956041.506912238895893, 3906082.383310991339386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955958.714602006599307, 3900850.080019932705909 ], [ 4955957.794185914099216, 3900893.774464970454574 ], [ 4955941.090918260626495, 3900893.388769355602562 ], [ 4955940.787882613949478, 3900905.040547365322709 ], [ 4955922.644644930958748, 3900904.653004572261125 ], [ 4955922.94767271541059, 3900893.001226362306625 ], [ 4955905.380417641252279, 3900892.614438318181783 ], [ 4955906.30074854567647, 3900848.91999151930213 ], [ 4955958.714602006599307, 3900850.080019932705909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955629.636783200316131, 3893563.790297222323716 ], [ 4955622.181775542907417, 3893536.471112511120737 ], [ 4955665.120231069624424, 3893524.509799343068153 ], [ 4955672.002780029550195, 3893548.915233285166323 ], [ 4955680.647803582251072, 3893546.741531698033214 ], [ 4955691.256167659536004, 3893586.081019675824791 ], [ 4955651.199933133088052, 3893596.953593356069177 ], [ 4955641.163936438970268, 3893560.52788277156651 ], [ 4955629.636783200316131, 3893563.790297222323716 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955177.143976643681526, 3895560.826596890576184 ], [ 4955186.032695788890123, 3895593.245308422017843 ], [ 4955153.183255311101675, 3895602.307086423039436 ], [ 4955144.294958710670471, 3895569.524257034994662 ], [ 4955177.143976643681526, 3895560.826596890576184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955042.622754774987698, 3900143.228272038977593 ], [ 4955079.752750740386546, 3900161.117356874980032 ], [ 4955051.453321736305952, 3900220.799090585671365 ], [ 4955014.035386648960412, 3900202.909682410769165 ], [ 4955042.622754774987698, 3900143.228272038977593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954950.303560595959425, 3905780.584230081178248 ], [ 4954901.584173367358744, 3905826.039592592511326 ], [ 4954859.600569377653301, 3905781.19889185205102 ], [ 4954908.319510505534708, 3905736.107585242018104 ], [ 4954950.303560595959425, 3905780.584230081178248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954889.400762897916138, 3905207.729408893734217 ], [ 4954921.323434324935079, 3905239.448806575965136 ], [ 4954865.391652499325573, 3905295.090859038755298 ], [ 4954833.46898140385747, 3905263.371526726987213 ], [ 4954889.400762897916138, 3905207.729408893734217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954379.639385470189154, 3900375.446150841657072 ], [ 4954428.295827001333237, 3900388.250726528000087 ], [ 4954414.118183439597487, 3900441.396231059450656 ], [ 4954400.874210719019175, 3900438.102720635477453 ], [ 4954394.509912772104144, 3900461.035071572288871 ], [ 4954368.022427369840443, 3900454.083946909289807 ], [ 4954379.886092380620539, 3900408.946428665425628 ], [ 4954371.248764611780643, 3900406.751002218574286 ], [ 4954379.639385470189154, 3900375.446150841657072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954177.786958793178201, 3893291.425240189302713 ], [ 4954123.319935239851475, 3893308.108499405439943 ], [ 4954107.537128700874746, 3893257.839456549379975 ], [ 4954162.004689970053732, 3893240.792037789244205 ], [ 4954177.786958793178201, 3893291.425240189302713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953848.787668474018574, 3894491.556733717210591 ], [ 4953850.188688753172755, 3894523.9659019629471 ], [ 4953816.483908565714955, 3894525.017436284571886 ], [ 4953815.370470684953034, 3894492.972747065592557 ], [ 4953848.787668474018574, 3894491.556733717210591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953480.882338113151491, 3890926.295300034340471 ], [ 4953502.746224656701088, 3890952.902870847843587 ], [ 4953473.619119266979396, 3890976.900400886777788 ], [ 4953451.755659622140229, 3890949.928725798148662 ], [ 4953480.882338113151491, 3890926.295300034340471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953373.583266808651388, 3893924.036147874779999 ], [ 4953388.021163923665881, 3893895.287234153598547 ], [ 4953462.299714013934135, 3893931.78900800133124 ], [ 4953444.396198301576078, 3893967.816306883469224 ], [ 4953399.195383844897151, 3893945.91448916727677 ], [ 4953402.949438544921577, 3893938.272275306750089 ], [ 4953373.583266808651388, 3893924.036147874779999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953033.415511135943234, 3891694.073056149296463 ], [ 4953057.064209374599159, 3891672.981584791559726 ], [ 4953074.327022363431752, 3891692.300810826476663 ], [ 4953084.132999756373465, 3891683.209213557653129 ], [ 4953097.943403854966164, 3891698.518956378102303 ], [ 4953084.676419967785478, 3891710.883604677394032 ], [ 4953096.472741428762674, 3891724.006192636210471 ], [ 4953076.573152115568519, 3891741.824913410935551 ], [ 4953033.415511135943234, 3891694.073056149296463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952869.695761603303254, 3893478.473510645329952 ], [ 4952897.059451378881931, 3893481.418737999629229 ], [ 4952894.146985313855112, 3893508.360828775912523 ], [ 4952921.222567426040769, 3893511.305741688236594 ], [ 4952916.561046726070344, 3893555.723945174366236 ], [ 4952873.643144460394979, 3893551.303881916683167 ], [ 4952876.847515233792365, 3893521.084973901044577 ], [ 4952865.037746198475361, 3893519.97869710996747 ], [ 4952869.695761603303254, 3893478.473510645329952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952524.962019134312868, 3893894.269327531103045 ], [ 4952609.074776649475098, 3893897.644471404142678 ], [ 4952607.888940590433776, 3893926.409257153514773 ], [ 4952583.116182033903897, 3893925.287986191920936 ], [ 4952582.820048321038485, 3893932.206086803693324 ], [ 4952523.480154473334551, 3893929.95221819030121 ], [ 4952524.962019134312868, 3893894.269327531103045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952425.595860917121172, 3900087.266413196455687 ], [ 4952448.648870806209743, 3900076.369261580053717 ], [ 4952467.610204400494695, 3900116.809714454226196 ], [ 4952444.269217765890062, 3900127.706515790894628 ], [ 4952425.595860917121172, 3900087.266413196455687 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952167.825900915078819, 3890074.150294108316302 ], [ 4952180.741485394537449, 3890117.132242113817483 ], [ 4952178.723870980553329, 3890117.858176948036999 ], [ 4952185.325285516679287, 3890139.713446383364499 ], [ 4952159.09841999784112, 3890147.329969578888267 ], [ 4952139.293249125592411, 3890082.492440845817327 ], [ 4952167.825900915078819, 3890074.150294108316302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952088.345625832676888, 3891296.436812055297196 ], [ 4952098.404417030513287, 3891317.931913001462817 ], [ 4952112.817263254895806, 3891311.03001889353618 ], [ 4952122.876029412262142, 3891332.525129184126854 ], [ 4952113.363781680352986, 3891336.883745966013521 ], [ 4952126.584084673784673, 3891364.936794539913535 ], [ 4952095.453253026120365, 3891379.102059545461088 ], [ 4952062.403005996719003, 3891308.423297320026904 ], [ 4952088.345625832676888, 3891296.436812055297196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951886.14293044898659, 3895556.510351375676692 ], [ 4951821.311616685241461, 3895573.55060904007405 ], [ 4951821.598012718372047, 3895575.007451003417373 ], [ 4951787.885532186366618, 3895584.072358509991318 ], [ 4951782.148885858245194, 3895562.582227405160666 ], [ 4951758.233081133104861, 3895569.109397487249225 ], [ 4951753.931300155818462, 3895552.3545788731426 ], [ 4951771.219424131326377, 3895548.004653489217162 ], [ 4951769.498548899777234, 3895541.448376630432904 ], [ 4951874.67018861323595, 3895513.165920838713646 ], [ 4951886.14293044898659, 3895556.510351375676692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951539.908354383893311, 3894273.655932852067053 ], [ 4951516.861401261761785, 3894275.086489965673536 ], [ 4951514.874042061157525, 3894249.231109163723886 ], [ 4951537.921427488327026, 3894247.436422057449818 ], [ 4951539.908354383893311, 3894273.655932852067053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951485.720873623155057, 3890714.968046883121133 ], [ 4951460.654141235165298, 3890716.396381275728345 ], [ 4951458.969290473498404, 3890677.432789729442447 ], [ 4951484.035649627447128, 3890676.368581360671669 ], [ 4951485.720873623155057, 3890714.968046883121133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950478.040869846940041, 3892732.944726705551147 ], [ 4950514.047271893359721, 3892736.625180535484105 ], [ 4950510.845862214453518, 3892766.480228269007057 ], [ 4950475.127582331188023, 3892762.80009183101356 ], [ 4950478.040869846940041, 3892732.944726705551147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950268.159859548322856, 3894745.984672686085105 ], [ 4950215.439923520199955, 3894750.297362176235765 ], [ 4950212.024771393276751, 3894711.696023391094059 ], [ 4950265.032844324596226, 3894707.383638208266348 ], [ 4950268.159859548322856, 3894745.984672686085105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949921.944116435013711, 3889851.364170031156391 ], [ 4949971.229080157354474, 3889835.031019610818475 ], [ 4949977.834303669631481, 3889855.06510640354827 ], [ 4950009.826226548291743, 3889844.539600527379662 ], [ 4950018.728536088950932, 3889871.858711220789701 ], [ 4949937.452144275419414, 3889898.353201700374484 ], [ 4949921.944116435013711, 3889851.364170031156391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949877.227818745188415, 3893153.230766866356134 ], [ 4949885.915550678037107, 3893110.636983122676611 ], [ 4949906.364881543442607, 3893114.664186472073197 ], [ 4949908.391913745552301, 3893104.834877432789654 ], [ 4949952.746351453475654, 3893113.985408742446452 ], [ 4949950.429670047946274, 3893125.270919338334352 ], [ 4949965.406652075238526, 3893128.199940564110875 ], [ 4949961.93181898444891, 3893144.94614101247862 ], [ 4949996.493842467665672, 3893151.901517202612013 ], [ 4949988.674464181996882, 3893190.490780840627849 ], [ 4949954.688644519075751, 3893183.536029719281942 ], [ 4949952.951234312728047, 3893191.909130830783397 ], [ 4949920.6934874067083, 3893185.320396272465587 ], [ 4949925.326428545638919, 3893163.113497542683035 ], [ 4949877.227818745188415, 3893153.230766866356134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949350.236806050874293, 3893519.716347326058894 ], [ 4949354.869980172254145, 3893496.781089581083506 ], [ 4949372.15065554715693, 3893500.440446700900793 ], [ 4949367.229773685336113, 3893523.01127203553915 ], [ 4949350.236806050874293, 3893519.716347326058894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947369.843323239125311, 3891319.84067363711074 ], [ 4947319.712847120128572, 3891321.248530399054289 ], [ 4947318.593995603732765, 3891286.655276706442237 ], [ 4947368.724536156281829, 3891285.24741789046675 ], [ 4947369.843323239125311, 3891319.84067363711074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947137.733252399601042, 3889124.289292486850172 ], [ 4947167.129727544263005, 3889115.942675950471312 ], [ 4947175.743885921314359, 3889146.537701758090407 ], [ 4947146.347792220301926, 3889154.520181721542031 ], [ 4947137.733252399601042, 3889124.289292486850172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946134.816888205707073, 3892198.40286514442414 ], [ 4946140.034846461378038, 3892163.451382135506719 ], [ 4946163.654772436246276, 3892167.114542426075786 ], [ 4946158.436784177087247, 3892202.066020919010043 ], [ 4946134.816888205707073, 3892198.40286514442414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946118.316113856621087, 3891661.662615408655256 ], [ 4946123.831344143487513, 3891616.879955138079822 ], [ 4946151.485417740419507, 3891620.182707593310624 ], [ 4946150.326293508522213, 3891627.464196936227381 ], [ 4946187.486128288321197, 3891632.232304613571614 ], [ 4946181.101447448134422, 3891682.476068425923586 ], [ 4946136.739999300800264, 3891676.973045847844332 ], [ 4946138.192268232814968, 3891664.229904755484313 ], [ 4946118.316113856621087, 3891661.662615408655256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944432.083053373731673, 3892013.360098528675735 ], [ 4944468.378070973791182, 3892018.489213903900236 ], [ 4944464.609312211163342, 3892045.795575310941786 ], [ 4944474.691214102320373, 3892047.260795540641993 ], [ 4944470.633733934722841, 3892075.295163577888161 ], [ 4944418.783814762718976, 3892067.967866309918463 ], [ 4944422.840928099118173, 3892040.297618507407606 ], [ 4944416.503567983396351, 3892039.563900519162416 ], [ 4944418.822725423611701, 3892022.816001289989799 ], [ 4944430.34477705322206, 3892024.646574202924967 ], [ 4944432.083053373731673, 3892013.360098528675735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944040.301183362491429, 3892327.631929150782526 ], [ 4944079.478269027546048, 3892330.942322677001357 ], [ 4944077.440325258299708, 3892356.065443080849946 ], [ 4944068.510247485712171, 3892355.329605606384575 ], [ 4944065.01735888235271, 3892397.565521743148565 ], [ 4944034.7704345472157, 3892394.990972480271012 ], [ 4944040.301183362491429, 3892327.631929150782526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943823.41099139675498, 3892623.48525217641145 ], [ 4943828.088530558161438, 3892542.288564389571548 ], [ 4943857.760057467967272, 3892543.770012660417706 ], [ 4943856.298199881799519, 3892569.257765521295369 ], [ 4943863.211925909854472, 3892569.627708246465772 ], [ 4943860.284224765375257, 3892625.336879550479352 ], [ 4943823.41099139675498, 3892623.48525217641145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943571.352453335188329, 3889134.928948929067701 ], [ 4943545.419104625470936, 3889137.820453292690217 ], [ 4943543.130737656727433, 3889117.791538413614035 ], [ 4943533.333695769309998, 3889118.87580011645332 ], [ 4943529.329258986748755, 3889083.552106040995568 ], [ 4943565.347837056964636, 3889079.576571673620492 ], [ 4943571.352453335188329, 3889134.928948929067701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943543.880965865217149, 3893424.698633826803416 ], [ 4943549.421754566021264, 3893343.502576289698482 ], [ 4943575.923269798979163, 3893345.345214137807488 ], [ 4943574.172133778221905, 3893372.653396187350154 ], [ 4943581.085354536771774, 3893373.387394777033478 ], [ 4943577.583986330777407, 3893426.911374934017658 ], [ 4943543.880965865217149, 3893424.698633826803416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943384.439695161767304, 3890089.881361929699779 ], [ 4943337.475467900745571, 3890092.39163466822356 ], [ 4943334.638919984921813, 3890038.134264712687582 ], [ 4943372.383064020425081, 3890036.344654816202819 ], [ 4943374.083570313639939, 3890070.57406558142975 ], [ 4943383.303736347705126, 3890069.853398441337049 ], [ 4943384.439695161767304, 3890089.881361929699779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942889.385198031552136, 3892335.784135100897402 ], [ 4942935.19223462138325, 3892334.364530913066119 ], [ 4942935.759303919039667, 3892345.652964379172772 ], [ 4942957.942596740089357, 3892344.942610492929816 ], [ 4942959.350100485607982, 3892385.726112772710621 ], [ 4942917.000189662910998, 3892387.148461720440537 ], [ 4942916.995200855657458, 3892393.338638296350837 ], [ 4942891.35491038672626, 3892394.046242966782302 ], [ 4942889.385198031552136, 3892335.784135100897402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942632.495247022248805, 3891505.730498063843697 ], [ 4942637.728771345689893, 3891445.653528647962958 ], [ 4942670.281669879332185, 3891448.228340916801244 ], [ 4942665.335879306308925, 3891508.669661401771009 ], [ 4942632.495247022248805, 3891505.730498063843697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4941939.968457018956542, 3890309.028334939386696 ], [ 4941945.17431668844074, 3890283.179266366176307 ], [ 4941947.190800620242953, 3890283.544946375768632 ], [ 4941954.42156985308975, 3890247.137732324190438 ], [ 4941993.310742223635316, 3890254.450263551902026 ], [ 4941980.87402474693954, 3890316.706528060138226 ], [ 4941939.968457018956542, 3890309.028334939386696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993678.550844999030232, 3911750.92091987747699 ], [ 4993631.28372772410512, 3911771.185018107295036 ], [ 4993591.804506855085492, 3911678.95285330992192 ], [ 4993639.3586550289765, 3911659.053593544755131 ], [ 4993678.550844999030232, 3911750.92091987747699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992482.665687726810575, 3912846.679249937646091 ], [ 4992512.641567876562476, 3912832.557527096942067 ], [ 4992547.278327740728855, 3912906.204484238754958 ], [ 4992517.302511245943606, 3912920.326169085223228 ], [ 4992482.665687726810575, 3912846.679249937646091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991298.315852200612426, 3902486.174159142188728 ], [ 4991298.467159936204553, 3902538.609498050995171 ], [ 4991245.766264609061182, 3902538.836316475179046 ], [ 4991245.780490427277982, 3902533.374380085617304 ], [ 4991203.734768033027649, 3902533.629034877289087 ], [ 4991203.551049701869488, 3902493.574085488915443 ], [ 4991226.878242854960263, 3902493.270683862268925 ], [ 4991226.628189578652382, 3902478.70477073546499 ], [ 4991256.865931333974004, 3902478.783521375153214 ], [ 4991256.846012075431645, 3902486.430232057347894 ], [ 4991298.315852200612426, 3902486.174159142188728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990360.793881551362574, 3908924.517865126952529 ], [ 4990370.073492200113833, 3908898.688296117354184 ], [ 4990353.677623754367232, 3908892.819994520395994 ], [ 4990362.08695175126195, 3908869.537115555256605 ], [ 4990412.137365044094622, 3908887.508419442456216 ], [ 4990394.160450978204608, 3908936.620099656283855 ], [ 4990360.793881551362574, 3908924.517865126952529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990113.577187313698232, 3909222.836285811848938 ], [ 4990119.082873192615807, 3909209.01334313582629 ], [ 4990139.791592032648623, 3909217.077359076589346 ], [ 4990120.377731576561928, 3909265.457280315458775 ], [ 4990072.058063817210495, 3909246.398548614699394 ], [ 4990085.966176884248853, 3909211.841541272588074 ], [ 4990113.577187313698232, 3909222.836285811848938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988725.267174665816128, 3897186.948304594494402 ], [ 4988722.432523354887962, 3897168.734673698898405 ], [ 4988739.144975814037025, 3897166.227717396337539 ], [ 4988742.264908453449607, 3897185.53445729939267 ], [ 4988734.484300992451608, 3897186.971443465910852 ], [ 4988736.754756862297654, 3897200.44996527209878 ], [ 4988717.160147739574313, 3897203.677949457429349 ], [ 4988714.606216706335545, 3897188.378066278528422 ], [ 4988725.267174665816128, 3897186.948304594494402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988696.13351165689528, 3908563.437359982170165 ], [ 4988718.569718203507364, 3908571.868744250386953 ], [ 4988715.380729492753744, 3908580.599924441426992 ], [ 4988736.091266764327884, 3908588.298724814783782 ], [ 4988722.179086545482278, 3908625.04120081057772 ], [ 4988678.745400875806808, 3908608.546187675558031 ], [ 4988696.13351165689528, 3908563.437359982170165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988682.552047765813768, 3913171.146577935665846 ], [ 4988690.84982368722558, 3913191.19477075478062 ], [ 4988653.964896869845688, 3913206.39582043653354 ], [ 4988640.517521604895592, 3913173.590034771710634 ], [ 4988689.50557364244014, 3913153.321473843418062 ], [ 4988694.655130930244923, 3913166.079087119083852 ], [ 4988682.552047765813768, 3913171.146577935665846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988643.731297875754535, 3912925.258819414768368 ], [ 4988614.641253443434834, 3912931.376132153440267 ], [ 4988612.081499180756509, 3912918.989163937512785 ], [ 4988641.171556422486901, 3912912.871848476585001 ], [ 4988643.731297875754535, 3912925.258819414768368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988787.725121258758008, 3908435.12855063797906 ], [ 4988819.655261838808656, 3908446.496946711558849 ], [ 4988823.13313056435436, 3908437.402373212389648 ], [ 4988835.502468942664564, 3908441.803077806718647 ], [ 4988818.976872891187668, 3908487.278114523272961 ], [ 4988797.115539849735796, 3908479.212224965449423 ], [ 4988794.506919861771166, 3908486.124190374277532 ], [ 4988772.06975017208606, 3908478.056873636320233 ], [ 4988787.725121258758008, 3908435.12855063797906 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987654.40700835455209, 3907418.5584412436001 ], [ 4987598.523374660871923, 3907428.980234502349049 ], [ 4987593.693375147879124, 3907402.750766555778682 ], [ 4987587.356312152929604, 3907403.827518086414784 ], [ 4987580.816719014197588, 3907370.311181917786598 ], [ 4987631.228070919401944, 3907360.604097213596106 ], [ 4987637.195350629277527, 3907392.662501486483961 ], [ 4987649.293634722009301, 3907390.507600429467857 ], [ 4987654.40700835455209, 3907418.5584412436001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987977.867964392527938, 3913398.427159233950078 ], [ 4987928.042621373198926, 3913408.499191198032349 ], [ 4987919.794951579533517, 3913368.059859026223421 ], [ 4987969.332504484802485, 3913357.987097076606005 ], [ 4987977.867964392527938, 3913398.427159233950078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987900.023389086127281, 3905323.221043776255101 ], [ 4987950.973014187067747, 3905330.265971733722836 ], [ 4987943.057437008246779, 3905387.050928782206029 ], [ 4987958.314125691540539, 3905388.909459208603948 ], [ 4987954.499403174035251, 3905417.666424363385886 ], [ 4987919.669560524635017, 3905412.846270425245166 ], [ 4987924.069175926037133, 3905380.449430932290852 ], [ 4987892.980790394358337, 3905376.366859542671591 ], [ 4987900.023389086127281, 3905323.221043776255101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987839.364629045128822, 3907839.589304223656654 ], [ 4987764.471804480068386, 3907852.876710832118988 ], [ 4987758.791801428422332, 3907821.18311227671802 ], [ 4987833.684711404144764, 3907807.895690102595836 ], [ 4987839.364629045128822, 3907839.589304223656654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987757.170131989754736, 3907894.733889434020966 ], [ 4987760.580109980888665, 3907912.948962099384516 ], [ 4987740.704601084813476, 3907916.541097046341747 ], [ 4987737.582530511543155, 3907898.326739316340536 ], [ 4987757.170131989754736, 3907894.733889434020966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986613.465062991715968, 3896204.404832180123776 ], [ 4986610.262030597776175, 3896218.598115033004433 ], [ 4986616.019400290213525, 3896220.068634702358395 ], [ 4986610.777916102670133, 3896243.360211689956486 ], [ 4986588.034727630205452, 3896238.207100755535066 ], [ 4986587.744912139140069, 3896238.934656381141394 ], [ 4986563.563257968984544, 3896233.049809755757451 ], [ 4986572.585576072335243, 3896194.838080174289644 ], [ 4986613.465062991715968, 3896204.404832180123776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986460.109098504297435, 3901356.480089867021888 ], [ 4986424.963658802211285, 3901360.764411175157875 ], [ 4986418.189625660888851, 3901303.943527445662767 ], [ 4986421.070419449359179, 3901303.586381793953478 ], [ 4986417.682511988095939, 3901275.540069926530123 ], [ 4986449.659272771328688, 3901271.612182907760143 ], [ 4986460.109098504297435, 3901356.480089867021888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986228.051921126432717, 3894061.659027127083391 ], [ 4986149.938716262578964, 3894080.769202280323952 ], [ 4986136.245018167421222, 3894025.388455100357533 ], [ 4986214.646443200297654, 3894006.278936926741153 ], [ 4986228.051921126432717, 3894061.659027127083391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986122.117372171953321, 3909659.693582540377975 ], [ 4986119.082329299300909, 3909605.066308015491813 ], [ 4986176.094870254397392, 3909601.926823342218995 ], [ 4986178.854215645231307, 3909651.455576446838677 ], [ 4986150.635457654483616, 3909653.208061658311635 ], [ 4986150.911924548447132, 3909657.942458265461028 ], [ 4986122.117372171953321, 3909659.693582540377975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986028.475784722715616, 3904315.460853396449238 ], [ 4986070.22454234957695, 3904317.746314489282668 ], [ 4986067.2193598812446, 3904369.80991169065237 ], [ 4986074.993353671394289, 3904370.192795549053699 ], [ 4986073.492076667957008, 3904395.678399938624352 ], [ 4986047.291415084153414, 3904394.158683112822473 ], [ 4986046.983262870460749, 3904402.532971495762467 ], [ 4986002.93097188975662, 3904400.241995342075825 ], [ 4986004.736811215989292, 3904367.838616922963411 ], [ 4986020.859840241260827, 3904368.969868530053645 ], [ 4986022.96419388987124, 3904332.197629966773093 ], [ 4986027.571531999856234, 3904332.208735699299723 ], [ 4986028.475784722715616, 3904315.460853396449238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986847.05857118871063, 3905767.420069801155478 ], [ 4986853.766608798876405, 3905732.479761732276529 ], [ 4986867.005791462957859, 3905735.061012031044811 ], [ 4986871.963078984059393, 3905709.583869111724198 ], [ 4986921.46717731282115, 3905718.808110571466386 ], [ 4986914.757268679328263, 3905754.476661359425634 ], [ 4986932.889691771939397, 3905757.798166375141591 ], [ 4986926.473060272634029, 3905791.282639131415635 ], [ 4986908.916545076295733, 3905787.96254552109167 ], [ 4986910.665557513013482, 3905779.227647926192731 ], [ 4986847.05857118871063, 3905767.420069801155478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986741.68673768825829, 3906115.273398854304105 ], [ 4986743.21962292958051, 3906077.043253800831735 ], [ 4986801.666988073848188, 3906079.006433237344027 ], [ 4986801.043140838854015, 3906098.668050261680037 ], [ 4986809.968383227474988, 3906099.053956837859005 ], [ 4986808.748218346387148, 3906127.08915986912325 ], [ 4986779.956942454911768, 3906125.926534796133637 ], [ 4986780.267081977799535, 3906116.82398592075333 ], [ 4986741.68673768825829, 3906115.273398854304105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986693.263465786352754, 3909681.834282016381621 ], [ 4986698.029171349480748, 3909734.645177508704364 ], [ 4986616.822557874023914, 3909742.094276798889041 ], [ 4986612.056694116443396, 3909689.28339546918869 ], [ 4986693.263465786352754, 3909681.834282016381621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985796.79411734547466, 3911454.086608424782753 ], [ 4985757.614143901504576, 3911465.644772198051214 ], [ 4985749.047614629380405, 3911436.493534047622234 ], [ 4985748.471849621273577, 3911436.49215175723657 ], [ 4985743.045788246206939, 3911418.272456910461187 ], [ 4985713.949539694935083, 3911426.577692455612123 ], [ 4985720.231401984579861, 3911448.076635538134724 ], [ 4985721.383805341087282, 3911447.715267641004175 ], [ 4985729.661604952998459, 3911477.22993752034381 ], [ 4985688.753529268316925, 3911489.148187582846731 ], [ 4985671.051537956111133, 3911427.931326752062887 ], [ 4985693.233346512541175, 3911421.794258282054216 ], [ 4985683.81181750446558, 3911388.999657418113202 ], [ 4985744.30920896679163, 3911371.666419150307775 ], [ 4985752.587881496176124, 3911400.816963417921215 ], [ 4985779.091473940759897, 3911393.233809028286487 ], [ 4985796.79411734547466, 3911454.086608424782753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985719.190185700543225, 3910202.374341336544603 ], [ 4985715.505206083878875, 3910178.332715237513185 ], [ 4985763.889219092205167, 3910171.166191530879587 ], [ 4985770.405019452795386, 3910215.241942517925054 ], [ 4985732.965483290143311, 3910220.614054557401687 ], [ 4985730.133719040080905, 3910200.944071060046554 ], [ 4985719.190185700543225, 3910202.374341336544603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985688.370117795653641, 3910688.782288616057485 ], [ 4985683.762996227480471, 3910689.135372155811638 ], [ 4985685.442306695505977, 3910709.166725971270353 ], [ 4985657.222946823574603, 3910711.647992844693363 ], [ 4985652.176216401159763, 3910655.195248672738671 ], [ 4985685.002762828953564, 3910652.360892490018159 ], [ 4985688.370117795653641, 3910688.782288616057485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985638.460611662827432, 3910371.866774804424495 ], [ 4985642.382908303290606, 3910417.028683864511549 ], [ 4985608.980292280204594, 3910419.861712398938835 ], [ 4985605.058812159113586, 3910374.335677095223218 ], [ 4985638.460611662827432, 3910371.866774804424495 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986486.300176745280623, 3903854.485182279720902 ], [ 4986528.334039148874581, 3903858.228571705985814 ], [ 4986525.666300491429865, 3903889.537417775951326 ], [ 4986483.344523299485445, 3903885.793333427514881 ], [ 4986486.300176745280623, 3903854.485182279720902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986296.053100122138858, 3909642.271601683460176 ], [ 4986346.746743111871183, 3909632.926921148318797 ], [ 4986356.406577912159264, 3909686.11374416667968 ], [ 4986305.713031779974699, 3909695.45840678922832 ], [ 4986296.053100122138858, 3909642.271601683460176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985546.549553397111595, 3908958.446618648711592 ], [ 4985547.483863306231797, 3908928.954097494017333 ], [ 4985594.697512541897595, 3908930.523655930534005 ], [ 4985593.475241811946034, 3908960.015485985670239 ], [ 4985546.549553397111595, 3908958.446618648711592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985463.547128553502262, 3910439.176910876296461 ], [ 4985498.727569371461868, 3910415.228231083601713 ], [ 4985521.391882751137018, 3910448.418555521871895 ], [ 4985501.207146083936095, 3910461.843202715739608 ], [ 4985496.903554706834257, 3910455.642647626809776 ], [ 4985481.620849489234388, 3910465.80183406220749 ], [ 4985463.547128553502262, 3910439.176910876296461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985406.47316446620971, 3906369.129629068542272 ], [ 4985429.475059908814728, 3906383.021582634188235 ], [ 4985420.224564395844936, 3906398.293043257668614 ], [ 4985455.589419146999717, 3906419.861323362216353 ], [ 4985436.800498095341027, 3906450.403542865999043 ], [ 4985396.548577203415334, 3906425.546429928857833 ], [ 4985395.101942243985832, 3906428.456034375354648 ], [ 4985376.700966232456267, 3906417.124015072360635 ], [ 4985406.47316446620971, 3906369.129629068542272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985774.373206340707839, 3909521.942203883081675 ], [ 4985774.661109361797571, 3909521.942895302549005 ], [ 4985774.024964040145278, 3909547.066540649160743 ], [ 4985722.206837583333254, 3909545.121481516864151 ], [ 4985724.062703316099942, 3909491.598393058404326 ], [ 4985775.306000738404691, 3909493.177942012436688 ], [ 4985774.373206340707839, 3909521.942203883081675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985677.481978469528258, 3909346.561753973830491 ], [ 4985597.125988369807601, 3909359.113835914060473 ], [ 4985571.606836813502014, 3909195.192935238126665 ], [ 4985651.674525221809745, 3909183.004218936432153 ], [ 4985677.481978469528258, 3909346.561753973830491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985055.016553701832891, 3915775.311755157541484 ], [ 4985023.01747936848551, 3915795.991423208732158 ], [ 4984994.339322761632502, 3915751.498961612116545 ], [ 4985004.429148690775037, 3915744.968489412683994 ], [ 4984992.95803605671972, 3915727.098683009855449 ], [ 4985014.86732360906899, 3915712.949444386176765 ], [ 4985055.016553701832891, 3915775.311755157541484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984676.51906665880233, 3903575.961676965467632 ], [ 4984700.633474876172841, 3903607.698049692902714 ], [ 4984639.4763756506145, 3903653.434301835019141 ], [ 4984612.204610458575189, 3903617.320959575474262 ], [ 4984650.860818900167942, 3903588.281604502815753 ], [ 4984654.306108777411282, 3903592.659311891067773 ], [ 4984676.51906665880233, 3903575.961676965467632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984451.69398760702461, 3909051.615812488365918 ], [ 4984406.752940131351352, 3909063.162384569179267 ], [ 4984398.765119036659598, 3909031.828189433552325 ], [ 4984443.706215393729508, 3909020.281604212708771 ], [ 4984451.69398760702461, 3909051.615812488365918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984444.45716723240912, 3909313.046156269498169 ], [ 4984432.024151249788702, 3909335.593152926303446 ], [ 4984409.59666330460459, 3909323.159904918633401 ], [ 4984422.02966614626348, 3909300.612898058723658 ], [ 4984444.45716723240912, 3909313.046156269498169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984332.739103801548481, 3906128.809137013740838 ], [ 4984353.48271081969142, 3906123.759993231389672 ], [ 4984360.044597960077226, 3906149.628785448614508 ], [ 4984341.317438315600157, 3906154.318526484072208 ], [ 4984347.877619471400976, 3906180.915576489176601 ], [ 4984313.592389685101807, 3906189.574261725880206 ], [ 4984290.766587186604738, 3906100.308328423183411 ], [ 4984323.323429926298559, 3906092.009689377620816 ], [ 4984332.739103801548481, 3906128.809137013740838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984340.124685756862164, 3900774.636343685444444 ], [ 4984339.194879462011158, 3900802.672244255430996 ], [ 4984305.789853760972619, 3900801.501457437872887 ], [ 4984307.00847632996738, 3900773.102102478500456 ], [ 4984340.124685756862164, 3900774.636343685444444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985160.307112948969007, 3906360.167970187030733 ], [ 4985161.724279375746846, 3906369.638778344728053 ], [ 4985187.071381933987141, 3906366.057756010908633 ], [ 4985191.325448366813362, 3906393.377794738393277 ], [ 4985124.787870001979172, 3906403.415246803313494 ], [ 4985119.117422497831285, 3906366.260282262228429 ], [ 4985160.307112948969007, 3906360.167970187030733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985032.102120779454708, 3900324.019014028366655 ], [ 4985033.031799975782633, 3900296.347274341154844 ], [ 4985051.175053932704031, 3900296.754468251951039 ], [ 4985051.495902519673109, 3900282.918257060926408 ], [ 4985081.44551844894886, 3900284.081762239802629 ], [ 4985080.836652589961886, 3900297.917289078235626 ], [ 4985105.027078732848167, 3900298.70301258796826 ], [ 4985103.472012038342655, 3900347.128724118694663 ], [ 4985072.946464579552412, 3900345.963826552499086 ], [ 4985073.570889784023166, 3900325.57398037193343 ], [ 4985032.102120779454708, 3900324.019014028366655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984884.955202627927065, 3915510.910961008630693 ], [ 4984856.426391765475273, 3915524.680494299624115 ], [ 4984845.540246849879622, 3915502.80666189128533 ], [ 4984836.606896297074854, 3915507.155124777927995 ], [ 4984824.861519790254533, 3915483.458595719654113 ], [ 4984833.794876298867166, 3915479.110128985717893 ], [ 4984820.617181769572198, 3915452.497137716040015 ], [ 4984849.14691280387342, 3915438.363434794358909 ], [ 4984884.955202627927065, 3915510.910961008630693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984200.663296316750348, 3916411.25941577879712 ], [ 4984207.841103199869394, 3916418.923062541522086 ], [ 4984224.284071870148182, 3916403.303825465030968 ], [ 4984242.94600772485137, 3916423.374980401713401 ], [ 4984196.503128665499389, 3916466.962241223547608 ], [ 4984170.66252773348242, 3916439.591611590702087 ], [ 4984200.663296316750348, 3916411.25941577879712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984214.830788986757398, 3894632.921274638734758 ], [ 4984249.483630648814142, 3894596.589500645641237 ], [ 4984241.722995509393513, 3894589.288722475524992 ], [ 4984253.562595227733254, 3894576.936061344575137 ], [ 4984297.826967402361333, 3894618.550614098552614 ], [ 4984251.621727275662124, 3894667.599786423146725 ], [ 4984214.830788986757398, 3894632.921274638734758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984135.416354800574481, 3909362.935518609825522 ], [ 4984160.794601127505302, 3909344.788287228439003 ], [ 4984194.371989934705198, 3909390.747669477481395 ], [ 4984169.281668351963162, 3909408.895543881691992 ], [ 4984135.416354800574481, 3909362.935518609825522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984080.231463219970465, 3909323.115931659471244 ], [ 4984023.481819780543447, 3909336.820330609567463 ], [ 4984016.922102948650718, 3909310.223308027721941 ], [ 4984029.597593163140118, 3909306.975727218668908 ], [ 4984028.742385402321815, 3909303.332400578539819 ], [ 4984072.817448412068188, 3909292.511436587199569 ], [ 4984080.231463219970465, 3909323.115931659471244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984019.842519801110029, 3916807.742869226261973 ], [ 4983978.640182489529252, 3916826.217477414291352 ], [ 4983947.716602322645485, 3916756.959712628740817 ], [ 4983988.631198574788868, 3916738.484385538846254 ], [ 4984019.842519801110029, 3916807.742869226261973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983948.26396566350013, 3901099.980686681345105 ], [ 4983970.496381620876491, 3901075.635783968959004 ], [ 4983998.948230119422078, 3901101.191367453895509 ], [ 4983976.715809360146523, 3901125.536247009411454 ], [ 4983948.26396566350013, 3901099.980686681345105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984501.013196642510593, 3916350.790403527673334 ], [ 4984515.641917420551181, 3916372.308788499329239 ], [ 4984448.183552122674882, 3916417.30266176816076 ], [ 4984428.965805277228355, 3916388.854963775258511 ], [ 4984478.839155600406229, 3916355.471945829689503 ], [ 4984483.428145283833146, 3916362.401303341146559 ], [ 4984501.013196642510593, 3916350.790403527673334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983735.935271687805653, 3905343.802578238770366 ], [ 4983738.210911032743752, 3905355.824223977513611 ], [ 4983771.916037420742214, 3905349.348248946014792 ], [ 4983780.451095033437014, 3905393.79220601869747 ], [ 4983665.508546990342438, 3905415.737029349897057 ], [ 4983654.409684538841248, 3905359.270800503902137 ], [ 4983735.935271687805653, 3905343.802578238770366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983534.440157606266439, 3909412.878351733088493 ], [ 4983540.696382318623364, 3909446.393077746033669 ], [ 4983499.79632156714797, 3909453.945074931718409 ], [ 4983493.252143556252122, 3909420.429691302124411 ], [ 4983534.440157606266439, 3909412.878351733088493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984337.741644374094903, 3915890.868810297455639 ], [ 4984276.337145674973726, 3915931.507710277102888 ], [ 4984261.134885172359645, 3915908.895714179612696 ], [ 4984280.16101847589016, 3915896.559784495271742 ], [ 4984275.858876683749259, 3915889.995271465741098 ], [ 4984318.236421347595751, 3915862.056392672006041 ], [ 4984337.741644374094903, 3915890.868810297455639 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984271.428371506743133, 3905997.213579167611897 ], [ 4984206.602449748665094, 3906013.811696145217866 ], [ 4984197.4727972028777, 3905977.741230014245957 ], [ 4984213.318937499076128, 3905973.772902360651642 ], [ 4984210.466828720644116, 3905962.113992610946298 ], [ 4984227.176803784444928, 3905958.147697165608406 ], [ 4984223.179760769940913, 3905943.573046148288995 ], [ 4984255.448830659501255, 3905935.27365087531507 ], [ 4984271.428371506743133, 3905997.213579167611897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984204.312873957678676, 3909694.457795355003327 ], [ 4984249.251925171352923, 3909683.275011016987264 ], [ 4984256.667337035760283, 3909713.151300321798772 ], [ 4984211.728332626633346, 3909724.334072463680059 ], [ 4984204.312873957678676, 3909694.457795355003327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984111.528337789699435, 3905790.376152338925749 ], [ 4984071.21376293618232, 3905791.374268572311848 ], [ 4984069.667423381470144, 3905713.810529051814228 ], [ 4984109.693318886682391, 3905713.175867003388703 ], [ 4984111.528337789699435, 3905790.376152338925749 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983112.994297279976308, 3916892.302982073277235 ], [ 4983086.50107267126441, 3916898.068130101077259 ], [ 4983081.94450630620122, 3916876.937836860306561 ], [ 4983049.404452873393893, 3916883.781506002414972 ], [ 4983042.003956447355449, 3916847.715160672552884 ], [ 4983055.250587306916714, 3916844.832561543677002 ], [ 4983051.831881138496101, 3916829.531044935807586 ], [ 4983085.811963077634573, 3916822.32655938854441 ], [ 4983089.230650835670531, 3916837.628080248367041 ], [ 4983101.036491513252258, 3916835.470455730799586 ], [ 4983112.994297279976308, 3916892.302982073277235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983049.619422016665339, 3906653.454983687959611 ], [ 4982996.987879903055727, 3906752.377950892783701 ], [ 4982882.241376051679254, 3906691.668564392719418 ], [ 4982936.318972577340901, 3906589.835638920776546 ], [ 4983022.307569797150791, 3906635.185572391375899 ], [ 4983029.247286357916892, 3906622.456899838522077 ], [ 4983052.829406389035285, 3906634.891623976174742 ], [ 4983044.443313548341393, 3906650.530021920800209 ], [ 4983049.619422016665339, 3906653.454983687959611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984013.700599888339639, 3903786.330053167883307 ], [ 4984007.607426455244422, 3903805.978929547592998 ], [ 4984016.240401254035532, 3903808.548012894112617 ], [ 4984002.313532191328704, 3903853.303676442243159 ], [ 4983962.891388116404414, 3903840.831174955703318 ], [ 4983982.622536348178983, 3903776.790065469685942 ], [ 4984013.700599888339639, 3903786.330053167883307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983952.386418037116528, 3908589.089768588077277 ], [ 4984047.039420664310455, 3908742.610688445158303 ], [ 4984019.359947165474296, 3908759.660247304011136 ], [ 4984037.715636359527707, 3908789.926151347812265 ], [ 4983963.905063804239035, 3908834.906224677339196 ], [ 4983862.65624288842082, 3908670.082104546483606 ], [ 4983892.930315406993032, 3908651.581903588026762 ], [ 4983880.883831794373691, 3908631.890655444469303 ], [ 4983907.697062634862959, 3908615.931333112064749 ], [ 4983901.673820395022631, 3908606.085705246310681 ], [ 4983976.349505198188126, 3908560.743353126570582 ], [ 4983982.659793399274349, 3908570.953800355549902 ], [ 4983952.386418037116528, 3908589.089768588077277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983833.312950011342764, 3909772.243760849814862 ], [ 4983889.195328590460122, 3909759.629335676319897 ], [ 4983899.169106341898441, 3909803.712676438037306 ], [ 4983843.286814623512328, 3909816.327081204857677 ], [ 4983833.312950011342764, 3909772.243760849814862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982579.356870579533279, 3916896.177120629698038 ], [ 4982614.780020066536963, 3916887.154661673586816 ], [ 4982624.197508782148361, 3916922.497228506952524 ], [ 4982616.133453153073788, 3916924.663610973395407 ], [ 4982621.269352384842932, 3916944.338610529899597 ], [ 4982593.909488972276449, 3916951.558802311308682 ], [ 4982579.356870579533279, 3916896.177120629698038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982394.499511178582907, 3916043.316979542374611 ], [ 4982366.563126465305686, 3916050.536088327411562 ], [ 4982358.860391011461616, 3916020.295414424035698 ], [ 4982349.356091348454356, 3916022.822734102141112 ], [ 4982344.79216805845499, 3916004.605637150350958 ], [ 4982335.864359332248569, 3916006.77013848721981 ], [ 4982326.163298687897623, 3915969.242244306951761 ], [ 4982371.955408475361764, 3915957.694106430746615 ], [ 4982375.376272249035537, 3915972.267263168469071 ], [ 4982382.864097299985588, 3915970.463632009923458 ], [ 4982392.84793868009001, 3916010.176996478810906 ], [ 4982386.512286689132452, 3916011.619112913496792 ], [ 4982394.499511178582907, 3916043.316979542374611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981896.806319866329432, 3905469.948132959660143 ], [ 4981919.577107897028327, 3905459.803840754553676 ], [ 4981937.056322460994124, 3905497.713029221631587 ], [ 4981914.572683840990067, 3905508.222086979076266 ], [ 4981896.806319866329432, 3905469.948132959660143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982317.237515498884022, 3906724.971122168470174 ], [ 4982328.806152640841901, 3906702.421219791751355 ], [ 4982356.41627614852041, 3906716.321017912589014 ], [ 4982361.911021097563207, 3906705.773680337239057 ], [ 4982415.69319183845073, 3906732.841835331637412 ], [ 4982390.240757966414094, 3906783.034154705703259 ], [ 4982361.19354241900146, 3906768.038656000979245 ], [ 4982358.879316729493439, 3906772.767111643683165 ], [ 4982333.570230355486274, 3906759.964937801472843 ], [ 4982344.271756054833531, 3906738.869599258061498 ], [ 4982317.237515498884022, 3906724.971122168470174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981040.166917211376131, 3903526.114243418909609 ], [ 4981043.636297638528049, 3903519.931727883871645 ], [ 4981062.620259770192206, 3903529.805523104500026 ], [ 4981045.270927357487381, 3903561.810482432134449 ], [ 4981008.166923088021576, 3903542.064850618131459 ], [ 4981022.046846380457282, 3903516.242385559249669 ], [ 4981040.166917211376131, 3903526.114243418909609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981009.190359716303647, 3895179.809278672095388 ], [ 4981056.183297629468143, 3895162.071434250101447 ], [ 4981066.779013806954026, 3895190.132991301827133 ], [ 4981033.336915759369731, 3895202.439005457796156 ], [ 4981033.052098453976214, 3895200.981853494886309 ], [ 4981018.925187012180686, 3895206.412384738214314 ], [ 4981009.190359716303647, 3895179.809278672095388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980959.718623957596719, 3905387.740538248792291 ], [ 4980903.802684010006487, 3905412.013184475712478 ], [ 4980873.436227417550981, 3905341.668340823147446 ], [ 4980929.351477188058197, 3905317.75976251764223 ], [ 4980959.718623957596719, 3905387.740538248792291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980932.465381768532097, 3903267.34152850555256 ], [ 4980927.260088707320392, 3903277.161516500171274 ], [ 4980902.811741798184812, 3903263.998506338801235 ], [ 4980908.016220102086663, 3903254.542643285822123 ], [ 4980932.465381768532097, 3903267.34152850555256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980907.330743751488626, 3903044.437323656864464 ], [ 4980918.909468695521355, 3903017.517310468479991 ], [ 4980970.119252873584628, 3903039.84307292336598 ], [ 4980958.252513917163014, 3903066.762424587272108 ], [ 4980907.330743751488626, 3903044.437323656864464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981588.881613143719733, 3897052.003380744252354 ], [ 4981647.683633279055357, 3897033.200677934102714 ], [ 4981670.279758907854557, 3897103.892691068351269 ], [ 4981611.190659062936902, 3897122.330570194404572 ], [ 4981588.881613143719733, 3897052.003380744252354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980817.238251150585711, 3914842.499865622259676 ], [ 4980848.363590623252094, 3914825.454606195911765 ], [ 4980856.390156073495746, 3914840.401909785810858 ], [ 4980825.553482191637158, 3914857.083666238933802 ], [ 4980817.238251150585711, 3914842.499865622259676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980803.901373161934316, 3904494.90781617956236 ], [ 4980829.554563011042774, 3904483.676598471589386 ], [ 4980848.466046984307468, 3904525.957807036582381 ], [ 4980822.812889470718801, 3904537.189006971661001 ], [ 4980803.901373161934316, 3904494.90781617956236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981405.933826692402363, 3905692.057628586888313 ], [ 4981411.960270809009671, 3905701.174419079907238 ], [ 4981421.188338906504214, 3905695.004838158842176 ], [ 4981434.676037217490375, 3905715.426432719919831 ], [ 4981412.471753704361618, 3905729.941988307982683 ], [ 4981392.956784259527922, 3905700.767747212667018 ], [ 4981405.933826692402363, 3905692.057628586888313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981314.879276269115508, 3903015.122223416343331 ], [ 4981303.59138052072376, 3903040.586191316135228 ], [ 4981260.72495087236166, 3903021.919735970906913 ], [ 4981287.931046818383038, 3902960.806436464656144 ], [ 4981317.850972903892398, 3902973.982023655436933 ], [ 4981301.933521477505565, 3903009.267190579324961 ], [ 4981314.879276269115508, 3903015.122223416343331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981294.12060172110796, 3903799.414943695999682 ], [ 4981317.200885819271207, 3903780.167552336584777 ], [ 4981358.27149276342243, 3903828.688877397216856 ], [ 4981335.191220682114363, 3903847.936234052758664 ], [ 4981294.12060172110796, 3903799.414943695999682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981216.314344837330282, 3901501.208799111656845 ], [ 4981197.005276506766677, 3901507.355949772987515 ], [ 4981199.863234965130687, 3901517.193862076848745 ], [ 4981187.183607194572687, 3901520.806891461834311 ], [ 4981184.611197243444622, 3901512.062010328751057 ], [ 4981166.16773393843323, 3901517.482851496431977 ], [ 4981152.730464632622898, 3901473.393045890610665 ], [ 4981203.163514350540936, 3901457.847869695164263 ], [ 4981216.314344837330282, 3901501.208799111656845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980237.128637961111963, 3901509.601621347945184 ], [ 4980253.485646215267479, 3901536.219089175574481 ], [ 4980196.098447568714619, 3901571.41386698698625 ], [ 4980179.741404130123556, 3901544.79643351957202 ], [ 4980237.128637961111963, 3901509.601621347945184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980066.492801293730736, 3906575.75388694787398 ], [ 4980027.005937017500401, 3906593.874088887125254 ], [ 4980008.092242836020887, 3906552.685796009842306 ], [ 4980047.57915470469743, 3906534.565566740464419 ], [ 4980066.492801293730736, 3906575.75388694787398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981093.968020536005497, 3904453.312942072283477 ], [ 4981053.900622867979109, 3904471.794458614196628 ], [ 4981019.510173720307648, 3904397.79922040598467 ], [ 4981065.631262485869229, 3904376.418074253480881 ], [ 4981076.235453627072275, 3904399.017842059023678 ], [ 4981069.893084342591465, 3904402.280907718930393 ], [ 4981093.968020536005497, 3904453.312942072283477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981043.752268232405186, 3901008.519275255035609 ], [ 4981093.045498860068619, 3900987.873526612762362 ], [ 4981116.250575328245759, 3901042.90897189732641 ], [ 4981094.630764321424067, 3901051.964095280505717 ], [ 4981092.625347934663296, 3901047.225928095635027 ], [ 4981065.240000852383673, 3901058.817154470831156 ], [ 4981043.752268232405186, 3901008.519275255035609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981002.380042834207416, 3901352.530995867680758 ], [ 4981051.378139164298773, 3901334.797559572849423 ], [ 4981071.412674881517887, 3901390.91831643646583 ], [ 4981050.949169805273414, 3901398.155395092908293 ], [ 4981049.231761953793466, 3901393.417870967648923 ], [ 4981020.698065013624728, 3901403.550065299030393 ], [ 4981002.380042834207416, 3901352.530995867680758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980743.894489163532853, 3906236.053417354356498 ], [ 4980717.20487675908953, 3906195.939813416916877 ], [ 4980746.329412203282118, 3906176.705285998992622 ], [ 4980790.237214346416295, 3906243.074572200421244 ], [ 4980764.573619910515845, 3906259.76779357297346 ], [ 4980747.066647217608988, 3906233.875648633111268 ], [ 4980743.894489163532853, 3906236.053417354356498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979945.928246377035975, 3899946.478782568126917 ], [ 4979950.251511855050921, 3899945.031701794359833 ], [ 4979942.231882584281266, 3899924.622872600331903 ], [ 4979968.750696271657944, 3899914.485137782525271 ], [ 4979994.815187068656087, 3899980.449738733936101 ], [ 4979963.971578423865139, 3899992.762783956713974 ], [ 4979945.928246377035975, 3899946.478782568126917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979893.095017950981855, 3903700.554517791606486 ], [ 4979876.631738466210663, 3903723.094747172668576 ], [ 4979837.81836261972785, 3903694.607846643775702 ], [ 4979863.811498122289777, 3903659.707908602431417 ], [ 4979882.787053815089166, 3903673.58629810390994 ], [ 4979873.544349904172122, 3903686.310734671074897 ], [ 4979893.095017950981855, 3903700.554517791606486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979815.117488383315504, 3906975.386052914429456 ], [ 4979830.176393895410001, 3906935.728471234906465 ], [ 4979865.850414498709142, 3906949.279159229248762 ], [ 4979851.080188095569611, 3906988.573218731675297 ], [ 4979815.117488383315504, 3906975.386052914429456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979763.079481319524348, 3900326.960769170429558 ], [ 4979763.730002807453275, 3900292.733898871578276 ], [ 4979810.384726572781801, 3900293.563773235306144 ], [ 4979809.734145686030388, 3900327.790642419829965 ], [ 4979763.079481319524348, 3900326.960769170429558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979756.958796642720699, 3902212.417338298168033 ], [ 4979796.013998648151755, 3902263.116617700085044 ], [ 4979771.206418217159808, 3902281.997405779547989 ], [ 4979732.151197085157037, 3902231.29816184239462 ], [ 4979756.958796642720699, 3902212.417338298168033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979744.815853218548, 3900117.181737436912954 ], [ 4979739.280387992970645, 3900146.300144130829722 ], [ 4979697.536511174403131, 3900138.562589953653514 ], [ 4979703.071932716295123, 3900109.444174794945866 ], [ 4979744.815853218548, 3900117.181737436912954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979711.759571257978678, 3903529.74590855371207 ], [ 4979738.085048731416464, 3903474.455216691829264 ], [ 4979733.195142746903002, 3903471.895654858089983 ], [ 4979743.030433192849159, 3903451.525702095590532 ], [ 4979762.592441154643893, 3903460.671572792809457 ], [ 4979788.050218805670738, 3903407.199699523393065 ], [ 4979817.104886207729578, 3903421.099996962584555 ], [ 4979814.502061224542558, 3903426.192164137028158 ], [ 4979825.43374664708972, 3903431.313828809652478 ], [ 4979797.663449115119874, 3903488.786074815317988 ], [ 4979810.320537481456995, 3903495.003886876162142 ], [ 4979801.931395571678877, 3903512.46391512779519 ], [ 4979790.424597033299506, 3903506.976875487715006 ], [ 4979766.992191298864782, 3903556.083582644350827 ], [ 4979711.759571257978678, 3903529.74590855371207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980665.076404119841754, 3906331.281622760929167 ], [ 4980677.112590088509023, 3906357.161616078112274 ], [ 4980642.523940271697938, 3906373.471085599157959 ], [ 4980630.198986690491438, 3906347.954601499717683 ], [ 4980665.076404119841754, 3906331.281622760929167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980455.999993587844074, 3905562.13754203543067 ], [ 4980417.078450048342347, 3905584.263859660364687 ], [ 4980423.675530781038105, 3905595.930606852285564 ], [ 4980405.800490130670369, 3905606.086943244561553 ], [ 4980411.537744218483567, 3905615.931135283783078 ], [ 4980389.62588497903198, 3905628.627518468070775 ], [ 4980386.183369585312903, 3905622.793831887189299 ], [ 4980342.071762499399483, 3905648.186024483758956 ], [ 4980327.728973456658423, 3905623.393518334254622 ], [ 4980307.835173496976495, 3905635.002009318675846 ], [ 4980294.926469760015607, 3905612.761596080847085 ], [ 4980313.954844718798995, 3905601.879457220435143 ], [ 4980305.63564872648567, 3905587.66002904670313 ], [ 4980350.036066659726202, 3905561.904280744958669 ], [ 4980348.889089855365455, 3905559.716966850217432 ], [ 4980388.099359572865069, 3905537.227054379414767 ], [ 4980396.131383628584445, 3905551.08174374140799 ], [ 4980436.207147079519928, 3905527.865542722865939 ], [ 4980455.999993587844074, 3905562.13754203543067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980457.614732630550861, 3899862.030405033845454 ], [ 4980473.755936125293374, 3899856.239877125248313 ], [ 4980470.606316762976348, 3899847.857932691927999 ], [ 4980517.59075070079416, 3899830.119097310118377 ], [ 4980529.90437210444361, 3899862.189748506993055 ], [ 4980466.777992418035865, 3899886.083214060869068 ], [ 4980457.614732630550861, 3899862.030405033845454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979436.902108241803944, 3908512.295270159374923 ], [ 4979477.17848121933639, 3908526.947824249509722 ], [ 4979469.648540862835944, 3908547.322928550187498 ], [ 4979456.70268982462585, 3908542.561157304327935 ], [ 4979439.037447738461196, 3908589.860123137943447 ], [ 4979409.118140572682023, 3908578.87136757094413 ], [ 4979418.675244470126927, 3908553.038646697066724 ], [ 4979413.783869632519782, 3908551.571527512744069 ], [ 4979421.892747140489519, 3908529.741130927111953 ], [ 4979429.372194393537939, 3908532.670385569799691 ], [ 4979436.902108241803944, 3908512.295270159374923 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980250.180238944478333, 3906058.360810020938516 ], [ 4980174.664865161292255, 3906092.423515965696424 ], [ 4980160.338126715272665, 3906060.34848760580644 ], [ 4980193.196048012934625, 3906045.491131751332432 ], [ 4980196.34901290666312, 3906052.052423949353397 ], [ 4980239.005729606375098, 3906033.211169417947531 ], [ 4980250.180238944478333, 3906058.360810020938516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980246.783023145981133, 3899997.751651473343372 ], [ 4980213.345676073804498, 3900010.786978888325393 ], [ 4980219.933838197030127, 3900027.187312506139278 ], [ 4980202.062367973849177, 3900034.066589863970876 ], [ 4980196.33341964893043, 3900019.852928921114653 ], [ 4980185.668457480147481, 3900023.834978049620986 ], [ 4980172.779288582503796, 3899991.399089748505503 ], [ 4980234.46593055780977, 3899967.137642944697291 ], [ 4980246.783023145981133, 3899997.751651473343372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980110.034710633568466, 3906809.622058204840869 ], [ 4980132.479848219081759, 3906815.86148092104122 ], [ 4980124.063599947839975, 3906846.066008623223752 ], [ 4980101.617688157595694, 3906840.190723231993616 ], [ 4980110.034710633568466, 3906809.622058204840869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980020.136002932675183, 3902757.00356933940202 ], [ 4979993.119632163085043, 3902732.54770845035091 ], [ 4980034.97568117827177, 3902687.122826448176056 ], [ 4980061.992059794254601, 3902711.578728741034865 ], [ 4980020.136002932675183, 3902757.00356933940202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979165.964503759518266, 3901034.630042551551014 ], [ 4979178.884989896789193, 3901052.864430969115347 ], [ 4979157.541283818893135, 3901067.747800034470856 ], [ 4979128.255329667590559, 3901026.17379895504564 ], [ 4979140.369119580835104, 3901017.824879575520754 ], [ 4979136.636175498366356, 3901012.71900735097006 ], [ 4979155.096047296188772, 3900999.650062867905945 ], [ 4979175.193652266636491, 3901028.459707859903574 ], [ 4979165.964503759518266, 3901034.630042551551014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979126.207339120097458, 3909597.467734368517995 ], [ 4979139.819553857669234, 3909559.991386909037828 ], [ 4979179.519495093263686, 3909574.278132557403296 ], [ 4979165.907232092693448, 3909611.754460242111236 ], [ 4979126.207339120097458, 3909597.467734368517995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979005.701064247637987, 3909271.309637377504259 ], [ 4979030.924271530471742, 3909189.798151505645365 ], [ 4979069.478677723556757, 3909201.53333782684058 ], [ 4979044.25536425691098, 3909283.044788089115173 ], [ 4979005.701064247637987, 3909271.309637377504259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978887.2737952824682, 3908511.474742705468088 ], [ 4978874.548576922155917, 3908538.029121112078428 ], [ 4978896.407351726666093, 3908548.63585299346596 ], [ 4978882.815278035588562, 3908576.644898319616914 ], [ 4978830.756842102855444, 3908551.408140211831778 ], [ 4978857.073288772255182, 3908497.208807348273695 ], [ 4978887.2737952824682, 3908511.474742705468088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978845.461744311265647, 3905317.582047997042537 ], [ 4978797.628052534535527, 3905333.501365105155855 ], [ 4978783.320312969386578, 3905291.595572816208005 ], [ 4978831.154850961640477, 3905275.312100540380925 ], [ 4978845.461744311265647, 3905317.582047997042537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978737.847940649837255, 3910259.719827183522284 ], [ 4978783.819926063530147, 3910302.421783743426204 ], [ 4978664.356849481351674, 3910430.705145081039518 ], [ 4978615.798516316339374, 3910385.813069441355765 ], [ 4978671.200194095261395, 3910326.941888050176203 ], [ 4978673.499457888305187, 3910328.767466808669269 ], [ 4978737.847940649837255, 3910259.719827183522284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979863.328401320613921, 3898202.841968812048435 ], [ 4979878.160603408701718, 3898137.330872508697212 ], [ 4979894.570084621198475, 3898141.007972140330821 ], [ 4979889.045180849730968, 3898165.028514431789517 ], [ 4979972.819801812060177, 3898183.782050389330834 ], [ 4979963.512342463247478, 3898225.272566933184862 ], [ 4979863.328401320613921, 3898202.841968812048435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979703.685540614649653, 3909094.029962625354528 ], [ 4979694.491507002152503, 3909085.270777987316251 ], [ 4979704.591250598430634, 3909074.732902297750115 ], [ 4979739.64307651668787, 3909108.309389278292656 ], [ 4979722.90640614181757, 3909125.751327860169113 ], [ 4979731.526187411509454, 3909133.781007216777653 ], [ 4979715.944335547275841, 3909149.768933318089694 ], [ 4979681.754672691226006, 3909116.922616655938327 ], [ 4979703.685540614649653, 3909094.029962625354528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978735.955661997199059, 3901857.371001609135419 ], [ 4978701.286132262088358, 3901909.367602244950831 ], [ 4978670.227362993173301, 3901888.909888203255832 ], [ 4978689.0070781391114, 3901860.547799018211663 ], [ 4978696.483794481493533, 3901865.661613893695176 ], [ 4978712.373578696511686, 3901842.02706737164408 ], [ 4978735.955661997199059, 3901857.371001609135419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978699.071891168132424, 3906581.898853193502873 ], [ 4978725.299635455943644, 3906569.938582728151232 ], [ 4978747.653350519016385, 3906619.144235339015722 ], [ 4978721.425644168630242, 3906631.104484342038631 ], [ 4978699.071891168132424, 3906581.898853193502873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978710.373921797610819, 3899948.542601387947798 ], [ 4978731.151599067263305, 3899929.288108160253614 ], [ 4978751.840496698394418, 3899951.544329171068966 ], [ 4978710.573181629180908, 3899990.053916146978736 ], [ 4978667.469643235206604, 3899944.445474412292242 ], [ 4978688.247292852029204, 3899925.190948069095612 ], [ 4978710.373921797610819, 3899948.542601387947798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978664.939509289339185, 3907463.389865652658045 ], [ 4978679.143564701080322, 3907418.631952996831387 ], [ 4978706.478584147058427, 3907427.065432488452643 ], [ 4978692.274487572722137, 3907471.823330925777555 ], [ 4978664.939509289339185, 3907463.389865652658045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978604.025931192561984, 3906459.711577030830085 ], [ 4978616.063264706172049, 3906485.954779560212046 ], [ 4978575.137574694119394, 3906504.074040534906089 ], [ 4978563.387368415482342, 3906478.195600571110845 ], [ 4978604.025931192561984, 3906459.711577030830085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978498.861415786668658, 3906896.809943266678602 ], [ 4978541.518703467212617, 3906876.509462337009609 ], [ 4978554.705304163508117, 3906903.847491221968085 ], [ 4978512.048049786128104, 3906924.147951558232307 ], [ 4978498.861415786668658, 3906896.809943266678602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978506.017836552113295, 3901915.869374419096857 ], [ 4978503.857659179717302, 3901983.593144202139229 ], [ 4978468.72596144489944, 3901982.425930610857904 ], [ 4978469.658911487087607, 3901950.020254900213331 ], [ 4978458.715513457544148, 3901949.99695761827752 ], [ 4978459.332563390955329, 3901930.699326646048576 ], [ 4978470.275194003246725, 3901931.086753553710878 ], [ 4978470.886050366796553, 3901914.702158039435744 ], [ 4978506.017836552113295, 3901915.869374419096857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978460.233690474182367, 3904077.619169692043215 ], [ 4978428.273078547790647, 3904076.094621414318681 ], [ 4978430.384882658720016, 3904030.946809585671872 ], [ 4978433.840424977242947, 3904030.954162499401718 ], [ 4978435.038763807155192, 3904009.108823299407959 ], [ 4978463.543910117819905, 3904010.626022394280881 ], [ 4978460.233690474182367, 3904077.619169692043215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978420.002811540849507, 3907421.72065770206973 ], [ 4978446.238139104098082, 3907405.754672110080719 ], [ 4978471.202375492081046, 3907445.862371147610247 ], [ 4978444.678371919319034, 3907462.191850493662059 ], [ 4978420.002811540849507, 3907421.72065770206973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979459.75094828568399, 3901286.150917088612914 ], [ 4979485.691466067917645, 3901276.375579010695219 ], [ 4979491.41736276820302, 3901292.045616026036441 ], [ 4979500.640973594971001, 3901288.424296562559903 ], [ 4979508.657369130291045, 3901310.289527545683086 ], [ 4979504.045566607266665, 3901312.100185523275286 ], [ 4979513.779634666629136, 3901338.702843563165516 ], [ 4979480.633878941647708, 3901351.011459002736956 ], [ 4979473.475923422724009, 3901331.697012031450868 ], [ 4979469.440897270105779, 3901333.144794577267021 ], [ 4979461.709313008002937, 3901312.736715607345104 ], [ 4979468.626618172042072, 3901310.202782636974007 ], [ 4979459.75094828568399, 3901286.150917088612914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979413.205487623810768, 3908951.751973197329789 ], [ 4979450.280298206955194, 3908982.055264733266085 ], [ 4979425.165216217748821, 3909012.952146936673671 ], [ 4979418.26723774895072, 3909007.475222741719335 ], [ 4979405.566159694455564, 3909022.741298994980752 ], [ 4979384.297970099374652, 3909005.581039019394666 ], [ 4979408.834829498082399, 3908975.775265076197684 ], [ 4979399.638295123353601, 3908968.108574714977294 ], [ 4979413.205487623810768, 3908951.751973197329789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979325.983575748279691, 3900150.865870055742562 ], [ 4979371.45977130625397, 3900164.072877883911133 ], [ 4979363.335842597298324, 3900191.729241818189621 ], [ 4979317.860476640053093, 3900178.158118550200015 ], [ 4979325.983575748279691, 3900150.865870055742562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979215.715526676736772, 3906408.225013921502978 ], [ 4979231.574813793413341, 3906397.699401261750609 ], [ 4979254.247124443762004, 3906432.340877269394696 ], [ 4979238.388634615577757, 3906442.502346416469663 ], [ 4979215.715526676736772, 3906408.225013921502978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979222.693709952756763, 3899835.669889623299241 ], [ 4979234.160564382560551, 3899860.455505666323006 ], [ 4979191.204414527863264, 3899880.390050359070301 ], [ 4979179.448737691156566, 3899855.967960502486676 ], [ 4979222.693709952756763, 3899835.669889623299241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979138.116710520349443, 3900191.607346328906715 ], [ 4979161.715695604681969, 3900199.669059407431632 ], [ 4979152.732692417688668, 3900225.138852033298463 ], [ 4979129.133727059699595, 3900217.077146714087576 ], [ 4979138.116710520349443, 3900191.607346328906715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978253.894789927639067, 3902794.345931186806411 ], [ 4978274.979557775892317, 3902764.896035184618086 ], [ 4978289.070259764790535, 3902774.393349491525441 ], [ 4978306.978072722442448, 3902749.306310559157282 ], [ 4978323.943113347515464, 3902761.358664159663022 ], [ 4978284.949734598398209, 3902816.259693561121821 ], [ 4978253.894789927639067, 3902794.345931186806411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978172.318748363293707, 3905822.290936582256109 ], [ 4978197.105739737860858, 3905811.055366886314005 ], [ 4978209.716561156325042, 3905838.756118406075984 ], [ 4978184.929589984938502, 3905849.991676671430469 ], [ 4978172.318748363293707, 3905822.290936582256109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978157.131910814903677, 3904835.461674275808036 ], [ 4978168.843126786872745, 3904880.274672382045537 ], [ 4978149.251545030623674, 3904885.331025378312916 ], [ 4978150.394103546626866, 3904889.703024707734585 ], [ 4978126.480930988676846, 3904895.842638939619064 ], [ 4978113.627085326239467, 3904846.657661149743944 ], [ 4978157.131910814903677, 3904835.461674275808036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979008.695189476944506, 3907744.508474150206894 ], [ 4979015.085055594332516, 3907718.668815097305924 ], [ 4979041.271891587413847, 3907725.279507546685636 ], [ 4979034.882001822814345, 3907751.119160480797291 ], [ 4979008.695189476944506, 3907744.508474150206894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978806.092869728803635, 3905011.262892818078399 ], [ 4978764.602935223840177, 3905022.82627436472103 ], [ 4978750.88646334502846, 3904973.63913910323754 ], [ 4978792.376467745751143, 3904962.075736722908914 ], [ 4978806.092869728803635, 3905011.262892818078399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978684.438360509462655, 3908713.133943686261773 ], [ 4978758.959944848902524, 3908735.505431490018964 ], [ 4978718.074704091064632, 3908870.87526597129181 ], [ 4978643.55346189532429, 3908848.503889709245414 ], [ 4978684.438360509462655, 3908713.133943686261773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977845.950639427639544, 3905199.30031326925382 ], [ 4977862.044350251555443, 3905214.263614790514112 ], [ 4977868.680991301313043, 3905207.723226054571569 ], [ 4977885.924178438261151, 3905223.781359167769551 ], [ 4977853.025117877870798, 3905258.304555718787014 ], [ 4977819.689757877960801, 3905226.554897085297853 ], [ 4977845.950639427639544, 3905199.30031326925382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977822.811094779521227, 3907299.928899240214378 ], [ 4977849.043883822858334, 3907285.054723488166928 ], [ 4977884.040503719821572, 3907347.030938888899982 ], [ 4977857.519829420372844, 3907361.904474457260221 ], [ 4977822.811094779521227, 3907299.928899240214378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977801.012092010118067, 3910543.211775603704154 ], [ 4977875.398762134835124, 3910490.933312288951129 ], [ 4977890.898904192261398, 3910512.813961200881749 ], [ 4977816.800156055949628, 3910565.092988470103592 ], [ 4977801.012092010118067, 3910543.211775603704154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977810.802960879169405, 3905344.514877459499985 ], [ 4977857.104257124476135, 3905372.286388668231666 ], [ 4977835.144338023848832, 3905408.289183221291751 ], [ 4977788.843081356026232, 3905380.517709239851683 ], [ 4977810.802960879169405, 3905344.514877459499985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977794.348096459172666, 3907553.669150485191494 ], [ 4977764.951499459333718, 3907567.080197796225548 ], [ 4977747.180605417117476, 3907528.808939219452441 ], [ 4977776.577235295437276, 3907515.397872793022543 ], [ 4977794.348096459172666, 3907553.669150485191494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977709.167051448486745, 3905202.653893313836306 ], [ 4977665.370471983216703, 3905216.034784180577844 ], [ 4977657.935005981475115, 3905191.622349277604371 ], [ 4977647.561948779039085, 3905194.87776227388531 ], [ 4977640.69930346403271, 3905171.923061604145914 ], [ 4977695.156203024089336, 3905155.651467170100659 ], [ 4977701.73315136320889, 3905177.513186260592192 ], [ 4977701.445201789028943, 3905177.512581343762577 ], [ 4977709.167051448486745, 3905202.653893313836306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977670.963401178829372, 3904609.403175557497889 ], [ 4977676.387918459251523, 3904631.626592840533704 ], [ 4977642.103648027405143, 3904639.929651911836118 ], [ 4977631.825878833420575, 3904597.668820642866194 ], [ 4977659.195437085814774, 3904591.171890649013221 ], [ 4977664.048643167130649, 3904611.209316329564899 ], [ 4977670.963401178829372, 3904609.403175557497889 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978493.433099855668843, 3895113.160638206172734 ], [ 4978520.532218390144408, 3895103.022730397991836 ], [ 4978528.266323546878994, 3895123.430463265161961 ], [ 4978501.167222619056702, 3895133.5683633973822 ], [ 4978493.433099855668843, 3895113.160638206172734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978337.481700438074768, 3911975.025332171004266 ], [ 4978312.707285760901868, 3911982.983630802482367 ], [ 4978294.11359990015626, 3911927.231753350701183 ], [ 4978283.742288641631603, 3911930.851066053844988 ], [ 4978238.543485762551427, 3911796.025847734417766 ], [ 4978250.930766290053725, 3911792.046661825850606 ], [ 4978276.391972228884697, 3911867.476276238914579 ], [ 4978291.083795202895999, 3911862.773734141606838 ], [ 4978310.536524147726595, 3911920.712231266777962 ], [ 4978318.314626228995621, 3911918.179819941986352 ], [ 4978337.481700438074768, 3911975.025332171004266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977491.294720065779984, 3908866.09453392168507 ], [ 4977450.07179081812501, 3908890.769289702177048 ], [ 4977427.118187318556011, 3908852.851503007579595 ], [ 4977452.197602652944624, 3908837.974517622962594 ], [ 4977463.675163082778454, 3908856.569288001395762 ], [ 4977479.817944872193038, 3908847.135620694607496 ], [ 4977491.294720065779984, 3908866.09453392168507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977399.67694194521755, 3909309.052277445327491 ], [ 4977413.721124514937401, 3909339.304640968795866 ], [ 4977384.03800255432725, 3909353.079649142920971 ], [ 4977369.993033283390105, 3909323.191431934945285 ], [ 4977399.67694194521755, 3909309.052277445327491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977375.638880506157875, 3901518.766990657895803 ], [ 4977407.310798492282629, 3901522.1103295837529 ], [ 4977404.373088707216084, 3901549.778140432666987 ], [ 4977372.70120298396796, 3901546.434804912190884 ], [ 4977375.638880506157875, 3901518.766990657895803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977334.840972754172981, 3901610.442811524961144 ], [ 4977340.371257366612554, 3901582.416271995287389 ], [ 4977373.476961699314415, 3901588.675611111335456 ], [ 4977367.945883481763303, 3901617.0662732552737 ], [ 4977334.840972754172981, 3901610.442811524961144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977328.569005672819912, 3901303.831514217425138 ], [ 4977366.85965474974364, 3901309.737531864549965 ], [ 4977361.896906400099397, 3901341.770685933064669 ], [ 4977323.605542195960879, 3901336.228804513812065 ], [ 4977328.569005672819912, 3901303.831514217425138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977311.081328483298421, 3905268.820681425742805 ], [ 4977357.746487649157643, 3905260.543046854902059 ], [ 4977363.440069224685431, 3905291.870264781173319 ], [ 4977316.487014384008944, 3905300.147288840729743 ], [ 4977311.081328483298421, 3905268.820681425742805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977297.439930605702102, 3908219.354324088431895 ], [ 4977316.383185169659555, 3908247.796172637026757 ], [ 4977269.388236552476883, 3908278.649404994677752 ], [ 4977250.444954201579094, 3908250.207589036319405 ], [ 4977297.439930605702102, 3908219.354324088431895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977274.937972850166261, 3906721.631557625252753 ], [ 4977236.588253991678357, 3906747.769133663736284 ], [ 4977220.22614663746208, 3906723.702331026084721 ], [ 4977258.575883785262704, 3906697.564732019789517 ], [ 4977274.937972850166261, 3906721.631557625252753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977191.419457512907684, 3905623.599778887815773 ], [ 4977219.683553327806294, 3905601.810725975781679 ], [ 4977240.071505607105792, 3905628.798952849116176 ], [ 4977211.808179843239486, 3905650.223854431882501 ], [ 4977191.419457512907684, 3905623.599778887815773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978205.622850334271789, 3905868.242124097887427 ], [ 4978215.63675544038415, 3905898.486298495903611 ], [ 4978174.432529991492629, 3905911.871859338134527 ], [ 4978164.417812353931367, 3905881.991830307524651 ], [ 4978205.622850334271789, 3905868.242124097887427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978105.08524180855602, 3907522.645356915891171 ], [ 4978076.832451270893216, 3907539.699806035030633 ], [ 4978053.305028877221048, 3907500.687906331382692 ], [ 4978081.55784534662962, 3907483.633432868402451 ], [ 4978105.08524180855602, 3907522.645356915891171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978106.313274402171373, 3905037.083055294584483 ], [ 4978122.335267589427531, 3905085.910608685109764 ], [ 4978073.927234380505979, 3905101.101732763461769 ], [ 4978061.052607233636081, 3905061.748286082409322 ], [ 4978084.969467960298061, 3905053.787962602451444 ], [ 4978081.820490476675332, 3905045.042141702957451 ], [ 4978106.313274402171373, 3905037.083055294584483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977862.147731864824891, 3906258.593984823208302 ], [ 4977871.602113659493625, 3906281.190087459981441 ], [ 4977847.682572580873966, 3906290.971258655190468 ], [ 4977838.228174165822566, 3906268.37516429880634 ], [ 4977862.147731864824891, 3906258.593984823208302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977836.237781968899071, 3907623.670731080695987 ], [ 4977807.413254548795521, 3907638.903598541859537 ], [ 4977787.338313807733357, 3907600.991594086401165 ], [ 4977816.450027567334473, 3907586.123442234005779 ], [ 4977836.237781968899071, 3907623.670731080695987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977136.892608095891774, 3907058.530401743482798 ], [ 4977109.790907427668571, 3907075.952388840727508 ], [ 4977095.152680733241141, 3907053.709901763126254 ], [ 4977122.542323915287852, 3907036.288498836569488 ], [ 4977136.892608095891774, 3907058.530401743482798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977117.514846241101623, 3913191.943327849730849 ], [ 4977065.119871016591787, 3913193.655083287972957 ], [ 4977063.763771775178611, 3913153.597579350695014 ], [ 4977092.264588913880289, 3913152.564408573321998 ], [ 4977091.99186319950968, 3913145.281171498354524 ], [ 4977115.88610577583313, 3913144.60258400766179 ], [ 4977117.514846241101623, 3913191.943327849730849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977098.720934006385505, 3907137.831841244362295 ], [ 4977127.837309278547764, 3907120.77816416323185 ], [ 4977138.45280416496098, 3907139.00684905750677 ], [ 4977109.337198821827769, 3907155.696384250186384 ], [ 4977098.720934006385505, 3907137.831841244362295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976990.885359454900026, 3901657.064251398202032 ], [ 4976985.347903003916144, 3901688.732157750055194 ], [ 4976951.953490900807083, 3901682.836828861385584 ], [ 4976957.490154409781098, 3901651.533045090734959 ], [ 4976990.885359454900026, 3901657.064251398202032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976878.05755383707583, 3911779.337276283185929 ], [ 4976881.873873764649034, 3911743.660126644652337 ], [ 4976988.942276214249432, 3911754.806049302686006 ], [ 4976985.125815588980913, 3911790.483183980453759 ], [ 4976878.05755383707583, 3911779.337276283185929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976882.433548591099679, 3905772.252348441164941 ], [ 4976889.672088843770325, 3905752.968348519410938 ], [ 4976933.118342844769359, 3905769.080143885221332 ], [ 4976913.719790579751134, 3905820.382542200386524 ], [ 4976877.754845740273595, 3905806.835186882410198 ], [ 4976889.91479401756078, 3905774.816760940011591 ], [ 4976882.433548591099679, 3905772.252348441164941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976789.209606163203716, 3910056.440276800654829 ], [ 4976750.548626282252371, 3910096.414992830716074 ], [ 4976722.103223047219217, 3910069.046286856755614 ], [ 4976760.764199734665453, 3910029.071530570276082 ], [ 4976789.209606163203716, 3910056.440276800654829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977773.564554660581052, 3903882.812280757818371 ], [ 4977808.176112449727952, 3903856.30350822629407 ], [ 4977824.832013797946274, 3903878.186454016249627 ], [ 4977790.22046762239188, 3903904.695205448195338 ], [ 4977773.564554660581052, 3903882.812280757818371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977386.623331278562546, 3914177.849955026991665 ], [ 4977422.388693446293473, 3914143.696146856527776 ], [ 4977444.793276992626488, 3914166.683432016521692 ], [ 4977450.56253092456609, 3914160.869361374061555 ], [ 4977467.796389465220273, 3914178.747976157814264 ], [ 4977431.453787306323647, 3914213.628784916363657 ], [ 4977413.358652211725712, 3914194.655991064850241 ], [ 4977407.878027690574527, 3914200.106539419386536 ], [ 4977386.623331278562546, 3914177.849955026991665 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977394.030596456490457, 3908153.283887515775859 ], [ 4977434.678766789846122, 3908128.607852938584983 ], [ 4977449.887389159761369, 3908153.036528869066387 ], [ 4977409.238480599597096, 3908178.076671605929732 ], [ 4977394.030596456490457, 3908153.283887515775859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977393.42544721160084, 3907340.539352986961603 ], [ 4977433.510410768911242, 3907310.400166814215481 ], [ 4977451.025958594866097, 3907333.377125078812242 ], [ 4977438.337396173737943, 3907342.81802572356537 ], [ 4977439.486055804416537, 3907344.2769565586932 ], [ 4977412.089669735170901, 3907364.975215224083513 ], [ 4977393.42544721160084, 3907340.539352986961603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977377.976744554936886, 3904122.309894448611885 ], [ 4977400.746196948923171, 3904112.525911370757967 ], [ 4977411.063328385353088, 3904136.216017134021968 ], [ 4977388.005931628867984, 3904145.999390047974885 ], [ 4977377.976744554936886, 3904122.309894448611885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977372.729900077916682, 3905531.488367430400103 ], [ 4977378.712872073985636, 3905562.087934762705117 ], [ 4977331.18211370613426, 3905571.456122262403369 ], [ 4977325.199089738540351, 3905540.856565328780562 ], [ 4977372.729900077916682, 3905531.488367430400103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976804.98644139431417, 3901170.564625192433596 ], [ 4976813.406729170121253, 3901137.446128376759589 ], [ 4976870.687919778749347, 3901151.765714249573648 ], [ 4976862.266812323592603, 3901185.248322663828731 ], [ 4976804.98644139431417, 3901170.564625192433596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976698.552117984741926, 3912691.848339585587382 ], [ 4976714.908028234727681, 3912717.371441122610122 ], [ 4976677.147633231244981, 3912741.326310938224196 ], [ 4976660.503833038732409, 3912715.802638240158558 ], [ 4976698.552117984741926, 3912691.848339585587382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976600.310320163145661, 3909096.560838038567454 ], [ 4976556.495899803005159, 3909121.959892516024411 ], [ 4976541.29001571983099, 3909096.075183517299592 ], [ 4976585.104463767260313, 3909070.676104655489326 ], [ 4976600.310320163145661, 3909096.560838038567454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976496.220444662496448, 3908051.650604111142457 ], [ 4976513.44164791982621, 3908077.903546893037856 ], [ 4976473.655011140741408, 3908104.039272863883525 ], [ 4976456.433785919100046, 3908077.786355153657496 ], [ 4976496.220444662496448, 3908051.650604111142457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976418.815291965380311, 3901577.595696580596268 ], [ 4976427.595482455566525, 3901509.157115366309881 ], [ 4976469.343396253883839, 3901514.340691722463816 ], [ 4976464.365296885371208, 3901554.384861180093139 ], [ 4976451.409558515064418, 3901552.537592991255224 ], [ 4976447.606628281064332, 3901581.296122464817017 ], [ 4976418.815291965380311, 3901577.595696580596268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977277.464289891533554, 3906338.569947202689946 ], [ 4977296.190076883882284, 3906333.875282739289105 ], [ 4977301.33268937189132, 3906353.185004061553627 ], [ 4977284.046599544584751, 3906357.88266715593636 ], [ 4977290.045432143844664, 3906380.835491899866611 ], [ 4977245.966838087886572, 3906392.395823555998504 ], [ 4977238.25400641001761, 3906362.885061639361084 ], [ 4977280.892201211303473, 3906351.685845858883113 ], [ 4977277.464289891533554, 3906338.569947202689946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977269.964984860271215, 3909659.077147798612714 ], [ 4977297.934733087196946, 3909638.379915920551866 ], [ 4977344.446339181624353, 3909700.015413595829159 ], [ 4977316.475859122350812, 3909721.076728997286409 ], [ 4977269.964984860271215, 3909659.077147798612714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977251.039980238303542, 3912936.96376679930836 ], [ 4977246.962032313458622, 3912959.895674583036453 ], [ 4977224.804682239890099, 3912955.844029651489109 ], [ 4977229.171237093396485, 3912932.548586536664516 ], [ 4977251.039980238303542, 3912936.96376679930836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977125.188593600876629, 3905763.652731582522392 ], [ 4977093.389971005730331, 3905823.668383749667555 ], [ 4977069.516448826529086, 3905811.238297982141376 ], [ 4977079.634542952291667, 3905791.960330346599221 ], [ 4977068.416868589818478, 3905786.1109166177921 ], [ 4977090.097345922142267, 3905745.373195374850184 ], [ 4977125.188593600876629, 3905763.652731582522392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977026.287348268553615, 3900279.26684934925288 ], [ 4977055.100407282821834, 3900273.136438694316894 ], [ 4977060.236053771339357, 3900296.451462528202683 ], [ 4977072.049424720928073, 3900293.927081453613937 ], [ 4977078.895665756426752, 3900325.620666660368443 ], [ 4977038.269305222667754, 3900334.275442786514759 ], [ 4977026.287348268553615, 3900279.26684934925288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976394.561859755776823, 3911990.266009237151593 ], [ 4976427.729739620350301, 3911960.111054331995547 ], [ 4976448.410489834845066, 3911982.72979773953557 ], [ 4976415.241866805590689, 3912013.24885922903195 ], [ 4976394.561859755776823, 3911990.266009237151593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976393.303999398835003, 3900396.303150995168835 ], [ 4976394.806760558858514, 3900365.719261474907398 ], [ 4976443.762466833926737, 3900368.004535601008683 ], [ 4976442.259650077670813, 3900398.58842242648825 ], [ 4976393.303999398835003, 3900396.303150995168835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976219.507505579851568, 3905951.133309501688927 ], [ 4976237.549448405392468, 3905999.235629035625607 ], [ 4976195.478079738095403, 3906014.807239639107138 ], [ 4976177.43607223033905, 3905966.704947891179472 ], [ 4976219.507505579851568, 3905951.133309501688927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976065.486986759118736, 3903396.071608091238886 ], [ 4976044.160229477100074, 3903404.40313489921391 ], [ 4976024.390591361559927, 3903355.205110298004001 ], [ 4976046.294062320142984, 3903346.510612644720823 ], [ 4976046.579804091714323, 3903347.603589098434895 ], [ 4976077.70573422499001, 3903335.28661087481305 ], [ 4976091.744151177816093, 3903370.635989211965352 ], [ 4976060.330286644399166, 3903382.952364102937281 ], [ 4976065.486986759118736, 3903396.071608091238886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976046.282124241814017, 3911400.021807164885104 ], [ 4976057.220931433141232, 3911400.408253678586334 ], [ 4976055.991402779705822, 3911438.639719233848155 ], [ 4976045.340493627823889, 3911438.253860371652991 ], [ 4976046.282124241814017, 3911400.021807164885104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976895.075305665843189, 3901613.534128539264202 ], [ 4976926.171949410811067, 3901616.511578753124923 ], [ 4976923.820525895804167, 3901639.446955297142267 ], [ 4976945.415814338251948, 3901641.312354276888072 ], [ 4976942.770352704450488, 3901667.160167588852346 ], [ 4976917.719992567785084, 3901664.923482937738299 ], [ 4976916.836421248503029, 3901674.389056850690395 ], [ 4976889.482922510243952, 3901671.783497192431241 ], [ 4976895.075305665843189, 3901613.534128539264202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976843.03769186604768, 3909365.063573265448213 ], [ 4976866.383600297383964, 3909352.731379626784474 ], [ 4976878.716011088341475, 3909375.697266941890121 ], [ 4976855.370116884820163, 3909388.029450037516654 ], [ 4976843.03769186604768, 3909365.063573265448213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976789.640693165361881, 3912633.046893474180251 ], [ 4976805.774949867278337, 3912626.525853470899165 ], [ 4976802.05071447789669, 3912617.778950894251466 ], [ 4976827.980847110040486, 3912607.272715435829014 ], [ 4976841.727774887345731, 3912641.529696769546717 ], [ 4976799.952048368752003, 3912658.193416708614677 ], [ 4976789.640693165361881, 3912633.046893474180251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976765.178761534392834, 3908449.837528402451426 ], [ 4976746.700337589718401, 3908474.924493033904582 ], [ 4976722.83954122941941, 3908457.396862741559744 ], [ 4976741.030040145851672, 3908432.309287357609719 ], [ 4976765.178761534392834, 3908449.837528402451426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976715.402058619074523, 3898667.346286825835705 ], [ 4976688.547915760427713, 3898700.426739202812314 ], [ 4976661.807191285304725, 3898678.523781859315932 ], [ 4976688.661322942003608, 3898645.44330319808796 ], [ 4976715.402058619074523, 3898667.346286825835705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976645.211700856685638, 3906169.758403190877289 ], [ 4976662.152041036635637, 3906193.097774327266961 ], [ 4976672.821544458158314, 3906185.473008372820914 ], [ 4976687.463601221330464, 3906206.258732035756111 ], [ 4976647.66952655185014, 3906234.578952389303595 ], [ 4976616.087102262303233, 3906190.453896978404373 ], [ 4976645.211700856685638, 3906169.758403190877289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975961.43955768365413, 3911217.782364869490266 ], [ 4975945.817418764345348, 3911255.256258500274271 ], [ 4975950.707747376523912, 3911257.086880322080106 ], [ 4975939.135294703766704, 3911285.101565112359822 ], [ 4975920.725530379451811, 3911277.781434766948223 ], [ 4975947.632946616970003, 3911211.928123164456338 ], [ 4975961.43955768365413, 3911217.782364869490266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975950.259724816307425, 3912325.452677035238594 ], [ 4975967.190090018324554, 3912352.068885144777596 ], [ 4975928.276879801414907, 3912376.750720342155546 ], [ 4975911.347232645377517, 3912349.770404566545039 ], [ 4975950.259724816307425, 3912325.452677035238594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975933.260440091602504, 3902146.104149035643786 ], [ 4976013.557630613446236, 3902029.381603524554521 ], [ 4976062.734451731666923, 3902062.981907191220671 ], [ 4976054.068974376656115, 3902075.708819621242583 ], [ 4976040.840324056334794, 3902066.578572005964816 ], [ 4976023.5101427314803, 3902091.668284449726343 ], [ 4976035.013860415667295, 3902099.338483348488808 ], [ 4976020.860415827482939, 3902120.065101953689009 ], [ 4976006.768570747226477, 3902110.568980675656348 ], [ 4975988.861001819372177, 3902136.385801611002535 ], [ 4976000.363968350924551, 3902144.420115382876247 ], [ 4975986.788021087646484, 3902164.419666882138699 ], [ 4975972.984169290401042, 3902154.924149601254612 ], [ 4975964.318763962946832, 3902167.651091684121639 ], [ 4975933.260440091602504, 3902146.104149035643786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975833.0631153723225, 3915882.800487712956965 ], [ 4975839.647056061774492, 3915900.656438540667295 ], [ 4975818.619590758346021, 3915908.260529186110944 ], [ 4975812.034898335114121, 3915890.76871602749452 ], [ 4975833.0631153723225, 3915882.800487712956965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975816.253836299292743, 3907576.889168944675475 ], [ 4975836.774843952618539, 3907538.33283694460988 ], [ 4975866.111293768510222, 3907554.050136068835855 ], [ 4975845.590995755046606, 3907592.242315327282995 ], [ 4975816.253836299292743, 3907576.889168944675475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975749.716065463609993, 3903330.978136739227921 ], [ 4975817.168917237780988, 3903297.6149394037202 ], [ 4975833.230138123966753, 3903329.691107195336372 ], [ 4975818.817621017806232, 3903336.580331799108535 ], [ 4975825.988013592548668, 3903350.796012006234378 ], [ 4975800.044181378558278, 3903363.852062614634633 ], [ 4975794.882172091864049, 3903353.281778186094016 ], [ 4975767.497773841023445, 3903366.699067633599043 ], [ 4975749.716065463609993, 3903330.978136739227921 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975697.649793586693704, 3898185.34177409671247 ], [ 4975699.304177973419428, 3898221.758138928562403 ], [ 4975644.573702038265765, 3898224.560366620309651 ], [ 4975642.919980554841459, 3898187.779876451939344 ], [ 4975697.649793586693704, 3898185.34177409671247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976567.837795358151197, 3902073.120108333416283 ], [ 4976577.440929843112826, 3902024.710453618317842 ], [ 4976572.547461443580687, 3902023.607986945193261 ], [ 4976579.531779074110091, 3901988.301659101620317 ], [ 4976604.000647800974548, 3901993.085748746059835 ], [ 4976611.858717989176512, 3901953.047526781447232 ], [ 4976648.418440743349493, 3901960.041352068539709 ], [ 4976639.686611053533852, 3902004.811465673148632 ], [ 4976652.928600764833391, 3902007.387677693273872 ], [ 4976647.105131082236767, 3902038.326807870995253 ], [ 4976629.544908146373928, 3902035.013438017573208 ], [ 4976619.9424335854128, 3902083.058944947551936 ], [ 4976567.837795358151197, 3902073.120108333416283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976513.725397473201156, 3908219.915749168023467 ], [ 4976546.008068566210568, 3908202.503813595976681 ], [ 4976563.792216141708195, 3908234.948200325947255 ], [ 4976546.209057284519076, 3908244.743582533206791 ], [ 4976541.619624358601868, 3908236.359093168284744 ], [ 4976527.207303767092526, 3908244.340351171325892 ], [ 4976513.725397473201156, 3908219.915749168023467 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975386.775661401450634, 3911525.038924614433199 ], [ 4975456.174218483269215, 3911515.711398880928755 ], [ 4975458.160735642537475, 3911529.916597670409828 ], [ 4975418.998572285287082, 3911534.935469791293144 ], [ 4975420.417421435005963, 3911545.134057290386409 ], [ 4975404.003781029954553, 3911547.285765176638961 ], [ 4975402.870605257339776, 3911538.180153652559966 ], [ 4975388.760746952146292, 3911539.972381591796875 ], [ 4975386.775661401450634, 3911525.038924614433199 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976206.189849299378693, 3908238.948119580745697 ], [ 4976230.400936437770724, 3908226.25301779480651 ], [ 4976224.664204058237374, 3908215.681441066786647 ], [ 4976240.516780539415777, 3908207.338836350012571 ], [ 4976260.879870412871242, 3908245.978550483472645 ], [ 4976221.104902943596244, 3908266.652690413873643 ], [ 4976206.189849299378693, 3908238.948119580745697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976129.858667730353773, 3903320.46368161495775 ], [ 4976149.160061067901552, 3903316.861791926901788 ], [ 4976146.882339105941355, 3903304.11254466092214 ], [ 4976162.726622142829001, 3903301.231865404173732 ], [ 4976164.718599518761039, 3903312.888136291876435 ], [ 4976185.459850979968905, 3903309.289214958902448 ], [ 4976193.434408313594759, 3903352.637139089871198 ], [ 4976162.321837697178125, 3903358.399647771380842 ], [ 4976163.746057718060911, 3903366.049314816016704 ], [ 4976138.971056547947228, 3903370.732407631818205 ], [ 4976129.858667730353773, 3903320.46368161495775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976072.801826525479555, 3907714.689238939899951 ], [ 4976100.19161936827004, 3907696.538525320123881 ], [ 4976126.02507846429944, 3907735.553423715289682 ], [ 4976098.347385809756815, 3907753.703523706644773 ], [ 4976072.801826525479555, 3907714.689238939899951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976055.398708716034889, 3897327.450180230196565 ], [ 4976018.488848217763007, 3897347.766227271873504 ], [ 4975995.241938634775579, 3897306.572186079341918 ], [ 4976032.439872066490352, 3897286.256694637704641 ], [ 4976055.398708716034889, 3897327.450180230196565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975976.22113352175802, 3909331.604455284774303 ], [ 4975987.114048214629292, 3909354.931132068857551 ], [ 4975964.348063846118748, 3909365.444606808945537 ], [ 4975953.166487383656204, 3909342.481484024319798 ], [ 4975976.22113352175802, 3909331.604455284774303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975931.256940576247871, 3901290.756567012984306 ], [ 4975927.444900750182569, 3901324.24884666223079 ], [ 4975902.107628370635211, 3901321.284264571964741 ], [ 4975906.207628279924393, 3901287.792567058466375 ], [ 4975931.256940576247871, 3901290.756567012984306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975916.144631169736385, 3903906.27953430172056 ], [ 4975950.749133246950805, 3903882.317278271075338 ], [ 4975986.640729756094515, 3903933.368755168747157 ], [ 4975941.943488012067974, 3903964.228919804561883 ], [ 4975927.299626557156444, 3903943.443630796391517 ], [ 4975937.392403692007065, 3903936.545671321917325 ], [ 4975916.144631169736385, 3903906.27953430172056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975255.905817598104477, 3899001.922896017320454 ], [ 4975259.096673037856817, 3898990.64126839581877 ], [ 4975241.249929268844426, 3898985.50758879352361 ], [ 4975251.690197644755244, 3898949.843794301152229 ], [ 4975300.049112142063677, 3898963.777948145754635 ], [ 4975294.247055865824223, 3898984.521707877982408 ], [ 4975291.94439263921231, 3898983.788817388936877 ], [ 4975284.403272137977183, 3899009.991037391126156 ], [ 4975255.905817598104477, 3899001.922896017320454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975201.375505924224854, 3910093.259448111988604 ], [ 4975226.745547479949892, 3910075.832033055834472 ], [ 4975221.864463775418699, 3910069.26783764641732 ], [ 4975242.621597868390381, 3910055.108366296626627 ], [ 4975261.280753318220377, 3910082.091694553382695 ], [ 4975257.244339334778488, 3910084.996642443817109 ], [ 4975268.44010863173753, 3910101.040991666726768 ], [ 4975226.637277740985155, 3910129.723464358132333 ], [ 4975201.375505924224854, 3910093.259448111988604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975791.967677488923073, 3897977.614702303893864 ], [ 4975784.938308687880635, 3898035.132994554005563 ], [ 4975744.913014816120267, 3898029.953995583578944 ], [ 4975751.94156092312187, 3897972.799821639899164 ], [ 4975791.967677488923073, 3897977.614702303893864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975566.660090354271233, 3910406.785535553470254 ], [ 4975588.280827729031444, 3910392.628074401058257 ], [ 4975602.056999271735549, 3910413.775645196903497 ], [ 4975580.436271580867469, 3910427.933095443993807 ], [ 4975566.660090354271233, 3910406.785535553470254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974938.458509148098528, 3899893.406370878685266 ], [ 4974903.91375726275146, 3899885.3265177346766 ], [ 4974915.238337499089539, 3899839.104556577745825 ], [ 4974925.601491185836494, 3899841.674163762014359 ], [ 4974930.249598043039441, 3899821.656270938459784 ], [ 4974954.43054183293134, 3899827.530664374586195 ], [ 4974938.458509148098528, 3899893.406370878685266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974876.720134351402521, 3900090.277718351222575 ], [ 4974874.971767537295818, 3900100.469884654972702 ], [ 4974886.776297260075808, 3900102.314092295244336 ], [ 4974881.822101643308997, 3900131.434648346621543 ], [ 4974836.04549352824688, 3900123.332470374647528 ], [ 4974841.286918977275491, 3900094.576609352137893 ], [ 4974857.69806535448879, 3900097.158250986132771 ], [ 4974859.445699530653656, 3900087.330212645232677 ], [ 4974876.720134351402521, 3900090.277718351222575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974745.739038787782192, 3899625.386216075625271 ], [ 4974702.817721704021096, 3899629.306256210431457 ], [ 4974698.584479115903378, 3899585.602187954355031 ], [ 4974750.436335396021605, 3899580.607524811755866 ], [ 4974752.691122641786933, 3899605.372881159652025 ], [ 4974744.049394708126783, 3899606.0839410321787 ], [ 4974745.739038787782192, 3899625.386216075625271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975464.021368227899075, 3909909.536979478783906 ], [ 4975429.989089005626738, 3909939.327212521806359 ], [ 4975400.403057430870831, 3909905.767355152405798 ], [ 4975434.4353461349383, 3909875.977085255086422 ], [ 4975464.021368227899075, 3909909.536979478783906 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975390.07100921869278, 3898741.111402664333582 ], [ 4975371.074982789345086, 3898734.518801998812705 ], [ 4975363.543979451991618, 3898755.623193110805005 ], [ 4975333.61131492536515, 3898745.003169919364154 ], [ 4975349.541746483184397, 3898700.61134014185518 ], [ 4975398.182476324960589, 3898717.823407059535384 ], [ 4975390.07100921869278, 3898741.111402664333582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975227.789692576043308, 3911275.652011336758733 ], [ 4975219.124637894332409, 3911289.835791410412639 ], [ 4975153.563780570402741, 3911251.470202323049307 ], [ 4975162.228812880814075, 3911237.286401447374374 ], [ 4975227.789692576043308, 3911275.652011336758733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975229.364175024442375, 3907912.526042898651212 ], [ 4975161.65396130643785, 3907936.786962418351322 ], [ 4975151.059358385391533, 3907907.63512553088367 ], [ 4975176.991188319399953, 3907898.219719862565398 ], [ 4975172.983686864376068, 3907886.559444655664265 ], [ 4975196.322065782733262, 3907878.231249901466072 ], [ 4975199.183725290000439, 3907886.97616976313293 ], [ 4975217.623804470524192, 3907880.458820214029402 ], [ 4975229.364175024442375, 3907912.526042898651212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975226.765890319831669, 3903328.830293247010559 ], [ 4975258.482039424590766, 3903309.230927666649222 ], [ 4975271.686918175779283, 3903330.012949807103723 ], [ 4975276.011582974344492, 3903327.472724871709943 ], [ 4975305.291442812420428, 3903373.7762729851529 ], [ 4975269.24994951672852, 3903396.279939312022179 ], [ 4975226.765890319831669, 3903328.830293247010559 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974642.78745888825506, 3902156.253951022401452 ], [ 4974612.806246547959745, 3902171.852035449817777 ], [ 4974602.192124272696674, 3902151.075496811885387 ], [ 4974631.884648117236793, 3902135.840958252549171 ], [ 4974642.78745888825506, 3902156.253951022401452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974499.691916701383889, 3908097.869914788752794 ], [ 4974558.225297438912094, 3908054.654239494353533 ], [ 4974577.177345911040902, 3908080.181107046082616 ], [ 4974518.64399005100131, 3908123.396741735748947 ], [ 4974499.691916701383889, 3908097.869914788752794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975125.395269389264286, 3899021.324015096295625 ], [ 4975145.014642708934844, 3899004.249224127735943 ], [ 4975162.831446663476527, 3899024.31212203623727 ], [ 4975143.211346481926739, 3899041.751029029954225 ], [ 4975125.395269389264286, 3899021.324015096295625 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975015.699428243562579, 3896842.150090950541198 ], [ 4974989.959137647412717, 3896894.533312897663563 ], [ 4974954.565342863090336, 3896876.984343626536429 ], [ 4974989.850181456655264, 3896804.957158430479467 ], [ 4975035.892023326829076, 3896827.261164950672537 ], [ 4975026.346668661572039, 3896847.269207132980227 ], [ 4975015.699428243562579, 3896842.150090950541198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974873.982486217282712, 3907811.678074109368026 ], [ 4974893.7945357831195, 3907839.027538961265236 ], [ 4974845.931365658529103, 3907873.160454933531582 ], [ 4974826.119292751885951, 3907845.811024794820696 ], [ 4974873.982486217282712, 3907811.678074109368026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974289.54221607837826, 3905310.388145506381989 ], [ 4974299.103450683876872, 3905280.548223312012851 ], [ 4974325.002990524284542, 3905288.61026191432029 ], [ 4974329.349548125639558, 3905274.781844355165958 ], [ 4974363.018654522486031, 3905285.408189359121025 ], [ 4974349.110067525878549, 3905329.440633141901344 ], [ 4974289.54221607837826, 3905310.388145506381989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974058.11924106720835, 3908195.678272860590369 ], [ 4974096.465946550481021, 3908168.443744480144233 ], [ 4974113.405797269195318, 3908192.509799235034734 ], [ 4974075.059108820743859, 3908219.744303849991411 ], [ 4974058.11924106720835, 3908195.678272860590369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974772.980169987305999, 3904457.458154117688537 ], [ 4974726.580641403794289, 3904476.664747561328113 ], [ 4974707.378061590716243, 3904431.110106156207621 ], [ 4974753.777654908597469, 3904411.903480085544288 ], [ 4974772.980169987305999, 3904457.458154117688537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974716.948705483227968, 3904686.385331004392356 ], [ 4974724.973036870360374, 3904705.700269236695021 ], [ 4974733.618922973051667, 3904702.076160231139511 ], [ 4974739.63770367205143, 3904716.289269965142012 ], [ 4974728.974690661765635, 3904720.637625761795789 ], [ 4974736.426718357950449, 3904738.130771202035248 ], [ 4974705.301579643040895, 3904751.177573706489056 ], [ 4974693.839176046662033, 3904723.116645947098732 ], [ 4974682.023631578311324, 3904727.826859773136675 ], [ 4974672.27951121609658, 3904704.503068265039474 ], [ 4974716.948705483227968, 3904686.385331004392356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974578.828914892859757, 3909278.908321860712022 ], [ 4974595.186758569441736, 3909305.52247188007459 ], [ 4974564.343314378522336, 3909324.39614427741617 ], [ 4974547.986174087971449, 3909297.417881586123258 ], [ 4974578.828914892859757, 3909278.908321860712022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974527.521597335115075, 3912212.625227353535593 ], [ 4974718.979514448903501, 3912057.520721279084682 ], [ 4974693.708012031391263, 3912026.519114651251584 ], [ 4974773.866723482497036, 3911961.862990921828896 ], [ 4974787.076405686326325, 3911978.275304960086942 ], [ 4974978.538217927329242, 3911822.8085398664698 ], [ 4974953.55394347012043, 3911792.171400784049183 ], [ 4975033.138220017775893, 3911727.514909266959876 ], [ 4975049.794389209710062, 3911747.939714521635324 ], [ 4975098.525523135438561, 3911708.346835350152105 ], [ 4975422.457025554962456, 3912104.082569429185241 ], [ 4975394.487615732476115, 3912126.60244442615658 ], [ 4975416.025388337671757, 3912152.863453611731529 ], [ 4975336.440710810013115, 3912217.882959897629917 ], [ 4975322.369324981234968, 3912200.740371479187161 ], [ 4975169.258116886019707, 3912324.966205172240734 ], [ 4975193.380954501219094, 3912354.145293716806918 ], [ 4975113.509539475664496, 3912419.164890626445413 ], [ 4975101.735985388979316, 3912404.575955898500979 ], [ 4974848.861651134677231, 3912609.805559913627803 ], [ 4974691.490666280500591, 3912417.593793300446123 ], [ 4974699.852719066664577, 3912410.691896893549711 ], [ 4974615.422309998422861, 3912307.838467866182327 ], [ 4974603.888580808416009, 3912317.283023685682565 ], [ 4974576.032113107852638, 3912283.363322885707021 ], [ 4974581.51110555883497, 3912278.64046698436141 ], [ 4974527.521597335115075, 3912212.625227353535593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973848.529383164830506, 3903333.744160214904696 ], [ 4973856.950348612852395, 3903298.075785233639181 ], [ 4973870.191251538693905, 3903301.014757928438485 ], [ 4973873.966230932623148, 3903285.000376928132027 ], [ 4973890.66063654795289, 3903289.038516114000231 ], [ 4973900.240686381235719, 3903249.731114051304758 ], [ 4973933.630242473445833, 3903257.443305478431284 ], [ 4973920.273711527697742, 3903313.493329513818026 ], [ 4973883.717981738038361, 3903305.046690578106791 ], [ 4973875.586378265172243, 3903339.987361605744809 ], [ 4973848.529383164830506, 3903333.744160214904696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973800.950783524662256, 3900126.022374913096428 ], [ 4973860.325163287110627, 3900102.834179590921849 ], [ 4973873.795044913887978, 3900136.724686456844211 ], [ 4973836.326080658473074, 3900151.216570442542434 ], [ 4973833.173715636134148, 3900143.199531646911055 ], [ 4973811.26835769508034, 3900151.895816210191697 ], [ 4973800.950783524662256, 3900126.022374913096428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973755.742467216216028, 3904248.988823570311069 ], [ 4973789.956256242468953, 3904276.365550338756293 ], [ 4973780.430824218317866, 3904287.999133897479624 ], [ 4973789.631277211010456, 3904295.299748755525798 ], [ 4973777.218433714471757, 3904310.933134145103395 ], [ 4973767.44348809029907, 3904302.903137888759375 ], [ 4973754.742702239193022, 3904318.535970987286419 ], [ 4973721.391386515460908, 3904291.889235189650208 ], [ 4973755.742467216216028, 3904248.988823570311069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973663.738992824219167, 3909784.344280056189746 ], [ 4973688.426630404777825, 3909821.169850990641862 ], [ 4973637.113013205118477, 3909855.662350909318775 ], [ 4973612.424627598375082, 3909819.200957608409226 ], [ 4973663.738992824219167, 3909784.344280056189746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974160.352058821357787, 3898823.869026696775109 ], [ 4974176.692344483919442, 3898862.863132828846574 ], [ 4974158.532922976650298, 3898870.109985489398241 ], [ 4974161.973358925431967, 3898878.127623334527016 ], [ 4974139.201380674727261, 3898887.550190734677017 ], [ 4974119.419888150878251, 3898840.902602933347225 ], [ 4974160.352058821357787, 3898823.869026696775109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974106.348321777768433, 3904607.981501097325236 ], [ 4974109.206390799023211, 3904618.911067879758775 ], [ 4974131.67838943656534, 3904613.129176569636911 ], [ 4974143.393546134233475, 3904659.396934383548796 ], [ 4974101.331329266540706, 3904669.873989447951317 ], [ 4974086.757312391884625, 3904613.040815033018589 ], [ 4974106.348321777768433, 3904607.981501097325236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973520.284967685118318, 3896796.233255138620734 ], [ 4973465.525654761120677, 3896812.51266806665808 ], [ 4973457.800223299302161, 3896785.916188957635313 ], [ 4973476.245363054797053, 3896780.4900734978728 ], [ 4973466.801596639677882, 3896748.792437098454684 ], [ 4973502.827818140387535, 3896737.938551672268659 ], [ 4973520.284967685118318, 3896796.233255138620734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973504.085392476059496, 3899350.574055889155716 ], [ 4973514.686608109623194, 3899378.996833974029869 ], [ 4973496.817141400650144, 3899385.516438086051494 ], [ 4973502.834946019575, 3899401.185741049703211 ], [ 4973483.812743682414293, 3899408.067243187688291 ], [ 4973478.940607591532171, 3899395.677343700546771 ], [ 4973450.406957533210516, 3899406.181691779289395 ], [ 4973441.811867806129158, 3899382.860658808611333 ], [ 4973459.393311130814254, 3899376.340458681806922 ], [ 4973454.80987710505724, 3899363.586994317360222 ], [ 4973475.849602116271853, 3899355.981131282635033 ], [ 4973477.569183140993118, 3899360.354036570526659 ], [ 4973504.085392476059496, 3899350.574055889155716 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973479.648117162287235, 3898735.146419649943709 ], [ 4973496.276754385791719, 3898774.504798596259207 ], [ 4973457.650490066967905, 3898790.815603400114924 ], [ 4973441.021806513890624, 3898751.45724796038121 ], [ 4973479.648117162287235, 3898735.146419649943709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973323.89708707574755, 3899889.501442394219339 ], [ 4973366.539661985822022, 3899880.480834152083844 ], [ 4973375.100759251974523, 3899921.280045662540942 ], [ 4973358.966075267642736, 3899924.52593320608139 ], [ 4973361.536241962574422, 3899935.818960255011916 ], [ 4973334.740417710505426, 3899941.593106967397034 ], [ 4973323.89708707574755, 3899889.501442394219339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973250.5739776045084, 3901763.175767309963703 ], [ 4973224.31371833011508, 3901790.798914264887571 ], [ 4973186.368544528260827, 3901755.040735476184636 ], [ 4973212.628799529746175, 3901727.417552032507956 ], [ 4973250.5739776045084, 3901763.175767309963703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973245.085415394976735, 3899985.479300547856838 ], [ 4973266.495051513426006, 3899935.270724496804178 ], [ 4973290.955798760987818, 3899945.513728151097894 ], [ 4973281.98814816121012, 3899965.887671359349042 ], [ 4973301.844302637502551, 3899974.301119145005941 ], [ 4973289.114256259053946, 3900004.135166135616601 ], [ 4973245.085415394976735, 3899985.479300547856838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974008.234039193950593, 3903834.373580106534064 ], [ 4973969.322472213767469, 3903852.867913730908185 ], [ 4973948.100267865695059, 3903808.402267524506897 ], [ 4973987.011884439736605, 3903789.907903666142374 ], [ 4974008.234039193950593, 3903834.373580106534064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973954.094980688765645, 3902366.818768392782658 ], [ 4973969.599454144015908, 3902390.517693873960525 ], [ 4973916.832139152102172, 3902424.642547660972923 ], [ 4973901.328352413140237, 3902400.579522528219968 ], [ 4973954.094980688765645, 3902366.818768392782658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973927.764623274095356, 3896258.116716670338064 ], [ 4973932.108850416727364, 3896246.108951296191663 ], [ 4973951.394320143386722, 3896253.06521829823032 ], [ 4973946.182381146587431, 3896266.891927927266806 ], [ 4973956.544863542541862, 3896270.55354087240994 ], [ 4973937.141646723262966, 3896323.678435851354152 ], [ 4973913.251078589819372, 3896314.892507856246084 ], [ 4973917.595290166325867, 3896302.884739731438458 ], [ 4973889.67492269538343, 3896292.634418846573681 ], [ 4973905.313506692647934, 3896249.697746756486595 ], [ 4973927.764623274095356, 3896258.116716670338064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973860.839914934709668, 3900281.259141760878265 ], [ 4973906.084057349711657, 3900267.146653400268406 ], [ 4973916.675920466892421, 3900299.939155370928347 ], [ 4973871.431827589869499, 3900314.051626181229949 ], [ 4973860.839914934709668, 3900281.259141760878265 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973867.121286566369236, 3894570.621908009052277 ], [ 4973865.919145218096673, 3894596.108606597408652 ], [ 4973872.831943476572633, 3894596.486266920808703 ], [ 4973871.017321552149951, 3894640.542361948639154 ], [ 4973828.963759754784405, 3894638.639430546667427 ], [ 4973829.565523966215551, 3894625.531952128745615 ], [ 4973818.619855502620339, 3894625.14641634048894 ], [ 4973819.818390477448702, 3894601.480354780331254 ], [ 4973814.345195319503546, 3894601.469652278348804 ], [ 4973815.850302992388606, 3894568.336828428320587 ], [ 4973867.121286566369236, 3894570.621908009052277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973842.912443323992193, 3903113.797931134235114 ], [ 4973805.136881085112691, 3903139.941473865415901 ], [ 4973795.372907914221287, 3903126.085396818816662 ], [ 4973774.611200147308409, 3903140.24592583719641 ], [ 4973755.083212498575449, 3903112.533797578886151 ], [ 4973813.90920758061111, 3903071.866103962529451 ], [ 4973842.912443323992193, 3903113.797931134235114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973750.676365620456636, 3901977.892888697329909 ], [ 4973732.20771136879921, 3901997.155754648149014 ], [ 4973716.10977206658572, 3901982.194955789018422 ], [ 4973712.646858157590032, 3901985.829504723194987 ], [ 4973675.56514098867774, 3901950.800576619803905 ], [ 4973697.496704640798271, 3901927.90312107373029 ], [ 4973750.676365620456636, 3901977.892888697329909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973126.298460128717124, 3910492.995858097448945 ], [ 4973076.434034272097051, 3910523.486776923760772 ], [ 4973058.927374936640263, 3910495.050653513986617 ], [ 4973071.033613124862313, 3910487.427212974056602 ], [ 4973067.015054638497531, 3910481.229204698000103 ], [ 4973082.868123075924814, 3910471.428199479356408 ], [ 4973086.598786599002779, 3910477.625654617790133 ], [ 4973108.504643445834517, 3910464.195015608333051 ], [ 4973126.298460128717124, 3910492.995858097448945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972978.051590066403151, 3904800.232120732776821 ], [ 4972969.650475953705609, 3904826.433419341221452 ], [ 4972943.174879688769579, 3904818.007451285608113 ], [ 4972951.575970570556819, 3904791.806144541595131 ], [ 4972978.051590066403151, 3904800.232120732776821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972883.916469323448837, 3903437.835666087456048 ], [ 4972898.560858925804496, 3903459.711679839994758 ], [ 4972876.358643927611411, 3903474.598398243077099 ], [ 4972861.714244434610009, 3903452.722396384458989 ], [ 4972883.916469323448837, 3903437.835666087456048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973681.239722056314349, 3899632.391822423785925 ], [ 4973638.289475295692682, 3899651.242851939983666 ], [ 4973625.673144675791264, 3899622.451962728053331 ], [ 4973668.622718326747417, 3899603.965042379219085 ], [ 4973681.239722056314349, 3899632.391822423785925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973614.890226515009999, 3901017.779186184052378 ], [ 4973715.38312401343137, 3901026.714309519156814 ], [ 4973713.030126800760627, 3901051.834734648000449 ], [ 4973612.537322497926652, 3901042.899619983043522 ], [ 4973614.890226515009999, 3901017.779186184052378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973583.610314941033721, 3910275.038964276202023 ], [ 4973562.571295421570539, 3910286.650239087175578 ], [ 4973549.659975553862751, 3910264.048871497623622 ], [ 4973570.699716246686876, 3910252.073455378878862 ], [ 4973583.610314941033721, 3910275.038964276202023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973496.83881834987551, 3910186.02169306948781 ], [ 4973469.454028179869056, 3910203.810957174282521 ], [ 4973443.046849044971168, 3910162.976778035052121 ], [ 4973470.143766853958368, 3910145.186927887611091 ], [ 4973496.83881834987551, 3910186.02169306948781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973429.357976006343961, 3899715.28750439779833 ], [ 4973439.659097501076758, 3899749.899893613066524 ], [ 4973399.026692242361605, 3899761.837329069152474 ], [ 4973389.013531061820686, 3899727.225513872224838 ], [ 4973429.357976006343961, 3899715.28750439779833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972572.201060608960688, 3904562.768480672966689 ], [ 4972600.737249011173844, 3904547.893605979159474 ], [ 4972637.174706117250025, 3904617.512367004528642 ], [ 4972605.468278148211539, 3904633.837670623790473 ], [ 4972585.671699356287718, 3904595.930173058528453 ], [ 4972588.842691504396498, 3904594.115573650225997 ], [ 4972572.201060608960688, 3904562.768480672966689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972511.600366651080549, 3903574.03622861392796 ], [ 4972574.457094205543399, 3903532.281111292541027 ], [ 4972593.983208124525845, 3903561.448908298276365 ], [ 4972531.126518196426332, 3903603.203980703372508 ], [ 4972511.600366651080549, 3903574.03622861392796 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973336.936912265606225, 3899551.249565532431006 ], [ 4973380.170172601938248, 3899534.947517148219049 ], [ 4973391.631942896172404, 3899565.192570672370493 ], [ 4973370.014973904006183, 3899573.525641590822488 ], [ 4973377.465088853612542, 3899593.203129847999662 ], [ 4973355.848146766424179, 3899601.536212289705873 ], [ 4973336.936912265606225, 3899551.249565532431006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973216.019361854530871, 3905335.236409351695329 ], [ 4973232.519032039679587, 3905290.480131481774151 ], [ 4973254.963500932790339, 3905298.534454721026123 ], [ 4973238.463798236101866, 3905343.290719028562307 ], [ 4973216.019361854530871, 3905335.236409351695329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973018.411738810129464, 3904925.57108811289072 ], [ 4973058.412533787079155, 3904938.392782256938517 ], [ 4973041.320895222947001, 3904991.523042100481689 ], [ 4972999.305210619233549, 3904978.333361024502665 ], [ 4973003.65183643437922, 3904964.140601442195475 ], [ 4972993.291879774071276, 3904960.843467026483268 ], [ 4972999.375333460047841, 3904941.92034121369943 ], [ 4973011.749558328650892, 3904945.949620875064284 ], [ 4973018.411738810129464, 3904925.57108811289072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972920.947487829253078, 3903049.378887478262186 ], [ 4972968.810467403382063, 3903018.519811405334622 ], [ 4972987.186041744425893, 3903046.957408690359443 ], [ 4972959.505659000948071, 3903065.110689675435424 ], [ 4972964.961014593951404, 3903073.496203077491373 ], [ 4972944.777750378474593, 3903086.566091713495553 ], [ 4972920.947487829253078, 3903049.378887478262186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972450.805961329489946, 3903289.16973637836054 ], [ 4972365.463008200749755, 3903343.62694896152243 ], [ 4972330.147303104400635, 3903288.575993392150849 ], [ 4972415.202388457022607, 3903234.118122200947255 ], [ 4972450.805961329489946, 3903289.16973637836054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972260.266162667423487, 3910821.606066815089434 ], [ 4972283.05159324593842, 3910799.437234953045845 ], [ 4972306.32564963772893, 3910823.150089636910707 ], [ 4972248.640696382150054, 3910879.481120244599879 ], [ 4972225.366638157516718, 3910855.768314705230296 ], [ 4972241.229544770903885, 3910840.504837444983423 ], [ 4972230.023988637141883, 3910828.831320793367922 ], [ 4972249.059915661811829, 3910810.296673912089318 ], [ 4972260.266162667423487, 3910821.606066815089434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972234.18832375947386, 3892085.572116747498512 ], [ 4972242.889724125154316, 3892054.637677184306085 ], [ 4972283.488323270343244, 3892066.366830639075488 ], [ 4972274.787570985965431, 3892096.93712984258309 ], [ 4972234.18832375947386, 3892085.572116747498512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972639.899450201541185, 3902439.648739514872432 ], [ 4972669.7774971826002, 3902477.211380725260824 ], [ 4972677.852741153910756, 3902471.0366056477651 ], [ 4972702.847619785927236, 3902502.035582446027547 ], [ 4972667.661327141337097, 3902529.642195319756866 ], [ 4972612.789068832062185, 3902460.716509524732828 ], [ 4972639.899450201541185, 3902439.648739514872432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972569.138511283323169, 3903150.661479031667113 ], [ 4972536.568568910472095, 3903165.892810150515288 ], [ 4972515.344838397577405, 3903120.700054332613945 ], [ 4972531.77381210681051, 3903113.084645919501781 ], [ 4972533.781275519169867, 3903117.458050232380629 ], [ 4972549.056979378685355, 3903110.568713882472366 ], [ 4972559.382248257286847, 3903132.436293295584619 ], [ 4972560.247553185559809, 3903131.709683136083186 ], [ 4972569.138511283323169, 3903150.661479031667113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972075.76795968413353, 3912018.161503130104393 ], [ 4972100.864198865368962, 3911991.263143756892532 ], [ 4972129.314325413666666, 3912017.534594117663801 ], [ 4972104.218082145787776, 3912044.432927357964218 ], [ 4972075.76795968413353, 3912018.161503130104393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971725.969443591311574, 3902989.939280069898814 ], [ 4971685.017822314053774, 3903021.541798474267125 ], [ 4971663.471785335801542, 3902993.827409073710442 ], [ 4971704.423423326574266, 3902962.224858358036727 ], [ 4971725.969443591311574, 3902989.939280069898814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971722.901204531081021, 3903856.929845766630024 ], [ 4971686.844231465831399, 3903889.633962945081294 ], [ 4971667.876905614510179, 3903869.207019492983818 ], [ 4971704.221846810542047, 3903836.503417931962758 ], [ 4971722.901204531081021, 3903856.929845766630024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971092.713236462324858, 3900816.716967337299138 ], [ 4971065.642933831550181, 3900815.938517250586301 ], [ 4971066.564291978254914, 3900784.989125581458211 ], [ 4971104.577822400256991, 3900786.152004180941731 ], [ 4971104.266860709525645, 3900798.531867099925876 ], [ 4971093.035672595724463, 3900798.146905530709773 ], [ 4971092.713236462324858, 3900816.716967337299138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971061.268311132676899, 3912029.005994224455208 ], [ 4971049.407339836470783, 3912060.299451392143965 ], [ 4970976.913183205761015, 3912032.855185412336141 ], [ 4970988.774081996642053, 3912001.561696769669652 ], [ 4971061.268311132676899, 3912029.005994224455208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971506.312423384748399, 3897717.282162134535611 ], [ 4971505.39250931609422, 3897747.139096002560109 ], [ 4971462.190850851126015, 3897745.601838337257504 ], [ 4971463.110716976225376, 3897715.744903019629419 ], [ 4971506.312423384748399, 3897717.282162134535611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971433.599270043894649, 3912280.586651447229087 ], [ 4971411.382701025344431, 3912307.491014009807259 ], [ 4971364.819249531254172, 3912268.805997021496296 ], [ 4971387.035124122165143, 3912242.265728483907878 ], [ 4971433.599270043894649, 3912280.586651447229087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971430.752932257018983, 3899156.911313364747912 ], [ 4971401.357150700874627, 3899166.687964166980237 ], [ 4971404.508317794650793, 3899175.797099942341447 ], [ 4971390.674820593558252, 3899180.504983092658222 ], [ 4971388.096960254013538, 3899172.853439286351204 ], [ 4971351.784128917381167, 3899185.166153790429235 ], [ 4971355.221287890337408, 3899195.368207693099976 ], [ 4971339.947062702849507, 3899200.437561468221247 ], [ 4971337.369189868681133, 3899192.786022438202053 ], [ 4971309.413549650460482, 3899202.565457625314593 ], [ 4971297.096766249276698, 3899166.129497276153415 ], [ 4971339.173273432068527, 3899152.006798338610679 ], [ 4971342.038485148921609, 3899160.023003093432635 ], [ 4971378.062652624212205, 3899148.073867419268936 ], [ 4971374.338840025477111, 3899137.143015842884779 ], [ 4971418.720908269286156, 3899122.296480779070407 ], [ 4971430.752932257018983, 3899156.911313364747912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971396.940503229387105, 3892733.239030609373003 ], [ 4971424.040684928186238, 3892722.36572829214856 ], [ 4971449.277767200022936, 3892783.586487663444132 ], [ 4971421.888875064440072, 3892794.823354898486286 ], [ 4971396.940503229387105, 3892733.239030609373003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970972.673878349363804, 3897672.958257703110576 ], [ 4971007.543032462708652, 3897663.555405400693417 ], [ 4971012.11915638204664, 3897681.042112002614886 ], [ 4971027.392158793285489, 3897677.064962493255734 ], [ 4971034.829681207425892, 3897704.752609604969621 ], [ 4970984.687593607231975, 3897718.132591925095767 ], [ 4970972.673878349363804, 3897672.958257703110576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970929.766576118767262, 3903588.543710809201002 ], [ 4970955.895430702716112, 3903629.738851995207369 ], [ 4970964.25587997213006, 3903624.656480203848332 ], [ 4970991.245173813775182, 3903667.673904647585005 ], [ 4970954.054488845169544, 3903690.909490046091378 ], [ 4970900.936278041452169, 3903606.696988736279309 ], [ 4970929.766576118767262, 3903588.543710809201002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970931.178302621468902, 3902669.115317085757852 ], [ 4970897.440660107880831, 3902693.085614824201912 ], [ 4970869.292946602217853, 3902652.9792210906744 ], [ 4970903.317918273620307, 3902629.373550399206579 ], [ 4970931.178302621468902, 3902669.115317085757852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970824.391823495738208, 3903420.848777434788644 ], [ 4970799.020392633974552, 3903437.187888136133552 ], [ 4970759.967403536662459, 3903377.034272108227015 ], [ 4970785.338867245242, 3903360.695125146768987 ], [ 4970824.391823495738208, 3903420.848777434788644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971200.099358236417174, 3892776.20391981722787 ], [ 4971269.58481686655432, 3892745.38215863564983 ], [ 4971282.494330328889191, 3892774.536488757934421 ], [ 4971213.297014209441841, 3892805.358752477448434 ], [ 4971200.099358236417174, 3892776.20391981722787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971116.023745522834361, 3902378.152896634303033 ], [ 4971086.051587311550975, 3902390.113620697055012 ], [ 4971060.825478025712073, 3902327.436334705911577 ], [ 4971089.644423215650022, 3902316.201706016436219 ], [ 4971099.391849125735462, 3902339.888294190168381 ], [ 4971134.551766545511782, 3902325.752428700216115 ], [ 4971145.444308518432081, 3902353.082468613050878 ], [ 4971111.149711261503398, 3902366.491663611028343 ], [ 4971116.023745522834361, 3902378.152896634303033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970768.138555249199271, 3903318.424214511178434 ], [ 4970739.311430378817022, 3903334.757013365160674 ], [ 4970702.568618441931903, 3903270.966428237967193 ], [ 4970731.395789194852114, 3903254.633590599987656 ], [ 4970768.138555249199271, 3903318.424214511178434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970747.73394888266921, 3904859.390279909130186 ], [ 4970737.061583091504872, 3904869.20217358507216 ], [ 4970706.310938990674913, 3904836.373729679267853 ], [ 4970730.829204048961401, 3904813.478582779876888 ], [ 4970760.142762469127774, 3904844.847880652640015 ], [ 4970770.237897814251482, 3904835.763195450417697 ], [ 4970792.079379474744201, 3904859.107867809943855 ], [ 4970768.138351080939174, 3904881.275760222226381 ], [ 4970747.73394888266921, 3904859.390279909130186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970529.430758785456419, 3911000.441941841039807 ], [ 4970486.443477555178106, 3911050.613459687680006 ], [ 4970453.387863896787167, 3911022.514670533593744 ], [ 4970496.087240586057305, 3910972.342572973109782 ], [ 4970529.430758785456419, 3911000.441941841039807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970903.942385194823146, 3903070.701510421000421 ], [ 4970848.589232847094536, 3903104.463484203442931 ], [ 4970829.640196143649518, 3903073.477376830764115 ], [ 4970884.993388286791742, 3903039.715364654082805 ], [ 4970903.942385194823146, 3903070.701510421000421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970887.47392341401428, 3897486.00215977942571 ], [ 4970933.013938037678599, 3897469.336321929935366 ], [ 4970942.757890407927334, 3897495.935813483316451 ], [ 4970941.029025939293206, 3897496.296747219283134 ], [ 4970951.058972260914743, 3897523.989160551689565 ], [ 4970906.960541269741952, 3897539.929371614940464 ], [ 4970887.47392341401428, 3897486.00215977942571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970839.532461725175381, 3897399.250767758116126 ], [ 4970812.149863443337381, 3897409.76002962840721 ], [ 4970804.695246565155685, 3897391.175663843285292 ], [ 4970832.077860821038485, 3897380.666394506581128 ], [ 4970839.532461725175381, 3897399.250767758116126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970752.87075453530997, 3898630.578576819971204 ], [ 4970733.572091983631253, 3898631.271301008295268 ], [ 4970733.833967285230756, 3898645.472857099492103 ], [ 4970684.579942126758397, 3898646.838744834531099 ], [ 4970683.497511343099177, 3898608.967223830055445 ], [ 4970752.050285357050598, 3898606.908609379082918 ], [ 4970752.87075453530997, 3898630.578576819971204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970674.590713715180755, 3912843.22187707433477 ], [ 4970708.200142457149923, 3912881.88185962010175 ], [ 4970646.49750760011375, 3912935.660059287212789 ], [ 4970614.898441925644875, 3912899.55277974717319 ], [ 4970660.453732020221651, 3912860.31013548001647 ], [ 4970658.155481967143714, 3912857.756975573021919 ], [ 4970674.590713715180755, 3912843.22187707433477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970067.512090807780623, 3903790.877002881839871 ], [ 4970042.718059598468244, 3903806.853747509885579 ], [ 4970026.061735203489661, 3903781.698456583544612 ], [ 4970050.8564408775419, 3903765.357566825114191 ], [ 4970067.512090807780623, 3903790.877002881839871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970041.474802730605006, 3912736.101762996520847 ], [ 4970068.200922849588096, 3912761.275509842671454 ], [ 4970045.415674202144146, 3912785.266907623037696 ], [ 4970037.369255795143545, 3912777.605495527386665 ], [ 4970016.314560799859464, 3912799.779394800309092 ], [ 4969997.34699541144073, 3912782.266574365086854 ], [ 4970041.474802730605006, 3912736.101762996520847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970459.286045614629984, 3904342.886315691284835 ], [ 4970431.903995921835303, 3904357.037310302723199 ], [ 4970422.721976839005947, 3904339.178071090020239 ], [ 4970417.245434457436204, 3904342.081101235467941 ], [ 4970395.437168158590794, 3904300.166104718111455 ], [ 4970423.395840976387262, 3904285.651997149921954 ], [ 4970438.030435730703175, 3904313.716893367934972 ], [ 4970462.818234516307712, 3904301.017679585609585 ], [ 4970469.417281234636903, 3904314.138493645004928 ], [ 4970449.817414462566376, 3904324.29827980324626 ], [ 4970459.286045614629984, 3904342.886315691284835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970415.162304879166186, 3901073.27343552839011 ], [ 4970407.000582718290389, 3901126.785709026735276 ], [ 4970370.724115401506424, 3901120.893292508088052 ], [ 4970379.173095051199198, 3901067.745664034504443 ], [ 4970415.162304879166186, 3901073.27343552839011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970391.358828188851476, 3904168.343107905704528 ], [ 4970419.891557997092605, 3904154.922441297676414 ], [ 4970436.241992890834808, 3904189.544837353751063 ], [ 4970407.709291577339172, 3904202.965486885979772 ], [ 4970391.358828188851476, 3904168.343107905704528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970370.588721576146781, 3912850.311095557641238 ], [ 4970354.150996637530625, 3912866.3029083176516 ], [ 4970366.506649962626398, 3912878.706026774365455 ], [ 4970345.166556800715625, 3912899.42261516302824 ], [ 4970295.457336105406284, 3912849.081424951087683 ], [ 4970321.699826600030065, 3912823.640019915532321 ], [ 4970327.733738226816058, 3912829.841307851485908 ], [ 4970339.269068011082709, 3912818.574252988677472 ], [ 4970370.588721576146781, 3912850.311095557641238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969890.906590974889696, 3895083.474041231442243 ], [ 4969869.569902595132589, 3895094.72345137828961 ], [ 4969857.511645613238215, 3895072.489757022820413 ], [ 4969878.848346549086273, 3895061.24033744353801 ], [ 4969890.906590974889696, 3895083.474041231442243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969829.164501504041255, 3897687.617243573535234 ], [ 4969801.794432444497943, 3897691.573220166377723 ], [ 4969802.932739170268178, 3897699.22200366621837 ], [ 4969777.291521210223436, 3897702.816998255904764 ], [ 4969769.893455308862031, 3897652.553720911499113 ], [ 4969822.617459394969046, 3897644.638087354134768 ], [ 4969829.164501504041255, 3897687.617243573535234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970020.363677726127207, 3891206.828147459309548 ], [ 4970058.803720664232969, 3891297.930030333809555 ], [ 4970023.917403260245919, 3891312.431860487908125 ], [ 4970006.992249872535467, 3891272.347025364637375 ], [ 4969998.918887429870665, 3891275.973670737352222 ], [ 4969993.756219336763024, 3891263.219812649767846 ], [ 4970000.387110588140786, 3891260.682935677003115 ], [ 4969984.323546559549868, 3891222.05619241297245 ], [ 4970020.363677726127207, 3891206.828147459309548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969921.207639443688095, 3892666.440203324425966 ], [ 4969901.244864799082279, 3892713.376686171162874 ], [ 4969847.414127663709223, 3892690.703339426312596 ], [ 4969867.376824953593314, 3892643.76681722374633 ], [ 4969921.207639443688095, 3892666.440203324425966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969594.934967331588268, 3898842.215279359836131 ], [ 4969618.335149888880551, 3898802.931326214689761 ], [ 4969641.063650856725872, 3898816.809180774725974 ], [ 4969646.551723235286772, 3898808.079939227085561 ], [ 4969666.403964020311832, 3898819.767855808604509 ], [ 4969642.427691134624183, 3898859.050730376504362 ], [ 4969618.547812220640481, 3898844.806672151666135 ], [ 4969613.636446275748312, 3898853.172827156726271 ], [ 4969594.934967331588268, 3898842.215279359836131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969329.693029734306037, 3898829.359083144925535 ], [ 4969308.691834525205195, 3898815.848710536491126 ], [ 4969333.531060512177646, 3898776.931213919539005 ], [ 4969363.739073051139712, 3898795.92003629449755 ], [ 4969370.382391219958663, 3898785.372156096156687 ], [ 4969380.4512869566679, 3898791.944526222534478 ], [ 4969354.168660419993103, 3898832.680047173053026 ], [ 4969335.469016024842858, 3898820.630293215159327 ], [ 4969329.693029734306037, 3898829.359083144925535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969601.163007972761989, 3903704.827188872266561 ], [ 4969595.13342237751931, 3903694.984799011610448 ], [ 4969617.331666811369359, 3903681.18775781756267 ], [ 4969641.737272093072534, 3903720.921993878670037 ], [ 4969598.495326393283904, 3903747.06160731986165 ], [ 4969580.118616771884263, 3903717.533925125841051 ], [ 4969601.163007972761989, 3903704.827188872266561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969551.847473409958184, 3899899.936139772180468 ], [ 4969507.205216175876558, 3899900.584209513384849 ], [ 4969506.140142807736993, 3899852.152961785905063 ], [ 4969519.965115402825177, 3899851.813656747341156 ], [ 4969520.513662250712514, 3899867.108116120565683 ], [ 4969551.331009769812226, 3899866.7993502933532 ], [ 4969551.847473409958184, 3899899.936139772180468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969515.323001406155527, 3905803.526365322992206 ], [ 4969529.940701002255082, 3905841.058185567613691 ], [ 4969474.905134269036353, 3905862.443126685451716 ], [ 4969460.287369599565864, 3905824.911335889715701 ], [ 4969515.323001406155527, 3905803.526365322992206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969481.73071710858494, 3910561.217157228384167 ], [ 4969452.121624110266566, 3910536.767126204445958 ], [ 4969472.317863715812564, 3910512.406476791482419 ], [ 4969540.734154184348881, 3910569.334066978190094 ], [ 4969513.325561645440757, 3910602.056761301122606 ], [ 4969501.539669555611908, 3910592.204007861204445 ], [ 4969495.769414546899498, 3910599.112167095765471 ], [ 4969479.959569352678955, 3910585.610870129894465 ], [ 4969485.729823174886405, 3910578.702707559335977 ], [ 4969474.806278901174664, 3910569.579779715277255 ], [ 4969481.73071710858494, 3910561.217157228384167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969318.9353320710361, 3898241.63394878199324 ], [ 4969365.309134745970368, 3898240.624531694222242 ], [ 4969366.07412803824991, 3898295.973659357521683 ], [ 4969305.011232344433665, 3898296.956809210125357 ], [ 4969304.768128091469407, 3898271.831405227072537 ], [ 4969319.457981487736106, 3898271.493542226497084 ], [ 4969318.9353320710361, 3898241.63394878199324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969375.010224305093288, 3891855.634692091029137 ], [ 4969406.709511288441718, 3891850.593652409967035 ], [ 4969412.121950541622937, 3891884.831437840126455 ], [ 4969380.422702880576253, 3891889.872471235692501 ], [ 4969375.010224305093288, 3891855.634692091029137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969257.43990178219974, 3903482.819212223403156 ], [ 4969227.742820385843515, 3903503.157520554028451 ], [ 4969181.498901037499309, 3903436.43900489108637 ], [ 4969211.196020887233317, 3903416.100646286271513 ], [ 4969257.43990178219974, 3903482.819212223403156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968815.754830235615373, 3899381.558375292923301 ], [ 4968852.637092844583094, 3899372.156285881530493 ], [ 4968858.357984670437872, 3899394.378361999522895 ], [ 4968866.138166869059205, 3899392.207362815272063 ], [ 4968872.718560967594385, 3899416.979876559693366 ], [ 4968827.480160526931286, 3899428.551927030086517 ], [ 4968815.754830235615373, 3899381.558375292923301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969099.683104751631618, 3901999.068322502542287 ], [ 4969077.483092481270432, 3902013.229906834196299 ], [ 4969053.647823226638138, 3901975.317896941676736 ], [ 4969045.287224425002933, 3901980.400858043227345 ], [ 4969034.088226140476763, 3901962.174404364079237 ], [ 4969064.360236434265971, 3901943.29344429820776 ], [ 4969099.683104751631618, 3901999.068322502542287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968501.854098213836551, 3900837.162039573770016 ], [ 4968556.255875425413251, 3900854.007744290400296 ], [ 4968541.484149501658976, 3900901.682848313357681 ], [ 4968487.081819701008499, 3900885.201302425470203 ], [ 4968501.854098213836551, 3900837.162039573770016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968420.782221181318164, 3898293.933972301892936 ], [ 4968440.085538252256811, 3898290.690685735084116 ], [ 4968436.952439613640308, 3898270.658036943990737 ], [ 4968451.646118555217981, 3898268.134926599450409 ], [ 4968453.640541839413345, 3898280.518847982399166 ], [ 4968484.755396192893386, 3898275.839819229673594 ], [ 4968490.453149718232453, 3898311.534570014104247 ], [ 4968472.014550521038473, 3898314.415209622588009 ], [ 4968472.869663620367646, 3898319.514531629160047 ], [ 4968425.909122574143112, 3898326.714667999651283 ], [ 4968420.782221181318164, 3898293.933972301892936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968293.786667387932539, 3901571.612593987956643 ], [ 4968267.260537489317358, 3901589.408578461036086 ], [ 4968254.047478120774031, 3901569.722409158013761 ], [ 4968251.741024995222688, 3901571.174898120574653 ], [ 4968222.15397163387388, 3901527.791619895026088 ], [ 4968250.987227261997759, 3901508.178972855210304 ], [ 4968293.786667387932539, 3901571.612593987956643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968831.234698476269841, 3898446.499636618886143 ], [ 4968878.184171338565648, 3898445.490398701280355 ], [ 4968878.962419858202338, 3898493.921070496086031 ], [ 4968843.822544772177935, 3898494.587085524573922 ], [ 4968843.288411404937506, 3898470.91768827335909 ], [ 4968831.767553824000061, 3898470.897291048895568 ], [ 4968831.234698476269841, 3898446.499636618886143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968823.385645308531821, 3893767.421544922981411 ], [ 4968854.773224757052958, 3893774.395558665506542 ], [ 4968840.252319289371371, 3893840.641330156009644 ], [ 4968808.864813506603241, 3893833.667333085089922 ], [ 4968823.385645308531821, 3893767.421544922981411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968150.853792564943433, 3896176.411331174895167 ], [ 4968162.740572509355843, 3896132.372403501998633 ], [ 4968176.848494226112962, 3896136.038323397748172 ], [ 4968179.167487011291087, 3896127.667393357958645 ], [ 4968196.730695208534598, 3896132.067615180276334 ], [ 4968193.540563234128058, 3896144.442446934524924 ], [ 4968209.663526517339051, 3896148.840162150096148 ], [ 4968198.354676434770226, 3896191.787690445780754 ], [ 4968184.24678692035377, 3896188.121759143192321 ], [ 4968178.157774593681097, 3896211.051287729758769 ], [ 4968151.957691294141114, 3896204.08710007276386 ], [ 4968158.915904162451625, 3896178.246046407148242 ], [ 4968150.853792564943433, 3896176.411331174895167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967971.261904947459698, 3902055.343841853085905 ], [ 4968017.096195542253554, 3902029.57027671393007 ], [ 4968030.30286274664104, 3902052.897631768602878 ], [ 4968013.871988449245691, 3902061.972305836156011 ], [ 4968019.901253698393703, 3902072.542590544559062 ], [ 4967990.498505474068224, 3902088.877323283813894 ], [ 4967971.261904947459698, 3902055.343841853085905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967972.595865766517818, 3899797.008581059519202 ], [ 4967963.892994440160692, 3899833.042352586518973 ], [ 4967910.346478808671236, 3899819.840649080928415 ], [ 4967920.499435930512846, 3899777.983294012956321 ], [ 4967938.348938997834921, 3899782.019727424252778 ], [ 4967936.898149437271059, 3899788.207422153558582 ], [ 4967972.595865766517818, 3899797.008581059519202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968396.610115017741919, 3891547.304895491339266 ], [ 4968429.700217458419502, 3891570.667168746236712 ], [ 4968410.061188971623778, 3891598.306481289677322 ], [ 4968376.971103606745601, 3891574.944231830071658 ], [ 4968396.610115017741919, 3891547.304895491339266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967836.573729261755943, 3901506.000903882086277 ], [ 4967814.087251058779657, 3901519.434769289102405 ], [ 4967796.282398509792984, 3901490.27347420156002 ], [ 4967818.768892134539783, 3901476.839594133663923 ], [ 4967836.573729261755943, 3901506.000903882086277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967606.094599100761116, 3905062.434433550108224 ], [ 4967620.446270250715315, 3905089.040790385566652 ], [ 4967563.378723145462573, 3905119.893548065330833 ], [ 4967543.85895892418921, 3905084.539162761066109 ], [ 4967551.929731300100684, 3905079.819359167013317 ], [ 4967556.809204781427979, 3905088.931053306907415 ], [ 4967606.094599100761116, 3905062.434433550108224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967525.847226466052234, 3905845.543032435700297 ], [ 4967554.660919605754316, 3905834.304588917177171 ], [ 4967572.433637230657041, 3905880.579936114605516 ], [ 4967543.619986182078719, 3905891.81836090888828 ], [ 4967525.847226466052234, 3905845.543032435700297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968067.526714722625911, 3891922.510499972850084 ], [ 4968084.27979572955519, 3891897.414805685635656 ], [ 4968104.710839232429862, 3891910.923162575345486 ], [ 4968087.957747501321137, 3891936.018844336271286 ], [ 4968067.526714722625911, 3891922.510499972850084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967439.381953753530979, 3907065.963883635122329 ], [ 4967446.81991146504879, 3907094.014825777616352 ], [ 4967382.295049343258142, 3907110.654034446459264 ], [ 4967365.133680297993124, 3907043.988441154826432 ], [ 4967402.581411643885076, 3907034.221175432670861 ], [ 4967406.586156403645873, 3907049.521593238227069 ], [ 4967400.537134961225092, 3907050.967730598058552 ], [ 4967406.542997345328331, 3907074.646618979983032 ], [ 4967439.381953753530979, 3907065.963883635122329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967305.524975542910397, 3907216.120591538026929 ], [ 4967297.764655357226729, 3907208.096389206126332 ], [ 4967328.04578161239624, 3907179.746011015027761 ], [ 4967354.199131760746241, 3907207.82903012027964 ], [ 4967307.191999229602516, 3907251.444245002698153 ], [ 4967288.798339486122131, 3907231.749599323607981 ], [ 4967305.524975542910397, 3907216.120591538026929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967801.623869652859867, 3902230.5605124887079 ], [ 4967735.597455821931362, 3902275.96257773693651 ], [ 4967716.063247663900256, 3902247.890722997486591 ], [ 4967782.089697212912142, 3902202.488610536791384 ], [ 4967801.623869652859867, 3902230.5605124887079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967695.557000796310604, 3905281.43192269699648 ], [ 4967709.332569385878742, 3905308.037335166241974 ], [ 4967645.927388035692275, 3905340.699622008949518 ], [ 4967632.152402095496655, 3905313.730111096519977 ], [ 4967695.557000796310604, 3905281.43192269699648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967123.254329241812229, 3895918.655045796185732 ], [ 4967119.846830083988607, 3895889.883006399031729 ], [ 4967119.27073188778013, 3895889.882023355923593 ], [ 4967117.003617510199547, 3895868.030389695893973 ], [ 4967151.288327327929437, 3895864.083487426396459 ], [ 4967158.379490944556892, 3895928.546505172271281 ], [ 4967137.635634682141244, 3895931.059992265421897 ], [ 4967136.219010987319052, 3895917.220655689481646 ], [ 4967123.254329241812229, 3895918.655045796185732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966756.084295244887471, 3900116.812548885121942 ], [ 4966797.847314880229533, 3900115.426770045422018 ], [ 4966800.048904553987086, 3900175.876137154642493 ], [ 4966758.28536217007786, 3900177.626041925977916 ], [ 4966756.084295244887471, 3900116.812548885121942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966673.620592813007534, 3897275.366514496970922 ], [ 4966701.515583821572363, 3897301.631007575895637 ], [ 4966661.695535952225327, 3897343.802752267103642 ], [ 4966633.8005500016734, 3897317.538299853447825 ], [ 4966673.620592813007534, 3897275.366514496970922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966971.168968545272946, 3905396.347589608281851 ], [ 4966927.066620662808418, 3905423.582449962384999 ], [ 4966908.688750700093806, 3905393.692434023600072 ], [ 4966953.078457096591592, 3905366.822164178360254 ], [ 4966971.168968545272946, 3905396.347589608281851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966816.994487623684108, 3898504.54741620644927 ], [ 4966778.098072816617787, 3898512.492363208904862 ], [ 4966767.529474572278559, 3898460.403877244796604 ], [ 4966776.749248021282256, 3898458.598842166364193 ], [ 4966771.608644565567374, 3898432.736907922662795 ], [ 4966801.284768358804286, 3898426.961104278918356 ], [ 4966816.994487623684108, 3898504.54741620644927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966782.438233808614314, 3897990.701532757375389 ], [ 4966761.407977308146656, 3897993.214825397823006 ], [ 4966759.138905799016356, 3897972.455581153277308 ], [ 4966780.168561526574194, 3897970.306415596976876 ], [ 4966782.438233808614314, 3897990.701532757375389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966379.001568094827235, 3899481.133585647214204 ], [ 4966401.467007680796087, 3899480.807185587938875 ], [ 4966401.701800270006061, 3899512.486906284000725 ], [ 4966379.236998555250466, 3899512.449176991358399 ], [ 4966379.001568094827235, 3899481.133585647214204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966742.485072917304933, 3899983.881962016690522 ], [ 4966731.828879518434405, 3899983.863927336875349 ], [ 4966732.366069830022752, 3900006.80504547804594 ], [ 4966706.156384838744998, 3900007.488965890835971 ], [ 4966705.616708853282034, 3899986.004365290515125 ], [ 4966670.766233034431934, 3899987.037838284857571 ], [ 4966667.768002789467573, 3899886.532811861485243 ], [ 4966739.48587787989527, 3899884.105186267755926 ], [ 4966742.485072917304933, 3899983.881962016690522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966536.667452887631953, 3895133.689973197411746 ], [ 4966509.283014088869095, 3895144.931860645767301 ], [ 4966486.905249394476414, 3895091.003066114615649 ], [ 4966514.289733649231493, 3895079.761156229302287 ], [ 4966536.667452887631953, 3895133.689973197411746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966503.996531951241195, 3893322.821173460222781 ], [ 4966455.573333931155503, 3893338.397246297448874 ], [ 4966444.111489661037922, 3893301.965089616831392 ], [ 4966435.752977514639497, 3893304.499941467307508 ], [ 4966426.582247647456825, 3893276.082478637807071 ], [ 4966483.364070432260633, 3893257.971514571458101 ], [ 4966503.996531951241195, 3893322.821173460222781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966126.115572704002261, 3900005.785963855683804 ], [ 4966142.816821215674281, 3900007.634506241418421 ], [ 4966140.766728424467146, 3900028.022378559224308 ], [ 4966123.777487676590681, 3900026.173356565181166 ], [ 4966126.115572704002261, 3900005.785963855683804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966056.064462997950613, 3900217.957064969930798 ], [ 4966035.050579273141921, 3900211.73182551888749 ], [ 4966067.483582697808743, 3900105.823964064009488 ], [ 4966088.208930511958897, 3900112.412877309136093 ], [ 4966056.064462997950613, 3900217.957064969930798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966434.719748601317406, 3898031.989690906368196 ], [ 4966428.155125748366117, 3897996.293929507955909 ], [ 4966444.001482542604208, 3897993.407529716845602 ], [ 4966442.861008568666875, 3897986.487144824117422 ], [ 4966473.977686933241785, 3897980.713402735535055 ], [ 4966475.119378465227783, 3897986.905531271826476 ], [ 4966508.828916643746197, 3897980.772062372416258 ], [ 4966515.394662668928504, 3898015.739585465751588 ], [ 4966502.429800217971206, 3898017.902534476481378 ], [ 4966505.570501097477973, 3898034.293666338082403 ], [ 4966470.420287892222404, 3898040.788845492061228 ], [ 4966467.853168550878763, 3898025.85520209511742 ], [ 4966434.719748601317406, 3898031.989690906368196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966163.485832292586565, 3895393.78043822105974 ], [ 4966145.337188011966646, 3895394.47838048543781 ], [ 4966145.893836296163499, 3895406.131447611376643 ], [ 4966127.457754443399608, 3895406.464792574290186 ], [ 4966126.094074966385961, 3895360.582225271966308 ], [ 4966162.390800851397216, 3895359.550455329474062 ], [ 4966163.485832292586565, 3895393.78043822105974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966022.127682842314243, 3897422.838388301432133 ], [ 4966023.555109050124884, 3897430.487490253057331 ], [ 4966030.18228505551815, 3897429.04201106261462 ], [ 4966027.326828858815134, 3897414.10793530754745 ], [ 4966053.258274625986814, 3897409.053329373244196 ], [ 4966065.255482046864927, 3897469.154735019896179 ], [ 4966017.714405523613095, 3897478.5428870418109 ], [ 4966007.145133521407843, 3897425.726474616210908 ], [ 4966022.127682842314243, 3897422.838388301432133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965357.562310801818967, 3899748.530151061248034 ], [ 4965347.140263970009983, 3899781.284769780933857 ], [ 4965302.234385510906577, 3899767.010052272118628 ], [ 4965312.655786111019552, 3899734.619545660447329 ], [ 4965357.562310801818967, 3899748.530151061248034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965682.758757264353335, 3900250.109054421074688 ], [ 4965694.640315466560423, 3900205.704799267463386 ], [ 4965711.337252375669777, 3900210.101979075931013 ], [ 4965706.699092427268624, 3900228.300823212601244 ], [ 4965712.45673505961895, 3900229.766868808306754 ], [ 4965705.501308218576014, 3900255.972747395280749 ], [ 4965682.758757264353335, 3900250.109054421074688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965067.888439663685858, 3894409.187642365228385 ], [ 4965062.076104643754661, 3894440.493268490768969 ], [ 4964977.698637184686959, 3894424.698336766567081 ], [ 4964983.510877266526222, 3894393.392692681867629 ], [ 4965067.888439663685858, 3894409.187642365228385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965054.614388400688767, 3899195.649259623140097 ], [ 4965047.653998820111156, 3899225.132454405538738 ], [ 4965003.605144939385355, 3899214.500939819961786 ], [ 4965013.174806581810117, 3899174.462209709454328 ], [ 4965042.540952060371637, 3899181.428511987440288 ], [ 4965039.931623509153724, 3899191.984033280052245 ], [ 4965054.614388400688767, 3899195.649259623140097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965340.826109099201858, 3895202.343068345915526 ], [ 4965342.877742633223534, 3895180.862808694131672 ], [ 4965367.070919417776167, 3895183.087277675978839 ], [ 4965365.019266712479293, 3895204.567535515874624 ], [ 4965340.826109099201858, 3895202.343068345915526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965275.619613432325423, 3894211.44084051437676 ], [ 4965316.795896505005658, 3894222.068047434091568 ], [ 4965310.708891622722149, 3894244.99819895112887 ], [ 4965269.533237555064261, 3894234.006873153150082 ], [ 4965275.619613432325423, 3894211.44084051437676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964713.797340302728117, 3893019.825177742168307 ], [ 4964704.816836551763117, 3893050.761604889761657 ], [ 4964693.298951474018395, 3893047.46583121875301 ], [ 4964686.346213085576892, 3893071.487095256801695 ], [ 4964638.54679345805198, 3893057.937144230585545 ], [ 4964654.480521488934755, 3893002.615293567068875 ], [ 4964713.797340302728117, 3893019.825177742168307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964692.737978053279221, 3900879.892670286819339 ], [ 4964722.099396377801895, 3900888.679277044255286 ], [ 4964706.46579909324646, 3900939.268128185067326 ], [ 4964677.104431002400815, 3900930.481538256630301 ], [ 4964692.737978053279221, 3900879.892670286819339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964623.197294236160815, 3895607.908001803793013 ], [ 4964625.190157162956893, 3895622.476389691699296 ], [ 4964560.939902542158961, 3895631.476026768796146 ], [ 4964558.946418835781515, 3895617.271771926898509 ], [ 4964623.197294236160815, 3895607.908001803793013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964600.649900668300688, 3892620.193292763549834 ], [ 4964597.45690386928618, 3892635.117419794667512 ], [ 4964587.665570602752268, 3892632.916862388141453 ], [ 4964584.182737888768315, 3892648.932909900322556 ], [ 4964565.176245411857963, 3892644.532736562658101 ], [ 4964563.436009272933006, 3892651.812506299931556 ], [ 4964532.622181535698473, 3892644.844435088336468 ], [ 4964541.614348088391125, 3892606.62540331762284 ], [ 4964600.649900668300688, 3892620.193292763549834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964840.463227091357112, 3897871.324623672291636 ], [ 4964834.903903041966259, 3897924.842689961660653 ], [ 4964798.042309180833399, 3897921.14164558891207 ], [ 4964803.88958846218884, 3897867.624038494657725 ], [ 4964840.463227091357112, 3897871.324623672291636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964543.008177977986634, 3898895.505432 ], [ 4964608.050654246471822, 3898926.197197040077299 ], [ 4964594.46748666651547, 3898954.941561092156917 ], [ 4964529.425064608454704, 3898924.249828395899385 ], [ 4964543.008177977986634, 3898895.505432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964437.220889240503311, 3907012.177241083234549 ], [ 4964424.537931045517325, 3907020.896022587548941 ], [ 4964400.122371258214116, 3906984.443622780498117 ], [ 4964424.046322039328516, 3906968.460253332741559 ], [ 4964438.120965415611863, 3906989.602515977341682 ], [ 4964453.109141165390611, 3906979.79505196865648 ], [ 4964472.355367496609688, 3907007.864152660127729 ], [ 4964446.125643108040094, 3907025.300299868453294 ], [ 4964437.220889240503311, 3907012.177241083234549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964753.402859803289175, 3902010.616239097900689 ], [ 4964787.955571816302836, 3902013.949369032401592 ], [ 4964787.368397014215589, 3902020.866901173721999 ], [ 4964799.173946244642138, 3902021.978420769330114 ], [ 4964797.712198292836547, 3902035.448888266459107 ], [ 4964785.330688413232565, 3902034.336436287965626 ], [ 4964784.747643682174385, 3902038.705060297157615 ], [ 4964751.058912847191095, 3902035.373332851100713 ], [ 4964753.402859803289175, 3902010.616239097900689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964721.057550115510821, 3900820.585198346059769 ], [ 4964752.718867686577141, 3900831.924471320118755 ], [ 4964740.568820918910205, 3900865.404808653052896 ], [ 4964708.908126533962786, 3900853.701420267112553 ], [ 4964721.057550115510821, 3900820.585198346059769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964660.289132037200034, 3900286.307710395660251 ], [ 4964667.794242292642593, 3900275.760054093785584 ], [ 4964692.246169841848314, 3900293.277821197640151 ], [ 4964666.5569430841133, 3900328.556952425278723 ], [ 4964631.461309771053493, 3900303.375289496965706 ], [ 4964649.357404099777341, 3900278.643319430295378 ], [ 4964660.289132037200034, 3900286.307710395660251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964024.678718808107078, 3903716.856179770082235 ], [ 4964018.286112876608968, 3903752.894980881363153 ], [ 4963976.254824955947697, 3903745.545500565320253 ], [ 4963982.647376217879355, 3903709.506689617410302 ], [ 4964024.678718808107078, 3903716.856179770082235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964452.124335060827434, 3904189.453886206261814 ], [ 4964482.936658129096031, 3904189.139308026526123 ], [ 4964483.444623555988073, 3904231.379342274740338 ], [ 4964452.632348911836743, 3904231.693919882643968 ], [ 4964452.124335060827434, 3904189.453886206261814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964300.666544668376446, 3900587.957456271629781 ], [ 4964343.032720835879445, 3900569.090571974869817 ], [ 4964355.660290415398777, 3900596.784730454906821 ], [ 4964313.006150482222438, 3900615.651133717503399 ], [ 4964300.666544668376446, 3900587.957456271629781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964216.28776341304183, 3901665.648698014207184 ], [ 4964190.8797278823331, 3901706.39071886241436 ], [ 4964151.463903871364892, 3901682.295149207115173 ], [ 4964171.386183642782271, 3901650.283464770764112 ], [ 4964189.223947350867093, 3901661.235876803752035 ], [ 4964194.997656877152622, 3901652.505967491306365 ], [ 4964216.28776341304183, 3901665.648698014207184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963980.395303345285356, 3901503.598624728154391 ], [ 4963957.29369592666626, 3901542.888006956782192 ], [ 4963919.601886731572449, 3901520.98030352126807 ], [ 4963942.703457730822265, 3901481.690889422781765 ], [ 4963980.395303345285356, 3901503.598624728154391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964191.836771826259792, 3900746.908335857093334 ], [ 4964221.818157053552568, 3900728.385604592505842 ], [ 4964243.650611186400056, 3900763.012909932993352 ], [ 4964213.669249420985579, 3900781.535617226734757 ], [ 4964191.836771826259792, 3900746.908335857093334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964135.743876557797194, 3898539.097553607076406 ], [ 4964162.522244966588914, 3898543.873981945682317 ], [ 4964156.418591209687293, 3898578.456581723410636 ], [ 4964129.352235860191286, 3898573.679699881002307 ], [ 4964135.743876557797194, 3898539.097553607076406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963855.21962749492377, 3900532.263947647064924 ], [ 4963864.193217682652175, 3900503.511876233387738 ], [ 4963909.099202118813992, 3900517.420067936182022 ], [ 4963899.837569261901081, 3900546.171667570713907 ], [ 4963855.21962749492377, 3900532.263947647064924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963817.399083269760013, 3894770.579282926395535 ], [ 4963841.210078960284591, 3894832.518947483040392 ], [ 4963789.328086752444506, 3894852.099770460277796 ], [ 4963774.696344637311995, 3894814.57132104318589 ], [ 4963801.214059916324914, 3894804.417666827328503 ], [ 4963791.7460877019912, 3894780.37016035290435 ], [ 4963817.399083269760013, 3894770.579282926395535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963748.948506618849933, 3893244.406568223144859 ], [ 4963713.773150505498052, 3893263.285681564826518 ], [ 4963691.36865804810077, 3893221.739621244370937 ], [ 4963732.598866970278323, 3893199.592887385748327 ], [ 4963744.088025912642479, 3893221.094643079675734 ], [ 4963738.033215021714568, 3893224.362232209183276 ], [ 4963748.948506618849933, 3893244.406568223144859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963671.319283649325371, 3893148.153965566772968 ], [ 4963715.710402081720531, 3893131.109997134190053 ], [ 4963730.056222743354738, 3893167.909666567109525 ], [ 4963685.665155872702599, 3893184.953611674718559 ], [ 4963671.319283649325371, 3893148.153965566772968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963163.659797557629645, 3895036.822831659112126 ], [ 4963141.1271350402385, 3895077.934303665068001 ], [ 4963116.663205014541745, 3895064.42341292463243 ], [ 4963120.995984505861998, 3895056.783448925241828 ], [ 4963094.516751526854932, 3895042.541181322187185 ], [ 4963115.894869369454682, 3895002.884389636106789 ], [ 4963158.203720937483013, 3895025.89045069552958 ], [ 4963155.025429482571781, 3895032.075691610109061 ], [ 4963163.659797557629645, 3895036.822831659112126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963077.152609598822892, 3895834.859379699919373 ], [ 4963132.174638227559626, 3895832.032015544362366 ], [ 4963133.570633697323501, 3895860.436278073582798 ], [ 4963128.961843100376427, 3895860.429097522981465 ], [ 4963130.359542305581272, 3895887.740975017659366 ], [ 4963097.231059231795371, 3895889.510028599761426 ], [ 4963097.795820156112313, 3895896.793494515120983 ], [ 4963080.511178898625076, 3895897.858979891054332 ], [ 4963077.152609598822892, 3895834.859379699919373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963008.45949531160295, 3899816.511413114145398 ], [ 4963042.793480501510203, 3899777.238719353452325 ], [ 4963075.582130336202681, 3899805.691877965815365 ], [ 4963041.248699569143355, 3899844.600401203148067 ], [ 4963008.45949531160295, 3899816.511413114145398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962940.817039458081126, 3896077.157732189632952 ], [ 4962937.318122295662761, 3896104.462008939124644 ], [ 4962913.702799892984331, 3896101.512361392378807 ], [ 4962909.910223591141403, 3896132.457480736542493 ], [ 4962876.50303244870156, 3896128.400304053910077 ], [ 4962883.794994928874075, 3896069.786767521407455 ], [ 4962940.817039458081126, 3896077.157732189632952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963446.793671594001353, 3901292.652209836058319 ], [ 4963421.977290128357708, 3901323.928482507355511 ], [ 4963396.090660242363811, 3901303.132435494568199 ], [ 4963400.996217265725136, 3901296.949909960385412 ], [ 4963384.025860741734505, 3901283.450470633339137 ], [ 4963403.936097113415599, 3901258.720817214343697 ], [ 4963446.793671594001353, 3901292.652209836058319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963389.522202130407095, 3903655.40694621950388 ], [ 4963388.646314081735909, 3903663.052324536256492 ], [ 4963374.53827288467437, 3903661.573682098183781 ], [ 4963380.087259599938989, 3903612.060560595709831 ], [ 4963404.559829734265804, 3903615.011986094992608 ], [ 4963405.144901465624571, 3903609.186807443387806 ], [ 4963428.178211262449622, 3903611.771865759510547 ], [ 4963422.631993035785854, 3903659.464326619170606 ], [ 4963389.522202130407095, 3903655.40694621950388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963298.841436062008142, 3903637.058353513013572 ], [ 4963306.388958822004497, 3903598.472275505308062 ], [ 4963327.979604102671146, 3903602.875645304098725 ], [ 4963329.431409856304526, 3903595.231167099904269 ], [ 4963356.204309612512589, 3903600.370936664287001 ], [ 4963347.204906927421689, 3903646.601478100754321 ], [ 4963298.841436062008142, 3903637.058353513013572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962818.498551565222442, 3895452.486548021435738 ], [ 4962797.718721029348671, 3895478.307598981074989 ], [ 4962786.786191165447235, 3895469.551602338440716 ], [ 4962781.30248395819217, 3895476.461585162207484 ], [ 4962757.710769383236766, 3895457.854555899277329 ], [ 4962762.905295858159661, 3895451.672380230855197 ], [ 4962749.095577741973102, 3895440.727180651389062 ], [ 4962770.164007051847875, 3895414.542409234680235 ], [ 4962782.822638981044292, 3895424.757582520600408 ], [ 4962790.038058118894696, 3895415.665500783827156 ], [ 4962810.177080436609685, 3895431.718315091915429 ], [ 4962803.250838409177959, 3895440.082580041140318 ], [ 4962818.498551565222442, 3895452.486548021435738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962576.559354243800044, 3899369.420317837037146 ], [ 4962582.334709244780242, 3899359.597686453256756 ], [ 4962559.602474747225642, 3899346.089925916399807 ], [ 4962575.484007971361279, 3899319.532844600267708 ], [ 4962620.949043690226972, 3899346.184282219037414 ], [ 4962599.292120661586523, 3899382.563963676802814 ], [ 4962576.559354243800044, 3899369.420317837037146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962501.950844495557249, 3896562.957558748312294 ], [ 4962512.593861486762762, 3896572.441260259132832 ], [ 4962517.499516069889069, 3896566.622719549573958 ], [ 4962530.73154663387686, 3896578.295179944485426 ], [ 4962537.94433481246233, 3896570.659538785461336 ], [ 4962562.106828436255455, 3896592.180301668122411 ], [ 4962549.122579865157604, 3896606.725528623443097 ], [ 4962561.203530989587307, 3896617.66797687811777 ], [ 4962542.736444979906082, 3896638.75911210430786 ], [ 4962530.079972669482231, 3896627.451658704318106 ], [ 4962521.135041766799986, 3896637.633549065329134 ], [ 4962497.547521499916911, 3896616.84196365904063 ], [ 4962490.334198512136936, 3896624.8417444890365 ], [ 4962475.088676207698882, 3896611.345568215008825 ], [ 4962485.476040070876479, 3896599.709357492625713 ], [ 4962476.559040058404207, 3896591.684831589926034 ], [ 4962501.950844495557249, 3896562.957558748312294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962467.421723013743758, 3901047.164961052127182 ], [ 4962484.089611091651022, 3901070.494876742828637 ], [ 4962444.879507785663009, 3901098.472792479209602 ], [ 4962428.212161034345627, 3901074.778771110810339 ], [ 4962467.421723013743758, 3901047.164961052127182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962743.547029717825353, 3903325.227362738456577 ], [ 4962742.906998326070607, 3903366.737303217872977 ], [ 4962700.000743895769119, 3903365.942828477825969 ], [ 4962700.621613204479218, 3903336.813309815712273 ], [ 4962728.266103786416352, 3903337.220094410236925 ], [ 4962728.572619748301804, 3903325.20424616523087 ], [ 4962743.547029717825353, 3903325.227362738456577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962690.987215840257704, 3896697.612106803338975 ], [ 4962753.7626031069085, 3896708.996974329464138 ], [ 4962740.399216041900218, 3896782.530505788046867 ], [ 4962677.335955340415239, 3896771.145225051790476 ], [ 4962680.823299035429955, 3896751.12347662076354 ], [ 4962698.388677723705769, 3896754.427721593528986 ], [ 4962701.001811972819269, 3896740.958959136623889 ], [ 4962683.724464802071452, 3896737.655156465712935 ], [ 4962690.987215840257704, 3896697.612106803338975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962205.934797397814691, 3899527.24959709495306 ], [ 4962272.407335924915969, 3899565.2205013288185 ], [ 4962256.525135768577456, 3899592.506024185102433 ], [ 4962236.67025457136333, 3899580.823575506918132 ], [ 4962230.316833649761975, 3899592.101921294350177 ], [ 4962210.749395417049527, 3899580.784060165286064 ], [ 4962217.6799401557073, 3899568.778329280670732 ], [ 4962190.918335914611816, 3899553.444086940493435 ], [ 4962205.934797397814691, 3899527.24959709495306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962188.462103892117739, 3896249.32698639575392 ], [ 4962186.424160656519234, 3896263.524929186329246 ], [ 4962193.33557902649045, 3896264.627843565773219 ], [ 4962190.715998640283942, 3896282.466194255277514 ], [ 4962201.371440646238625, 3896283.938942704349756 ], [ 4962197.000847183167934, 3896316.703931163996458 ], [ 4962174.826408221386373, 3896313.392997710034251 ], [ 4962172.785705228336155, 3896329.411584903486073 ], [ 4962137.075401383452117, 3896324.6235615555197 ], [ 4962141.735073171555996, 3896291.130744270049036 ], [ 4962131.079630782827735, 3896289.658019443508238 ], [ 4962136.031223095953465, 3896253.616740067489445 ], [ 4962148.126905428245664, 3896255.091658035293221 ], [ 4962149.872351478785276, 3896243.806302533019334 ], [ 4962188.462103892117739, 3896249.32698639575392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962126.641820478253067, 3899965.177458333782852 ], [ 4962098.727984034456313, 3899950.205681449268013 ], [ 4962088.907576628029346, 3899968.761397868860513 ], [ 4962067.899773157201707, 3899957.805579506326467 ], [ 4962079.742294702678919, 3899935.247495214920491 ], [ 4962043.770867675542831, 3899915.893974265083671 ], [ 4962057.34584732260555, 3899890.425468785688281 ], [ 4962142.238987916149199, 3899935.706638337112963 ], [ 4962126.641820478253067, 3899965.177458333782852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962022.946021378040314, 3897315.974872192833573 ], [ 4962134.627264210954309, 3897366.030268490314484 ], [ 4962110.639687571674585, 3897419.156720837112516 ], [ 4962096.823524227365851, 3897412.945518059190363 ], [ 4962092.199508133344352, 3897423.134121754206717 ], [ 4962076.36821957025677, 3897416.19160838611424 ], [ 4962080.992230849340558, 3897406.003002009820193 ], [ 4962061.131785467267036, 3897396.869599774945527 ], [ 4962057.374642695300281, 3897405.238877321127802 ], [ 4962041.255854268558323, 3897397.931818639859557 ], [ 4962045.879855345003307, 3897387.743206339422613 ], [ 4962026.594898466952145, 3897378.974832825362682 ], [ 4962022.548626257106662, 3897388.071935792919248 ], [ 4962005.854303947649896, 3897380.399895816110075 ], [ 4962010.477190260775387, 3897370.939535123761743 ], [ 4962000.115170443430543, 3897366.190138913691044 ], [ 4962022.946021378040314, 3897315.974872192833573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961793.027697189711034, 3899460.716036275494844 ], [ 4961781.18685591313988, 3899482.181852705776691 ], [ 4961757.876655837520957, 3899469.766288391314447 ], [ 4961769.71803286485374, 3899447.936332592740655 ], [ 4961793.027697189711034, 3899460.716036275494844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962257.176210878416896, 3893878.951015239115804 ], [ 4962268.73681684397161, 3893854.207887873519212 ], [ 4962262.403700855560601, 3893851.28519442724064 ], [ 4962273.675140935927629, 3893827.269886181224138 ], [ 4962320.597368721850216, 3893849.18926295125857 ], [ 4962297.765260588377714, 3893897.947662008460611 ], [ 4962257.176210878416896, 3893878.951015239115804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961618.372842921875417, 3896472.040263403207064 ], [ 4961644.580912690609694, 3896474.628540571779013 ], [ 4961641.948584853671491, 3896501.206033688504249 ], [ 4961616.028036518022418, 3896498.98232020996511 ], [ 4961618.372842921875417, 3896472.040263403207064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961579.137892553582788, 3899584.198480141349137 ], [ 4961639.572284159250557, 3899615.968548089731485 ], [ 4961624.264039689674973, 3899645.075957478955388 ], [ 4961563.829695589840412, 3899613.305923402775079 ], [ 4961579.137892553582788, 3899584.198480141349137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961513.182623741216958, 3899584.82785674976185 ], [ 4961517.513676959089935, 3899577.551743084564805 ], [ 4961479.530203366652131, 3899554.918797529302537 ], [ 4961496.565312342718244, 3899526.542153371497989 ], [ 4961549.512768580578268, 3899557.572547256480902 ], [ 4961528.146021625027061, 3899593.589398955926299 ], [ 4961513.182623741216958, 3899584.82785674976185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961419.662266661413014, 3898758.476929082535207 ], [ 4961402.62729855440557, 3898786.489479843061417 ], [ 4961371.836543513461947, 3898768.237003948539495 ], [ 4961388.87149101216346, 3898740.224433980416507 ], [ 4961419.662266661413014, 3898758.476929082535207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961889.141787017695606, 3895514.059854790568352 ], [ 4961879.273133063688874, 3895563.566513269208372 ], [ 4961804.40088274423033, 3895549.252413858659565 ], [ 4961811.657144818454981, 3895512.850438703782856 ], [ 4961824.327635598368943, 3895515.41846480499953 ], [ 4961826.941549574956298, 3895501.221370445098728 ], [ 4961852.283086769282818, 3895505.993314628023654 ], [ 4961849.381106806918979, 3895520.189971518237144 ], [ 4961866.65933867637068, 3895523.493235561996698 ], [ 4961869.272173818200827, 3895510.024402038194239 ], [ 4961889.141787017695606, 3895514.059854790568352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961112.297307125292718, 3898014.466208457946777 ], [ 4961161.582790991291404, 3897992.327430308330804 ], [ 4961175.937063320539892, 3898024.028036702424288 ], [ 4961146.826956984587014, 3898037.093483826611191 ], [ 4961157.449862895533442, 3898060.049428592436016 ], [ 4961137.274545161053538, 3898069.122725866734982 ], [ 4961112.297307125292718, 3898014.466208457946777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961675.559256358072162, 3892155.377274821512401 ], [ 4961681.966215340420604, 3892109.506717802025378 ], [ 4961731.21912066731602, 3892116.499275253154337 ], [ 4961724.812627451494336, 3892162.00569302868098 ], [ 4961675.559256358072162, 3892155.377274821512401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961663.842212832532823, 3899181.597862496972084 ], [ 4961651.126365025527775, 3899210.345017484389246 ], [ 4961614.860176298767328, 3899194.632937987335026 ], [ 4961627.576539686881006, 3899165.521636926103383 ], [ 4961663.842212832532823, 3899181.597862496972084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961656.438509214669466, 3893568.167727781459689 ], [ 4961713.467839164659381, 3893574.443694232031703 ], [ 4961708.212913622148335, 3893620.680145042482764 ], [ 4961651.183133360929787, 3893614.768317565787584 ], [ 4961656.438509214669466, 3893568.167727781459689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961491.33614066708833, 3898594.72568419482559 ], [ 4961478.053426775150001, 3898617.281854278407991 ], [ 4961451.290452639572322, 3898601.948357056826353 ], [ 4961464.573151591233909, 3898579.39217395382002 ], [ 4961491.33614066708833, 3898594.72568419482559 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961021.790433148853481, 3908955.739031141623855 ], [ 4960991.839808951131999, 3908961.15669573424384 ], [ 4960994.696814928203821, 3908976.090340975206345 ], [ 4960968.778018857352436, 3908980.785731344018131 ], [ 4960957.3515345742926, 3908919.958769774064422 ], [ 4961012.933690171688795, 3908909.481137114111334 ], [ 4961021.790433148853481, 3908955.739031141623855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960896.387850951403379, 3909845.857096895109862 ], [ 4960885.22422953043133, 3909802.14474178943783 ], [ 4960948.585906855762005, 3909786.216465217527002 ], [ 4960961.180857448838651, 3909835.392947441432625 ], [ 4960910.779603292234242, 3909848.06313203740865 ], [ 4960909.348168204538524, 3909842.599033451639116 ], [ 4960896.387850951403379, 3909845.857096895109862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960913.834789178334177, 3895680.1025386066176 ], [ 4960946.952627913095057, 3895685.613363485783339 ], [ 4960933.000382468104362, 3895770.799009275622666 ], [ 4960899.882108805701137, 3895765.652329786680639 ], [ 4960913.834789178334177, 3895680.1025386066176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960871.860062252730131, 3899533.26070874882862 ], [ 4960896.405908138491213, 3899489.237165504135191 ], [ 4960924.032344090752304, 3899504.571393718943 ], [ 4960911.32711159158498, 3899526.764577120542526 ], [ 4960916.21952201705426, 3899529.320707506034523 ], [ 4960904.090864550322294, 3899551.150615475140512 ], [ 4960871.860062252730131, 3899533.26070874882862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961273.733855451457202, 3899466.856205536052585 ], [ 4961261.601626958698034, 3899490.870726976543665 ], [ 4961238.002642710693181, 3899478.8193139731884 ], [ 4961250.134313608519733, 3899455.168911328539252 ], [ 4961273.733855451457202, 3899466.856205536052585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961212.350237801671028, 3895810.902936439961195 ], [ 4961223.387644135393202, 3895749.381499948911369 ], [ 4961265.1441406942904, 3895756.72621096810326 ], [ 4961259.044677954167128, 3895790.581154474057257 ], [ 4961267.684014488011599, 3895792.050531407352537 ], [ 4961262.457919795066118, 3895819.716577198822051 ], [ 4961212.350237801671028, 3895810.902936439961195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961180.699896891601384, 3898113.975164141040295 ], [ 4961155.636833478696644, 3898117.215110778808594 ], [ 4961153.073796979151666, 3898097.548297898378223 ], [ 4961178.136878401972353, 3898094.308348914142698 ], [ 4961180.699896891601384, 3898113.975164141040295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961161.114562882110476, 3898307.663127782288939 ], [ 4961223.596099782735109, 3898320.86465003574267 ], [ 4961215.765876872465014, 3898356.901858964934945 ], [ 4961139.752211773768067, 3898340.403100147843361 ], [ 4961145.841226789169014, 3898313.102400684263557 ], [ 4961159.373988668434322, 3898316.035529166925699 ], [ 4961161.114562882110476, 3898307.663127782288939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960624.675730975344777, 3900368.212053953669965 ], [ 4960588.298586613498628, 3900428.968539428897202 ], [ 4960562.113447056151927, 3900413.272624581120908 ], [ 4960598.778021484613419, 3900352.880655346438289 ], [ 4960624.675730975344777, 3900368.212053953669965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960566.054473283700645, 3902050.408866428304464 ], [ 4960556.193283034488559, 3902098.095554500818253 ], [ 4960500.629132630303502, 3902086.726296628359705 ], [ 4960510.490228373557329, 3902039.039588502142578 ], [ 4960566.054473283700645, 3902050.408866428304464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960553.979149106889963, 3892975.552396301180124 ], [ 4960515.919572507031262, 3892998.07275808416307 ], [ 4960492.928443807177246, 3892960.169807168189436 ], [ 4960530.988054664805532, 3892937.64941333886236 ], [ 4960553.979149106889963, 3892975.552396301180124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960538.528921984136105, 3893691.406910099089146 ], [ 4960572.501255936920643, 3893705.293475162703544 ], [ 4960549.661020784638822, 3893761.700043789111078 ], [ 4960513.960845953784883, 3893747.446854605805129 ], [ 4960517.719079443253577, 3893738.349123285617679 ], [ 4960499.293625767342746, 3893730.675510816741735 ], [ 4960509.991117331199348, 3893704.109727387316525 ], [ 4960530.143956730142236, 3893712.514128561131656 ], [ 4960538.528921984136105, 3893691.406910099089146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960168.196310304105282, 3901956.976471809204668 ], [ 4960160.385417939163744, 3901981.36191196879372 ], [ 4960138.508658485487103, 3901974.411765809636563 ], [ 4960155.285522039979696, 3901923.457764197140932 ], [ 4960201.341395153664052, 3901938.453829727135599 ], [ 4960192.663349512033165, 3901965.022787087596953 ], [ 4960168.196310304105282, 3901956.976471809204668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960669.679170943796635, 3894228.324857554864138 ], [ 4960668.761577472090721, 3894264.73640549229458 ], [ 4960624.689001198858023, 3894263.579430388752371 ], [ 4960625.606535009108484, 3894227.167880983091891 ], [ 4960669.679170943796635, 3894228.324857554864138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960613.999979553744197, 3901168.190780525095761 ], [ 4960602.117642452940345, 3901219.151640705764294 ], [ 4960571.312621676363051, 3901212.188074730336666 ], [ 4960583.195436294190586, 3901160.863071491476148 ], [ 4960613.999979553744197, 3901168.190780525095761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960538.587922726757824, 3894833.679466042201966 ], [ 4960531.33692907076329, 3894867.532872290350497 ], [ 4960466.831663104705513, 3894853.601787753403187 ], [ 4960474.082579207606614, 3894819.748364378232509 ], [ 4960538.587922726757824, 3894833.679466042201966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960137.11400877404958, 3897762.880569939967245 ], [ 4960186.376994020305574, 3897756.033421393018216 ], [ 4960190.36719997599721, 3897785.169576356187463 ], [ 4960141.392295795492828, 3897792.017134457360953 ], [ 4960137.11400877404958, 3897762.880569939967245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960376.576213603839278, 3899072.638929908163846 ], [ 4960373.945916434749961, 3899098.852459044195712 ], [ 4960329.597474690526724, 3899094.782511761412024 ], [ 4960331.939713952131569, 3899068.568559559993446 ], [ 4960376.576213603839278, 3899072.638929908163846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960249.730674867518246, 3901734.610886395908892 ], [ 4960234.956739916466177, 3901794.306862454861403 ], [ 4960201.561994434334338, 3901786.247568895108998 ], [ 4960203.879604036919773, 3901776.783533509355038 ], [ 4960191.212967865169048, 3901773.488002089783549 ], [ 4960195.848183576948941, 3901754.559929928276688 ], [ 4960209.090800552628934, 3901757.856298428028822 ], [ 4960216.911832661367953, 3901726.552409867290407 ], [ 4960249.730674867518246, 3901734.610886395908892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960205.507082686759531, 3900256.54151422297582 ], [ 4960198.549119312316179, 3900288.210759933106601 ], [ 4960167.742399642243981, 3900281.611789860762656 ], [ 4960174.412326018325984, 3900249.9421192035079 ], [ 4960205.507082686759531, 3900256.54151422297582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959789.406335364095867, 3906838.700782847590744 ], [ 4959803.471628379076719, 3906868.943889164365828 ], [ 4959755.643177445977926, 3906891.087339849676937 ], [ 4959741.577842300757766, 3906860.844258149154484 ], [ 4959789.406335364095867, 3906838.700782847590744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959580.248914224095643, 3909141.900176980067044 ], [ 4959600.653935105539858, 3909167.418548143468797 ], [ 4959577.883843564428389, 3909185.228533806279302 ], [ 4959557.478814655914903, 3909159.710179648827761 ], [ 4959580.248914224095643, 3909141.900176980067044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960080.301586158573627, 3892826.299579418264329 ], [ 4960076.502355734817684, 3892863.799340575933456 ], [ 4960052.019105075858533, 3892861.215092343278229 ], [ 4960050.270645912736654, 3892875.049456731881946 ], [ 4960026.651122099719942, 3892872.830606773961335 ], [ 4960032.199258497916162, 3892821.132345144171268 ], [ 4960080.301586158573627, 3892826.299579418264329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959956.940129420720041, 3893269.630399417132139 ], [ 4959974.738497741520405, 3893312.987348498776555 ], [ 4959920.548125966452062, 3893335.121196687687188 ], [ 4959899.304278500378132, 3893283.74849769892171 ], [ 4959923.805492343381047, 3893273.588128879666328 ], [ 4959926.962815864942968, 3893281.603502739220858 ], [ 4959956.940129420720041, 3893269.630399417132139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959523.537835164926946, 3889518.124195883050561 ], [ 4959535.408199072815478, 3889477.722897765692323 ], [ 4959566.800067324191332, 3889486.870812774635851 ], [ 4959554.929660219699144, 3889527.272097245324403 ], [ 4959523.537835164926946, 3889518.124195883050561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959254.61209355480969, 3908947.719283237587661 ], [ 4959272.458855211734772, 3908950.293458124622703 ], [ 4959271.585852566175163, 3908956.846601193770766 ], [ 4959294.32602917868644, 3908960.155980123672634 ], [ 4959296.65405167080462, 3908942.680933989584446 ], [ 4959321.409085594117641, 3908946.357321149203926 ], [ 4959314.431686038151383, 3908994.048745965119451 ], [ 4959293.994294689968228, 3908991.106742602307349 ], [ 4959293.121803676709533, 3908997.295753713231534 ], [ 4959276.13880121987313, 3908994.722787438426167 ], [ 4959276.429802028462291, 3908992.538406409323215 ], [ 4959248.796232224442065, 3908988.493857197929174 ], [ 4959254.61209355480969, 3908947.719283237587661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959468.731871767900884, 3893008.215785542968661 ], [ 4959425.774863045662642, 3893031.458985188510269 ], [ 4959401.926254942081869, 3892987.72969280462712 ], [ 4959445.171393200755119, 3892964.486864923033863 ], [ 4959468.731871767900884, 3893008.215785542968661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958770.419835842214525, 3899408.989699113182724 ], [ 4958715.694626753218472, 3899411.098140161950141 ], [ 4958713.459053855389357, 3899361.937473269645125 ], [ 4958748.310524740256369, 3899360.529553520958871 ], [ 4958749.143570953048766, 3899382.742645925376564 ], [ 4958769.305404332466424, 3899382.042522800620645 ], [ 4958770.419835842214525, 3899408.989699113182724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959257.410209350287914, 3905544.547869504895061 ], [ 4959228.593001069501042, 3905560.528906038030982 ], [ 4959212.221777145750821, 3905531.011131761595607 ], [ 4959241.03900727070868, 3905515.030077968258411 ], [ 4959257.410209350287914, 3905544.547869504895061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959248.597767916508019, 3906685.723527803085744 ], [ 4959287.503829837776721, 3906661.01762418076396 ], [ 4959304.454271394759417, 3906687.623233105521649 ], [ 4959265.548232306726277, 3906712.329112603794783 ], [ 4959248.597767916508019, 3906685.723527803085744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959178.021597928367555, 3904872.613456611521542 ], [ 4959196.130747281014919, 3904895.215158278588206 ], [ 4959164.132559730671346, 3904920.295047619380057 ], [ 4959158.383786654099822, 3904913.004312625154853 ], [ 4959132.439837009645998, 3904932.994943964760751 ], [ 4959103.695911083370447, 3904896.541315236128867 ], [ 4959152.414338829927146, 3904858.012077387887985 ], [ 4959169.373250026255846, 3904879.519744760822505 ], [ 4959178.021597928367555, 3904872.613456611521542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958660.280333936214447, 3904666.517702396027744 ], [ 4958678.958866787143052, 3904694.217680992558599 ], [ 4958616.701905488967896, 3904736.370255527552217 ], [ 4958597.735383342951536, 3904708.66991928126663 ], [ 4958660.280333936214447, 3904666.517702396027744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959071.787344430573285, 3905267.182015022728592 ], [ 4959093.694002483040094, 3905251.191079859621823 ], [ 4959112.662707773037255, 3905276.706991775892675 ], [ 4959090.468110828660429, 3905292.69750623870641 ], [ 4959071.787344430573285, 3905267.182015022728592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958130.540744283236563, 3899138.283756372984499 ], [ 4958153.856402797624469, 3899148.147267472930253 ], [ 4958147.20958264451474, 3899164.523989622946829 ], [ 4958123.605921807698905, 3899154.660089060198516 ], [ 4958130.540744283236563, 3899138.283756372984499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958501.957220148295164, 3900265.778529181610793 ], [ 4958528.451907945796847, 3900266.907655131537467 ], [ 4958526.675412061624229, 3900301.861690167337656 ], [ 4958500.46876048669219, 3900300.732965101953596 ], [ 4958501.957220148295164, 3900265.778529181610793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958475.038350773975253, 3898283.417638658545911 ], [ 4958461.455374960787594, 3898316.534639318473637 ], [ 4958428.926897330209613, 3898303.380954401101917 ], [ 4958420.545521016232669, 3898324.12475924147293 ], [ 4958396.077151929959655, 3898314.259429431054741 ], [ 4958418.909025294706225, 3898257.850879516918212 ], [ 4958447.407248497009277, 3898269.5424550967291 ], [ 4958451.453186052851379, 3898259.716551111079752 ], [ 4958469.013051935471594, 3898266.659325835295022 ], [ 4958464.099509429186583, 3898279.032934318296611 ], [ 4958475.038350773975253, 3898283.417638658545911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958444.096157182939351, 3907527.926923918537796 ], [ 4958410.661676552146673, 3907553.36988941160962 ], [ 4958375.310905938968062, 3907507.07628371566534 ], [ 4958376.463610645383596, 3907506.349612823221833 ], [ 4958362.093029393814504, 3907487.759038974530995 ], [ 4958388.898222153075039, 3907467.404695290140808 ], [ 4958416.489162012934685, 3907503.491892719641328 ], [ 4958421.965271567925811, 3907499.49401818588376 ], [ 4958444.096157182939351, 3907527.926923918537796 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958333.235609203577042, 3896890.790006359573454 ], [ 4958349.934798766858876, 3896895.910861747339368 ], [ 4958350.803436947986484, 3896892.634895522147417 ], [ 4958385.930533275008202, 3896902.514897311571985 ], [ 4958370.590587281621993, 3896956.020740567240864 ], [ 4958341.222301077097654, 3896947.605222133919597 ], [ 4958346.432106916792691, 3896929.405938116367906 ], [ 4958323.974186135455966, 3896922.820623683743179 ], [ 4958333.235609203577042, 3896890.790006359573454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958296.302354737184942, 3905503.515338424127549 ], [ 4958340.395297626033425, 3905476.63044357066974 ], [ 4958353.898609765805304, 3905498.496965941507369 ], [ 4958309.805689155124128, 3905525.381838994566351 ], [ 4958296.302354737184942, 3905503.515338424127549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957991.434839291498065, 3905664.406956197693944 ], [ 4958018.810977821238339, 3905648.786752563901246 ], [ 4958034.897987660951912, 3905676.482754218392074 ], [ 4958007.521867925301194, 3905692.102941733319312 ], [ 4957991.434839291498065, 3905664.406956197693944 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957959.512247927486897, 3900154.336588563863188 ], [ 4957943.893945892341435, 3900202.744572872761637 ], [ 4957906.182453429326415, 3900190.312687696889043 ], [ 4957921.512194314971566, 3900142.268418362364173 ], [ 4957959.512247927486897, 3900154.336588563863188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957079.051930954679847, 3907090.206362093798816 ], [ 4957060.603117156773806, 3907106.203562282491475 ], [ 4957039.615832336246967, 3907082.507040839176625 ], [ 4957058.064649854786694, 3907066.509826469235122 ], [ 4957079.051930954679847, 3907090.206362093798816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957087.202935663051903, 3896873.078196196816862 ], [ 4957133.266745360568166, 3896889.88960275426507 ], [ 4957124.593519872054458, 3896913.910568882711232 ], [ 4957078.241707665845752, 3896897.098793022800237 ], [ 4957087.202935663051903, 3896873.078196196816862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957840.185435171239078, 3906144.854061341844499 ], [ 4957832.394221662543714, 3906157.223923552781343 ], [ 4957798.158197156153619, 3906136.057710177265108 ], [ 4957816.04957914724946, 3906107.31566433981061 ], [ 4957869.273746186867356, 3906140.15997742023319 ], [ 4957858.88560878392309, 3906156.531739324796945 ], [ 4957840.185435171239078, 3906144.854061341844499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957843.496521136723459, 3899694.646185613237321 ], [ 4957861.131492927670479, 3899645.876774448435754 ], [ 4957865.449641427956522, 3899647.339176942594349 ], [ 4957873.255649708211422, 3899625.50200962414965 ], [ 4957899.164052882231772, 3899634.640576018020511 ], [ 4957890.778533898293972, 3899659.025856281165034 ], [ 4957896.24821697268635, 3899660.853963661473244 ], [ 4957879.768201367929578, 3899707.44014593726024 ], [ 4957843.496521136723459, 3899694.646185613237321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957591.172623704187572, 3898011.295577662531286 ], [ 4957617.958090233616531, 3898012.06006500357762 ], [ 4957617.652327740564942, 3898025.168320070486516 ], [ 4957626.86916664429009, 3898025.180792128667235 ], [ 4957625.955316855572164, 3898061.956654461100698 ], [ 4957575.840792257338762, 3898060.432361332233995 ], [ 4957576.758510457351804, 3898020.743465149309486 ], [ 4957590.87130503822118, 3898021.126671827398241 ], [ 4957591.172623704187572, 3898011.295577662531286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956794.213433630764484, 3900616.307971950154752 ], [ 4956775.498828765004873, 3900612.277795725502074 ], [ 4956773.76169338170439, 3900619.193974160589278 ], [ 4956751.016551936045289, 3900614.06609723251313 ], [ 4956767.528223680332303, 3900541.625996666960418 ], [ 4956808.98807165119797, 3900550.784073702525347 ], [ 4956794.213433630764484, 3900616.307971950154752 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957512.297508478164673, 3901180.576828852295876 ], [ 4957547.136720899492502, 3901186.449944250285625 ], [ 4957541.331146364100277, 3901220.306229627691209 ], [ 4957506.491976599209011, 3901214.433121636509895 ], [ 4957512.297508478164673, 3901180.576828852295876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956702.03584014531225, 3901503.207720288075507 ], [ 4956709.198570896871388, 3901531.255213238298893 ], [ 4956677.797248432412744, 3901539.224670798983425 ], [ 4956670.922955837100744, 3901510.813435841817409 ], [ 4956702.03584014531225, 3901503.207720288075507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956681.015179770067334, 3899098.100237613543868 ], [ 4956693.151171498000622, 3899068.257586177904159 ], [ 4956762.526712720282376, 3899095.658901732880622 ], [ 4956750.678670641966164, 3899125.501902740914375 ], [ 4956681.015179770067334, 3899098.100237613543868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956667.351161592639983, 3897446.025660450570285 ], [ 4956699.592064089141786, 3897460.269213711842895 ], [ 4956680.236306628212333, 3897503.939240426756442 ], [ 4956647.995446351356804, 3897489.695710007101297 ], [ 4956667.351161592639983, 3897446.025660450570285 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957263.434760103933513, 3898628.782647028099746 ], [ 4957295.114979070611298, 3898630.281632087193429 ], [ 4957294.226993151940405, 3898648.122802321333438 ], [ 4957262.547283035703003, 3898646.259689123369753 ], [ 4957263.434760103933513, 3898628.782647028099746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957110.688012608326972, 3893950.609219958074391 ], [ 4957126.446329982019961, 3894014.716916227247566 ], [ 4957068.236947286874056, 3894029.20444945152849 ], [ 4957061.933868372812867, 3894003.342906073201448 ], [ 4957070.578858846798539, 3894001.169650877360255 ], [ 4957061.123501727357507, 3893962.923528573475778 ], [ 4957110.688012608326972, 3893950.609219958074391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957107.167756106704473, 3893134.227939273696393 ], [ 4957077.775001495145261, 3893140.743067351635545 ], [ 4957069.470209091901779, 3893103.590880954638124 ], [ 4957075.809887026436627, 3893102.14281402528286 ], [ 4957072.086693940684199, 3893085.752064753789455 ], [ 4957094.85174332652241, 3893080.684607423376292 ], [ 4957107.167756106704473, 3893134.227939273696393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956331.058294595219195, 3894035.879065427929163 ], [ 4956376.297492154873908, 3894026.470789390150458 ], [ 4956388.035504668951035, 3894082.19783778488636 ], [ 4956356.338938510976732, 3894089.074874348007143 ], [ 4956354.334822373464704, 3894079.604907940141857 ], [ 4956341.080344459041953, 3894082.136504993308336 ], [ 4956331.058294595219195, 3894035.879065427929163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956700.370483258739114, 3893156.628544033970684 ], [ 4956765.213133593089879, 3893137.77943807002157 ], [ 4956780.125365772284567, 3893189.141279110684991 ], [ 4956760.816922662779689, 3893194.577697296161205 ], [ 4956763.971830904483795, 3893205.141595312394202 ], [ 4956741.781182341277599, 3893211.666605841834098 ], [ 4956739.774251574650407, 3893204.381383585743606 ], [ 4956716.142738891765475, 3893211.268641844857484 ], [ 4956700.370483258739114, 3893156.628544033970684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956567.610084465704858, 3899261.809449139516801 ], [ 4956621.158452860079706, 3899278.629842682275921 ], [ 4956610.168457744643092, 3899313.207727145869285 ], [ 4956556.62015144713223, 3899296.387355148326606 ], [ 4956567.610084465704858, 3899261.809449139516801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956382.791696043685079, 3895449.495251957792789 ], [ 4956401.81753246858716, 3895438.596251038368791 ], [ 4956413.026867963373661, 3895457.545625132974237 ], [ 4956393.712986764498055, 3895468.444241649471223 ], [ 4956382.791696043685079, 3895449.495251957792789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956223.86195251904428, 3893619.54021716164425 ], [ 4956260.737247709184885, 3893618.131700246129185 ], [ 4956261.018207949586213, 3893623.59399693692103 ], [ 4956281.760440393351018, 3893622.892760636284947 ], [ 4956282.601409768685699, 3893640.736163901630789 ], [ 4956273.382593057118356, 3893641.088280897587538 ], [ 4956274.781211770139635, 3893673.133431054186076 ], [ 4956244.532140463590622, 3893674.186424569226801 ], [ 4956244.255443311296403, 3893665.446974880062044 ], [ 4956216.310947968624532, 3893666.503000125754625 ], [ 4956215.757061361335218, 3893649.38822955917567 ], [ 4956224.975874446332455, 3893649.036092806607485 ], [ 4956223.86195251904428, 3893619.54021716164425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956144.872106559574604, 3900985.777542948722839 ], [ 4956095.050475847907364, 3900984.62051175814122 ], [ 4956095.968279708176851, 3900943.110847155563533 ], [ 4956145.789987334981561, 3900944.267880028579384 ], [ 4956144.872106559574604, 3900985.777542948722839 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956136.94430270884186, 3897330.631214405409992 ], [ 4956127.409898831509054, 3897353.19487146101892 ], [ 4956104.379501616582274, 3897343.69763113046065 ], [ 4956113.625855734571815, 3897321.133592450525612 ], [ 4956136.94430270884186, 3897330.631214405409992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956116.781280934810638, 3893111.441640156321228 ], [ 4956127.113384171389043, 3893141.313588402234018 ], [ 4956097.139999429695308, 3893151.470321227330714 ], [ 4956087.096417446620762, 3893121.234629640821368 ], [ 4956116.781280934810638, 3893111.441640156321228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955884.102800864726305, 3905558.559056158177555 ], [ 4955839.139245419763029, 3905592.729485177900642 ], [ 4955811.25540158059448, 3905556.280475652310997 ], [ 4955865.730108793824911, 3905515.203756396658719 ], [ 4955875.216841755434871, 3905527.232311924453825 ], [ 4955865.705248079262674, 3905534.502683654427528 ], [ 4955884.102800864726305, 3905558.559056158177555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955228.830004800111055, 3900019.294674650300294 ], [ 4955152.799021505750716, 3900017.378011034335941 ], [ 4955154.922082069329917, 3899932.538382660597563 ], [ 4955198.121568813920021, 3899933.685302739962935 ], [ 4955198.112370285205543, 3899940.967892387416214 ], [ 4955222.016382022760808, 3899941.362225874327123 ], [ 4955220.799466202966869, 3899992.703027648385614 ], [ 4955229.439620170742273, 3899992.71394960116595 ], [ 4955228.830004800111055, 3900019.294674650300294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954924.855194732546806, 3889774.507577584125102 ], [ 4954951.555377731099725, 3889849.915505000855774 ], [ 4954924.7489352831617, 3889859.349243495147675 ], [ 4954937.956087206490338, 3889896.142706429585814 ], [ 4954902.214084001258016, 3889908.842424566391855 ], [ 4954890.730103895068169, 3889876.42066976102069 ], [ 4954840.864171551540494, 3889894.200592136010528 ], [ 4954832.538446602411568, 3889870.521878064144403 ], [ 4954859.056731748394668, 3889861.087687436491251 ], [ 4954853.314481349661946, 3889845.058882673271 ], [ 4954870.897167896851897, 3889838.890688773244619 ], [ 4954856.829649093560874, 3889798.819033748004586 ], [ 4954924.855194732546806, 3889774.507577584125102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955203.049497619271278, 3900364.457447281572968 ], [ 4955180.276720693334937, 3900380.814545463304967 ], [ 4955173.08864582143724, 3900371.338087768293917 ], [ 4955143.973903571255505, 3900392.420904922764748 ], [ 4955116.085997528396547, 3900354.152083684224635 ], [ 4955149.812916511669755, 3900329.797882412560284 ], [ 4955168.213306327350438, 3900354.946077677886933 ], [ 4955186.373936994932592, 3900341.860316876322031 ], [ 4955203.049497619271278, 3900364.457447281572968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954766.994795049540699, 3901304.458563286345452 ], [ 4954779.115859524346888, 3901284.082382508553565 ], [ 4954771.345544589683414, 3901279.703125511761755 ], [ 4954795.87571250833571, 3901238.951133666560054 ], [ 4954837.603575860150158, 3901263.764113373123109 ], [ 4954817.979221048764884, 3901296.511326901614666 ], [ 4954837.260066891089082, 3901308.18758707633242 ], [ 4954822.542048275470734, 3901332.565931766293943 ], [ 4954801.246640994213521, 3901319.794775875285268 ], [ 4954799.226159149780869, 3901323.43355720769614 ], [ 4954766.994795049540699, 3901304.458563286345452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954445.428249872289598, 3895610.162874906789511 ], [ 4954446.542236204259098, 3895641.115225560031831 ], [ 4954403.908329854719341, 3895642.883255342021585 ], [ 4954402.506242440082133, 3895611.930551166646183 ], [ 4954445.428249872289598, 3895610.162874906789511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954004.121047760359943, 3892781.797240126878023 ], [ 4954016.743861004710197, 3892825.143914375919849 ], [ 4953987.9254687782377, 3892833.483761537354439 ], [ 4953991.081508916802704, 3892844.04733187938109 ], [ 4953973.502318054437637, 3892849.123727974016219 ], [ 4953970.919776105321944, 3892840.745628752280027 ], [ 4953947.288656572811306, 3892847.635319406632334 ], [ 4953938.108117647469044, 3892816.309103280305862 ], [ 4953959.721801542676985, 3892810.145207008812577 ], [ 4953955.70637115649879, 3892795.575181514490396 ], [ 4954004.121047760359943, 3892781.797240126878023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953965.958134300075471, 3892893.538225876167417 ], [ 4953930.512637605890632, 3892902.962456546258181 ], [ 4953924.204061596654356, 3892878.922305902931839 ], [ 4953959.361506281420588, 3892869.49771654419601 ], [ 4953965.958134300075471, 3892893.538225876167417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954158.191982839256525, 3895178.680896125733852 ], [ 4954120.435626207850873, 3895195.748766060452908 ], [ 4954113.252909085713327, 3895180.446565425023437 ], [ 4954121.611005967482924, 3895176.815494371578097 ], [ 4954104.374774641357362, 3895138.196747954934835 ], [ 4954134.060696698725224, 3895125.12440143013373 ], [ 4954158.191982839256525, 3895178.680896125733852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954158.480731113813818, 3894707.498367030639201 ], [ 4954178.909030893817544, 3894727.186344008427113 ], [ 4954165.640811135992408, 3894741.371122648008168 ], [ 4954168.230688457377255, 3894743.559067442081869 ], [ 4954135.6378806065768, 3894777.747295470442623 ], [ 4954112.332091342657804, 3894755.506930555682629 ], [ 4954158.480731113813818, 3894707.498367030639201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954121.349237907677889, 3893035.009648800827563 ], [ 4954154.776732272468507, 3893026.675584803335369 ], [ 4954163.090924899093807, 3893059.457332774996758 ], [ 4954106.89808058924973, 3893073.589610785245895 ], [ 4954095.715928995981812, 3893030.244647704064846 ], [ 4954118.481351341120899, 3893024.4464141856879 ], [ 4954121.349237907677889, 3893035.009648800827563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953231.577596356160939, 3892702.215370140969753 ], [ 4953253.771710533648729, 3892692.410312572494149 ], [ 4953261.816365843638778, 3892710.626314032822847 ], [ 4953239.622697025537491, 3892720.067237097304314 ], [ 4953231.577596356160939, 3892702.215370140969753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953433.496329747140408, 3893447.463356462307274 ], [ 4953412.14129619859159, 3893478.752862873952836 ], [ 4953387.96259009372443, 3893462.338158825412393 ], [ 4953381.613622216507792, 3893471.79791431222111 ], [ 4953359.449677892029285, 3893456.842158693820238 ], [ 4953368.684614589437842, 3893443.016302230767906 ], [ 4953342.202984569594264, 3893425.142373958602548 ], [ 4953362.114990205504, 3893396.035861053038388 ], [ 4953384.278983266092837, 3893410.991618344560266 ], [ 4953382.835993612185121, 3893413.174665331374854 ], [ 4953433.496329747140408, 3893447.463356462307274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953280.347416217438877, 3892873.777950952295214 ], [ 4953209.737168034538627, 3892899.182913210242987 ], [ 4953199.975730136036873, 3892871.133415205869824 ], [ 4953211.792264160700142, 3892866.777918804436922 ], [ 4953207.772974340245128, 3892855.121028471272439 ], [ 4953235.4405064182356, 3892845.322461962234229 ], [ 4953238.599007034674287, 3892854.0653040939942 ], [ 4953269.43675156775862, 3892843.178159346804023 ], [ 4953280.347416217438877, 3892873.777950952295214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952821.934613452292979, 3893673.226207259111106 ], [ 4952816.142372513189912, 3893699.436670182738453 ], [ 4952785.038223470561206, 3893692.845849857199937 ], [ 4952790.830435481853783, 3893666.63538033561781 ], [ 4952821.934613452292979, 3893673.226207259111106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952823.554990533739328, 3891312.219414102379233 ], [ 4952803.942948804236948, 3891330.402798417489976 ], [ 4952775.169445039704442, 3891299.418149638455361 ], [ 4952794.493391354568303, 3891281.234406637959182 ], [ 4952823.554990533739328, 3891312.219414102379233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952747.620933428406715, 3892190.043594034854323 ], [ 4952719.101000297814608, 3892189.281939265318215 ], [ 4952718.806518365629017, 3892194.743519929703325 ], [ 4952692.302784492261708, 3892194.34838197613135 ], [ 4952692.598964476026595, 3892187.430289583746344 ], [ 4952664.942867940291762, 3892187.033830913715065 ], [ 4952665.553510210476816, 3892157.540147894527763 ], [ 4952748.233372781425714, 3892159.093401429243386 ], [ 4952747.620933428406715, 3892190.043594034854323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953097.155823561362922, 3892120.17859922349453 ], [ 4953136.568804510869086, 3892166.833744906354696 ], [ 4953111.191513178870082, 3892188.287231708876789 ], [ 4953071.778519765473902, 3892141.632122654467821 ], [ 4953097.155823561362922, 3892120.17859922349453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952849.957289963029325, 3893605.531199669931084 ], [ 4952886.823422845453024, 3893611.764746177941561 ], [ 4952873.479093573056161, 3893690.764967096038163 ], [ 4952837.764929056167603, 3893684.896920689381659 ], [ 4952841.246619618497789, 3893663.781548763625324 ], [ 4952833.181860351003706, 3893662.679686900693923 ], [ 4952836.084836828522384, 3893643.748406690079719 ], [ 4952843.28538220282644, 3893644.84925378439948 ], [ 4952849.957289963029325, 3893605.531199669931084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952214.30035899579525, 3891498.308591542299837 ], [ 4952226.954354207031429, 3891517.62196309491992 ], [ 4952239.928745047189295, 3891508.897838070988655 ], [ 4952249.419120655395091, 3891523.473907211795449 ], [ 4952233.273581909947097, 3891534.01501412736252 ], [ 4952246.215642204508185, 3891553.328727145679295 ], [ 4952219.979231743142009, 3891570.412518280558288 ], [ 4952216.240702094510198, 3891564.582160574384034 ], [ 4952209.897989896126091, 3891568.580266287084669 ], [ 4952192.066666897386312, 3891541.97837894782424 ], [ 4952200.716244475916028, 3891536.162283582612872 ], [ 4952187.199208314530551, 3891515.755546457134187 ], [ 4952214.30035899579525, 3891498.308591542299837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952688.578546359203756, 3900057.714078592602164 ], [ 4952691.420253564603627, 3900090.489107467699796 ], [ 4952716.767170860432088, 3900088.333990575280041 ], [ 4952720.462192572653294, 3900130.213273826055229 ], [ 4952665.448386253789067, 3900134.518474754877388 ], [ 4952659.199115173891187, 3900060.22863930510357 ], [ 4952688.578546359203756, 3900057.714078592602164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952640.934266936965287, 3893257.179357660003006 ], [ 4952635.692336508072913, 3893305.602339564822614 ], [ 4952547.839513575658202, 3893296.396703842561692 ], [ 4952552.793210089206696, 3893247.973369628656656 ], [ 4952640.934266936965287, 3893257.179357660003006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952559.437430188991129, 3891500.528944443445653 ], [ 4952523.685554984025657, 3891524.519795512780547 ], [ 4952502.403284766711295, 3891492.815893833059818 ], [ 4952507.016210850328207, 3891489.908230744302273 ], [ 4952486.884587598033249, 3891459.662192593328655 ], [ 4952518.023155472241342, 3891438.943081502337009 ], [ 4952559.437430188991129, 3891500.528944443445653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952069.899869945831597, 3893062.074006036389619 ], [ 4952076.292312226258218, 3893014.380498031619936 ], [ 4952107.1118472404778, 3893018.785396822728217 ], [ 4952106.240502867847681, 3893024.97458162996918 ], [ 4952128.707381080836058, 3893027.913405630737543 ], [ 4952127.835613801144063, 3893034.466717824805528 ], [ 4952141.373267404735088, 3893036.302912620361894 ], [ 4952136.722995055839419, 3893071.982165678404272 ], [ 4952122.897279797121882, 3893070.145642362535 ], [ 4952121.15375118330121, 3893083.252267489675432 ], [ 4952103.583429074846208, 3893081.047325848601758 ], [ 4952105.616282360628247, 3893066.848646057303995 ], [ 4952069.899869945831597, 3893062.074006036389619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952448.357950976118445, 3890895.582970832940191 ], [ 4952481.793927440419793, 3890881.784923276398331 ], [ 4952502.480609146878123, 3890930.602124565280974 ], [ 4952469.044259881600738, 3890944.764274394139647 ], [ 4952448.357950976118445, 3890895.582970832940191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951942.520937941968441, 3893608.485291468910873 ], [ 4951930.134191125631332, 3893608.10702388221398 ], [ 4951929.837806604802608, 3893615.389258580282331 ], [ 4951901.320608934387565, 3893613.536086193285882 ], [ 4951901.617816085927188, 3893605.5255948449485 ], [ 4951868.203354919329286, 3893603.666874370537698 ], [ 4951870.551491905935109, 3893565.436041577719152 ], [ 4951892.731945116072893, 3893566.553700359538198 ], [ 4951893.024584649130702, 3893562.548618929926306 ], [ 4951912.900447146967053, 3893563.66366756753996 ], [ 4951913.484071066603065, 3893557.110017796978354 ], [ 4951945.458216665312648, 3893558.967149861622602 ], [ 4951942.520937941968441, 3893608.485291468910873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951717.125121385790408, 3891174.030653233639896 ], [ 4951688.008920365944505, 3891190.019312163814902 ], [ 4951668.745806135237217, 3891155.041210840921849 ], [ 4951656.638200541958213, 3891161.581821234431118 ], [ 4951644.849985951557755, 3891140.449060908518732 ], [ 4951655.5162742882967, 3891134.635071481578052 ], [ 4951645.165666765533388, 3891116.05283399252221 ], [ 4951675.723660572431982, 3891098.973376533947885 ], [ 4951717.125121385790408, 3891174.030653233639896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951994.784214270301163, 3888967.003404733724892 ], [ 4951993.092528134584427, 3888934.594108312390745 ], [ 4952076.653389393351972, 3888930.320247163530439 ], [ 4952078.347897509112954, 3888960.180658424273133 ], [ 4952059.9067512024194, 3888961.25190421519801 ], [ 4952060.468811553902924, 3888973.63288900628686 ], [ 4952025.027156264521182, 3888975.777066605165601 ], [ 4952024.462995851412416, 3888965.216718489304185 ], [ 4951994.784214270301163, 3888967.003404733724892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951497.034890671260655, 3892950.364179916679859 ], [ 4951501.67859825398773, 3892919.782611188013107 ], [ 4951523.857138976454735, 3892923.084733408410102 ], [ 4951524.729172609746456, 3892916.167274025268853 ], [ 4951544.603476415388286, 3892919.102690119761974 ], [ 4951542.863912821747363, 3892928.932199293747544 ], [ 4951583.476324741728604, 3892935.168176184408367 ], [ 4951579.411973915062845, 3892962.837356727570295 ], [ 4951497.034890671260655, 3892950.364179916679859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951369.437162082642317, 3897558.273295498453081 ], [ 4951371.121280799619853, 3897597.60116756753996 ], [ 4951328.778716195374727, 3897599.374399358406663 ], [ 4951327.09494309220463, 3897559.682400874327868 ], [ 4951369.437162082642317, 3897558.273295498453081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951802.557722668163478, 3890023.483098191674799 ], [ 4951814.408394415862858, 3889989.996801842004061 ], [ 4951882.375936092808843, 3890013.742463518865407 ], [ 4951859.541709280572832, 3890078.167095099575818 ], [ 4951835.637992314994335, 3890069.764950866810977 ], [ 4951849.511683835648, 3890030.819052116945386 ], [ 4951833.671743263490498, 3890025.339111417066306 ], [ 4951830.7815125528723, 3890033.346637500450015 ], [ 4951802.557722668163478, 3890023.483098191674799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951210.940422462299466, 3892977.353457930032164 ], [ 4951185.011573076248169, 3892978.781088089104742 ], [ 4951183.893308455124497, 3892948.19304911326617 ], [ 4951209.821781491860747, 3892947.129545950330794 ], [ 4951210.940422462299466, 3892977.353457930032164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951072.946569653227925, 3891422.007909108884633 ], [ 4951052.990379679948092, 3891491.89839005889371 ], [ 4951020.157893198542297, 3891482.394682156853378 ], [ 4951040.114004793576896, 3891412.504177216440439 ], [ 4951072.946569653227925, 3891422.007909108884633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950826.917959650978446, 3895081.956356367096305 ], [ 4950842.491517152637243, 3895065.223564299289137 ], [ 4950862.347860052250326, 3895083.087748290970922 ], [ 4950846.773899601772428, 3895100.184657531790435 ], [ 4950826.917959650978446, 3895081.956356367096305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950689.059303211048245, 3893392.975832602009177 ], [ 4950746.384400244802237, 3893394.859310633968562 ], [ 4950745.197340382263064, 3893426.537195265293121 ], [ 4950719.271743441931903, 3893425.416377933230251 ], [ 4950718.674437940120697, 3893444.714538531843573 ], [ 4950686.987351247109473, 3893443.587437416892499 ], [ 4950689.059303211048245, 3893392.975832602009177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950972.362424262799323, 3893020.055797028820962 ], [ 4950970.588859834708273, 3893060.836229531094432 ], [ 4950938.613653572276235, 3893059.344385537784547 ], [ 4950940.38716958835721, 3893018.563950962387025 ], [ 4950972.362424262799323, 3893020.055797028820962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950346.805019380524755, 3894209.707946611568332 ], [ 4950335.252788348123431, 3894237.005102010909468 ], [ 4950304.731087218038738, 3894224.591719455551356 ], [ 4950315.995225315913558, 3894197.294239666312933 ], [ 4950346.805019380524755, 3894209.707946611568332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950181.208376116119325, 3900860.718024945817888 ], [ 4950181.815726120956242, 3900831.588264043442905 ], [ 4950206.294613657519221, 3900832.342886640690267 ], [ 4950206.593202291056514, 3900822.511693479958922 ], [ 4950259.006945907138288, 3900824.024736088700593 ], [ 4950258.100904807448387, 3900862.985687884967774 ], [ 4950181.208376116119325, 3900860.718024945817888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950681.757812767289579, 3891641.874381828121841 ], [ 4950661.083115338347852, 3891579.585834158118814 ], [ 4950675.781554283574224, 3891574.504122603684664 ], [ 4950673.484363095834851, 3891567.583172748330981 ], [ 4950688.759001884609461, 3891562.502098919358104 ], [ 4950690.481194986961782, 3891568.330035832710564 ], [ 4950708.63798810262233, 3891562.159744906239212 ], [ 4950725.57933265529573, 3891613.520389150828123 ], [ 4950754.111119220033288, 3891604.084351459983736 ], [ 4950765.310448202304542, 3891637.232310797087848 ], [ 4950735.914009804837406, 3891647.031516658142209 ], [ 4950729.022497809492052, 3891626.26865146914497 ], [ 4950681.757812767289579, 3891641.874381828121841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950568.266979187726974, 3891360.643427520059049 ], [ 4950602.836707103066146, 3891362.501787995453924 ], [ 4950601.656489874236286, 3891387.989470216445625 ], [ 4950608.85852568410337, 3891388.361461947672069 ], [ 4950608.266426406800747, 3891402.925941687077284 ], [ 4950596.742936768569052, 3891402.549232731573284 ], [ 4950595.856388163752854, 3891422.93944205250591 ], [ 4950565.031601237133145, 3891421.449301644228399 ], [ 4950566.21178234834224, 3891395.961617318913341 ], [ 4950560.450234275311232, 3891395.591207372490317 ], [ 4950561.043101755902171, 3891380.298471201676875 ], [ 4950567.092750511132181, 3891380.66919541824609 ], [ 4950568.266979187726974, 3891360.643427520059049 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950125.46678866352886, 3896986.68151999078691 ], [ 4950196.311819457449019, 3896998.045727096032351 ], [ 4950189.060710175894201, 3897044.646476679947227 ], [ 4950162.277994852513075, 3897040.248103467281908 ], [ 4950160.538025178946555, 3897051.170112716499716 ], [ 4950127.131641172803938, 3897045.672263226471841 ], [ 4950128.582387184724212, 3897035.842329203151166 ], [ 4950118.215017072856426, 3897034.010546246543527 ], [ 4950125.46678866352886, 3896986.68151999078691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950493.437472996301949, 3895263.291863589547575 ], [ 4950525.698534150607884, 3895264.419365137815475 ], [ 4950524.503881252370775, 3895303.379865343682468 ], [ 4950492.530526099726558, 3895302.616807119455189 ], [ 4950493.437472996301949, 3895263.291863589547575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950453.688653274439275, 3890486.975520983338356 ], [ 4950459.202639931812882, 3890450.204586776904762 ], [ 4950498.667013958096504, 3890456.073536512907594 ], [ 4950496.925298937596381, 3890468.087864486500621 ], [ 4950516.801524468697608, 3890471.022516631521285 ], [ 4950513.317289032973349, 3890495.779425712767988 ], [ 4950453.688653274439275, 3890486.975520983338356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949724.811987431719899, 3895349.85765598481521 ], [ 4949784.74402344878763, 3895334.263660177588463 ], [ 4949791.916403450071812, 3895361.580948555376381 ], [ 4949731.696369536221027, 3895377.174623415805399 ], [ 4949724.811987431719899, 3895349.85765598481521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949580.925662239082158, 3894669.148692755494267 ], [ 4949550.624316071160138, 3894721.187200369779021 ], [ 4949515.214176896959543, 3894700.758729988709092 ], [ 4949545.515477418899536, 3894648.720183083321899 ], [ 4949580.925662239082158, 3894669.148692755494267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949387.296659207902849, 3893616.977446335367858 ], [ 4949391.362848944030702, 3893585.302513600327075 ], [ 4949424.775210964493454, 3893589.342924735508859 ], [ 4949420.99667430203408, 3893621.38228256162256 ], [ 4949387.296659207902849, 3893616.977446335367858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947840.777186554856598, 3898999.417146049905568 ], [ 4947835.625677767209709, 3898966.276243326254189 ], [ 4947899.575006713159382, 3898956.508069809991866 ], [ 4947904.725716353394091, 3898990.377243383787572 ], [ 4947892.339229134842753, 3898992.185611420311034 ], [ 4947893.19714059215039, 3898998.37666754052043 ], [ 4947866.119329612702131, 3899002.719396994449198 ], [ 4947864.974117385223508, 3898995.799797745421529 ], [ 4947840.777186554856598, 3898999.417146049905568 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948181.878960854373872, 3889132.233295234385878 ], [ 4948219.636757402680814, 3889118.434290640987456 ], [ 4948229.407318127341568, 3889143.933028041385114 ], [ 4948191.36143109574914, 3889157.731730417814106 ], [ 4948181.878960854373872, 3889132.233295234385878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947325.435906493104994, 3889876.030268946662545 ], [ 4947364.044535317458212, 3889874.61122845672071 ], [ 4947365.447613415308297, 3889913.210137681569904 ], [ 4947326.839039939455688, 3889914.629176191985607 ], [ 4947325.435906493104994, 3889876.030268946662545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946731.80181744042784, 3890610.271136519499123 ], [ 4946703.845915015786886, 3890620.440238010603935 ], [ 4946691.202691992744803, 3890585.107861542142928 ], [ 4946719.158626334741712, 3890574.938747111242265 ], [ 4946731.80181744042784, 3890610.271136519499123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946283.258386076427996, 3892426.484984754119068 ], [ 4946336.836304935626686, 3892433.089236168190837 ], [ 4946333.063327478244901, 3892462.94423819007352 ], [ 4946310.883095431141555, 3892460.3746551531367 ], [ 4946308.851560922339559, 3892476.394407867453992 ], [ 4946277.453951112926006, 3892472.359749230090529 ], [ 4946283.258386076427996, 3892426.484984754119068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946333.418851513415575, 3889920.238348443061113 ], [ 4946333.111375782638788, 3889940.99334570299834 ], [ 4946301.419641586951911, 3889940.23554346524179 ], [ 4946301.727092857472599, 3889919.480545860249549 ], [ 4946333.418851513415575, 3889920.238348443061113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944405.62932541128248, 3891620.078882476780564 ], [ 4944404.45248547475785, 3891648.479862831998616 ], [ 4944366.71335226111114, 3891646.990874870680273 ], [ 4944367.602057521231472, 3891618.589645155705512 ], [ 4944405.62932541128248, 3891620.078882476780564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944789.603328635916114, 3891684.863009448628873 ], [ 4944795.411451010964811, 3891632.069515575654805 ], [ 4944834.876594773493707, 3891636.473644421901554 ], [ 4944831.971694007515907, 3891663.7807064531371 ], [ 4944848.679570094682276, 3891665.616007287055254 ], [ 4944845.776575846597552, 3891690.738301108125597 ], [ 4944789.603328635916114, 3891684.863009448628873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944693.441054403781891, 3892275.394932385068387 ], [ 4944690.530650567263365, 3892309.256323757581413 ], [ 4944653.658307786099613, 3892305.947046008426696 ], [ 4944656.85675339307636, 3892272.085901528131217 ], [ 4944693.441054403781891, 3892275.394932385068387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943965.117713622748852, 3893000.841601971536875 ], [ 4943967.154273813590407, 3892977.174976202193648 ], [ 4943960.816814635880291, 3892976.80549336457625 ], [ 4943965.474710857495666, 3892919.277141340542585 ], [ 4944000.906199895776808, 3892922.220129293389618 ], [ 4943998.576287311501801, 3892952.076686365064234 ], [ 4944008.370410437695682, 3892952.813232450746 ], [ 4944006.330729951150715, 3892980.121136227156967 ], [ 4943994.808135008439422, 3892979.383128466084599 ], [ 4943992.771550634875894, 3893003.049752173013985 ], [ 4943965.117713622748852, 3893000.841601971536875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943830.479137698188424, 3892782.979403794743121 ], [ 4943829.306623995304108, 3892807.010891182813793 ], [ 4943850.623783404007554, 3892808.121188397984952 ], [ 4943849.451558845117688, 3892831.788547154981643 ], [ 4943834.183831711299717, 3892831.047460375819355 ], [ 4943832.717117758467793, 3892862.361268749926239 ], [ 4943796.13228920288384, 3892860.509920537471771 ], [ 4943799.943626121617854, 3892781.497260508127511 ], [ 4943830.479137698188424, 3892782.979403794743121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944341.807741459459066, 3891797.718524009454995 ], [ 4944342.987011081539094, 3891766.404515355359763 ], [ 4944379.285511616617441, 3891767.89223085809499 ], [ 4944378.106199776753783, 3891799.206237946636975 ], [ 4944341.807741459459066, 3891797.718524009454995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944275.138832647353411, 3891937.122435638681054 ], [ 4944280.664661355316639, 3891876.317762064747512 ], [ 4944284.121454640291631, 3891876.68485165387392 ], [ 4944285.866854863241315, 3891857.023425652645528 ], [ 4944323.891914862208068, 3891860.697315005585551 ], [ 4944316.332786347717047, 3891940.799028666689992 ], [ 4944275.138832647353411, 3891937.122435638681054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943866.996708316728473, 3892180.013634847011417 ], [ 4943900.123858363367617, 3892183.682805934455246 ], [ 4943889.965930848382413, 3892272.521542187314481 ], [ 4943857.703152607195079, 3892268.85311018768698 ], [ 4943860.896925063803792, 3892239.36140763387084 ], [ 4943854.559596658684313, 3892238.62782201776281 ], [ 4943857.172293073497713, 3892214.961682867258787 ], [ 4943862.933450049720705, 3892215.694784466642886 ], [ 4943866.996708316728473, 3892180.013634847011417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942860.848947146907449, 3889846.218076427932829 ], [ 4942844.988647040911019, 3889863.683464536443353 ], [ 4942806.121034673415124, 3889829.060140734538436 ], [ 4942835.534684101119637, 3889796.676370783243328 ], [ 4942868.356302704662085, 3889825.832958613522351 ], [ 4942854.802652359008789, 3889841.115429082419723 ], [ 4942860.848947146907449, 3889846.218076427932829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942440.355371546000242, 3890017.751685752533376 ], [ 4942449.032322253100574, 3889975.155577674973756 ], [ 4942482.160081285983324, 3889981.736017161048949 ], [ 4942481.871393801644444, 3889982.464044713880867 ], [ 4942505.204468087293208, 3889987.580268835183233 ], [ 4942503.180485970340669, 3889996.68186288094148 ], [ 4942548.982833404093981, 3890006.185428677592427 ], [ 4942540.595575960353017, 3890046.5969681260176 ], [ 4942486.151378032751381, 3890035.265950540546328 ], [ 4942487.598264788277447, 3890027.25628246832639 ], [ 4942440.355371546000242, 3890017.751685752533376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991300.237458907999098, 3912241.292643941938877 ], [ 4991280.842647797428071, 3912282.389192338101566 ], [ 4991231.962972860783339, 3912259.685525482520461 ], [ 4991251.069851192645729, 3912218.58819227013737 ], [ 4991300.237458907999098, 3912241.292643941938877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990781.023653529584408, 3901069.816281083505601 ], [ 4990732.597426594235003, 3901086.441077382769436 ], [ 4990726.880858384072781, 3901069.676262623164803 ], [ 4990733.798352982848883, 3901067.509358513168991 ], [ 4990722.651314182206988, 3901034.708732262719423 ], [ 4990763.871181707829237, 3901020.614196898415685 ], [ 4990781.023653529584408, 3901069.816281083505601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989775.061143161728978, 3900050.942740599159151 ], [ 4989809.570597789250314, 3900071.05795061821118 ], [ 4989792.793916767463088, 3900099.417376876808703 ], [ 4989758.285414304584265, 3900078.938059459906071 ], [ 4989775.061143161728978, 3900050.942740599159151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989094.259880684316158, 3912805.500406535807997 ], [ 4989104.532069031149149, 3912841.575596716720611 ], [ 4989030.785634012892842, 3912862.145053853280842 ], [ 4989020.513354715891182, 3912826.069891401566565 ], [ 4989060.843314081430435, 3912814.883514341432601 ], [ 4989057.704341956414282, 3912803.951577222906053 ], [ 4989077.293146309442818, 3912798.539021216798574 ], [ 4989080.433030523359776, 3912809.106829110067338 ], [ 4989094.259880684316158, 3912805.500406535807997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989014.922832979820669, 3908194.280571760144085 ], [ 4989025.693339473567903, 3908147.698746755719185 ], [ 4989071.734443246386945, 3908158.010639535728842 ], [ 4989062.127476454712451, 3908199.861657354980707 ], [ 4989037.956212740391493, 3908194.33867317205295 ], [ 4989036.791682585142553, 3908199.433593664783984 ], [ 4989014.922832979820669, 3908194.280571760144085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988829.010586042888463, 3907817.663255755323917 ], [ 4988781.22022885363549, 3907815.722437241114676 ], [ 4988782.453366306610405, 3907783.317730643320829 ], [ 4988830.243781061843038, 3907785.258551314007491 ], [ 4988829.010586042888463, 3907817.663255755323917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988742.267461963929236, 3907390.317681800108403 ], [ 4988703.113201043568552, 3907388.762831027619541 ], [ 4988704.664353610947728, 3907344.342553868424147 ], [ 4988743.81867918279022, 3907345.897406867239624 ], [ 4988742.267461963929236, 3907390.317681800108403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988556.157288241200149, 3896394.541103948373348 ], [ 4988537.474553586915135, 3896378.472605272661895 ], [ 4988560.874491071328521, 3896351.221430417150259 ], [ 4988593.642194130457938, 3896378.977392277680337 ], [ 4988574.863712231628597, 3896401.142291597556323 ], [ 4988560.779664218425751, 3896389.090726252645254 ], [ 4988556.157288241200149, 3896394.541103948373348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988390.774446845054626, 3913469.369680969510227 ], [ 4988399.342003591358662, 3913496.701140108052641 ], [ 4988343.164657440036535, 3913514.403338324278593 ], [ 4988334.59704932756722, 3913487.071896791923791 ], [ 4988390.774446845054626, 3913469.369680969510227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988381.341256165876985, 3907105.754290669225156 ], [ 4988366.652333991602063, 3907107.538258621003479 ], [ 4988367.500658364035189, 3907113.730629798024893 ], [ 4988342.44357680529356, 3907116.581112190615386 ], [ 4988336.233693012036383, 3907066.679457957390696 ], [ 4988375.692746372893453, 3907061.680149526335299 ], [ 4988381.341256165876985, 3907105.754290669225156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988123.075497102923691, 3907449.579642280004919 ], [ 4988092.250286993570626, 3907456.421460697893053 ], [ 4988075.157707905396819, 3907382.824172366410494 ], [ 4988105.983903959393501, 3907375.618204356171191 ], [ 4988123.075497102923691, 3907449.579642280004919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988083.438828535377979, 3905789.765715043991804 ], [ 4988114.246012693271041, 3905790.934751898981631 ], [ 4988111.768509240821004, 3905860.841966913081706 ], [ 4988080.960499522276223, 3905860.037062801420689 ], [ 4988083.438828535377979, 3905789.765715043991804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987797.599554059095681, 3903893.021208366379142 ], [ 4987754.070231419987977, 3903911.848300315905362 ], [ 4987741.471929700113833, 3903882.686586190015078 ], [ 4987785.000389057211578, 3903864.223603677935898 ], [ 4987797.599554059095681, 3903893.021208366379142 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987733.149317849427462, 3905966.229143300559372 ], [ 4987701.766436937265098, 3905965.059119096025825 ], [ 4987703.019958207383752, 3905923.915280572604388 ], [ 4987734.402887132950127, 3905925.085306213237345 ], [ 4987733.149317849427462, 3905966.229143300559372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987593.899485072121024, 3907435.887335301842541 ], [ 4987597.581374400295317, 3907460.657438703812659 ], [ 4987546.023912881501019, 3907468.176963587291539 ], [ 4987542.630800785496831, 3907443.04344718111679 ], [ 4987593.899485072121024, 3907435.887335301842541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987452.456731747835875, 3906646.463481893762946 ], [ 4987462.144193985499442, 3906687.998439483810216 ], [ 4987412.014197045005858, 3906699.891327211167663 ], [ 4987402.326661742292345, 3906658.356387393549085 ], [ 4987452.456731747835875, 3906646.463481893762946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987396.474259421229362, 3908099.942588008008897 ], [ 4987402.731361429207027, 3908131.273402698338032 ], [ 4987333.309110343456268, 3908144.939613058231771 ], [ 4987327.621498480439186, 3908116.159143688622862 ], [ 4987344.040890683420002, 3908112.922334097325802 ], [ 4987340.05840250197798, 3908093.249373774044216 ], [ 4987363.103516469709575, 3908088.572343362029642 ], [ 4987366.515528255142272, 3908106.05910727288574 ], [ 4987396.474259421229362, 3908099.942588008008897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987061.981864376924932, 3904779.327133424114436 ], [ 4987032.692579441703856, 3904745.755282011348754 ], [ 4987058.951699149794877, 3904723.24339808197692 ], [ 4987071.586018351837993, 3904737.839618122670799 ], [ 4987075.33655970916152, 3904734.93574975291267 ], [ 4987110.654987708665431, 3904775.805061876308173 ], [ 4987072.275957340374589, 3904808.847031958866864 ], [ 4987053.325415960513055, 3904786.588573011104017 ], [ 4987061.981864376924932, 3904779.327133424114436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986914.769996417686343, 3900799.374134458601475 ], [ 4986926.368158721365035, 3900767.358943045604974 ], [ 4986964.349908281117678, 3900781.288763250689954 ], [ 4986952.464600446633995, 3900812.939105642959476 ], [ 4986914.769996417686343, 3900799.374134458601475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986245.143304145894945, 3898549.238938423339278 ], [ 4986180.000510059297085, 3898569.836934999097139 ], [ 4986170.853337963111699, 3898541.048528656363487 ], [ 4986184.68888715095818, 3898536.712383561767638 ], [ 4986181.544409316033125, 3898526.873263185378164 ], [ 4986165.690951184369624, 3898531.932797290850431 ], [ 4986160.543509906157851, 3898516.626884325873107 ], [ 4986210.408975295722485, 3898501.089741400908679 ], [ 4986219.270738502033055, 3898528.785079156048596 ], [ 4986236.853214280679822, 3898523.36562648229301 ], [ 4986245.143304145894945, 3898549.238938423339278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986142.153360430151224, 3902196.489494097884744 ], [ 4986110.440241555683315, 3902210.978190966881812 ], [ 4986080.931880492717028, 3902147.184011542703956 ], [ 4986110.338564492762089, 3902133.782107707578689 ], [ 4986119.218550962395966, 3902153.466630687471479 ], [ 4986131.038998193107545, 3902148.033195232972503 ], [ 4986141.63806351646781, 3902171.363189187832177 ], [ 4986132.412976305000484, 3902175.346360486932099 ], [ 4986142.153360430151224, 3902196.489494097884744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985749.065105327405035, 3900152.76785905752331 ], [ 4985781.100803122855723, 3900124.806681413669139 ], [ 4985810.109584360383451, 3900158.012254497036338 ], [ 4985804.625276285223663, 3900163.096913436427712 ], [ 4985825.591776125133038, 3900187.179917207919061 ], [ 4985799.329278672114015, 3900209.692944440059364 ], [ 4985774.915478069335222, 3900181.96037583751604 ], [ 4985763.08287809137255, 3900192.127635441720486 ], [ 4985744.987620985135436, 3900171.692878871224821 ], [ 4985756.820223057642579, 3900161.525611428078264 ], [ 4985749.065105327405035, 3900152.76785905752331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985480.72721282672137, 3901443.697860527783632 ], [ 4985520.797820951789618, 3901427.043624113779515 ], [ 4985535.688802971504629, 3901462.399958565365523 ], [ 4985539.72500954195857, 3901460.588957678060979 ], [ 4985551.18011711165309, 3901487.562066413927823 ], [ 4985502.749195550568402, 3901507.837580711115152 ], [ 4985498.45460609626025, 3901497.267510602250695 ], [ 4985488.941394869238138, 3901501.250212682411075 ], [ 4985473.191625985316932, 3901463.707064383663237 ], [ 4985486.741051509976387, 3901457.913347963709384 ], [ 4985480.72721282672137, 3901443.697860527783632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985336.157795479521155, 3905186.260823635850102 ], [ 4985356.351612218655646, 3905170.651317035779357 ], [ 4985363.528634018264711, 3905179.771738481707871 ], [ 4985401.031618024222553, 3905150.730686750728637 ], [ 4985430.31292668171227, 3905188.306196716614068 ], [ 4985372.328211176209152, 3905232.956000779755414 ], [ 4985336.157795479521155, 3905186.260823635850102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985216.976804030127823, 3908801.811129766050726 ], [ 4985205.937385354191065, 3908843.29598495690152 ], [ 4985180.041920755058527, 3908836.31583447707817 ], [ 4985190.793391425162554, 3908794.830283647868782 ], [ 4985216.976804030127823, 3908801.811129766050726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984970.709597887471318, 3906052.390142659191042 ], [ 4985009.029836286790669, 3906042.285341017413884 ], [ 4985026.151556800119579, 3906107.505625877995044 ], [ 4985007.999265621416271, 3906112.560399055946618 ], [ 4985010.567392976023257, 3906122.398060763720423 ], [ 4984987.228750864043832, 3906128.897070703096688 ], [ 4984979.808824660256505, 3906100.841296373400837 ], [ 4984983.266691777855158, 3906099.757101171184331 ], [ 4984970.709597887471318, 3906052.390142659191042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984750.5411845324561, 3906007.080696449615061 ], [ 4984792.321859817951918, 3905994.798971172422171 ], [ 4984814.318446083925664, 3906068.769817161373794 ], [ 4984790.11426339391619, 3906075.995214900467545 ], [ 4984786.687396637164056, 3906063.970751444809139 ], [ 4984768.822200790978968, 3906069.390496995765716 ], [ 4984750.5411845324561, 3906007.080696449615061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984728.085150022059679, 3908930.647038213443011 ], [ 4984749.630159294232726, 3908951.089384098071605 ], [ 4984717.881880429573357, 3908984.150452726520598 ], [ 4984696.336873693391681, 3908963.708131880965084 ], [ 4984728.085150022059679, 3908930.647038213443011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984296.669849650934339, 3907879.472711662296206 ], [ 4984303.550891550257802, 3907891.869364271406084 ], [ 4984264.343320959247649, 3907913.261204143520445 ], [ 4984239.400962150655687, 3907867.686154701281339 ], [ 4984265.635055498220026, 3907853.546499787364155 ], [ 4984271.081638920120895, 3907863.754984551109374 ], [ 4984324.416222017258406, 3907834.385398503858596 ], [ 4984337.030033617280424, 3907857.719492936041206 ], [ 4984296.669849650934339, 3907879.472711662296206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983766.638220394030213, 3915659.036537764593959 ], [ 4983798.079465386457741, 3915630.343123660888523 ], [ 4983809.851123517379165, 3915643.115236817393452 ], [ 4983778.409880803897977, 3915671.808637371752411 ], [ 4983766.638220394030213, 3915659.036537764593959 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983538.1534404149279, 3909673.970231598243117 ], [ 4983566.674258685670793, 3909666.025444163009524 ], [ 4983583.238221621140838, 3909723.961000793613493 ], [ 4983554.716615417972207, 3909732.269901888910681 ], [ 4983538.1534404149279, 3909673.970231598243117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983481.848011987283826, 3916206.761544668581337 ], [ 4983458.504153520800173, 3916219.45217529963702 ], [ 4983446.753661384806037, 3916197.576900313142687 ], [ 4983470.09668976534158, 3916185.2503920821473 ], [ 4983481.848011987283826, 3916206.761544668581337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982950.371472207829356, 3916141.083682063035667 ], [ 4982901.702775615267456, 3916151.895963786635548 ], [ 4982904.264846254140139, 3916164.282413043547422 ], [ 4982886.697912610135972, 3916168.247575246263295 ], [ 4982875.306609609164298, 3916115.057820975780487 ], [ 4982898.632731730118394, 3916110.013465601019561 ], [ 4982899.774032602086663, 3916114.385697348043323 ], [ 4982918.204500643536448, 3916110.422526260372251 ], [ 4982920.482915513217449, 3916120.98765370529145 ], [ 4982944.673374497331679, 3916115.581188372801989 ], [ 4982950.371472207829356, 3916141.083682063035667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982348.071869311854243, 3905067.512265740893781 ], [ 4982378.915732938796282, 3905053.017138839233667 ], [ 4982398.691542624495924, 3905093.844898171257228 ], [ 4982367.846886863000691, 3905108.704132698010653 ], [ 4982348.071869311854243, 3905067.512265740893781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982121.107025695033371, 3904711.968688409309834 ], [ 4982144.744879266247153, 3904700.734158929437399 ], [ 4982157.640940993092954, 3904728.0732666477561 ], [ 4982134.003106000833213, 3904739.307784970849752 ], [ 4982121.107025695033371, 3904711.968688409309834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982091.252774942666292, 3916620.873809014447033 ], [ 4982046.285835877992213, 3916649.902749156113714 ], [ 4982030.223573603667319, 3916625.105255406349897 ], [ 4982046.942259836941957, 3916614.219058313872665 ], [ 4982025.429383960552514, 3916581.398273734375834 ], [ 4982076.162038876675069, 3916548.376876879483461 ], [ 4982108.574368597008288, 3916597.972579026129097 ], [ 4982086.090033689513803, 3916612.851157499477267 ], [ 4982091.252774942666292, 3916620.873809014447033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981947.941222086548805, 3905013.078103221021593 ], [ 4982014.519734642468393, 3904985.918685861863196 ], [ 4982029.69881131593138, 3905022.366194859147072 ], [ 4981963.119550777599216, 3905049.889705188106745 ], [ 4981947.941222086548805, 3905013.078103221021593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981890.657605501823127, 3915336.482654892839491 ], [ 4981884.600621249526739, 3915341.930994135327637 ], [ 4981898.670283429324627, 3915357.256391499191523 ], [ 4981890.593486990779638, 3915364.884974122513086 ], [ 4981903.228043469600379, 3915378.3864635983482 ], [ 4981891.113269092515111, 3915389.64727039495483 ], [ 4981853.49739982187748, 3915349.143486352171749 ], [ 4981879.745958648622036, 3915324.805731204338372 ], [ 4981890.657605501823127, 3915336.482654892839491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981833.041053470224142, 3905143.906270885374397 ], [ 4981867.91749450750649, 3905128.691385711077601 ], [ 4981891.122302561067045, 3905181.542858043219894 ], [ 4981856.533866146579385, 3905196.758363026194274 ], [ 4981833.041053470224142, 3905143.906270885374397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981704.695673921145499, 3909075.153356502763927 ], [ 4981730.057790142484009, 3909063.558188005816191 ], [ 4981734.641364822164178, 3909073.764222002122551 ], [ 4981709.279256222769618, 3909085.359386252705008 ], [ 4981704.695673921145499, 3909075.153356502763927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981218.445347679778934, 3906740.338881948962808 ], [ 4981191.626167804934084, 3906758.849782003089786 ], [ 4981172.969825753942132, 3906732.22652172902599 ], [ 4981199.789019231684506, 3906713.715603362303227 ], [ 4981218.445347679778934, 3906740.338881948962808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981080.85696026775986, 3902840.545419132336974 ], [ 4981051.065931677818298, 3902898.740120349917561 ], [ 4981030.93043209053576, 3902888.499645154923201 ], [ 4981039.897325001657009, 3902870.677159081213176 ], [ 4981028.966451392509043, 3902865.190872624982148 ], [ 4981015.952539597637951, 3902889.922856653574854 ], [ 4980991.502263893373311, 3902877.488027902320027 ], [ 4981005.384940479882061, 3902850.573176145087928 ], [ 4980997.330559178255498, 3902846.549823956098408 ], [ 4981013.527583030983806, 3902814.906415427103639 ], [ 4981055.81208230741322, 3902836.484228394925594 ], [ 4981059.283175414428115, 3902829.573458468541503 ], [ 4981080.85696026775986, 3902840.545419132336974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981014.476915519684553, 3916754.642681749071926 ], [ 4981080.723016841337085, 3916734.034497823100537 ], [ 4981091.868718327023089, 3916769.744503424037248 ], [ 4981025.910521475598216, 3916790.353300867602229 ], [ 4981014.476915519684553, 3916754.642681749071926 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981022.835781906731427, 3901219.304551701527089 ], [ 4981018.82251902949065, 3901210.920614684000611 ], [ 4981040.156614763662219, 3901200.772401339840144 ], [ 4981063.664192267693579, 3901249.254124268423766 ], [ 4981025.607988473959267, 3901267.740133607760072 ], [ 4981006.113625545054674, 3901227.64237799635157 ], [ 4981022.835781906731427, 3901219.304551701527089 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980984.498824958689511, 3907711.68682897510007 ], [ 4981001.809799020178616, 3907695.703494473360479 ], [ 4981015.597685877233744, 3907710.29945468576625 ], [ 4981030.311704979278147, 3907696.859288922511041 ], [ 4981054.152546739205718, 3907722.401608790270984 ], [ 4980998.46937342826277, 3907773.620397804304957 ], [ 4980975.778593821451068, 3907748.808947693556547 ], [ 4980998.860128352418542, 3907727.376452698372304 ], [ 4980984.498824958689511, 3907711.68682897510007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980968.398361252620816, 3899796.524552849121392 ], [ 4980985.330901010893285, 3899823.507847396656871 ], [ 4980925.05336846690625, 3899861.243533338885754 ], [ 4980907.833593621850014, 3899833.895508030429482 ], [ 4980968.398361252620816, 3899796.524552849121392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980923.876157223246992, 3902985.484781207982451 ], [ 4980935.73238402698189, 3902963.29909955849871 ], [ 4980957.593275684863329, 3902974.635731253307313 ], [ 4980945.73703577183187, 3902996.82140340982005 ], [ 4980923.876157223246992, 3902985.484781207982451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980894.074952854774892, 3904605.439704041928053 ], [ 4980839.017276919446886, 3904631.535040303133428 ], [ 4980826.405362227931619, 3904605.289595063775778 ], [ 4980881.463079517707229, 3904579.194233382120728 ], [ 4980894.074952854774892, 3904605.439704041928053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980715.707358202897012, 3902448.29386549256742 ], [ 4980817.050075402483344, 3902460.170497057959437 ], [ 4980813.820167527534068, 3902488.201441689860076 ], [ 4980784.741609780117869, 3902484.859827880281955 ], [ 4980783.569530251435935, 3902493.960511826910079 ], [ 4980711.30549927894026, 3902485.425509157590568 ], [ 4980715.707358202897012, 3902448.29386549256742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980700.495962763205171, 3903987.0794004551135 ], [ 4980722.177751258015633, 3903948.893563305027783 ], [ 4980750.651394457556307, 3903964.614248799160123 ], [ 4980728.680809939280152, 3904003.16355575947091 ], [ 4980700.495962763205171, 3903987.0794004551135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980644.551283732056618, 3900895.8459214232862 ], [ 4980690.948349005542696, 3900882.475653939414769 ], [ 4980697.519895555451512, 3900906.158694862388074 ], [ 4980651.12367260735482, 3900919.164822097867727 ], [ 4980644.551283732056618, 3900895.8459214232862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980611.71631592605263, 3906372.674744807183743 ], [ 4980590.952703034505248, 3906387.194165647495538 ], [ 4980576.314564501866698, 3906366.042182683479041 ], [ 4980596.790248754434288, 3906351.522114777937531 ], [ 4980611.71631592605263, 3906372.674744807183743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980555.134710901416838, 3901349.71970916679129 ], [ 4980528.319460296072066, 3901364.2257892601192 ], [ 4980530.327361676841974, 3901367.871527669019997 ], [ 4980485.346285738050938, 3901392.533255136571825 ], [ 4980468.135075367055833, 3901361.544194504618645 ], [ 4980539.644269173033535, 3901322.011579159647226 ], [ 4980555.134710901416838, 3901349.71970916679129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980558.596003141254187, 3899128.529980413615704 ], [ 4980589.155272861011326, 3899115.124602029565722 ], [ 4980611.507818632759154, 3899166.152226468082517 ], [ 4980572.588157345540822, 3899183.180430966895074 ], [ 4980555.680507711134851, 3899144.545288188382983 ], [ 4980564.040955679491162, 3899140.922431885264814 ], [ 4980558.596003141254187, 3899128.529980413615704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980529.165790613740683, 3902547.28957147244364 ], [ 4980515.089409284293652, 3902531.600883407983929 ], [ 4980537.307890919037163, 3902511.62267300626263 ], [ 4980575.517348579131067, 3902553.217952099628747 ], [ 4980549.25834992248565, 3902577.192659116815776 ], [ 4980554.429087311029434, 3902583.030168644618243 ], [ 4980528.458113643340766, 3902607.005531903821975 ], [ 4980498.867114845663309, 3902574.896729506086558 ], [ 4980529.165790613740683, 3902547.28957147244364 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980501.737121185287833, 3905060.828819048125297 ], [ 4980534.030189897865057, 3905041.601059226319194 ], [ 4980532.881599030457437, 3905040.141998184844851 ], [ 4980567.481540040113032, 3905019.462840950582176 ], [ 4980593.589413081295788, 3905062.852165555115789 ], [ 4980526.696471236646175, 3905102.759020042140037 ], [ 4980501.737121185287833, 3905060.828819048125297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980075.53923352714628, 3902048.161384720355272 ], [ 4980077.55830348469317, 3902046.709279854316264 ], [ 4980065.499669258482754, 3902029.932856652420014 ], [ 4980089.439752340316772, 3902012.871098327450454 ], [ 4980129.061810436658561, 3902067.577539542224258 ], [ 4980103.101884681731462, 3902086.455495327245444 ], [ 4980075.53923352714628, 3902048.161384720355272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980046.719035566784441, 3904164.065480449236929 ], [ 4980026.218891619704664, 3904189.145713015925139 ], [ 4979998.910439029335976, 3904167.238104032352567 ], [ 4980019.410574062727392, 3904142.15785095654428 ], [ 4980046.719035566784441, 3904164.065480449236929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980046.379075263626873, 3899448.931834588758647 ], [ 4980056.403690586797893, 3899474.442903074901551 ], [ 4980043.72086566966027, 3899479.148853844963014 ], [ 4980049.448417952284217, 3899494.090735251549631 ], [ 4980020.623484224081039, 3899504.95160726737231 ], [ 4980005.158484254963696, 3899464.863437039311975 ], [ 4980046.379075263626873, 3899448.931834588758647 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979818.756654171273112, 3900152.299307752866298 ], [ 4979776.420151033438742, 3900152.207083687651902 ], [ 4979776.198752267286181, 3900121.619625253137201 ], [ 4979818.824100826866925, 3900121.348347633611411 ], [ 4979818.756654171273112, 3900152.299307752866298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979783.255925106815994, 3909044.681151700206101 ], [ 4979774.022242865525186, 3909054.128486207220703 ], [ 4979789.535955473780632, 3909069.455854158382863 ], [ 4979772.222620052285492, 3909087.260637970641255 ], [ 4979717.635057035833597, 3909034.34255965705961 ], [ 4979744.182071485556662, 3909007.090393553953618 ], [ 4979783.255925106815994, 3909044.681151700206101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979781.255603497847915, 3902295.856273677200079 ], [ 4979807.787095158360898, 3902278.799906623084098 ], [ 4979830.748555379919708, 3902314.170668531674892 ], [ 4979804.2170839169994, 3902331.227013278286904 ], [ 4979781.255603497847915, 3902295.856273677200079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979559.966951763257384, 3909250.658856265712529 ], [ 4979587.839272931218147, 3909275.844516535755247 ], [ 4979560.422643536701798, 3909306.008015060331672 ], [ 4979532.551118034869432, 3909280.458251775242388 ], [ 4979559.966951763257384, 3909250.658856265712529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979453.883462346158922, 3892157.036912202835083 ], [ 4979364.754523891024292, 3892207.458026070613414 ], [ 4979352.127417147159576, 3892184.854739190079272 ], [ 4979441.25561844278127, 3892134.797711350489408 ], [ 4979453.883462346158922, 3892157.036912202835083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979188.118910823017359, 3908790.683182684704661 ], [ 4979179.714539712294936, 3908816.154341483023018 ], [ 4979149.217204075306654, 3908806.257024944294244 ], [ 4979157.333638345822692, 3908780.785236245021224 ], [ 4979188.118910823017359, 3908790.683182684704661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979175.560697537846863, 3897650.786169641185552 ], [ 4979120.475583903491497, 3897683.803357324562967 ], [ 4979095.219854128547013, 3897641.509901323355734 ], [ 4979150.01620804425329, 3897608.856170696206391 ], [ 4979175.560697537846863, 3897650.786169641185552 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978975.649302513338625, 3908786.220400362275541 ], [ 4979001.825714425183833, 3908797.200629371684045 ], [ 4978979.252881717868149, 3908851.043741239700466 ], [ 4978949.624717134051025, 3908838.599590576253831 ], [ 4978966.409558831714094, 3908798.581058029085398 ], [ 4978969.861359111964703, 3908800.045003425795585 ], [ 4978975.649302513338625, 3908786.220400362275541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978985.458980878815055, 3902075.656213122885674 ], [ 4979002.49065615516156, 3902056.757991885300726 ], [ 4979038.706830793991685, 3902089.243507797364146 ], [ 4979002.622923335060477, 3902129.220360472798347 ], [ 4978973.880228678695858, 3902103.305302779190242 ], [ 4978992.932451537810266, 3902082.226628714706749 ], [ 4978985.458980878815055, 3902075.656213122885674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978884.93069708161056, 3905442.563880546484143 ], [ 4978928.732208803296089, 3905427.000194700900465 ], [ 4978945.331493160687387, 3905474.372965894639492 ], [ 4978927.177583738230169, 3905480.52423526160419 ], [ 4978926.032050851732492, 3905477.608721918892115 ], [ 4978900.673241074196994, 3905486.657600470352918 ], [ 4978884.93069708161056, 3905442.563880546484143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978556.090615739114583, 3900042.158899357076734 ], [ 4978528.394837524741888, 3900064.311829463578761 ], [ 4978493.636271200142801, 3900021.998625829350203 ], [ 4978521.332840050570667, 3899999.481531513854861 ], [ 4978556.090615739114583, 3900042.158899357076734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978446.573396943509579, 3907112.99308931780979 ], [ 4978406.794293003156781, 3907134.028109569568187 ], [ 4978392.742320490069687, 3907107.416573483962566 ], [ 4978432.233523576520383, 3907086.38092001946643 ], [ 4978446.573396943509579, 3907112.99308931780979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978432.681186123751104, 3906334.813246979843825 ], [ 4978443.851832437328994, 3906362.511053563095629 ], [ 4978404.370401924476027, 3906378.44885545829311 ], [ 4978393.199721649289131, 3906350.751065012998879 ], [ 4978432.681186123751104, 3906334.813246979843825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978320.464742046780884, 3904399.214251640252769 ], [ 4978327.308445380069315, 3904430.908233413938433 ], [ 4978279.197893189266324, 3904441.001774128526449 ], [ 4978272.354135761968791, 3904409.307804407551885 ], [ 4978320.464742046780884, 3904399.214251640252769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978275.114167819730937, 3906229.608384346589446 ], [ 4978286.294295488856733, 3906252.936559568159282 ], [ 4978248.536563497968018, 3906270.69890820607543 ], [ 4978237.355638295412064, 3906247.734878765884787 ], [ 4978275.114167819730937, 3906229.608384346589446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978250.81510859914124, 3902752.828441510442644 ], [ 4978267.270660213194788, 3902733.564395416062325 ], [ 4978284.519067518413067, 3902747.802112363744527 ], [ 4978268.350715030916035, 3902767.430888614617288 ], [ 4978250.81510859914124, 3902752.828441510442644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978167.384567882865667, 3907743.805549755692482 ], [ 4978144.61790615785867, 3907753.588905124925077 ], [ 4978134.302823107689619, 3907729.89846528461203 ], [ 4978156.781578765250742, 3907720.114491519052535 ], [ 4978167.384567882865667, 3907743.805549755692482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978063.387828701175749, 3907225.789396023843437 ], [ 4978080.321648460812867, 3907251.314459696877748 ], [ 4978053.795382359065115, 3907268.736714650411159 ], [ 4978036.862318045459688, 3907242.847536861896515 ], [ 4978063.387828701175749, 3907225.789396023843437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978028.587008616887033, 3906526.218049393966794 ], [ 4978040.338477830402553, 3906551.732125855050981 ], [ 4978001.429589533247054, 3906569.492390840314329 ], [ 4977989.677322356030345, 3906544.342461531516165 ], [ 4978028.587008616887033, 3906526.218049393966794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977918.400996387004852, 3904297.134813151322305 ], [ 4977889.01152584142983, 3904305.447879003360868 ], [ 4977876.719066285528243, 3904262.818584399297833 ], [ 4977906.108579564839602, 3904254.505505319219083 ], [ 4977918.400996387004852, 3904297.134813151322305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977897.720702886581421, 3906184.386034267954528 ], [ 4977907.162029115483165, 3906213.172364173457026 ], [ 4977867.110960750840604, 3906226.196697026025504 ], [ 4977857.669596285559237, 3906197.410380948334932 ], [ 4977897.720702886581421, 3906184.386034267954528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977875.654411409981549, 3907227.577903121244162 ], [ 4977906.497983468696475, 3907210.892840193584561 ], [ 4977907.931479935534298, 3907213.808920295909047 ], [ 4977923.78517088200897, 3907205.467313913162798 ], [ 4977937.26554153393954, 3907230.256738642696291 ], [ 4977890.568311356939375, 3907255.283383313566446 ], [ 4977875.654411409981549, 3907227.577903121244162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977577.575005508027971, 3908498.501446415204555 ], [ 4977592.503772894851863, 3908518.924165502656251 ], [ 4977566.263932732865214, 3908537.804042674601078 ], [ 4977551.335155982524157, 3908517.381337929982692 ], [ 4977577.575005508027971, 3908498.501446415204555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977566.909561354666948, 3906169.125395480543375 ], [ 4977604.372934736311436, 3906154.274528970941901 ], [ 4977616.117332284338772, 3906183.429717527702451 ], [ 4977578.941168271005154, 3906198.645301877055317 ], [ 4977566.909561354666948, 3906169.125395480543375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977508.533922509290278, 3901868.61056003626436 ], [ 4977543.955318535678089, 3901869.048862822819501 ], [ 4977543.619282353669405, 3901891.988411255180836 ], [ 4977508.197916558012366, 3901891.550108914263546 ], [ 4977508.533922509290278, 3901868.61056003626436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977463.784227886237204, 3913344.873500985559076 ], [ 4977464.697342555969954, 3913321.206730312667787 ], [ 4977456.637959769926965, 3913320.825733019970357 ], [ 4977457.560973295941949, 3913292.425247015897185 ], [ 4977505.918080257251859, 3913294.347136684693396 ], [ 4977504.081865535117686, 3913346.4143903888762 ], [ 4977463.784227886237204, 3913344.873500985559076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977398.101146649569273, 3902484.125221110880375 ], [ 4977388.561347874812782, 3902501.583585393149406 ], [ 4977366.124135363847017, 3902489.520398525521159 ], [ 4977375.3759452290833, 3902472.061424978077412 ], [ 4977398.101146649569273, 3902484.125221110880375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977415.041552754119039, 3892307.455062597058713 ], [ 4977432.070673373527825, 3892292.197229018900543 ], [ 4977468.285960688255727, 3892332.327115072868764 ], [ 4977452.122628362849355, 3892346.858478102367371 ], [ 4977434.014235070906579, 3892327.157666916027665 ], [ 4977415.253569933585823, 3892343.868397778831422 ], [ 4977402.319311243481934, 3892329.640351712238044 ], [ 4977420.502281812950969, 3892313.656662805005908 ], [ 4977415.041552754119039, 3892307.455062597058713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977287.907597934827209, 3901329.964123324491084 ], [ 4977241.269018480554223, 3901322.220170919317752 ], [ 4977246.227074502035975, 3901292.371770582161844 ], [ 4977292.865704379044473, 3901300.115731448866427 ], [ 4977287.907597934827209, 3901329.964123324491084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977231.427675695158541, 3913231.142755559179932 ], [ 4977242.482601087540388, 3913175.45336588146165 ], [ 4977267.804750746116042, 3913180.239892557729036 ], [ 4977264.314699822105467, 3913197.346890694927424 ], [ 4977277.838974633254111, 3913199.924028448760509 ], [ 4977272.3126135841012, 3913227.222517713904381 ], [ 4977260.514772858470678, 3913225.013115717098117 ], [ 4977258.476194920018315, 3913236.297004874795675 ], [ 4977231.427675695158541, 3913231.142755559179932 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977159.030659288167953, 3907766.085335384123027 ], [ 4977199.967119423672557, 3907741.409550745971501 ], [ 4977214.601090307347476, 3907765.472757879644632 ], [ 4977173.664653254672885, 3907790.148520590271801 ], [ 4977159.030659288167953, 3907766.085335384123027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977063.540203753858805, 3911044.173100115265697 ], [ 4977091.401638859882951, 3911074.818170558661222 ], [ 4977046.407420346513391, 3911115.143454218283296 ], [ 4977018.546731893904507, 3911084.134298192802817 ], [ 4977063.540203753858805, 3911044.173100115265697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977071.938097173348069, 3906863.220573786646128 ], [ 4977083.702431167475879, 3906882.908148928079754 ], [ 4977085.720220235176384, 3906881.819945515599102 ], [ 4977098.920407268218696, 3906903.331171751953661 ], [ 4977072.108775492757559, 3906919.661402076017112 ], [ 4977046.857054461725056, 3906878.097895919810981 ], [ 4977071.938097173348069, 3906863.220573786646128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977048.943420756608248, 3900741.759833151474595 ], [ 4977065.826355478726327, 3900794.22971509443596 ], [ 4977036.143060398288071, 3900803.635485337581486 ], [ 4977019.548826339654624, 3900750.802090195938945 ], [ 4977048.943420756608248, 3900741.759833151474595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977007.652343104593456, 3905373.787571969907731 ], [ 4977045.983379950746894, 3905357.481205963529646 ], [ 4977059.739072235301137, 3905389.189233717974275 ], [ 4977021.69601927511394, 3905405.496178040746599 ], [ 4977007.652343104593456, 3905373.787571969907731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976984.587963958270848, 3909551.792757317889482 ], [ 4977026.957284790463746, 3909528.940323476679623 ], [ 4977020.934754374437034, 3909517.639708330389112 ], [ 4977044.570028047077358, 3909504.580003755167127 ], [ 4977062.352705917321146, 3909537.024746590759605 ], [ 4976996.060251963324845, 3909572.936254027765244 ], [ 4976984.587963958270848, 3909551.792757317889482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976930.79978085309267, 3908416.315924009308219 ], [ 4976931.889561844989657, 3908446.177041739225388 ], [ 4976884.09122297167778, 3908448.262822776567191 ], [ 4976883.002142908982933, 3908418.037576085422188 ], [ 4976930.79978085309267, 3908416.315924009308219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976906.638621012680233, 3901453.340478747617453 ], [ 4976947.529354074038565, 3901455.245844710152596 ], [ 4976944.833315113559365, 3901505.490319592412561 ], [ 4976916.613417571410537, 3901503.975330156739801 ], [ 4976918.405461084097624, 3901473.027916755527258 ], [ 4976905.73544133733958, 3901472.273414119146764 ], [ 4976906.638621012680233, 3901453.340478747617453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976863.956779029220343, 3908021.457985321991146 ], [ 4976832.82159342430532, 3908040.692573231179267 ], [ 4976819.333837050944567, 3908019.180867187678814 ], [ 4976850.469037832692266, 3907999.94626390747726 ], [ 4976863.956779029220343, 3908021.457985321991146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976854.65135146304965, 3906535.415343397296965 ], [ 4976866.99411965534091, 3906554.01162003679201 ], [ 4976837.87277814745903, 3906573.25035652378574 ], [ 4976812.039979722350836, 3906533.870671206153929 ], [ 4976835.682289740070701, 3906518.626024393830448 ], [ 4976849.173805058002472, 3906538.681197006255388 ], [ 4976854.65135146304965, 3906535.415343397296965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976793.85691078286618, 3902096.526536149904132 ], [ 4976800.534701403230429, 3902070.322905346751213 ], [ 4976834.498605203814805, 3902079.132274332456291 ], [ 4976828.109519127756357, 3902104.972362929023802 ], [ 4976793.85691078286618, 3902096.526536149904132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976723.958946279250085, 3902893.829278241377324 ], [ 4976760.188770303502679, 3902920.485665739979595 ], [ 4976742.862223297357559, 3902943.754279022570699 ], [ 4976753.500698246061802, 3902951.787135148886591 ], [ 4976737.906527141109109, 3902972.874542726669461 ], [ 4976727.843250792473555, 3902965.207011280115694 ], [ 4976713.980703457258642, 3902984.477351561188698 ], [ 4976723.469533802010119, 3902991.415429709479213 ], [ 4976708.74158179666847, 3903011.412249031942338 ], [ 4976670.498271103017032, 3902983.659383316524327 ], [ 4976685.226209732703865, 3902963.662543359678239 ], [ 4976676.600528826937079, 3902957.090390272438526 ], [ 4976694.793184409849346, 3902932.7311274940148 ], [ 4976703.131646525114775, 3902938.938562473282218 ], [ 4976714.393427371047437, 3902924.032423708122224 ], [ 4976706.342937002889812, 3902917.825579549185932 ], [ 4976723.958946279250085, 3902893.829278241377324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976683.039839613251388, 3901091.660574078094214 ], [ 4976688.856040154583752, 3901064.362761712633073 ], [ 4976718.507361733354628, 3901070.250034312717617 ], [ 4976712.691132307052612, 3901097.547840358689427 ], [ 4976683.039839613251388, 3901091.660574078094214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976586.543395374901593, 3908791.389414669014513 ], [ 4976571.618515247479081, 3908768.782465333119035 ], [ 4976593.818420997820795, 3908753.898751582484692 ], [ 4976608.743290791288018, 3908776.505713032092899 ], [ 4976586.543395374901593, 3908791.389414669014513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976540.954654457047582, 3913315.648267386481166 ], [ 4976554.436958508566022, 3913338.616432663053274 ], [ 4976563.659043122082949, 3913333.537550256121904 ], [ 4976576.85345681104809, 3913356.505134312901646 ], [ 4976532.182403760030866, 3913381.90251776156947 ], [ 4976505.505640430375934, 3913335.966807499993593 ], [ 4976540.954654457047582, 3913315.648267386481166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976542.72636725846678, 3912454.840480077080429 ], [ 4976566.84309967700392, 3912486.205594974569976 ], [ 4976555.021637571975589, 3912495.284589578863233 ], [ 4976550.715563220903277, 3912489.449591709300876 ], [ 4976525.631807189434767, 3912508.332902416121215 ], [ 4976505.821133743971586, 3912482.802814014256001 ], [ 4976542.72636725846678, 3912454.840480077080429 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976492.668218094855547, 3912159.425392015371472 ], [ 4976460.368623614311218, 3912187.397254956420511 ], [ 4976439.977412529289722, 3912164.05082738911733 ], [ 4976472.56488870549947, 3912136.079532086849213 ], [ 4976492.668218094855547, 3912159.425392015371472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976317.631171485409141, 3912303.991075510624796 ], [ 4976283.03566297609359, 3912328.681247706059366 ], [ 4976264.95111979264766, 3912303.519009901676327 ], [ 4976299.54664393607527, 3912278.828814804088324 ], [ 4976317.631171485409141, 3912303.991075510624796 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976316.32195798959583, 3912521.375982666853815 ], [ 4976342.447267384268343, 3912556.022214394528419 ], [ 4976317.653083237819374, 3912574.178046787157655 ], [ 4976291.527759669348598, 3912539.531838779337704 ], [ 4976316.32195798959583, 3912521.375982666853815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976290.685882780700922, 3906766.934574469923973 ], [ 4976301.854823435656726, 3906796.4521505064331 ], [ 4976256.326497196219862, 3906813.473116825334728 ], [ 4976245.15676845703274, 3906784.319689915515482 ], [ 4976290.685882780700922, 3906766.934574469923973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976200.724852785468102, 3912599.792086554691195 ], [ 4976226.377328627742827, 3912584.186836059670895 ], [ 4976249.903663500212133, 3912622.833127532619983 ], [ 4976224.539825529791415, 3912638.074813191778958 ], [ 4976200.724852785468102, 3912599.792086554691195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976189.179375860840082, 3910925.484175863675773 ], [ 4976089.577566861175001, 3910921.639352925587445 ], [ 4976090.809393800795078, 3910882.315506925806403 ], [ 4976190.699981478042901, 3910885.796791629400104 ], [ 4976189.179375860840082, 3910925.484175863675773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976075.2498250445351, 3904115.615095925983042 ], [ 4976099.752518576569855, 3904102.920496142935008 ], [ 4976111.800051350146532, 3904125.885369664989412 ], [ 4976087.297373003326356, 3904138.579958635848016 ], [ 4976075.2498250445351, 3904115.615095925983042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976019.927659950219095, 3901023.300992583855987 ], [ 4975987.678254845552146, 3901020.322245764080435 ], [ 4975992.088650353252888, 3900975.9072768217884 ], [ 4976024.338108297437429, 3900978.886028854642063 ], [ 4976019.927659950219095, 3901023.300992583855987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975884.944914425723255, 3907354.179856632370502 ], [ 4975909.407534683123231, 3907359.691590685863048 ], [ 4975902.435092803090811, 3907390.264509837608784 ], [ 4975877.971758684143424, 3907385.116912690922618 ], [ 4975884.944914425723255, 3907354.179856632370502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975791.774630123749375, 3912543.246299381833524 ], [ 4975815.574703685007989, 3912589.175430822651833 ], [ 4975779.552500491961837, 3912608.037222789600492 ], [ 4975755.465250598266721, 3912561.743406820110977 ], [ 4975791.774630123749375, 3912543.246299381833524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975562.853521154262125, 3898470.547104476485401 ], [ 4975575.732794520445168, 3898510.991583940573037 ], [ 4975588.702573586255312, 3898506.648238599766046 ], [ 4975593.568747261539102, 3898521.587414870969951 ], [ 4975582.039814895950258, 3898525.569540158845484 ], [ 4975586.047815527766943, 3898537.593938914127648 ], [ 4975550.885747067630291, 3898549.17504696175456 ], [ 4975536.287889195606112, 3898503.993414917960763 ], [ 4975542.340745023451746, 3898501.820859286468476 ], [ 4975535.185077322646976, 3898479.594464629888535 ], [ 4975562.853521154262125, 3898470.547104476485401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975516.243617289699614, 3904008.518204294610769 ], [ 4975570.367979358881712, 3904014.817788918036968 ], [ 4975564.210382862947881, 3904069.425054672174156 ], [ 4975539.163621843792498, 3904066.4613919085823 ], [ 4975540.33974371291697, 3904054.447431237902492 ], [ 4975511.550200060009956, 3904051.112101763952523 ], [ 4975516.243617289699614, 3904008.518204294610769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975435.136820274405181, 3904816.362321511376649 ], [ 4975483.160375675186515, 3904848.502778451889753 ], [ 4975466.986514300107956, 3904872.502826486248523 ], [ 4975474.175783458165824, 3904877.251043138559908 ], [ 4975463.778628895059228, 3904892.523592274170369 ], [ 4975453.138336717151105, 3904885.583627591375262 ], [ 4975446.785017509013414, 3904894.674103172961622 ], [ 4975415.152800709009171, 3904873.490692304912955 ], [ 4975435.370440369471908, 3904843.308529767207801 ], [ 4975422.71738498378545, 3904834.907992580905557 ], [ 4975435.136820274405181, 3904816.362321511376649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975326.766275807283819, 3908871.846581635531038 ], [ 4975292.462507553398609, 3908892.897245761472732 ], [ 4975280.696284346282482, 3908873.938692496623844 ], [ 4975315.000067496672273, 3908852.888013590592891 ], [ 4975326.766275807283819, 3908871.846581635531038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975188.077321748249233, 3898930.417158058844507 ], [ 4975148.874947250820696, 3898946.360249120276421 ], [ 4975136.550836223177612, 3898916.112725226674229 ], [ 4975176.040533699095249, 3898900.534323135390878 ], [ 4975188.077321748249233, 3898930.417158058844507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975130.958905352279544, 3899263.117702869232744 ], [ 4975101.516653765924275, 3899295.466298649087548 ], [ 4975067.017113860696554, 3899264.446118616964668 ], [ 4975096.459357677958906, 3899232.09748564241454 ], [ 4975130.958905352279544, 3899263.117702869232744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975100.658301033079624, 3910069.752891284413636 ], [ 4975113.287084856070578, 3910089.07724260026589 ], [ 4975076.676024721935391, 3910113.036631252150983 ], [ 4975052.279183486476541, 3910075.846223354805261 ], [ 4975075.918113272637129, 3910060.235863412730396 ], [ 4975087.68614690285176, 3910078.101947091519833 ], [ 4975100.658301033079624, 3910069.752891284413636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975073.288101286627352, 3909361.095869472250342 ], [ 4975143.247493119910359, 3909361.964373241178691 ], [ 4975142.609600238502026, 3909392.91436435515061 ], [ 4975072.93892284296453, 3909391.6823078407906 ], [ 4975073.288101286627352, 3909361.095869472250342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974961.223224476911128, 3897581.224882385693491 ], [ 4974900.696746561676264, 3897601.131154147908092 ], [ 4974890.961833342909813, 3897571.981326887384057 ], [ 4974906.237656249664724, 3897566.913996092509478 ], [ 4974898.508055185899138, 3897543.230119285173714 ], [ 4974898.508055185899138, 3897543.230119285173714 ], [ 4974892.494276706129313, 3897525.739878627005965 ], [ 4974937.745778892189264, 3897510.536764785181731 ], [ 4974961.223224476911128, 3897581.224882385693491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974836.031540029682219, 3902441.389014246873558 ], [ 4974846.355935105122626, 3902462.893333750776947 ], [ 4974816.665827169083059, 3902477.035249578300864 ], [ 4974806.342139479704201, 3902455.166811693459749 ], [ 4974836.031540029682219, 3902441.389014246873558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974812.467166209593415, 3909494.575437017250806 ], [ 4974796.041437632404268, 3909502.1894810651429 ], [ 4974783.713111368007958, 3909476.311498614959419 ], [ 4974800.13885223120451, 3909468.697447155602276 ], [ 4974812.467166209593415, 3909494.575437017250806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974657.117612325586379, 3903205.344086029101163 ], [ 4974697.471169122494757, 3903186.489489453844726 ], [ 4974719.2642238792032, 3903233.14163513481617 ], [ 4974689.86445083655417, 3903246.556011087726802 ], [ 4974685.562997614964843, 3903237.444177514407784 ], [ 4974657.604544568806887, 3903250.133192260749638 ], [ 4974644.987392105162144, 3903223.162411096505821 ], [ 4974661.993574164807796, 3903215.18531909910962 ], [ 4974657.117612325586379, 3903205.344086029101163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974536.739315793849528, 3908726.071685686707497 ], [ 4974531.866482383571565, 3908715.138049140106887 ], [ 4974543.104426595382392, 3908710.426615536678582 ], [ 4974547.11785532347858, 3908719.173754746094346 ], [ 4974559.220258028246462, 3908714.099910231307149 ], [ 4974572.690681470558047, 3908745.077897024340928 ], [ 4974559.147288754582405, 3908750.877141333650798 ], [ 4974562.299862645566463, 3908758.166045294608921 ], [ 4974529.161913611926138, 3908772.301478412933648 ], [ 4974513.398268586024642, 3908736.221112758852541 ], [ 4974536.739315793849528, 3908726.071685686707497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974455.591007457114756, 3908849.715901689603925 ], [ 4974435.410622387193143, 3908863.148848230950534 ], [ 4974418.186456783674657, 3908837.625486643053591 ], [ 4974438.366852335631847, 3908824.192527384031564 ], [ 4974455.591007457114756, 3908849.715901689603925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974267.423313318751752, 3895355.378995796199888 ], [ 4974319.268868471495807, 3895357.666074966546148 ], [ 4974318.063455304130912, 3895384.609277403447777 ], [ 4974311.726974812336266, 3895384.232639602851123 ], [ 4974310.219141421839595, 3895418.457835788372904 ], [ 4974301.866289739497006, 3895418.077220370993018 ], [ 4974301.266467269510031, 3895430.092310064937919 ], [ 4974260.366386128589511, 3895428.190976886078715 ], [ 4974261.872719393111765, 3895394.694033846259117 ], [ 4974265.905481034889817, 3895394.701986928936094 ], [ 4974267.423313318751752, 3895355.378995796199888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974227.468594163656235, 3897358.377690692897886 ], [ 4974172.408339343965054, 3897381.573542920872569 ], [ 4974182.730205490253866, 3897405.62644192064181 ], [ 4974158.51537720952183, 3897415.774405696429312 ], [ 4974131.279062145389616, 3897351.269813799764961 ], [ 4974210.553543554618955, 3897318.290068073198199 ], [ 4974227.468594163656235, 3897358.377690692897886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974094.678795948624611, 3898679.90839422494173 ], [ 4974107.281465644016862, 3898715.617934482637793 ], [ 4974070.101277691312134, 3898728.65353137999773 ], [ 4974057.786583876237273, 3898692.944574155379087 ], [ 4974094.678795948624611, 3898679.90839422494173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974071.234244640916586, 3897126.119485015049577 ], [ 4974099.195915535092354, 3897114.886420830152929 ], [ 4974122.700266739353538, 3897173.193421717733145 ], [ 4974103.962933578528464, 3897180.80329926777631 ], [ 4974109.695712361484766, 3897195.015637315809727 ], [ 4974059.250221808440983, 3897214.943626024760306 ], [ 4974044.918565142899752, 3897179.230745680630207 ], [ 4974086.139818674884737, 3897162.925895990803838 ], [ 4974071.234244640916586, 3897126.119485015049577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974034.760153368115425, 3900884.96457025129348 ], [ 4974030.682449355721474, 3900908.26092536514625 ], [ 4973979.723708615638316, 3900899.785892928950489 ], [ 4973994.295697441324592, 3900812.0589953456074 ], [ 4974046.981862344779074, 3900820.901578685734421 ], [ 4974042.611850706860423, 3900846.382140903268009 ], [ 4974047.79434777982533, 3900847.120582644362003 ], [ 4974041.381905791349709, 3900886.069968187715858 ], [ 4974034.760153368115425, 3900884.96457025129348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974000.603644739836454, 3904494.164693641941994 ], [ 4973969.467153075151145, 3904513.038427645806223 ], [ 4973965.162088729441166, 3904505.747352705802768 ], [ 4973951.323738986626267, 3904514.095233866479248 ], [ 4973928.360726150684059, 3904476.544668272137642 ], [ 4973973.047654938884079, 3904449.322445449884981 ], [ 4974000.603644739836454, 3904494.164693641941994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973738.432565570808947, 3910161.36743669770658 ], [ 4973718.627463508397341, 3910130.741602353751659 ], [ 4973744.282267468981445, 3910114.405743271112442 ], [ 4973781.881391879171133, 3910173.468735800124705 ], [ 4973767.756691424176097, 3910182.544440527912229 ], [ 4973749.674746857024729, 3910154.106747567653656 ], [ 4973738.432565570808947, 3910161.36743669770658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973613.313408511690795, 3900792.379229818936437 ], [ 4973902.183945426717401, 3900787.845762084238231 ], [ 4973902.42200727853924, 3900813.335374223068357 ], [ 4973613.552453706040978, 3900817.504710203502327 ], [ 4973613.313408511690795, 3900792.379229818936437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973614.646464315243065, 3899960.343512479681522 ], [ 4973622.333210548385978, 3900006.238928576465696 ], [ 4973588.337276767008007, 3900011.998793600592762 ], [ 4973580.651183161884546, 3899965.739257975015789 ], [ 4973614.646464315243065, 3899960.343512479681522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973604.863945391029119, 3897441.635943002067506 ], [ 4973583.243786743842065, 3897450.69708888605237 ], [ 4973578.656535097397864, 3897439.764260690659285 ], [ 4973556.459610464051366, 3897449.188435184769332 ], [ 4973555.025825534947217, 3897445.908475912641734 ], [ 4973539.459324458613992, 3897452.43252806738019 ], [ 4973526.268614045344293, 3897422.184088453184813 ], [ 4973539.81819181330502, 3897416.020235003437847 ], [ 4973534.944300259463489, 3897404.358597099781036 ], [ 4973552.528475639410317, 3897397.110208575613797 ], [ 4973556.542513896711171, 3897406.585396938491613 ], [ 4973584.793128244578838, 3897394.62409920617938 ], [ 4973604.863945391029119, 3897441.635943002067506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973286.065806441009045, 3903958.226678896695375 ], [ 4973329.020930740982294, 3903933.184827941935509 ], [ 4973352.269679926335812, 3903972.556077152956277 ], [ 4973334.395539266988635, 3903983.081237089354545 ], [ 4973339.562628288753331, 3903991.466273086611181 ], [ 4973314.193023107945919, 3904006.346494864206761 ], [ 4973286.065806441009045, 3903958.226678896695375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973271.580312899313867, 3896712.365070437546819 ], [ 4973279.871457765810192, 3896744.424535803496838 ], [ 4973287.076685710810125, 3896742.253704740665853 ], [ 4973294.222694326192141, 3896770.669660704210401 ], [ 4973250.707573319785297, 3896781.509337157476693 ], [ 4973245.276378223672509, 3896760.015175005886704 ], [ 4973234.325937494635582, 3896762.542903842870146 ], [ 4973224.606512609869242, 3896724.290484806522727 ], [ 4973271.580312899313867, 3896712.365070437546819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973099.827441439032555, 3903173.528004923369735 ], [ 4973119.723447760567069, 3903160.093546428717673 ], [ 4973107.088549959473312, 3903141.498473954387009 ], [ 4973127.561229564249516, 3903127.701003111433238 ], [ 4973160.009873515926301, 3903175.464842517394572 ], [ 4973119.641218777745962, 3903202.696733113378286 ], [ 4973099.827441439032555, 3903173.528004923369735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973058.390850866213441, 3901663.396885650232434 ], [ 4973068.491466239094734, 3901652.492434135638177 ], [ 4973065.616507041268051, 3901649.937975355423987 ], [ 4973085.817059597931802, 3901628.493211271706969 ], [ 4973131.238264190033078, 3901670.455899729859084 ], [ 4973101.225075625814497, 3901702.805621610954404 ], [ 4973058.390850866213441, 3901663.396885650232434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973009.924904550425708, 3899762.90583850024268 ], [ 4972993.842045241035521, 3899739.206395144108683 ], [ 4973037.100052151829004, 3899709.795147503726184 ], [ 4973053.182891071774065, 3899733.49461633246392 ], [ 4973009.924904550425708, 3899762.90583850024268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972918.240165706723928, 3910147.39707907801494 ], [ 4972947.004573862068355, 3910160.561189482919872 ], [ 4972939.488448800519109, 3910176.568567658308893 ], [ 4972910.724054146558046, 3910163.404465170111507 ], [ 4972918.240165706723928, 3910147.39707907801494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972891.337891849689186, 3911262.320105778053403 ], [ 4972867.105932752601802, 3911288.126978817395866 ], [ 4972815.091166015714407, 3911239.961542360950261 ], [ 4972833.553535064682364, 3911220.333804932888597 ], [ 4972848.496970443986356, 3911234.199553400278091 ], [ 4972854.266554179601371, 3911228.020374810323119 ], [ 4972891.337891849689186, 3911262.320105778053403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972843.990064946934581, 3910732.77989459130913 ], [ 4972822.931453135795891, 3910754.951565549243242 ], [ 4972797.355370692908764, 3910730.869713861960918 ], [ 4972818.413980158045888, 3910708.698023198638111 ], [ 4972843.990064946934581, 3910732.77989459130913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972586.798530593514442, 3912444.804862756282091 ], [ 4972621.124892841093242, 3912408.457158069591969 ], [ 4972664.229048885405064, 3912448.594271946698427 ], [ 4972655.863351463340223, 3912457.681593526154757 ], [ 4972676.553160130977631, 3912477.020253164693713 ], [ 4972650.879659897647798, 3912504.645245161373168 ], [ 4972586.798530593514442, 3912444.804862756282091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972508.866863584145904, 3910893.085136845707893 ], [ 4972529.840315095148981, 3910915.337266257964075 ], [ 4972518.303945505991578, 3910926.239235423970968 ], [ 4972529.508640800602734, 3910938.277004566043615 ], [ 4972517.395115993916988, 3910949.906138417776674 ], [ 4972506.47761329356581, 3910938.233055031392723 ], [ 4972477.348867539316416, 3910965.487463914323598 ], [ 4972455.801024401560426, 3910942.50601425068453 ], [ 4972508.866863584145904, 3910893.085136845707893 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972303.796937304548919, 3899878.076991617679596 ], [ 4972318.418842216022313, 3899913.061290049459785 ], [ 4972294.495673635974526, 3899922.84736641170457 ], [ 4972311.985169015824795, 3899964.391456252895296 ], [ 4972281.432394835166633, 3899977.077993580605835 ], [ 4972253.335708162747324, 3899909.660532813519239 ], [ 4972280.141700071282685, 3899898.423371528740972 ], [ 4972276.414902717806399, 3899889.313035592902452 ], [ 4972303.796937304548919, 3899878.076991617679596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971435.960845978930593, 3892664.127362560480833 ], [ 4971468.542866923846304, 3892648.894793041516095 ], [ 4971466.248398382216692, 3892643.428574704099447 ], [ 4971497.964848316274583, 3892628.922681857831776 ], [ 4971522.35394231416285, 3892681.402829493395984 ], [ 4971495.8271240061149, 3892693.733619556296617 ], [ 4971487.505367450416088, 3892676.239883388858289 ], [ 4971449.733108738437295, 3892694.0116400802508 ], [ 4971435.960845978930593, 3892664.127362560480833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971327.780742609873414, 3905419.771022123750299 ], [ 4971350.838904590345919, 3905407.797659917268902 ], [ 4971364.611471256241202, 3905434.040817589964718 ], [ 4971341.265378889627755, 3905446.013631402980536 ], [ 4971327.780742609873414, 3905419.771022123750299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971005.172582140192389, 3899099.679946195334196 ], [ 4970961.391653561033309, 3899101.055457632057369 ], [ 4970960.846603174693882, 3899084.30446006404236 ], [ 4970921.962577357888222, 3899085.324962820392102 ], [ 4970922.5123625183478, 3899099.527056870050728 ], [ 4970880.747540982440114, 3899100.90642564650625 ], [ 4970878.306684486567974, 3899018.972624321002513 ], [ 4970920.9356799274683, 3899017.594848573207855 ], [ 4970921.47873792424798, 3899035.438231504987925 ], [ 4970961.803586356341839, 3899034.056262560654432 ], [ 4970961.256514335051179, 3899018.397652494721115 ], [ 4971002.73345283139497, 3899017.017875753808767 ], [ 4971005.172582140192389, 3899099.679946195334196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970987.12040719203651, 3898582.581718856003135 ], [ 4971047.330130096524954, 3898575.41059897840023 ], [ 4971051.582292870618403, 3898612.195617327000946 ], [ 4971019.02862470317632, 3898616.140751346480101 ], [ 4971021.295699258334935, 3898636.172105093020946 ], [ 4970993.927765688858926, 3898639.398612312506884 ], [ 4970987.12040719203651, 3898582.581718856003135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970560.67019794229418, 3897895.046779786702245 ], [ 4970570.124330914579332, 3897922.738000756129622 ], [ 4970517.959350580349565, 3897940.120572009589523 ], [ 4970499.625691093504429, 3897885.467482871375978 ], [ 4970542.856558459810913, 3897870.981530441436917 ], [ 4970551.735998954623938, 3897897.943430718034506 ], [ 4970560.67019794229418, 3897895.046779786702245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970490.976676682010293, 3910933.370992450043559 ], [ 4970517.491744052618742, 3910917.397758577484637 ], [ 4970533.564714199863374, 3910944.008934783283621 ], [ 4970507.050331058911979, 3910959.618021444417536 ], [ 4970490.976676682010293, 3910933.370992450043559 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970434.105093388818204, 3897646.114164264407009 ], [ 4970397.785315087996423, 3897661.341185700148344 ], [ 4970379.431252877227962, 3897617.612047205679119 ], [ 4970426.704908458516002, 3897597.671351147815585 ], [ 4970436.167947130277753, 3897620.628847594838589 ], [ 4970425.214126076549292, 3897625.342494017444551 ], [ 4970434.105093388818204, 3897646.114164264407009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970412.843712052330375, 3893679.613147074822336 ], [ 4970382.286036286503077, 3893691.573540224228054 ], [ 4970373.397701831534505, 3893668.617168632801622 ], [ 4970404.242806922644377, 3893657.021420071367174 ], [ 4970412.843712052330375, 3893679.613147074822336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970369.781286445446312, 3910615.26120962202549 ], [ 4970342.41032066103071, 3910626.863429583609104 ], [ 4970337.250234249047935, 3910614.837620269041508 ], [ 4970296.913542774505913, 3910632.242324315477163 ], [ 4970290.31996275857091, 3910616.936712307855487 ], [ 4970296.08244167547673, 3910614.398302115034312 ], [ 4970277.159359415993094, 3910571.760232333093882 ], [ 4970313.462316421791911, 3910556.168796167708933 ], [ 4970316.616492413915694, 3910563.093078554607928 ], [ 4970341.970937240868807, 3910552.215413395315409 ], [ 4970369.781286445446312, 3910615.26120962202549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969976.085261815227568, 3897991.567520319949836 ], [ 4970017.323271196335554, 3897963.968432175461203 ], [ 4970046.335321427322924, 3898007.352548261173069 ], [ 4970011.729875982739031, 3898030.594064528588206 ], [ 4969998.229628320783377, 3898010.178299711085856 ], [ 4969991.596437781117857, 3898014.899959813803434 ], [ 4969976.085261815227568, 3897991.567520319949836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969909.309860301204026, 3898124.718117536511272 ], [ 4969923.652432759292424, 3898157.151653598528355 ], [ 4969918.464030458591878, 3898159.327038559131324 ], [ 4969927.643894917331636, 3898179.734940606635064 ], [ 4969899.106396743096411, 3898192.427823825739324 ], [ 4969875.583909883163869, 3898139.58641300490126 ], [ 4969909.309860301204026, 3898124.718117536511272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969840.491663739085197, 3894767.318651932757348 ], [ 4969860.014635080471635, 3894803.402743061073124 ], [ 4969824.260889864526689, 3894822.272836225107312 ], [ 4969804.737226686440408, 3894786.552898716181517 ], [ 4969840.491663739085197, 3894767.318651932757348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969725.967431480064988, 3898691.337288444396108 ], [ 4969718.460550231859088, 3898701.519393134396523 ], [ 4969697.176024951040745, 3898685.459296324755996 ], [ 4969725.47085515037179, 3898647.276652676519006 ], [ 4969764.590249116532505, 3898675.749379782937467 ], [ 4969743.513601759448647, 3898704.113492380362004 ], [ 4969725.967431480064988, 3898691.337288444396108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969731.793693730607629, 3890668.488545834552497 ], [ 4969738.438497041352093, 3890658.304934185929596 ], [ 4969721.748748235404491, 3890646.986860706005245 ], [ 4969737.060354642570019, 3890623.710253884084523 ], [ 4969745.693011903204024, 3890629.551877249032259 ], [ 4969762.448462566360831, 3890604.457247579935938 ], [ 4969784.606311580166221, 3890619.062371588312089 ], [ 4969776.228905120864511, 3890631.427614683751017 ], [ 4969788.026766472496092, 3890639.459734817035496 ], [ 4969757.116718616336584, 3890685.284125709440559 ], [ 4969731.793693730607629, 3890668.488545834552497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969633.760444669052958, 3903992.913652291055769 ], [ 4969676.972501733340323, 3903983.159944597166032 ], [ 4969681.25715642888099, 3904002.466622465290129 ], [ 4969659.650810708291829, 3904007.525529276579618 ], [ 4969661.649490066803992, 3904016.996542438399047 ], [ 4969640.331777382642031, 3904021.691853512078524 ], [ 4969633.760444669052958, 3903992.913652291055769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969587.145788262598217, 3892281.317536340095103 ], [ 4969612.239554574713111, 3892264.612744403071702 ], [ 4969664.535168940201402, 3892340.445641242433339 ], [ 4969639.440785268321633, 3892357.514512656722218 ], [ 4969587.145788262598217, 3892281.317536340095103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969381.949031909927726, 3902619.323108916636556 ], [ 4969427.214945536106825, 3902589.545480981934816 ], [ 4969451.339076711796224, 3902626.365963415242732 ], [ 4969406.073198150843382, 3902656.14355138503015 ], [ 4969381.949031909927726, 3902619.323108916636556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969298.728881392627954, 3891820.1777802859433 ], [ 4969333.316286808811128, 3891811.136401209514588 ], [ 4969343.331792956218123, 3891849.023690775968134 ], [ 4969358.319764842279255, 3891845.045091268140823 ], [ 4969364.614137716591358, 3891869.452972347382456 ], [ 4969315.326939646154642, 3891882.473441880196333 ], [ 4969298.728881392627954, 3891820.1777802859433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969126.990357675589621, 3897177.303912241943181 ], [ 4969113.07583539839834, 3897227.164908063132316 ], [ 4969100.696174310520291, 3897223.865699514746666 ], [ 4969097.217070956714451, 3897236.604047850705683 ], [ 4969077.928466868586838, 3897231.107773915398866 ], [ 4969081.696892547421157, 3897217.641678460408002 ], [ 4969058.089690671302378, 3897211.045345155522227 ], [ 4969068.235690507106483, 3897174.65041771531105 ], [ 4969099.615984727628529, 3897183.445374174043536 ], [ 4969103.383131384849548, 3897170.707539322320372 ], [ 4969126.990357675589621, 3897177.303912241943181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969039.998213577084243, 3897990.251023394986987 ], [ 4969051.242259085178375, 3897984.080808576196432 ], [ 4969040.046121691353619, 3897963.305494673550129 ], [ 4969082.138868449255824, 3897940.440182389691472 ], [ 4969089.602946700528264, 3897954.290402617305517 ], [ 4969081.530415762215853, 3897958.645595268346369 ], [ 4969097.032663719728589, 3897987.439449592027813 ], [ 4969051.48107095155865, 3898011.755107390228659 ], [ 4969039.998213577084243, 3897990.251023394986987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968816.113062910735607, 3895761.016159915365279 ], [ 4968789.025370789691806, 3895767.158442669082433 ], [ 4968784.736809331923723, 3895748.944387141615152 ], [ 4968761.395056476816535, 3895754.365063110832125 ], [ 4968752.81852959934622, 3895717.572833725716919 ], [ 4968793.162405783310533, 3895708.176791784819216 ], [ 4968794.306881678290665, 3895712.548369037918746 ], [ 4968824.276429485529661, 3895705.68293297663331 ], [ 4968831.42292149271816, 3895736.646582903340459 ], [ 4968811.539045163430274, 3895741.345077320933342 ], [ 4968816.113062910735607, 3895761.016159915365279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968708.195533573627472, 3910868.624176435172558 ], [ 4968748.508948918431997, 3910863.5975600508973 ], [ 4968752.766758544370532, 3910897.833568984642625 ], [ 4968779.258277707733214, 3910894.603227332700044 ], [ 4968782.378664432093501, 3910920.826308183372021 ], [ 4968705.495193925686181, 3910930.521978985518217 ], [ 4968701.241188189946115, 3910894.101186987012625 ], [ 4968711.319852356798947, 3910892.662458766251802 ], [ 4968708.195533573627472, 3910868.624176435172558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968660.012077408842742, 3910602.358071802649647 ], [ 4968629.493657942861319, 3910603.396632847376168 ], [ 4968628.412727235816419, 3910563.34012902341783 ], [ 4968658.93054960295558, 3910562.665698342956603 ], [ 4968660.012077408842742, 3910602.358071802649647 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968578.38508471287787, 3905949.333118146751076 ], [ 4968583.858535156585276, 3905947.886232503689826 ], [ 4968589.584003599360585, 3905966.831165045965463 ], [ 4968548.963154910132289, 3905978.775977836921811 ], [ 4968541.808208086527884, 3905954.002431430853903 ], [ 4968576.667056736536324, 3905943.868117324542254 ], [ 4968578.38508471287787, 3905949.333118146751076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968557.80402812268585, 3902265.016884396784008 ], [ 4968572.732222603634, 3902291.624718443956226 ], [ 4968514.215186765417457, 3902323.929387643001974 ], [ 4968499.287592649459839, 3902296.957455853465945 ], [ 4968557.80402812268585, 3902265.016884396784008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968542.278648025356233, 3897994.83265390060842 ], [ 4968519.139191176742315, 3898050.139698373619467 ], [ 4968467.331620116718113, 3898028.929104926995933 ], [ 4968484.397470931522548, 3897987.812409236561507 ], [ 4968512.603590874932706, 3897999.514147475361824 ], [ 4968518.677760963328183, 3897984.959632289595902 ], [ 4968542.278648025356233, 3897994.83265390060842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968508.516797407530248, 3895245.230571766849607 ], [ 4968503.852854606695473, 3895276.537494406104088 ], [ 4968488.013631978072226, 3895274.324880354572088 ], [ 4968486.849891941994429, 3895280.877163213212043 ], [ 4968436.453580371104181, 3895273.141938035842031 ], [ 4968445.488150166347623, 3895213.440590620040894 ], [ 4968467.374676142819226, 3895216.756188658997416 ], [ 4968466.501553220674396, 3895221.852465393953025 ], [ 4968484.643978748470545, 3895224.79737216886133 ], [ 4968482.310738604515791, 3895241.179091583006084 ], [ 4968508.516797407530248, 3895245.230571766849607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968511.444670487195253, 3892596.561128729488701 ], [ 4968457.818135294131935, 3892620.863536175806075 ], [ 4968440.599559968337417, 3892582.963916587643325 ], [ 4968451.267637873999774, 3892577.884842015337199 ], [ 4968444.093008938245475, 3892562.214710427448153 ], [ 4968462.25705580599606, 3892553.871641333214939 ], [ 4968468.283174890093505, 3892567.354988044127822 ], [ 4968493.078294906765223, 3892556.110557017382234 ], [ 4968511.444670487195253, 3892596.561128729488701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968484.458612833172083, 3905981.939698289614171 ], [ 4968513.555379927158356, 3905973.615832505282015 ], [ 4968527.577361301518977, 3906023.162406554911286 ], [ 4968495.024077915586531, 3906032.208443162031472 ], [ 4968484.720950650982559, 3905996.505426117219031 ], [ 4968488.178160602226853, 3905995.419108513742685 ], [ 4968484.458612833172083, 3905981.939698289614171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968469.991688369773328, 3890446.309358437545598 ], [ 4968491.542163862846792, 3890479.118762411177158 ], [ 4968464.428766639903188, 3890496.913423008285463 ], [ 4968442.878272438421845, 3890464.104040431324393 ], [ 4968469.991688369773328, 3890446.309358437545598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968263.550468399189413, 3897289.024217757862061 ], [ 4968274.478564810007811, 3897298.874836829025298 ], [ 4968258.31809441652149, 3897316.324798184912652 ], [ 4968247.389999216422439, 3897306.47418557247147 ], [ 4968263.550468399189413, 3897289.024217757862061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968130.295999985188246, 3901686.756341480184346 ], [ 4968112.419854549691081, 3901698.741478358861059 ], [ 4968105.812662824057043, 3901689.262559880036861 ], [ 4968087.071300352923572, 3901701.974466578103602 ], [ 4968052.888378054834902, 3901651.664879207033664 ], [ 4968074.513440729118884, 3901636.773188915103674 ], [ 4968085.716398287564516, 3901653.178591217380017 ], [ 4968110.223892566747963, 3901636.835430187638849 ], [ 4968132.917102335952222, 3901670.010901365894824 ], [ 4968123.402729752473533, 3901676.184527612291276 ], [ 4968130.295999985188246, 3901686.756341480184346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967854.026146087795496, 3895592.195586119778454 ], [ 4967885.143373469822109, 3895587.879999067634344 ], [ 4967888.841303881257772, 3895614.831988646183163 ], [ 4967857.724107082001865, 3895619.147571489214897 ], [ 4967854.026146087795496, 3895592.195586119778454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967784.212915728799999, 3913445.433971428778023 ], [ 4967785.924311918206513, 3913454.540269535034895 ], [ 4967766.054975474253297, 3913458.511323948390782 ], [ 4967758.346404513344169, 3913421.720510071609169 ], [ 4967826.306277099065483, 3913407.637053155340254 ], [ 4967832.015517495572567, 3913435.321085926145315 ], [ 4967784.212915728799999, 3913445.433971428778023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967439.542468013241887, 3898930.185653142165393 ], [ 4967442.395724350586534, 3898945.848150377161801 ], [ 4967418.194219950586557, 3898950.540260077919811 ], [ 4967415.052933554165065, 3898934.877270679455251 ], [ 4967439.542468013241887, 3898930.185653142165393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967290.271438549272716, 3894435.11379244690761 ], [ 4967260.305232662707567, 3894439.432037235703319 ], [ 4967256.320310987532139, 3894411.387275608722121 ], [ 4967234.133704880252481, 3894414.626477161422372 ], [ 4967230.716163186356425, 3894391.680497779976577 ], [ 4967290.071927328594029, 3894383.407117232214659 ], [ 4967293.488795787096024, 3894406.717232083901763 ], [ 4967286.285300345160067, 3894407.797282533720136 ], [ 4967290.271438549272716, 3894435.11379244690761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967247.463786913082004, 3913379.329692357219756 ], [ 4967199.664421638473868, 3913387.62295644544065 ], [ 4967193.96074712369591, 3913356.297736478503793 ], [ 4967242.048028344288468, 3913348.004955237265676 ], [ 4967247.463786913082004, 3913379.329692357219756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967129.262565266340971, 3905390.426809432450682 ], [ 4967119.501570818014443, 3905373.295965308789164 ], [ 4967138.236189441755414, 3905362.76813805475831 ], [ 4967162.638320881873369, 3905405.777337294537574 ], [ 4967124.304055025801063, 3905427.559757644776255 ], [ 4967109.662885006517172, 3905401.681429756339639 ], [ 4967129.262565266340971, 3905390.426809432450682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967051.162964969873428, 3902218.71127690654248 ], [ 4967093.835748963057995, 3902188.561179333832115 ], [ 4967108.774754327721894, 3902209.706252898089588 ], [ 4967100.701336046680808, 3902215.518570544663817 ], [ 4967124.259242253378034, 3902248.694675592705607 ], [ 4967089.947895153425634, 3902273.032893545925617 ], [ 4967051.162964969873428, 3902218.71127690654248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966905.560131845995784, 3894859.032264154870063 ], [ 4966861.466541792266071, 3894870.973677254747599 ], [ 4966839.423010373488069, 3894790.099604700226337 ], [ 4966876.024046765640378, 3894779.96608391450718 ], [ 4966880.032177767716348, 3894794.538054245058447 ], [ 4966889.83057355042547, 3894792.005783567670733 ], [ 4966893.837458733469248, 3894807.306012338493019 ], [ 4966883.462328686378896, 3894810.201431722380221 ], [ 4966889.473892458714545, 3894832.423517690505832 ], [ 4966897.831354751251638, 3894830.252932771574706 ], [ 4966905.560131845995784, 3894859.032264154870063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966556.951602847315371, 3904801.019391025416553 ], [ 4966530.721440859138966, 3904816.632827951107174 ], [ 4966513.780028530396521, 3904788.202040538657457 ], [ 4966540.009594643488526, 3904772.95271765999496 ], [ 4966556.951602847315371, 3904801.019391025416553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966544.693069545552135, 3898576.184902053326368 ], [ 4966627.374570246785879, 3898564.672201409004629 ], [ 4966632.213740942999721, 3898598.544460876844823 ], [ 4966549.532342286780477, 3898610.057146876584738 ], [ 4966544.693069545552135, 3898576.184902053326368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966263.894113196060061, 3899251.174432196188718 ], [ 4966287.502033377997577, 3899256.675932110287249 ], [ 4966281.412275443784893, 3899281.426577737089247 ], [ 4966258.092388599179685, 3899275.925565375946462 ], [ 4966263.894113196060061, 3899251.174432196188718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966162.663911649957299, 3894161.565978318918496 ], [ 4966193.505409338511527, 3894150.693651257548481 ], [ 4966202.680346144363284, 3894176.562152985017747 ], [ 4966171.838874369859695, 3894187.434469689615071 ], [ 4966162.663911649957299, 3894161.565978318918496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965965.515431621111929, 3898383.318646083120257 ], [ 4965988.838577318005264, 3898387.362885968759656 ], [ 4965987.676790909841657, 3898393.187031229492277 ], [ 4966010.135858045890927, 3898397.229851466603577 ], [ 4966008.973461085930467, 3898403.418124763760716 ], [ 4966026.825375777669251, 3898406.725027561187744 ], [ 4966024.790417215786874, 3898418.009665862191468 ], [ 4966028.246074672788382, 3898418.379552505910397 ], [ 4966023.885711778886616, 3898442.404865236952901 ], [ 4965957.084653395228088, 3898430.277384192682803 ], [ 4965965.515431621111929, 3898383.318646083120257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965881.406284322962165, 3898907.526039236690849 ], [ 4965891.383454338647425, 3898969.808847506530583 ], [ 4965855.083757996559143, 3898975.57466347143054 ], [ 4965845.394522770307958, 3898913.292346322443336 ], [ 4965881.406284322962165, 3898907.526039236690849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965742.334680058993399, 3894010.117622012272477 ], [ 4965769.14320950768888, 3893999.238134671933949 ], [ 4965790.375277271494269, 3894050.615492057055235 ], [ 4965763.566790360026062, 3894061.494958548806608 ], [ 4965742.334680058993399, 3894010.117622012272477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965578.517885811626911, 3904081.320716971065849 ], [ 4965553.150875985622406, 3904097.300656461156905 ], [ 4965530.460745334625244, 3904061.578403647057712 ], [ 4965555.827775282785296, 3904045.59844307648018 ], [ 4965578.517885811626911, 3904081.320716971065849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965556.140731252729893, 3903157.119148897007108 ], [ 4965575.711963756009936, 3903163.705779952462763 ], [ 4965568.766427548602223, 3903184.449790521990508 ], [ 4965549.195208475925028, 3903177.863164429087192 ], [ 4965556.140731252729893, 3903157.119148897007108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965477.661237553693354, 3898348.647394628729671 ], [ 4965472.09415028989315, 3898406.170762658119202 ], [ 4965439.841059160418808, 3898402.840548328123987 ], [ 4965445.408078051172197, 3898345.31717372359708 ], [ 4965477.661237553693354, 3898348.647394628729671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965469.025076975114644, 3897820.644889420829713 ], [ 4965514.528168481774628, 3897823.996953214053065 ], [ 4965512.758624426089227, 3897849.118995862547308 ], [ 4965467.254976234398782, 3897846.131063842214644 ], [ 4965469.025076975114644, 3897820.644889420829713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965393.80511571932584, 3900653.453493586275727 ], [ 4965357.452822372317314, 3900692.719895967282355 ], [ 4965329.84625699184835, 3900667.549605289939791 ], [ 4965355.52348423935473, 3900639.917818957008421 ], [ 4965361.274483704939485, 3900645.389213454909623 ], [ 4965371.950141433626413, 3900633.390433471649885 ], [ 4965393.80511571932584, 3900653.453493586275727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965324.460922789759934, 3899560.948798032011837 ], [ 4965314.624414773657918, 3899587.878302982542664 ], [ 4965271.160629319027066, 3899572.149483172688633 ], [ 4965280.997695985250175, 3899544.855833379086107 ], [ 4965324.460922789759934, 3899560.948798032011837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965229.609717902727425, 3894690.195260236505419 ], [ 4965236.284594492055476, 3894659.983464176766574 ], [ 4965271.991198341362178, 3894668.052753327414393 ], [ 4965265.31687977630645, 3894697.900412504561245 ], [ 4965229.609717902727425, 3894690.195260236505419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965155.871135032735765, 3900682.194179938640445 ], [ 4965149.745267828926444, 3900729.885258763097227 ], [ 4965107.130590141750872, 3900724.353729475289583 ], [ 4965112.088346797041595, 3900686.492256110999733 ], [ 4965131.092033256776631, 3900689.07218964304775 ], [ 4965132.260670772753656, 3900678.878445996437222 ], [ 4965155.871135032735765, 3900682.194179938640445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964942.121694346889853, 3903727.071291867177933 ], [ 4964943.576320965774357, 3903717.970379832666367 ], [ 4964965.455753822810948, 3903721.647273470181972 ], [ 4964958.482996220700443, 3903759.505564748775214 ], [ 4964913.286135002970695, 3903751.057076645549387 ], [ 4964918.515063519589603, 3903723.02747941063717 ], [ 4964942.121694346889853, 3903727.071291867177933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964905.720871740952134, 3908938.828644323628396 ], [ 4964913.247935008257627, 3908913.351618220098317 ], [ 4964892.815821031108499, 3908907.492306041996926 ], [ 4964910.18625333160162, 3908848.531104868277907 ], [ 4964929.178857554681599, 3908854.388089754153043 ], [ 4964936.415687785483897, 3908830.36712847230956 ], [ 4964922.02726858202368, 3908825.974150790367275 ], [ 4964927.817443007603288, 3908806.320422877557576 ], [ 4965099.33079805970192, 3908856.48590251756832 ], [ 4965074.143041807226837, 3908942.015884793363512 ], [ 4965053.13516594003886, 3908936.15551141044125 ], [ 4965048.503686787560582, 3908951.441515744663775 ], [ 4965028.359540333971381, 3908945.582569689955562 ], [ 4965024.597143301740289, 3908957.592803980689496 ], [ 4965003.301952716894448, 3908951.367869142908603 ], [ 4964998.959006406366825, 3908966.29021971905604 ], [ 4964905.720871740952134, 3908938.828644323628396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964792.716019870713353, 3903163.882240851409733 ], [ 4964824.660152987577021, 3903176.678601155988872 ], [ 4964808.468264038674533, 3903217.070888721849769 ], [ 4964776.524171320721507, 3903204.274547351058573 ], [ 4964792.716019870713353, 3903163.882240851409733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964714.793046800419688, 3902022.934211953543127 ], [ 4964675.912348950281739, 3902024.692012191750109 ], [ 4964674.524207619950175, 3901992.646267692558467 ], [ 4964713.404951729811728, 3901990.888465479481965 ], [ 4964714.793046800419688, 3902022.934211953543127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964654.381756625138223, 3893063.788765398785472 ], [ 4964685.477857040241361, 3893074.034593642689288 ], [ 4964665.79261576756835, 3893133.355786133557558 ], [ 4964634.696576579473913, 3893123.109980312176049 ], [ 4964654.381756625138223, 3893063.788765398785472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964572.077491957694292, 3898729.508990926668048 ], [ 4964542.970597845502198, 3898740.021862124558538 ], [ 4964525.76452690269798, 3898693.385516850743443 ], [ 4964513.084069198928773, 3898698.0987932048738 ], [ 4964505.627218830399215, 3898678.423773440532386 ], [ 4964512.832387971691787, 3898675.522329999599606 ], [ 4964506.236073453910649, 3898658.033475233241916 ], [ 4964540.242892895825207, 3898645.34367623180151 ], [ 4964555.729068778455257, 3898686.87943872064352 ], [ 4964556.305107027292252, 3898686.880366824567318 ], [ 4964572.077491957694292, 3898729.508990926668048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964431.403023544698954, 3906153.181189399212599 ], [ 4964463.411112803965807, 3906124.102116415742785 ], [ 4964494.454072347842157, 3906158.016296968795359 ], [ 4964462.445989710278809, 3906187.095333585515618 ], [ 4964431.403023544698954, 3906153.181189399212599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964225.495610139332712, 3904191.639421085361391 ], [ 4964215.939363797195256, 3904225.124208422377706 ], [ 4964172.189251690171659, 3904212.673833729233593 ], [ 4964181.745447870343924, 3904179.189031086396426 ], [ 4964225.495610139332712, 3904191.639421085361391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964134.467342454940081, 3904031.640425886493176 ], [ 4964178.229982180520892, 3904036.44400343298912 ], [ 4964174.431805786676705, 3904070.666263481602073 ], [ 4964130.957182629965246, 3904065.863151515834033 ], [ 4964134.467342454940081, 3904031.640425886493176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964150.66117789875716, 3891898.132738886866719 ], [ 4964160.704873512499034, 3891922.909506091848016 ], [ 4964135.62464044149965, 3891933.065086229238659 ], [ 4964125.580344858579338, 3891908.652455819305032 ], [ 4964150.66117789875716, 3891898.132738886866719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963964.336984688416123, 3898379.335714121349156 ], [ 4963993.420300547964871, 3898383.75150635978207 ], [ 4963986.146793173626065, 3898429.62030783155933 ], [ 4963998.240816627629101, 3898431.460189145524055 ], [ 4963995.33106504753232, 3898450.026186735834926 ], [ 4963941.771759354509413, 3898441.930206359829754 ], [ 4963945.555373474024236, 3898417.175382897723466 ], [ 4963958.225449265912175, 3898419.016161231324077 ], [ 4963964.336984688416123, 3898379.335714121349156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963959.073781072162092, 3893896.530217397026718 ], [ 4963950.944186748936772, 3893936.571485594846308 ], [ 4963889.316837155260146, 3893924.093284226488322 ], [ 4963894.834646710194647, 3893896.064109108876437 ], [ 4963921.040967106819153, 3893901.20349796814844 ], [ 4963923.364604456350207, 3893889.190931771881878 ], [ 4963959.073781072162092, 3893896.530217397026718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963789.36188178230077, 3900290.741220696363598 ], [ 4963836.020503631792963, 3900289.35858912114054 ], [ 4963836.829697227105498, 3900323.952250546775758 ], [ 4963790.171135383658111, 3900325.334880750160664 ], [ 4963789.36188178230077, 3900290.741220696363598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963605.836863761767745, 3893935.661406517028809 ], [ 4963617.435414675623178, 3893887.614665371831506 ], [ 4963640.760516764596105, 3893893.113369217142463 ], [ 4963639.020610768347979, 3893900.39320409623906 ], [ 4963661.193415952846408, 3893905.890108825173229 ], [ 4963651.334700033068657, 3893946.656997182872146 ], [ 4963605.836863761767745, 3893935.661406517028809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963378.448631060309708, 3899880.811586195603013 ], [ 4963392.027748740278184, 3899853.523108896333724 ], [ 4963415.626582979224622, 3899864.848157187923789 ], [ 4963402.334882139228284, 3899892.501203742809594 ], [ 4963378.448631060309708, 3899880.811586195603013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963363.995862147770822, 3900649.467976185493171 ], [ 4963381.020285464823246, 3900628.739226821344346 ], [ 4963373.254603457637131, 3900622.172707989346236 ], [ 4963386.52764783333987, 3900606.171777907758951 ], [ 4963430.247424675151706, 3900641.925132804550231 ], [ 4963399.949939156882465, 3900678.654768588021398 ], [ 4963363.995862147770822, 3900649.467976185493171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963114.942182406783104, 3893024.934536076150835 ], [ 4963076.603209261782467, 3893040.532395565882325 ], [ 4963061.964948238804936, 3893005.91739655053243 ], [ 4963100.592609163373709, 3892989.955837112851441 ], [ 4963114.942182406783104, 3893024.934536076150835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962916.460704625584185, 3899339.358164789155126 ], [ 4962930.320296452380717, 3899316.803589119575918 ], [ 4962971.754512311890721, 3899342.356979950796813 ], [ 4962957.895463830791414, 3899364.547405397053808 ], [ 4962916.460704625584185, 3899339.358164789155126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962401.824635254219174, 3895360.449018794577569 ], [ 4962366.680839392356575, 3895361.123500394634902 ], [ 4962364.758018890395761, 3895299.946853819303215 ], [ 4962399.902452075853944, 3895298.908241394907236 ], [ 4962401.824635254219174, 3895360.449018794577569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962394.958996790461242, 3896834.798310248646885 ], [ 4962333.280256372876465, 3896859.828908105380833 ], [ 4962322.089031516574323, 3896832.137962041422725 ], [ 4962330.447727404534817, 3896828.509439915418625 ], [ 4962311.795275540091097, 3896782.600621265359223 ], [ 4962330.529531294479966, 3896774.982526126783341 ], [ 4962323.35580416675657, 3896757.129217768087983 ], [ 4962343.819433591328561, 3896748.785515516530722 ], [ 4962348.698296254500747, 3896760.44511879933998 ], [ 4962362.532558949664235, 3896755.004331671632826 ], [ 4962394.958996790461242, 3896834.798310248646885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962307.117331345565617, 3899844.925451901275665 ], [ 4962318.08996216673404, 3899826.371576851699501 ], [ 4962295.357434641569853, 3899813.22816536296159 ], [ 4962320.190585196018219, 3899771.027001488488168 ], [ 4962344.361502984538674, 3899785.265023306012154 ], [ 4962334.255641802214086, 3899801.999561316799372 ], [ 4962358.426524254493415, 3899816.237596046179533 ], [ 4962332.727109111845493, 3899859.893922343850136 ], [ 4962307.117331345565617, 3899844.925451901275665 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962145.550922961905599, 3897380.247941595967859 ], [ 4962258.095768613740802, 3897430.305167462211102 ], [ 4962234.396036765538156, 3897483.431950819678605 ], [ 4962220.003870831802487, 3897477.219806157052517 ], [ 4962215.668405920267105, 3897487.044699203688651 ], [ 4962200.125218888744712, 3897480.102551656309515 ], [ 4962204.459569634869695, 3897471.005913773085922 ], [ 4962184.311181910336018, 3897461.871981316246092 ], [ 4962180.842596419155598, 3897469.877551759127527 ], [ 4962164.435848015360534, 3897462.569980327505618 ], [ 4962168.771298103965819, 3897452.745079159270972 ], [ 4962149.198395436629653, 3897443.976178890559822 ], [ 4962147.175520097836852, 3897448.342656834982336 ], [ 4962120.118745309300721, 3897436.285225312691182 ], [ 4962145.550922961905599, 3897380.247941595967859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961784.290010582655668, 3896851.348727071657777 ], [ 4961792.131863202899694, 3896808.393271122127771 ], [ 4961803.938176486641169, 3896810.595857601147145 ], [ 4961809.166836770251393, 3896781.473386211786419 ], [ 4961838.827212050557137, 3896786.615969563368708 ], [ 4961832.435918792150915, 3896822.655140697024763 ], [ 4961839.922736052423716, 3896824.122962991241366 ], [ 4961833.531999847851694, 3896859.79800597159192 ], [ 4961784.290010582655668, 3896851.348727071657777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961648.064352995716035, 3898373.205699629615992 ], [ 4961620.615258628502488, 3898431.061104078777134 ], [ 4961594.423851518891752, 3898418.641363472212106 ], [ 4961621.872902076691389, 3898360.785932709928602 ], [ 4961648.064352995716035, 3898373.205699629615992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961008.73254163749516, 3892671.445411896333098 ], [ 4961059.676965582184494, 3892702.835861154366285 ], [ 4961032.821102986112237, 3892746.127412596251816 ], [ 4960981.588108686730266, 3892715.100715512875468 ], [ 4961008.73254163749516, 3892671.445411896333098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960931.939149599522352, 3909556.424371697474271 ], [ 4960942.845021433196962, 3909579.744949106592685 ], [ 4960952.640160081908107, 3909575.389834045898169 ], [ 4960966.4158775806427, 3909604.904911722522229 ], [ 4960918.303426736034453, 3909627.045904847793281 ], [ 4960899.075258670374751, 3909585.506438266951591 ], [ 4960916.361226065084338, 3909577.521042322274297 ], [ 4960910.908280584029853, 3909565.860758408904076 ], [ 4960931.939149599522352, 3909556.424371697474271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960736.806563081219792, 3894419.226944522000849 ], [ 4960737.714616506360471, 3894389.369702866300941 ], [ 4960763.350811492651701, 3894390.499758726451546 ], [ 4960762.154664781875908, 3894420.35657615121454 ], [ 4960736.806563081219792, 3894419.226944522000849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960563.985172138549387, 3897952.120715827681124 ], [ 4960595.369454792700708, 3897959.449232074897736 ], [ 4960588.122951495461166, 3897990.753782875835896 ], [ 4960556.738170970231295, 3897983.789403911679983 ], [ 4960563.985172138549387, 3897952.120715827681124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959930.415619024075568, 3893084.250718608964235 ], [ 4959905.854543150402606, 3893135.921663800720125 ], [ 4959860.656533398665488, 3893114.737249121069908 ], [ 4959885.505620967596769, 3893063.066677263472229 ], [ 4959930.415619024075568, 3893084.250718608964235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959806.090610058046877, 3902032.921967000234872 ], [ 4959764.043487091548741, 3902033.954069111030549 ], [ 4959762.94634419772774, 3901995.718783786520362 ], [ 4959804.993526932783425, 3901994.686679970473051 ], [ 4959806.090610058046877, 3902032.921967000234872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959734.257942636497319, 3900108.754012919496745 ], [ 4959736.908898103050888, 3900067.611098777502775 ], [ 4959743.532476175576448, 3900067.984714487567544 ], [ 4959745.60013862978667, 3900031.938789112027735 ], [ 4959783.325623568147421, 3900034.177630230318755 ], [ 4959778.60688756685704, 3900111.366462587378919 ], [ 4959734.257942636497319, 3900108.754012919496745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959512.907439399510622, 3904673.180176381487399 ], [ 4959479.201166356913745, 3904684.056139595340937 ], [ 4959462.00206018332392, 3904629.047869278118014 ], [ 4959494.267580883577466, 3904618.898096633609384 ], [ 4959497.42058062646538, 3904629.098256926052272 ], [ 4959513.553344611078501, 3904624.02338701300323 ], [ 4959522.153114719316363, 3904651.345471757464111 ], [ 4959507.46117808111012, 3904655.694125426467508 ], [ 4959512.907439399510622, 3904673.180176381487399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959460.255931620486081, 3893093.7739716200158 ], [ 4959464.02890904340893, 3893074.11638659471646 ], [ 4959509.820557666011155, 3893083.284732292406261 ], [ 4959504.018042077310383, 3893112.04263980127871 ], [ 4959514.673850370571017, 3893114.242576413787901 ], [ 4959510.030905250459909, 3893137.904332148376852 ], [ 4959458.479328637942672, 3893127.635412821080536 ], [ 4959465.151722814887762, 3893094.87331646354869 ], [ 4959460.255931620486081, 3893093.7739716200158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959398.102739305235445, 3908057.983928969595581 ], [ 4959386.905953403562307, 3908035.391854312736541 ], [ 4959436.174766343086958, 3908011.064990345388651 ], [ 4959459.428906147368252, 3908058.435200549662113 ], [ 4959428.023519642651081, 3908074.048231958877295 ], [ 4959415.966112649999559, 3908049.270130450837314 ], [ 4959398.102739305235445, 3908057.983928969595581 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959369.658175217919052, 3892989.868691538460553 ], [ 4959354.627944215200841, 3893025.167862560600042 ], [ 4959310.866106514818966, 3893006.535310567822307 ], [ 4959325.895774655975401, 3892971.600243374705315 ], [ 4959369.658175217919052, 3892989.868691538460553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959295.4241862911731, 3898827.848043708130717 ], [ 4959301.265470938757062, 3898770.687919994350523 ], [ 4959327.184016292914748, 3898772.909404331818223 ], [ 4959325.721744830720127, 3898788.56491788988933 ], [ 4959349.336126863025129, 3898790.783159668557346 ], [ 4959345.244008290581405, 3898833.016426999121904 ], [ 4959295.4241862911731, 3898827.848043708130717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958825.703902918845415, 3900037.191320456564426 ], [ 4958831.803425485268235, 3900000.422703933902085 ], [ 4958873.842477894388139, 3900007.399992081802338 ], [ 4958867.743409007787704, 3900043.80446976935491 ], [ 4958825.703902918845415, 3900037.191320456564426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958726.315208334475756, 3901708.774900186806917 ], [ 4958723.527238409034908, 3901642.86339098168537 ], [ 4958750.600091030821204, 3901641.444631406106055 ], [ 4958751.433059354312718, 3901663.657754309475422 ], [ 4958784.553116084076464, 3901662.611598276998848 ], [ 4958786.51003198325634, 3901704.853470489382744 ], [ 4958768.653834601864219, 3901705.556797923985869 ], [ 4958769.212016205303371, 3901718.302145205438137 ], [ 4958744.443641003221273, 3901719.359970399644226 ], [ 4958743.883415685035288, 3901708.07114286115393 ], [ 4958726.315208334475756, 3901708.774900186806917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958604.906221881508827, 3900999.64392156759277 ], [ 4958640.610934692434967, 3901004.42726568505168 ], [ 4958643.521275072358549, 3900982.583493460901082 ], [ 4958679.226003754884005, 3900987.36688882810995 ], [ 4958671.369032490067184, 3901045.616805632133037 ], [ 4958630.193508607335389, 3901040.097550153266639 ], [ 4958630.194015052169561, 3901039.733420495409518 ], [ 4958599.960220569744706, 3901035.685953222215176 ], [ 4958604.906221881508827, 3900999.64392156759277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958238.349546152167022, 3899490.545593934133649 ], [ 4958242.420282758772373, 3899462.513185035437346 ], [ 4958255.665772144682705, 3899464.716198519803584 ], [ 4958256.828343788161874, 3899457.071068925317377 ], [ 4958246.749968144111335, 3899455.600674217566848 ], [ 4958249.367128885351121, 3899437.397776337340474 ], [ 4958263.188652198761702, 3899439.601586440112442 ], [ 4958265.803819693624973, 3899422.855207592714578 ], [ 4958306.404869836755097, 3899429.101363961584866 ], [ 4958303.787669667042792, 3899447.304256201721728 ], [ 4958297.452431991696358, 3899446.56726309703663 ], [ 4958289.893391870893538, 3899497.899177278857678 ], [ 4958238.349546152167022, 3899490.545593934133649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958220.211909155361354, 3899694.797592597082257 ], [ 4958257.681569530628622, 3899674.093745205551386 ], [ 4958283.250110075809062, 3899720.737611211836338 ], [ 4958271.720760064199567, 3899727.276069125160575 ], [ 4958283.499987150542438, 3899748.411841087508947 ], [ 4958258.424260287545621, 3899762.214244613423944 ], [ 4958237.164813789539039, 3899723.587192181497812 ], [ 4958223.906426729634404, 3899730.851551396306604 ], [ 4958214.138695189729333, 3899712.995742767583579 ], [ 4958226.532562823966146, 3899706.094319500029087 ], [ 4958220.211909155361354, 3899694.797592597082257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958208.285485032945871, 3905643.948843679390848 ], [ 4958266.377556637860835, 3905696.827855262439698 ], [ 4958242.154167961329222, 3905723.011957665439695 ], [ 4958184.062105510383844, 3905670.132997601293027 ], [ 4958208.285485032945871, 3905643.948843679390848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957929.030428318306804, 3893998.685919591225684 ], [ 4957997.615823462605476, 3893980.573142901994288 ], [ 4958003.633423428982496, 3894003.885614375118166 ], [ 4957935.048083642497659, 3894021.998375963885337 ], [ 4957929.030428318306804, 3893998.685919591225684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957681.772463058121502, 3906178.867176462430507 ], [ 4957708.219854291528463, 3906210.58248662063852 ], [ 4957679.970286153256893, 3906233.848588319960982 ], [ 4957625.638190502300858, 3906168.595446302555501 ], [ 4957654.753077552653849, 3906144.238066267687827 ], [ 4957682.925699554383755, 3906177.776345589198172 ], [ 4957681.772463058121502, 3906178.867176462430507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957473.579836184158921, 3900206.1120192585513 ], [ 4957480.230898316949606, 3900186.09382533794269 ], [ 4957472.746253984980285, 3900183.534825934097171 ], [ 4957478.240399620495737, 3900167.15637413598597 ], [ 4957456.073958774097264, 3900159.843901398126036 ], [ 4957463.30249818880111, 3900138.734091331716627 ], [ 4957496.40817641466856, 3900149.702621916308999 ], [ 4957502.770283434540033, 3900130.412304818630219 ], [ 4957535.587952338159084, 3900141.380495132412761 ], [ 4957516.503560959361494, 3900197.79491069400683 ], [ 4957506.140367310494184, 3900194.139627451542765 ], [ 4957499.200793976895511, 3900214.521556112915277 ], [ 4957473.579836184158921, 3900206.1120192585513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957307.183121277950704, 3900583.855419002939016 ], [ 4957354.679932551458478, 3900601.033303578849882 ], [ 4957338.491870915517211, 3900645.799582932144403 ], [ 4957329.855837447568774, 3900642.874946196097881 ], [ 4957323.207443131133914, 3900661.072534814476967 ], [ 4957293.557813682593405, 3900650.472978349309415 ], [ 4957301.941506816074252, 3900626.815756441093981 ], [ 4957292.729954862035811, 3900623.526229442097247 ], [ 4957307.183121277950704, 3900583.855419002939016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957292.056678540073335, 3898333.511757925152779 ], [ 4957295.512953478842974, 3898333.51639271248132 ], [ 4957296.104137222282588, 3898322.229163276962936 ], [ 4957323.176836203783751, 3898323.357872345484793 ], [ 4957321.109365824609995, 3898361.588721814565361 ], [ 4957290.868944665417075, 3898360.091637311968952 ], [ 4957292.056678540073335, 3898333.511757925152779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957132.084172036498785, 3892596.443279683589935 ], [ 4957103.836848066188395, 3892607.693577552679926 ], [ 4957095.798162140883505, 3892586.927532704547048 ], [ 4957088.304082202725112, 3892589.830569815821946 ], [ 4957079.977779515087605, 3892568.700018020346761 ], [ 4957086.030955479480326, 3892566.159186416305602 ], [ 4957072.823210895992815, 3892533.005890199914575 ], [ 4957102.223426571115851, 3892521.392969078850001 ], [ 4957132.084172036498785, 3892596.443279683589935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956864.322340996935964, 3892260.360782302450389 ], [ 4956852.438403421081603, 3892314.964309280272573 ], [ 4956823.637853743508458, 3892308.736001598648727 ], [ 4956825.086964026093483, 3892302.183606989216059 ], [ 4956801.182439169846475, 3892297.054187858942896 ], [ 4956803.21205373108387, 3892287.225403734948486 ], [ 4956791.979521652683616, 3892285.025781192816794 ], [ 4956800.384622529149055, 3892246.803407820872962 ], [ 4956813.632823333144188, 3892249.733956955838948 ], [ 4956813.92139311041683, 3892249.370210246182978 ], [ 4956864.322340996935964, 3892260.360782302450389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956803.956349971704185, 3900217.962424534372985 ], [ 4956846.570624719373882, 3900225.665563671849668 ], [ 4956843.959311806596816, 3900240.227311540860683 ], [ 4956850.005916953086853, 3900241.327710428275168 ], [ 4956843.04418926872313, 3900278.823896803893149 ], [ 4956835.269579810090363, 3900277.721211488358676 ], [ 4956832.368829863145947, 3900293.374968213029206 ], [ 4956774.782405186444521, 3900282.739015997387469 ], [ 4956779.713578844442964, 3900256.164032391272485 ], [ 4956796.413860087282956, 3900259.09915572963655 ], [ 4956803.956349971704185, 3900217.962424534372985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956482.771597561426461, 3905755.968263427726924 ], [ 4956456.252659480087459, 3905777.417256713844836 ], [ 4956399.618834597989917, 3905707.794025133829564 ], [ 4956424.984589523635805, 3905687.435861359350383 ], [ 4956448.845792584121227, 3905716.597615109756589 ], [ 4956455.763599753379822, 3905711.144707253668457 ], [ 4956473.587002824991941, 3905733.380077725276351 ], [ 4956468.110347256064415, 3905737.742475738283247 ], [ 4956482.771597561426461, 3905755.968263427726924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955681.64664023835212, 3900862.104064105544239 ], [ 4955707.277334186248481, 3900862.86517285136506 ], [ 4955705.772000160999596, 3900913.841482128016651 ], [ 4955656.238213520497084, 3900912.685633650515229 ], [ 4955657.434946533292532, 3900877.730658779852092 ], [ 4955681.337652390822768, 3900878.489530655555427 ], [ 4955681.64664023835212, 3900862.104064105544239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955596.683352601714432, 3900189.446873385459185 ], [ 4955633.54401302151382, 3900192.407044863793999 ], [ 4955629.450954547151923, 3900240.10285616805777 ], [ 4955592.59035911038518, 3900237.142690218519419 ], [ 4955596.683352601714432, 3900189.446873385459185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954766.859736075624824, 3905337.935267318040133 ], [ 4954793.089353683404624, 3905316.848383836913854 ], [ 4954819.540091836825013, 3905349.289095365907997 ], [ 4954793.310485045425594, 3905370.375953444745392 ], [ 4954766.859736075624824, 3905337.935267318040133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954266.84235851559788, 3892790.129433903843164 ], [ 4954271.709791736677289, 3892814.532022374216467 ], [ 4954246.640396455302835, 3892819.599040757864714 ], [ 4954241.772941414266825, 3892795.196456742938608 ], [ 4954266.84235851559788, 3892790.129433903843164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954244.821288766339421, 3895005.825810347683728 ], [ 4954269.815294222906232, 3895060.475847519002855 ], [ 4954247.910372218117118, 3895070.644561954308301 ], [ 4954222.628273295238614, 3895015.994191495236009 ], [ 4954244.821288766339421, 3895005.825810347683728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953784.199382353574038, 3893352.483783518429846 ], [ 4953867.515721228905022, 3893301.242605555802584 ], [ 4953883.616199495270848, 3893327.479404977988452 ], [ 4953973.563454462215304, 3893272.241191354580224 ], [ 4954025.890502182766795, 3893356.782774975523353 ], [ 4953857.240029966458678, 3893460.354350730311126 ], [ 4953854.940286750905216, 3893456.346146368887275 ], [ 4953815.156360224820673, 3893480.694544442463666 ], [ 4953780.079514858312905, 3893424.212137852795422 ], [ 4953815.251192972064018, 3893402.407001641113311 ], [ 4953784.199382353574038, 3893352.483783518429846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952658.337858686223626, 3894141.668240906205028 ], [ 4952661.257679637521505, 3894108.171805771067739 ], [ 4952691.789926495403051, 3894110.756399692036211 ], [ 4952688.581999974325299, 3894144.252494676038623 ], [ 4952658.337858686223626, 3894141.668240906205028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952443.357995118014514, 3890487.025512440595776 ], [ 4952468.135619186796248, 3890486.690142425242811 ], [ 4952469.483981715515256, 3890566.071612532716244 ], [ 4952437.215671107172966, 3890566.398291317280382 ], [ 4952436.128289485350251, 3890510.321317371912301 ], [ 4952443.619064784608781, 3890510.330007074400783 ], [ 4952443.357995118014514, 3890487.025512440595776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952406.614364613778889, 3889376.757013185415417 ], [ 4952429.651630439795554, 3889387.34342298284173 ], [ 4952418.097332755103707, 3889412.818970364984125 ], [ 4952395.0596624603495, 3889402.596697588916868 ], [ 4952406.614364613778889, 3889376.757013185415417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952259.295447421260178, 3894200.557976245880127 ], [ 4952260.414113331586123, 3894229.689569095615298 ], [ 4952233.910700702108443, 3894230.75139580341056 ], [ 4952232.792006120085716, 3894201.619804031681269 ], [ 4952259.295447421260178, 3894200.557976245880127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952215.647497722879052, 3895580.920416810084134 ], [ 4952242.456942486576736, 3895563.108988341409713 ], [ 4952268.624350658617914, 3895602.465110159944743 ], [ 4952242.10297970008105, 3895620.276845041196793 ], [ 4952215.647497722879052, 3895580.920416810084134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951962.959352487698197, 3894377.912637562025338 ], [ 4952004.448253712616861, 3894371.405751234386116 ], [ 4952002.15955928619951, 3894357.566238280851394 ], [ 4952045.953443275764585, 3894350.697924074716866 ], [ 4952051.672199542634189, 3894387.845614570192993 ], [ 4952013.640510328114033, 3894393.99225534312427 ], [ 4952018.789840692654252, 3894425.313226950820535 ], [ 4951970.674282217398286, 3894432.904904185328633 ], [ 4951967.24163764808327, 3894411.78151008952409 ], [ 4951968.393897391855717, 3894411.782826735638082 ], [ 4951962.959352487698197, 3894377.912637562025338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951073.181453563272953, 3901076.165702475700527 ], [ 4951074.956692407839, 3901033.564434059895575 ], [ 4951133.12904685176909, 3901035.813833613414317 ], [ 4951131.641304580494761, 3901078.779548244085163 ], [ 4951073.181453563272953, 3901076.165702475700527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951066.042360436171293, 3893490.977756336331367 ], [ 4951024.55071656499058, 3893498.942600208800286 ], [ 4951019.396015994250774, 3893471.263117596041411 ], [ 4951060.88770102802664, 3893463.298265907913446 ], [ 4951066.042360436171293, 3893490.977756336331367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951034.37077696993947, 3895295.929112477228045 ], [ 4951086.554080414585769, 3895255.204534090589732 ], [ 4951111.579752762801945, 3895286.911544182337821 ], [ 4951059.396472790278494, 3895327.636074747890234 ], [ 4951034.37077696993947, 3895295.929112477228045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950484.688429589383304, 3896686.298992124386132 ], [ 4950455.88318641949445, 3896687.360067293513566 ], [ 4950454.760299717076123, 3896660.413280480075628 ], [ 4950483.853612565435469, 3896659.352517388295382 ], [ 4950484.688429589383304, 3896686.298992124386132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950268.708351117558777, 3892369.681948383804411 ], [ 4950262.920679869130254, 3892393.708173777908087 ], [ 4950242.472031532786787, 3892388.588317082263529 ], [ 4950248.547772460617125, 3892364.562398100737482 ], [ 4950268.708351117558777, 3892369.681948383804411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949788.655641830526292, 3897076.261765902861953 ], [ 4949750.608199418522418, 3897101.346323531586677 ], [ 4949714.08622202090919, 3897045.959962182678282 ], [ 4949724.751294869929552, 3897038.688670857343823 ], [ 4949710.372587721794844, 3897016.825682146474719 ], [ 4949735.737596007995307, 3897000.102600571233779 ], [ 4949755.580112434923649, 3897030.346371307969093 ], [ 4949757.30949220713228, 3897029.255817277822644 ], [ 4949788.655641830526292, 3897076.261765902861953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949707.761810404248536, 3894041.160528996959329 ], [ 4949767.957782510668039, 3894051.055793552193791 ], [ 4949762.739330636337399, 3894082.365327491890639 ], [ 4949702.54342675767839, 3894072.470074436627328 ], [ 4949707.761810404248536, 3894041.160528996959329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949603.697579746134579, 3895201.165017757099122 ], [ 4949602.503492454066873, 3895240.853814599569887 ], [ 4949572.258374307304621, 3895240.093673921190202 ], [ 4949571.662696963176131, 3895258.663623414933681 ], [ 4949545.16270759049803, 3895257.54333020793274 ], [ 4949546.953520128503442, 3895198.192195170558989 ], [ 4949557.035497928038239, 3895198.202809758484364 ], [ 4949557.339275346137583, 3895183.273842707276344 ], [ 4949582.975551259703934, 3895184.029108494520187 ], [ 4949582.382168005220592, 3895200.414285846520215 ], [ 4949603.697579746134579, 3895201.165017757099122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949372.792140943929553, 3893988.737621369771659 ], [ 4949364.407661816105247, 3894017.859146998263896 ], [ 4949333.017252875491977, 3894009.087248447816819 ], [ 4949341.401700704358518, 3893979.965713177341968 ], [ 4949372.792140943929553, 3893988.737621369771659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949309.939760470762849, 3894315.659538290463388 ], [ 4949302.711893009021878, 3894340.776879442855716 ], [ 4949272.474104455672204, 3894332.006252370309085 ], [ 4949279.701945993117988, 3894306.888903211336583 ], [ 4949309.939760470762849, 3894315.659538290463388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949193.902525246143341, 3898974.572524649091065 ], [ 4949225.837437812238932, 3899008.105683265719563 ], [ 4949191.529881729744375, 3899040.477546130307019 ], [ 4949159.595343054272234, 3899006.580298251006752 ], [ 4949193.902525246143341, 3898974.572524649091065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947318.198784713633358, 3889614.215388306416571 ], [ 4947287.945510656572878, 3889615.278457089792937 ], [ 4947287.388671804219484, 3889595.250892412848771 ], [ 4947275.575540888123214, 3889595.60358310630545 ], [ 4947275.299760128371418, 3889582.858845555689186 ], [ 4947288.265363374724984, 3889582.507270787842572 ], [ 4947287.988530611619353, 3889570.854915362317115 ], [ 4947316.51280072145164, 3889570.154298062901944 ], [ 4947318.198784713633358, 3889614.215388306416571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947055.582760601304471, 3897264.666896699927747 ], [ 4947087.271090815775096, 3897259.963655590079725 ], [ 4947088.416578068397939, 3897266.883214559406042 ], [ 4947116.936182735487819, 3897262.541092002298683 ], [ 4947117.795029604807496, 3897268.003858952783048 ], [ 4947147.466775362379849, 3897263.662877568975091 ], [ 4947152.328972740098834, 3897299.352240493055433 ], [ 4947130.147550543770194, 3897302.243909799959511 ], [ 4947131.577552756294608, 3897312.805038458667696 ], [ 4947078.283943015150726, 3897320.400493620894849 ], [ 4947075.708082052879035, 3897303.283938127569854 ], [ 4947061.304286560043693, 3897305.454879249911755 ], [ 4947055.582760601304471, 3897264.666896699927747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947002.282845252193511, 3899383.121740510221571 ], [ 4947064.805857425555587, 3899357.692630945239216 ], [ 4947076.299743601121008, 3899385.377539035864174 ], [ 4947013.776784878224134, 3899410.806622283533216 ], [ 4947002.282845252193511, 3899383.121740510221571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946609.362186428159475, 3889382.680529393721372 ], [ 4946610.543511142022908, 3889352.094918743241578 ], [ 4946629.270568701438606, 3889352.840844003949314 ], [ 4946629.274349390529096, 3889348.835443155840039 ], [ 4946662.406679423525929, 3889350.323247800581157 ], [ 4946660.633572354912758, 3889397.294042601715773 ], [ 4946640.754415758885443, 3889396.182879785541445 ], [ 4946641.342000594362617, 3889384.167221161536872 ], [ 4946609.362186428159475, 3889382.680529393721372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944716.617953165434301, 3891136.42231222987175 ], [ 4944737.64734695199877, 3891138.625443515367806 ], [ 4944738.809926794841886, 3891126.974362364970148 ], [ 4944756.382443198934197, 3891128.810360394883901 ], [ 4944754.930800819769502, 3891141.553572163451463 ], [ 4944777.976887161843479, 3891143.758498151320964 ], [ 4944773.620661435648799, 3891183.444641847163439 ], [ 4944711.973081732168794, 3891176.836469805333763 ], [ 4944716.617953165434301, 3891136.42231222987175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944624.154023650102317, 3891780.484362385235727 ], [ 4944654.977135789580643, 3891783.788331194315106 ], [ 4944654.394926910288632, 3891790.706259446684271 ], [ 4944681.761225154623389, 3891793.643121804110706 ], [ 4944678.274599690921605, 3891827.504002856090665 ], [ 4944646.299169865436852, 3891824.199004397261888 ], [ 4944644.846666073426604, 3891838.034610944800079 ], [ 4944618.632462707348168, 3891835.462915599346161 ], [ 4944624.154023650102317, 3891780.484362385235727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944392.710192011669278, 3891567.633309684693813 ], [ 4944419.211831982247531, 3891571.297416149172932 ], [ 4944414.282210254110396, 3891608.434236402157694 ], [ 4944387.780606232583523, 3891604.770134714432061 ], [ 4944392.710192011669278, 3891567.633309684693813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943994.127801359631121, 3892761.997907453216612 ], [ 4943998.192692960612476, 3892724.49612585734576 ], [ 4943982.637749577872455, 3892722.662326782010496 ], [ 4943987.572732605971396, 3892678.24284164281562 ], [ 4944037.40685912873596, 3892683.382832023315132 ], [ 4944030.72879505995661, 3892744.914863885380328 ], [ 4944022.951176422648132, 3892744.180017839651555 ], [ 4944020.91701712552458, 3892764.933611361309886 ], [ 4943994.127801359631121, 3892761.997907453216612 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943748.432249636389315, 3891682.515056408941746 ], [ 4943743.759070965461433, 3891758.613926987163723 ], [ 4943708.613201172091067, 3891756.763904239051044 ], [ 4943713.286584913730621, 3891680.300899769645184 ], [ 4943748.432249636389315, 3891682.515056408941746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943730.548245490528643, 3892053.546700628008693 ], [ 4943724.736824815161526, 3892112.894740829709917 ], [ 4943682.967179336585104, 3892108.854445148725063 ], [ 4943684.709694284014404, 3892092.106001168489456 ], [ 4943679.236292012967169, 3892091.737306117080152 ], [ 4943680.688892956823111, 3892077.173389439471066 ], [ 4943687.602444023825228, 3892077.907414872199297 ], [ 4943690.218959899619222, 3892049.507598313502967 ], [ 4943730.548245490528643, 3892053.546700628008693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990838.030266398563981, 3912972.364506297279149 ], [ 4990873.89933168143034, 3913016.517646510154009 ], [ 4990854.860578211955726, 3913031.761934415437281 ], [ 4990819.280311056412756, 3912987.245433228556067 ], [ 4990838.030266398563981, 3912972.364506297279149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990111.095631933771074, 3908393.699260342866182 ], [ 4990088.268241887912154, 3908425.684455520473421 ], [ 4990056.367516353726387, 3908403.026508308481425 ], [ 4990079.194887468591332, 3908371.041286483872682 ], [ 4990111.095631933771074, 3908393.699260342866182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989807.301930124871433, 3900170.095791038125753 ], [ 4989829.251497044228017, 3900146.119143212214112 ], [ 4989854.250174564309418, 3900168.759063067846 ], [ 4989816.415850167162716, 3900210.173450099304318 ], [ 4989791.99225705023855, 3900187.899162442423403 ], [ 4989776.97339228913188, 3900204.610891174525023 ], [ 4989739.618386806920171, 3900171.01562289474532 ], [ 4989770.809996707364917, 3900136.866812643129379 ], [ 4989807.301930124871433, 3900170.095791038125753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989207.556026255711913, 3905911.292203342542052 ], [ 4989238.670314584858716, 3905904.816529454197735 ], [ 4989245.784089522436261, 3905938.334696033038199 ], [ 4989214.669838226400316, 3905944.810361817479134 ], [ 4989207.556026255711913, 3905911.292203342542052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988961.65031973272562, 3907968.748114470392466 ], [ 4988988.708342147991061, 3907971.365244670771062 ], [ 4988989.599641267210245, 3907960.443510860670358 ], [ 4989015.793910223059356, 3907963.058490712661296 ], [ 4989011.071488859131932, 3908008.927301077637821 ], [ 4988958.107195915654302, 3908003.6959248916246 ], [ 4988961.65031973272562, 3907968.748114470392466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988498.280938006937504, 3904558.57782960915938 ], [ 4988542.333678312599659, 3904560.508766941260546 ], [ 4988541.107084915041924, 3904590.364513007458299 ], [ 4988497.054393479600549, 3904588.433577655814588 ], [ 4988498.280938006937504, 3904558.57782960915938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987715.960488894023001, 3895216.674779375549406 ], [ 4987702.028471278958023, 3895259.243528946768492 ], [ 4987737.143366814590991, 3895270.618381853681058 ], [ 4987728.147003532387316, 3895297.541742679197341 ], [ 4987652.448684940114617, 3895272.957947844639421 ], [ 4987658.544630687683821, 3895254.038253792095929 ], [ 4987653.65127809625119, 3895252.569646333344281 ], [ 4987670.196422809734941, 3895201.632341956719756 ], [ 4987715.960488894023001, 3895216.674779375549406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987357.575687086209655, 3909399.072747582104057 ], [ 4987359.227852287702262, 3909429.663982043042779 ], [ 4987316.612686507403851, 3909431.743956880178303 ], [ 4987314.960472934879363, 3909401.15272500179708 ], [ 4987357.575687086209655, 3909399.072747582104057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987338.679298816248775, 3909239.1718968776986 ], [ 4987298.536829089745879, 3909289.323530258145183 ], [ 4987249.975611655041575, 3909250.606106393504888 ], [ 4987259.218123161233962, 3909238.612425356172025 ], [ 4987249.448101054877043, 3909230.941632659640163 ], [ 4987269.663267866708338, 3909205.866126228589565 ], [ 4987277.421528479084373, 3909212.075450538191944 ], [ 4987287.818376267328858, 3909198.992217601276934 ], [ 4987338.679298816248775, 3909239.1718968776986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986913.464929725043476, 3895202.686287164222449 ], [ 4986943.995355068705976, 3895204.217399436514825 ], [ 4986940.942166150547564, 3895274.851125515531749 ], [ 4986907.819319549016654, 3895273.313684442080557 ], [ 4986908.737738833762705, 3895251.10400771163404 ], [ 4986900.673061733134091, 3895250.720181164797395 ], [ 4986901.886646267026663, 3895225.598186731338501 ], [ 4986912.543836786411703, 3895225.988346057478338 ], [ 4986913.464929725043476, 3895202.686287164222449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986719.597496517002583, 3908444.939088182058185 ], [ 4986725.565616174601018, 3908476.997311480809003 ], [ 4986660.754777189344168, 3908489.219966401346028 ], [ 4986654.786583025939763, 3908457.161757259629667 ], [ 4986719.597496517002583, 3908444.939088182058185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986625.916587381623685, 3909909.253467553295195 ], [ 4986678.043130949139595, 3909902.461829598993063 ], [ 4986680.308191062882543, 3909918.125067144166678 ], [ 4986690.388195849023759, 3909916.693084890488535 ], [ 4986692.369783613830805, 3909930.53496783785522 ], [ 4986683.153479794040322, 3909931.969052827451378 ], [ 4986686.263605686835945, 3909955.281143703497946 ], [ 4986696.919393648393452, 3909953.850566261447966 ], [ 4986698.613963997922838, 3909967.3276177784428 ], [ 4986689.109774216078222, 3909968.760999421589077 ], [ 4986690.521770926192403, 3909980.052563853096217 ], [ 4986637.243782424367964, 3909986.841375252231956 ], [ 4986631.022561565972865, 3909940.581335528288037 ], [ 4986629.870967427268624, 3909940.578533157240599 ], [ 4986625.916587381623685, 3909909.253467553295195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986405.540131559595466, 3905926.928153466433287 ], [ 4986423.380142968147993, 3905932.06926690461114 ], [ 4986419.604228498414159, 3905945.53299882914871 ], [ 4986445.788337980397046, 3905953.243290294893086 ], [ 4986448.69160523917526, 3905943.418766183312982 ], [ 4986470.273066950961947, 3905949.297253495082259 ], [ 4986451.109903580509126, 3906014.794538429006934 ], [ 4986416.868814970366657, 3906004.879907572641969 ], [ 4986421.222367846406996, 3905990.689311427995563 ], [ 4986389.858881779946387, 3905981.509958850685507 ], [ 4986405.540131559595466, 3905926.928153466433287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986347.110259781591594, 3904610.085213255137205 ], [ 4986376.580840038135648, 3904688.080839853733778 ], [ 4986320.089673904702067, 3904709.42777080880478 ], [ 4986315.512376881204545, 3904697.036203685216606 ], [ 4986302.542073591612279, 3904702.10264837089926 ], [ 4986277.649504519999027, 3904636.13453191658482 ], [ 4986347.110259781591594, 3904610.085213255137205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986054.878397583030164, 3909605.639636124949902 ], [ 4986080.214663073420525, 3909605.336626660544425 ], [ 4986081.21953709051013, 3909666.149258432444185 ], [ 4986056.459131876938045, 3909666.453655837569386 ], [ 4986056.479333100840449, 3909658.078645995818079 ], [ 4986028.26410208363086, 3909658.374736289028078 ], [ 4986027.496090681292117, 3909618.682390313129872 ], [ 4986054.8485357016325, 3909618.020085082389414 ], [ 4986054.878397583030164, 3909605.639636124949902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985780.354981512762606, 3909308.938813908025622 ], [ 4985782.901524878107011, 3909327.515707895625383 ], [ 4985763.029952400363982, 3909330.016916550695896 ], [ 4985760.772175121121109, 3909311.076584909576923 ], [ 4985780.354981512762606, 3909308.938813908025622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985728.494496202096343, 3911243.81765474146232 ], [ 4985745.62246054597199, 3911304.304901653900743 ], [ 4985723.728426893241704, 3911310.442617281340063 ], [ 4985733.436070743948221, 3911343.96618402376771 ], [ 4985672.651613926514983, 3911360.93462488334626 ], [ 4985664.372842215932906, 3911331.784105971455574 ], [ 4985638.157978134229779, 3911339.003931948915124 ], [ 4985620.742782771587372, 3911278.151931210886687 ], [ 4985661.650275846943259, 3911266.597710406873375 ], [ 4985665.930998515337706, 3911282.265707333106548 ], [ 4985664.202820518985391, 3911282.625697079580277 ], [ 4985673.052136466838419, 3911313.962383220437914 ], [ 4985704.45243891235441, 3911305.298497977666557 ], [ 4985699.028941353783011, 3911285.986419787630439 ], [ 4985697.300763147883117, 3911286.346407415810972 ], [ 4985688.450592832639813, 3911255.373845069669187 ], [ 4985728.494496202096343, 3911243.81765474146232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985694.936639664694667, 3898584.327162815723568 ], [ 4985690.822295111604035, 3898618.545566965825856 ], [ 4985666.34758850838989, 3898615.573856119066477 ], [ 4985670.46190233156085, 3898581.355448284186423 ], [ 4985694.936639664694667, 3898584.327162815723568 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985517.213627612218261, 3909908.399201067630202 ], [ 4985494.462650473229587, 3909911.25785373011604 ], [ 4985491.638513971120119, 3909888.3107207599096 ], [ 4985514.388639250770211, 3909885.816196668427438 ], [ 4985517.213627612218261, 3909908.399201067630202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985356.277391168288887, 3910632.275447766296566 ], [ 4985371.654682314954698, 3910582.425899221561849 ], [ 4985407.039269751869142, 3910593.434369213413447 ], [ 4985391.662788440473378, 3910642.919766735751182 ], [ 4985356.277391168288887, 3910632.275447766296566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985285.403419909998775, 3909687.909378617536277 ], [ 4985315.31041822489351, 3909702.545993817504495 ], [ 4985294.767885901965201, 3909745.100575587712228 ], [ 4985264.572155559435487, 3909730.827427810057998 ], [ 4985285.403419909998775, 3909687.909378617536277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984995.248202331364155, 3909181.074667812790722 ], [ 4984963.856013032607734, 3909185.369800902437419 ], [ 4984957.347266105934978, 3909137.652965869754553 ], [ 4984989.027417247183621, 3909133.358508303761482 ], [ 4984995.248202331364155, 3909181.074667812790722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984990.458558640442789, 3909258.259468236472458 ], [ 4984980.766496596857905, 3909217.453597485087812 ], [ 4985006.404844935052097, 3909211.324165667407215 ], [ 4985016.096870321780443, 3909252.130045507568866 ], [ 4984990.458558640442789, 3909258.259468236472458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984914.420185555703938, 3905868.734134789090604 ], [ 4984932.457272089086473, 3905790.852609104476869 ], [ 4984981.381673719733953, 3905801.892562241759151 ], [ 4984969.454267992638052, 3905853.206900256220251 ], [ 4984955.927884502336383, 3905850.26177198253572 ], [ 4984949.818081811070442, 3905876.82893036538735 ], [ 4984914.420185555703938, 3905868.734134789090604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984639.248854272067547, 3907777.957493852823973 ], [ 4984664.888495967723429, 3907771.827741660643369 ], [ 4984672.872090957127512, 3907804.982643938623369 ], [ 4984640.606851638294756, 3907812.553286571521312 ], [ 4984642.602541874162853, 3907820.933042890857905 ], [ 4984618.691337974742055, 3907826.702760201878846 ], [ 4984606.715418379753828, 3907777.152496641036123 ], [ 4984637.252300709486008, 3907769.94186849752441 ], [ 4984639.248854272067547, 3907777.957493852823973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984099.641519296914339, 3905455.711028721183538 ], [ 4984100.476402304135263, 3905468.093468603212386 ], [ 4984122.938782094046474, 3905467.053619687911123 ], [ 4984125.428059227764606, 3905510.755282005295157 ], [ 4984098.933620326220989, 3905512.149830034002662 ], [ 4984100.036859325133264, 3905532.907933768350631 ], [ 4984067.494731643237174, 3905534.652500451542437 ], [ 4984063.067194980569184, 3905457.810302323196083 ], [ 4984099.641519296914339, 3905455.711028721183538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983916.304711572825909, 3909492.783133058343083 ], [ 4983927.138007308356464, 3909538.689145950600505 ], [ 4983893.433847961015999, 3909546.985597754828632 ], [ 4983882.312594837509096, 3909501.078927064780146 ], [ 4983916.304711572825909, 3909492.783133058343083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983627.798994483426213, 3905906.863542396109551 ], [ 4983682.828865144401789, 3905892.790192767046392 ], [ 4983684.253345909528434, 3905899.347879540640861 ], [ 4983709.030732474289834, 3905893.215215316973627 ], [ 4983717.022000786848366, 3905923.820884636137635 ], [ 4983637.214840949513018, 3905944.026872273068875 ], [ 4983627.798994483426213, 3905906.863542396109551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983519.629734328016639, 3909591.997392140794545 ], [ 4983561.110462411306798, 3909582.261974339839071 ], [ 4983573.369478086009622, 3909634.361411650199443 ], [ 4983532.176727576181293, 3909644.097478235140443 ], [ 4983519.629734328016639, 3909591.997392140794545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983459.85124006588012, 3915016.355689509306103 ], [ 4983439.209076879546046, 3914980.622748578432947 ], [ 4983455.349451175890863, 3914971.556767590809613 ], [ 4983458.790094225667417, 3914977.39088123338297 ], [ 4983477.236608474515378, 3914966.87371772993356 ], [ 4983488.7048365380615, 3914986.563529067672789 ], [ 4983478.90462795086205, 3914992.366969956085086 ], [ 4983484.638737995177507, 3915002.21187549456954 ], [ 4983459.85124006588012, 3915016.355689509306103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983368.904526365920901, 3909283.956230703741312 ], [ 4983370.326374374330044, 3909291.606307129841298 ], [ 4983394.522226557135582, 3909286.564401248469949 ], [ 4983401.926064971834421, 3909321.902410382870585 ], [ 4983359.007151810452342, 3909330.906482888851315 ], [ 4983349.893500856123865, 3909287.917744469363242 ], [ 4983368.904526365920901, 3909283.956230703741312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983335.77421763818711, 3917264.598425922449678 ], [ 4983318.785261417739093, 3917267.836373536381871 ], [ 4983316.512151034548879, 3917255.086408426519483 ], [ 4983307.874181165359914, 3917256.522988129872829 ], [ 4983310.432591502554715, 3917270.366015634033829 ], [ 4983283.654399587772787, 3917275.037907484918833 ], [ 4983273.140435805544257, 3917216.387950908858329 ], [ 4983325.545659478753805, 3917207.041512565687299 ], [ 4983335.77421763818711, 3917264.598425922449678 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983244.037438085302711, 3916856.555793214123696 ], [ 4983225.213746715337038, 3916906.398787507787347 ], [ 4983200.194903811439872, 3916896.873574121389538 ], [ 4983196.430517757311463, 3916906.696525155566633 ], [ 4983171.123840995132923, 3916897.170675066299736 ], [ 4983193.711830193176866, 3916837.504691590555012 ], [ 4983244.037438085302711, 3916856.555793214123696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982974.284777124412358, 3917258.303265607915819 ], [ 4982988.033185319043696, 3917287.465633801184595 ], [ 4982958.643775139003992, 3917301.235213667619973 ], [ 4982944.607522210106254, 3917272.072199162561446 ], [ 4982974.284777124412358, 3917258.303265607915819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982686.766633330844343, 3918383.912869423627853 ], [ 4982746.140966876409948, 3918346.542855615727603 ], [ 4982759.619597835466266, 3918367.69354282412678 ], [ 4982752.413552486337721, 3918372.410794564988464 ], [ 4982772.200586246326566, 3918403.771711415145546 ], [ 4982737.324986795894802, 3918425.904076770413667 ], [ 4982722.126187919639051, 3918401.836383786052465 ], [ 4982705.121361836791039, 3918412.357381582260132 ], [ 4982686.766633330844343, 3918383.912869423627853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982632.020928515121341, 3916018.005168311297894 ], [ 4982558.290695399045944, 3916037.500037460587919 ], [ 4982546.877912064082921, 3915993.413737479131669 ], [ 4982586.622240724042058, 3915983.308702225331217 ], [ 4982585.479220304638147, 3915979.664748978801072 ], [ 4982599.880059723742306, 3915975.692158642224967 ], [ 4982602.162769896909595, 3915984.436596079729497 ], [ 4982621.747113775461912, 3915979.383454375900328 ], [ 4982632.020928515121341, 3916018.005168311297894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982344.969130388461053, 3904912.385057396255434 ], [ 4982271.195431384257972, 3904937.706657183822244 ], [ 4982261.753362405113876, 3904911.103596448898315 ], [ 4982335.5279531031847, 3904885.417841242160648 ], [ 4982344.969130388461053, 3904912.385057396255434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982136.465302534401417, 3916737.499287345446646 ], [ 4982156.084513587877154, 3916716.788101527374238 ], [ 4982131.958307443186641, 3916694.157068572938442 ], [ 4982167.158159238286316, 3916656.731025576591492 ], [ 4982188.698889322578907, 3916677.17141694156453 ], [ 4982197.065682861953974, 3916668.451172874774784 ], [ 4982214.585904813371599, 3916684.876983660273254 ], [ 4982203.044759685173631, 3916697.231363510712981 ], [ 4982208.788886524736881, 3916702.706416142173111 ], [ 4982157.4328169869259, 3916756.845951972063631 ], [ 4982136.465302534401417, 3916737.499287345446646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981979.292237373068929, 3905538.591223828028888 ], [ 4981989.910836310125887, 3905554.272896791808307 ], [ 4982000.869231123477221, 3905547.015030555892736 ], [ 4982020.670775778591633, 3905576.554491637274623 ], [ 4982010.289101397618651, 3905583.449522018898278 ], [ 4982024.064354060217738, 3905603.872062080539763 ], [ 4982000.705410113558173, 3905619.47691595274955 ], [ 4981956.509976632893085, 3905553.833286939654499 ], [ 4981979.292237373068929, 3905538.591223828028888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981648.824704717844725, 3906776.987791323568672 ], [ 4981851.883265971206129, 3906875.760688914917409 ], [ 4981840.890965771861374, 3906898.312097581569105 ], [ 4981852.970933261327446, 3906904.165455659851432 ], [ 4981827.51478704996407, 3906956.543095726519823 ], [ 4981838.444651542231441, 3906961.665590216871351 ], [ 4981823.403315502218902, 3906992.218786840327084 ], [ 4981812.761390791274607, 3906987.096947331912816 ], [ 4981785.281690064817667, 3907043.11139147169888 ], [ 4981777.803723353892565, 3907039.453222891781479 ], [ 4981721.107283706776798, 3907155.847893593367189 ], [ 4981640.286977172829211, 3907116.703974612988532 ], [ 4981679.336705687455833, 3907037.046801740303636 ], [ 4981637.632733981125057, 3907016.561638025101274 ], [ 4981630.112191223539412, 3907031.838291936554015 ], [ 4981561.659297185949981, 3906998.548523233272135 ], [ 4981572.361756936646998, 3906976.724613353144377 ], [ 4981564.595812524668872, 3906973.065857861191034 ], [ 4981588.315668069757521, 3906924.325392623897642 ], [ 4981573.359612978994846, 3906917.009167712647468 ], [ 4981593.317616512998939, 3906876.635304307565093 ], [ 4981611.7247742312029, 3906885.779953596647829 ], [ 4981643.254960290156305, 3906821.035268418025225 ], [ 4981630.599864065647125, 3906814.816580512560904 ], [ 4981648.824704717844725, 3906776.987791323568672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981415.550408747978508, 3905898.177852575201541 ], [ 4981420.374483308754861, 3905929.868137839715928 ], [ 4981360.750226218253374, 3905938.837992230895907 ], [ 4981355.926083022728562, 3905907.147717490326613 ], [ 4981415.550408747978508, 3905898.177852575201541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981145.32622118294239, 3906991.427014057990164 ], [ 4981108.995919533073902, 3907014.286386263556778 ], [ 4981092.068066246807575, 3906987.302896185778081 ], [ 4981128.110459397546947, 3906964.442859834525734 ], [ 4981145.32622118294239, 3906991.427014057990164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981156.289776479825377, 3901814.591765056364238 ], [ 4981166.84782728087157, 3901858.31103159673512 ], [ 4981115.846879243850708, 3901870.577833166345954 ], [ 4981105.288750435225666, 3901826.858586336486042 ], [ 4981156.289776479825377, 3901814.591765056364238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981097.913337485864758, 3906302.01921092486009 ], [ 4981125.513147844932973, 3906321.015564632136375 ], [ 4981103.559346923604608, 3906352.646145401522517 ], [ 4981075.959553692489862, 3906333.649813866708428 ], [ 4981097.913337485864758, 3906302.01921092486009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980877.192393817938864, 3907541.762804664671421 ], [ 4980895.280697902664542, 3907564.743289002683014 ], [ 4980872.783842558041215, 3907582.17171244835481 ], [ 4980854.695531065575778, 3907559.191243015695363 ], [ 4980877.192393817938864, 3907541.762804664671421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980863.966804475523531, 3906105.596133097540587 ], [ 4980796.503397681750357, 3906144.044542942196131 ], [ 4980776.424283878877759, 3906109.407512547913939 ], [ 4980788.821015616878867, 3906102.516469131689519 ], [ 4980784.230922813527286, 3906094.859526759013534 ], [ 4980839.585606082342565, 3906063.302740012761205 ], [ 4980863.966804475523531, 3906105.596133097540587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980848.520311971195042, 3907487.443474569357932 ], [ 4980886.02489057648927, 3907454.026514199562371 ], [ 4980908.427269659005105, 3907479.201375284232199 ], [ 4980871.210622671060264, 3907512.618943776935339 ], [ 4980848.520311971195042, 3907487.443474569357932 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980768.423754162155092, 3901530.800176712684333 ], [ 4980779.031748223118484, 3901552.307400640100241 ], [ 4980735.210763198323548, 3901573.329971958883107 ], [ 4980712.275634792633355, 3901526.306318075396121 ], [ 4980746.583370578475296, 3901509.632219903636724 ], [ 4980759.198442056775093, 3901535.149320043623447 ], [ 4980768.423754162155092, 3901530.800176712684333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980625.261328372173011, 3908061.185975198633969 ], [ 4980641.991196995601058, 3908047.385916959960014 ], [ 4980623.325556015595794, 3908025.132585176732391 ], [ 4980647.267110414803028, 3908005.158215815201402 ], [ 4980687.183174916543067, 3908052.583702772390097 ], [ 4980674.491394815035164, 3908063.115471340715885 ], [ 4980680.808691557496786, 3908070.776225197594613 ], [ 4980664.078012270852923, 3908084.940390149597079 ], [ 4980658.334940901957452, 3908078.009174689650536 ], [ 4980647.085190868005157, 3908087.451747357379645 ], [ 4980625.261328372173011, 3908061.185975198633969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980617.026369290426373, 3903317.257103024981916 ], [ 4980630.906031437218189, 3903291.434439460746944 ], [ 4980670.024030254222453, 3903312.276393251493573 ], [ 4980656.144341154024005, 3903338.099036937113851 ], [ 4980617.026369290426373, 3903317.257103024981916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980564.532311392016709, 3905181.4949767049402 ], [ 4980522.725012997165322, 3905206.16369062429294 ], [ 4980503.503871934488416, 3905173.713569648563862 ], [ 4980502.350467667914927, 3905174.439289981033653 ], [ 4980471.653812758624554, 3905122.66490658884868 ], [ 4980511.731082019396126, 3905099.084694307763129 ], [ 4980541.279904664494097, 3905149.035931206308305 ], [ 4980544.451370702125132, 3905147.222270044498146 ], [ 4980564.532311392016709, 3905181.4949767049402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980493.140853742137551, 3902298.50852792756632 ], [ 4980513.241669950075448, 3902324.770290125627071 ], [ 4980459.876294433139265, 3902365.071224132087082 ], [ 4980439.775456487201154, 3902338.809501209296286 ], [ 4980493.140853742137551, 3902298.50852792756632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980323.861898700706661, 3916546.650726090651006 ], [ 4980361.89362571015954, 3916529.255945064127445 ], [ 4980380.515067087486386, 3916568.987579739652574 ], [ 4980342.195556780323386, 3916586.381701634265482 ], [ 4980323.861898700706661, 3916546.650726090651006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980270.521802384406328, 3899286.292622650973499 ], [ 4980287.819360685534775, 3899278.683871156070381 ], [ 4980294.410858468152583, 3899293.627700875047594 ], [ 4980302.194399418309331, 3899290.367626155726612 ], [ 4980313.945305907167494, 3899316.610842518042773 ], [ 4980288.575421956367791, 3899327.843149870634079 ], [ 4980270.521802384406328, 3899286.292622650973499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980228.750004929490387, 3899159.483520539943129 ], [ 4980242.794761402532458, 3899190.465433201752603 ], [ 4980180.233510066755116, 3899218.730371166486293 ], [ 4980165.900682701729238, 3899187.747859335038811 ], [ 4980228.750004929490387, 3899159.483520539943129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980071.088664, 3901318.433083552867174 ], [ 4980105.6818638285622, 3901302.851187207270414 ], [ 4980129.757443374954164, 3901355.702908038627356 ], [ 4980106.407085381448269, 3901366.211559359915555 ], [ 4980096.661654169671237, 3901345.070624233689159 ], [ 4980085.706849811598659, 3901350.144473236519843 ], [ 4980071.088664, 3901318.433083552867174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980048.550865197554231, 3908590.458793269004673 ], [ 4980026.620886804535985, 3908612.622897000983357 ], [ 4979982.376244290731847, 3908569.558503961190581 ], [ 4980004.01830764207989, 3908547.393735122401267 ], [ 4980048.550865197554231, 3908590.458793269004673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980061.361656503751874, 3899051.334123937413096 ], [ 4980105.746299357153475, 3899037.594321065116674 ], [ 4980114.897398605011404, 3899067.473057494498789 ], [ 4980070.513597176410258, 3899080.84871679218486 ], [ 4980061.361656503751874, 3899051.334123937413096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980049.076851472258568, 3897952.36193349538371 ], [ 4980073.868688850663602, 3897942.584662489127368 ], [ 4980084.184264117851853, 3897967.003963393624872 ], [ 4980109.552952106110752, 3897956.86385765299201 ], [ 4980117.289008776657283, 3897975.451439702417701 ], [ 4980104.027818994596601, 3897980.884353113360703 ], [ 4980110.904577320441604, 3897997.2852708180435 ], [ 4980073.715687934309244, 3898012.497327862773091 ], [ 4980049.076851472258568, 3897952.36193349538371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980036.097525833174586, 3903754.030152628663927 ], [ 4980021.653892622329295, 3903774.754054795019329 ], [ 4980008.139460280537605, 3903765.621215356513858 ], [ 4980022.295123005285859, 3903744.896676254924387 ], [ 4980036.097525833174586, 3903754.030152628663927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980000.563757079653442, 3916971.614790007472038 ], [ 4979947.601106564514339, 3916972.955536014400423 ], [ 4979947.080365865491331, 3916947.829119664616883 ], [ 4979999.755242426879704, 3916946.487743110861629 ], [ 4980000.563757079653442, 3916971.614790007472038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980021.919076493941247, 3903653.498857093509287 ], [ 4980033.77426555659622, 3903631.312768501695246 ], [ 4980056.785261862911284, 3903643.379451073240489 ], [ 4980044.930059056729078, 3903665.565529675222933 ], [ 4980021.919076493941247, 3903653.498857093509287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979987.798890385776758, 3906747.452110692393035 ], [ 4980021.19829302188009, 3906747.889273737091571 ], [ 4980020.217421089299023, 3906801.414553854614496 ], [ 4979986.818084973841906, 3906800.977392009459436 ], [ 4979987.798890385776758, 3906747.452110692393035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979996.956303332000971, 3902163.054923341609538 ], [ 4979966.399993523955345, 3902176.825129094999284 ], [ 4979940.029724495485425, 3902119.96307401638478 ], [ 4979966.839130727574229, 3902107.641176527831703 ], [ 4979971.424572947435081, 3902117.846866322215647 ], [ 4979975.460304345935583, 3902116.035029088612646 ], [ 4979996.956303332000971, 3902163.054923341609538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979925.845838989131153, 3901361.811305918265134 ], [ 4979958.130996380001307, 3901348.044835369568318 ], [ 4979968.159752437844872, 3901371.371124744880944 ], [ 4979967.294985821470618, 3901371.733366367872804 ], [ 4979986.493251933716238, 3901416.19929317664355 ], [ 4979956.802455433644354, 3901428.879004150629044 ], [ 4979949.35289638582617, 3901411.384446561802179 ], [ 4979941.858001436106861, 3901414.645256548654288 ], [ 4979932.402038905769587, 3901392.776750858873129 ], [ 4979938.167407511733472, 3901390.240423370618373 ], [ 4979925.845838989131153, 3901361.811305918265134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979905.537511969916523, 3907234.845419646240771 ], [ 4979917.694071549922228, 3907205.741380112245679 ], [ 4979950.201280038803816, 3907218.921136738732457 ], [ 4979937.755968409590423, 3907248.388663433026522 ], [ 4979905.537511969916523, 3907234.845419646240771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979669.870400166139007, 3903061.381882882211357 ], [ 4979696.62014243286103, 3903076.005298381671309 ], [ 4979673.781686225906014, 3903116.738345718942583 ], [ 4979647.319944040849805, 3903102.115578353404999 ], [ 4979669.870400166139007, 3903061.381882882211357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979526.368501778692007, 3909608.892566001508385 ], [ 4979490.009959975257516, 3909647.047669018153101 ], [ 4979448.923628408461809, 3909608.360564570408314 ], [ 4979466.526684144511819, 3909589.463797331787646 ], [ 4979482.04183975700289, 3909604.062730712350458 ], [ 4979500.510207585059106, 3909584.439595662988722 ], [ 4979526.368501778692007, 3909608.892566001508385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979503.742205066606402, 3901850.649245975073427 ], [ 4979531.420372375287116, 3901836.144012878183275 ], [ 4979558.954785563051701, 3901887.910345872864127 ], [ 4979530.988671856001019, 3901902.414926547557116 ], [ 4979503.742205066606402, 3901850.649245975073427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979329.867451081983745, 3907814.021804322022945 ], [ 4979360.896323414519429, 3907711.767703377176076 ], [ 4979559.434776922687888, 3907771.187260369304568 ], [ 4979549.575119971297681, 3907803.573645631317049 ], [ 4979487.136419132351875, 3907784.867491591256112 ], [ 4979483.655316629447043, 3907796.876314629800618 ], [ 4979419.777734425850213, 3907777.803066527005285 ], [ 4979402.377127410843968, 3907835.662446530070156 ], [ 4979329.867451081983745, 3907814.021804322022945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979180.820765099488199, 3903762.004372214432806 ], [ 4979190.36442590970546, 3903743.090111827477813 ], [ 4979405.532106067985296, 3903849.881274013780057 ], [ 4979395.988331249915063, 3903868.795459204353392 ], [ 4979180.820765099488199, 3903762.004372214432806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979120.679723273962736, 3900264.395930072292686 ], [ 4979131.39540314860642, 3900236.745073577389121 ], [ 4979175.424473245628178, 3900253.225810144096613 ], [ 4979164.708754536695778, 3900280.876649353653193 ], [ 4979120.679723273962736, 3900264.395930072292686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979044.577496795915067, 3908731.748694100882858 ], [ 4979051.541423605754972, 3908706.638528294395655 ], [ 4979094.70231724716723, 3908718.74778866674751 ], [ 4979087.450441803783178, 3908743.857323703356087 ], [ 4979044.577496795915067, 3908731.748694100882858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978855.996355535462499, 3901208.746683410834521 ], [ 4978891.445155603811145, 3901196.806369086261839 ], [ 4978908.329674390144646, 3901246.728518039919436 ], [ 4978863.370185602456331, 3901261.925598718691617 ], [ 4978854.499421574175358, 3901235.325029261875898 ], [ 4978864.01017680671066, 3901232.068237905390561 ], [ 4978855.996355535462499, 3901208.746683410834521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978647.09696220420301, 3908672.271303598769009 ], [ 4978643.581346716731787, 3908700.666131489444524 ], [ 4978599.254584491252899, 3908695.10949355410412 ], [ 4978602.769376560114324, 3908667.078790825325996 ], [ 4978647.09696220420301, 3908672.271303598769009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978427.034381174482405, 3913722.692332183010876 ], [ 4978459.575518960133195, 3913716.571341210510582 ], [ 4978471.247393449768424, 3913777.770659650210291 ], [ 4978438.706327051855624, 3913783.891636720858514 ], [ 4978427.034381174482405, 3913722.692332183010876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978390.394777647219598, 3905097.039091173093766 ], [ 4978405.664670150727034, 3905093.066116326022893 ], [ 4978405.379817616194487, 3905091.608983566984534 ], [ 4978440.240426390431821, 3905082.943991561420262 ], [ 4978448.808412129059434, 3905116.098214854486287 ], [ 4978421.150470509193838, 3905122.957860160153359 ], [ 4978425.434083949774504, 3905139.71703379182145 ], [ 4978402.961594293825328, 3905145.49533622758463 ], [ 4978390.394777647219598, 3905097.039091173093766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978374.138301423750818, 3910034.274073380511254 ], [ 4978361.387988205067813, 3910073.209180584643036 ], [ 4978332.04259719979018, 3910063.679363071918488 ], [ 4978345.080769957043231, 3910024.744853987824172 ], [ 4978374.138301423750818, 3910034.274073380511254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978323.598518278449774, 3904550.699646233115345 ], [ 4978304.296942685730755, 3904554.664106869138777 ], [ 4978297.454790377989411, 3904522.241868650075048 ], [ 4978357.376845763996243, 3904509.624537496361881 ], [ 4978363.362798945046961, 3904538.403655139263719 ], [ 4978338.875673053786159, 3904543.449465157929808 ], [ 4978340.587939411401749, 3904550.735734818968922 ], [ 4978324.166697159409523, 3904554.342168996110559 ], [ 4978323.598518278449774, 3904550.699646233115345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978287.365528156980872, 3903848.941273262258619 ], [ 4978270.864283937029541, 3903890.053108785301447 ], [ 4978246.11951372679323, 3903880.53319777874276 ], [ 4978251.331433654762805, 3903867.071388778742403 ], [ 4978222.2710394365713, 3903855.721689086407423 ], [ 4978233.561078538186848, 3903827.707505788188428 ], [ 4978287.365528156980872, 3903848.941273262258619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978257.301711995154619, 3907432.298941938206553 ], [ 4978251.568695265799761, 3907420.270415273495018 ], [ 4978271.166950446553528, 3907411.208692364860326 ], [ 4978288.65157107450068, 3907448.387291643302888 ], [ 4978250.030966317281127, 3907466.511948307510465 ], [ 4978238.279327495954931, 3907441.361896406859159 ], [ 4978257.301711995154619, 3907432.298941938206553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978243.174324749037623, 3904861.861503202468157 ], [ 4978196.786890836432576, 3904874.507768732961267 ], [ 4978185.357500198297203, 3904832.608408906497061 ], [ 4978231.457047534175217, 3904819.961513377726078 ], [ 4978243.174324749037623, 3904861.861503202468157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978105.242119596339762, 3907176.355947560165077 ], [ 4978124.731827647425234, 3907218.636527413502336 ], [ 4978097.929128713905811, 3907230.596170547883958 ], [ 4978078.439387288875878, 3907188.31560982298106 ], [ 4978105.242119596339762, 3907176.355947560165077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978072.731702828779817, 3908389.576055905316025 ], [ 4978094.276035876944661, 3908412.926104351878166 ], [ 4978074.948002070188522, 3908430.727710823062807 ], [ 4978053.402896784245968, 3908407.741808446589857 ], [ 4978072.731702828779817, 3908389.576055905316025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978032.498733021318913, 3910261.132889810483903 ], [ 4978057.543296898715198, 3910262.278231297619641 ], [ 4978056.931320677511394, 3910279.3911826107651 ], [ 4978031.886772734113038, 3910278.245841676834971 ], [ 4978032.498733021318913, 3910261.132889810483903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977996.611558457836509, 3905305.944519058335572 ], [ 4977994.878486760891974, 3905308.489781611133367 ], [ 4978014.428963705897331, 3905322.732212024740875 ], [ 4977988.727011816576123, 3905357.998712458182126 ], [ 4977949.625293196178973, 3905329.878032906912267 ], [ 4977977.060291157104075, 3905292.066231888718903 ], [ 4977996.611558457836509, 3905305.944519058335572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977982.240961698815227, 3902974.38017714349553 ], [ 4977947.264841202646494, 3903036.572807485703379 ], [ 4977907.283489776775241, 3903014.276480615604669 ], [ 4977915.666179029271007, 3902999.364773570094258 ], [ 4977883.738018641248345, 3902981.81917036883533 ], [ 4977877.667565252631903, 3902992.730315620079637 ], [ 4977852.355852853506804, 3902978.475873631890863 ], [ 4977855.535061987116933, 3902973.020601292140782 ], [ 4977843.166783857159317, 3902966.07605904713273 ], [ 4977878.144288771785796, 3902903.155036663170904 ], [ 4977917.838624104857445, 3902925.086581852287054 ], [ 4977909.167169403284788, 3902940.361810010392219 ], [ 4977941.669773056171834, 3902958.636917192023247 ], [ 4977947.740260095335543, 3902947.725786629132926 ], [ 4977972.189568289555609, 3902961.250235498417169 ], [ 4977969.01033406984061, 3902966.705493991728872 ], [ 4977982.240961698815227, 3902974.38017714349553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977968.989439263939857, 3905978.073567954357713 ], [ 4978009.331944354809821, 3905963.593476023059338 ], [ 4978019.92268518358469, 3905993.474665408488363 ], [ 4977979.868159821256995, 3906007.955349581316113 ], [ 4977968.989439263939857, 3905978.073567954357713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977618.517715646885335, 3909431.13082257239148 ], [ 4977577.119084721431136, 3909402.641651509795338 ], [ 4977603.109136684797704, 3909365.190486839506775 ], [ 4977680.731745848432183, 3909418.516776396892965 ], [ 4977661.959872527047992, 3909446.151439447887242 ], [ 4977625.448804697021842, 3909420.949650050140917 ], [ 4977618.517715646885335, 3909431.13082257239148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977248.121067251078784, 3906878.516580936964601 ], [ 4977223.901458865962923, 3906894.487929666414857 ], [ 4977197.780846437439322, 3906855.47139647975564 ], [ 4977222.288406080566347, 3906839.500624361913651 ], [ 4977248.121067251078784, 3906878.516580936964601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977021.055211778730154, 3912094.608994524925947 ], [ 4976989.608792110346258, 3912127.315725012216717 ], [ 4976969.784682198427618, 3912108.33967116381973 ], [ 4977000.943224142305553, 3912075.63232046039775 ], [ 4977021.055211778730154, 3912094.608994524925947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976911.346273856237531, 3908217.095191781874746 ], [ 4976919.630230319686234, 3908248.791871590539813 ], [ 4976866.912839119322598, 3908262.519728764891624 ], [ 4976858.628071182407439, 3908231.187195759266615 ], [ 4976911.346273856237531, 3908217.095191781874746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976881.144277203828096, 3902082.870100342668593 ], [ 4976906.761920992285013, 3902089.113368256948888 ], [ 4976901.823990097269416, 3902109.494479586370289 ], [ 4976876.206364619545639, 3902103.251216309145093 ], [ 4976881.144277203828096, 3902082.870100342668593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976770.016948261298239, 3906247.576083375141025 ], [ 4976734.879476504400373, 3906251.873089194763452 ], [ 4976736.016190773807466, 3906259.15807512961328 ], [ 4976717.007022366859019, 3906261.667753065936267 ], [ 4976711.3414570922032, 3906216.503699117340147 ], [ 4976765.487425118684769, 3906210.061135977972299 ], [ 4976770.016948261298239, 3906247.576083375141025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976722.8515011575073, 3908869.95898425206542 ], [ 4976733.80636833794415, 3908863.06308626756072 ], [ 4976723.761843182146549, 3908847.384647469967604 ], [ 4976749.419702220708132, 3908831.051671169232577 ], [ 4976781.848969423212111, 3908881.733097678050399 ], [ 4976757.343529963865876, 3908897.70429171435535 ], [ 4976747.01187379937619, 3908881.661118114367127 ], [ 4976735.191777436994016, 3908889.283489066641778 ], [ 4976722.8515011575073, 3908869.95898425206542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976726.406948899850249, 3904079.445911997463554 ], [ 4976573.783689429052174, 3904080.951928470283747 ], [ 4976573.551950712688267, 3904053.641593005973846 ], [ 4976583.630607298575342, 3904053.662343841977417 ], [ 4976583.380883825011551, 3904035.091126186773181 ], [ 4976618.22501371242106, 3904034.798763696569949 ], [ 4976617.95805848762393, 3904024.602533403784037 ], [ 4976632.932829179801047, 3904024.269259443040937 ], [ 4976633.199028276838362, 3904034.829619765747339 ], [ 4976652.781182624399662, 3904034.505852709524333 ], [ 4976652.801451735198498, 3904024.67434564139694 ], [ 4976668.352146715857089, 3904024.342278773430735 ], [ 4976668.331120997667313, 3904034.537915713619441 ], [ 4976688.48919968213886, 3904034.215362372342497 ], [ 4976688.222271116450429, 3904024.019131382927299 ], [ 4976702.908329755999148, 3904024.049432242289186 ], [ 4976703.176004143431783, 3904033.881533480715007 ], [ 4976725.924988581798971, 3904033.928486176300794 ], [ 4976726.406948899850249, 3904079.445911997463554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976682.970795691013336, 3900845.872165224980563 ], [ 4976676.852291127666831, 3900880.087836063466966 ], [ 4976621.864632101729512, 3900870.507091839797795 ], [ 4976627.983068763278425, 3900836.291408678982407 ], [ 4976682.970795691013336, 3900845.872165224980563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976537.296937772072852, 3912994.839131120592356 ], [ 4976516.83823927026242, 3913004.628637506160885 ], [ 4976507.666233569383621, 3912985.310696521308273 ], [ 4976492.682979269884527, 3912992.198416787665337 ], [ 4976475.486633559688926, 3912955.385581609793007 ], [ 4976510.928635430522263, 3912938.70832579722628 ], [ 4976537.296937772072852, 3912994.839131120592356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976433.732930938713253, 3911279.922679249197245 ], [ 4976427.664927219972014, 3911290.834207849111408 ], [ 4976400.346588120795786, 3911275.848659066483378 ], [ 4976406.414584094658494, 3911264.93712439481169 ], [ 4976433.732930938713253, 3911279.922679249197245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976370.920119451358914, 3912007.695886277128011 ], [ 4976390.159257776103914, 3912031.404027374461293 ], [ 4976354.691488988697529, 3912060.097779245115817 ], [ 4976335.452340070158243, 3912036.389663117472082 ], [ 4976370.920119451358914, 3912007.695886277128011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976360.702539596706629, 3905900.808191526681185 ], [ 4976327.560868418775499, 3905914.577251208480448 ], [ 4976310.654383170418441, 3905874.488100576214492 ], [ 4976343.796095004305243, 3905860.719020386226475 ], [ 4976360.702539596706629, 3905900.808191526681185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976210.527494393289089, 3902739.11100393300876 ], [ 4976291.686568943783641, 3902623.119273565709591 ], [ 4976326.195296579040587, 3902646.858496078755707 ], [ 4976316.086268098093569, 3902661.403025662526488 ], [ 4976328.451348532922566, 3902670.167511820793152 ], [ 4976314.299468291923404, 3902690.165723841637373 ], [ 4976300.496002672240138, 3902680.670035330578685 ], [ 4976282.589274459518492, 3902706.122539849486202 ], [ 4976295.243066935800016, 3902714.523471060208976 ], [ 4976281.091234664432704, 3902734.521701108664274 ], [ 4976267.575756046921015, 3902725.026618956122547 ], [ 4976249.380367646925151, 3902750.842686353251338 ], [ 4976261.746173874475062, 3902759.243012670427561 ], [ 4976254.52591897174716, 3902769.423905928619206 ], [ 4976210.527494393289089, 3902739.11100393300876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976177.905103134922683, 3907286.684423564467579 ], [ 4976218.455876585096121, 3907309.70767489541322 ], [ 4976202.851980547420681, 3907336.985670095309615 ], [ 4976162.301235038787127, 3907313.962441921699792 ], [ 4976177.905103134922683, 3907286.684423564467579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975796.364311659708619, 3906027.831113685388118 ], [ 4975752.269538521766663, 3906047.404761066194624 ], [ 4975743.096802924759686, 3906026.994773440994322 ], [ 4975753.47226139344275, 3906022.28210217691958 ], [ 4975740.000343602150679, 3905992.031836115289479 ], [ 4975772.855153543874621, 3905977.533206154126674 ], [ 4975780.594091237522662, 3905995.027238804847002 ], [ 4975791.546189450658858, 3905989.951620641164482 ], [ 4975797.565598216839135, 3906003.436717773787677 ], [ 4975787.478065388277173, 3906008.149956366512924 ], [ 4975796.364311659708619, 3906027.831113685388118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975763.011720555834472, 3915793.809513465035707 ], [ 4975703.682848545722663, 3915810.803477240726352 ], [ 4975694.25143504794687, 3915777.648158145602793 ], [ 4975753.292538023553789, 3915760.653589853551239 ], [ 4975763.011720555834472, 3915793.809513465035707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975684.525009040720761, 3911628.326106112916023 ], [ 4975701.516597807407379, 3911625.083341579884291 ], [ 4975714.050462770275772, 3911690.652711659669876 ], [ 4975697.058913913555443, 3911693.895468395203352 ], [ 4975690.222112036310136, 3911658.196566389873624 ], [ 4975682.157779568806291, 3911660.000891639385372 ], [ 4975680.165488783270121, 3911648.708728182595223 ], [ 4975688.229086647741497, 3911647.268533966504037 ], [ 4975684.525009040720761, 3911628.326106112916023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975654.770241672173142, 3905138.334309567231685 ], [ 4975670.926413541659713, 3905123.073494513519108 ], [ 4975665.466420953162014, 3905117.600462711416185 ], [ 4975683.642689615488052, 3905100.158956315834075 ], [ 4975718.124406655319035, 3905135.913729062769562 ], [ 4975684.079919070936739, 3905168.616593701764941 ], [ 4975654.770241672173142, 3905138.334309567231685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975607.537924407050014, 3909839.185210336465389 ], [ 4975577.251033004373312, 3909867.526303061284125 ], [ 4975548.81081704236567, 3909836.881662170402706 ], [ 4975560.636048559099436, 3909826.345715027302504 ], [ 4975544.835411196574569, 3909809.563675101846457 ], [ 4975563.584240444935858, 3909792.123200545087457 ], [ 4975607.537924407050014, 3909839.185210336465389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975482.149453326128423, 3904065.253877516835928 ], [ 4975457.656567115336657, 3904073.215350985061377 ], [ 4975455.653323555365205, 3904067.021076101344079 ], [ 4975440.093124100938439, 3904072.087533879559487 ], [ 4975442.38359790481627, 3904078.646518262568861 ], [ 4975427.111368985846639, 3904083.713564305566251 ], [ 4975412.799905189312994, 3904040.717208925634623 ], [ 4975429.800660792738199, 3904035.289508326444775 ], [ 4975425.219698438420892, 3904022.17154226033017 ], [ 4975442.797126622870564, 3904016.38088107900694 ], [ 4975446.517867584712803, 3904027.676458198577166 ], [ 4975467.553044217638671, 3904020.800392630044371 ], [ 4975482.149453326128423, 3904065.253877516835928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975338.851928278803825, 3911449.202715617138892 ], [ 4975403.355928312987089, 3911440.229332797694951 ], [ 4975405.056064835749567, 3911453.705683519132435 ], [ 4975397.568922786973417, 3911454.782991393469274 ], [ 4975399.839688030071557, 3911470.809423560276628 ], [ 4975375.938868100754917, 3911474.038457840681076 ], [ 4975375.372640766203403, 3911469.303587061353028 ], [ 4975342.256662061437964, 3911473.970619674772024 ], [ 4975338.851928278803825, 3911449.202715617138892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975307.434748983941972, 3904455.614905344787985 ], [ 4975353.173042038455606, 3904479.011368240229785 ], [ 4975329.178076662123203, 3904525.93603391898796 ], [ 4975283.151886024512351, 3904502.539032197091728 ], [ 4975307.434748983941972, 3904455.614905344787985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975265.210469164885581, 3910848.235101866535842 ], [ 4975226.584353442303836, 3910872.554377509281039 ], [ 4975206.496509389951825, 3910840.470328683033586 ], [ 4975262.993742223829031, 3910805.262959716375917 ], [ 4975277.342805616557598, 3910827.868052854668349 ], [ 4975259.471725438721478, 3910838.756108388770372 ], [ 4975265.210469164885581, 3910848.235101866535842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975077.671673314645886, 3910478.263826444745064 ], [ 4975098.61267345584929, 3910515.811473600566387 ], [ 4975051.635173538699746, 3910541.206657556351274 ], [ 4975030.981291342526674, 3910504.023754096589983 ], [ 4975077.671673314645886, 3910478.263826444745064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975083.786384607665241, 3904695.49274279223755 ], [ 4975036.521721877157688, 3904715.425333466846496 ], [ 4975028.496888452209532, 3904696.474432173650712 ], [ 4975022.156784005463123, 3904699.010665552690625 ], [ 4975011.264770672656596, 3904673.863796360325068 ], [ 4975064.581650861538947, 3904651.394360373262316 ], [ 4975070.315230189822614, 3904664.150446761865169 ], [ 4975081.554960760287941, 3904659.439250163733959 ], [ 4975090.439984954893589, 3904680.212548055686057 ], [ 4975079.488216346129775, 3904684.924317817203701 ], [ 4975083.786384607665241, 3904695.49274279223755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975059.753437331877649, 3904761.716550318989903 ], [ 4975090.920321902260184, 3904727.914743016473949 ], [ 4975132.88426886126399, 3904766.596798968501389 ], [ 4975102.005329687148333, 3904800.399135455489159 ], [ 4975059.753437331877649, 3904761.716550318989903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975052.873021486215293, 3905465.569227032363415 ], [ 4975015.121432200074196, 3905480.787198645994067 ], [ 4975008.245686683803797, 3905463.295120102819055 ], [ 4975013.14514855761081, 3905461.12013193173334 ], [ 4975004.262510525994003, 3905439.254458939656615 ], [ 4975036.826734001748264, 3905426.210878947749734 ], [ 4975052.873021486215293, 3905465.569227032363415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974999.353979342617095, 3903718.359094750136137 ], [ 4975062.504399771802127, 3903675.517979931086302 ], [ 4975082.602913314476609, 3903705.052870620042086 ], [ 4975063.570950101129711, 3903718.123480355832726 ], [ 4975069.600717620924115, 3903726.874707436654717 ], [ 4975054.894083224236965, 3903737.040935545694083 ], [ 4975048.577077073976398, 3903727.925005351193249 ], [ 4975019.452529964968562, 3903747.893938988447189 ], [ 4974999.353979342617095, 3903718.359094750136137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974848.126342120580375, 3898108.98767840815708 ], [ 4974869.742042235098779, 3898102.112318221013993 ], [ 4974865.735108310356736, 3898089.359772109892219 ], [ 4974884.469119541347027, 3898083.206936013419181 ], [ 4974902.219862970523536, 3898136.76948558120057 ], [ 4974886.368314310908318, 3898141.835670871194452 ], [ 4974889.517695928923786, 3898151.309338219929487 ], [ 4974865.018877042457461, 3898159.635451979003847 ], [ 4974848.126342120580375, 3898108.98767840815708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974822.675608617253602, 3901340.230493023060262 ], [ 4974805.234357816167176, 3901421.396901667583734 ], [ 4974704.767915131524205, 3901400.077302706427872 ], [ 4974722.208875969052315, 3901318.910829885862768 ], [ 4974822.675608617253602, 3901340.230493023060262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974721.908589273691177, 3899732.757272446993738 ], [ 4974769.149863456375897, 3899728.845864580012858 ], [ 4974771.966133756563067, 3899760.894951827358454 ], [ 4974750.073930850252509, 3899762.672018101904541 ], [ 4974752.046493845060468, 3899784.523771713953465 ], [ 4974726.697498898953199, 3899786.658106598071754 ], [ 4974721.908589273691177, 3899732.757272446993738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974517.925003036856651, 3897880.385850677732378 ], [ 4974583.358603426255286, 3897854.662371169775724 ], [ 4974597.114571649581194, 3897889.64615236222744 ], [ 4974554.741287227720022, 3897906.312069326173514 ], [ 4974551.303008988499641, 3897897.202000024728477 ], [ 4974528.242758179083467, 3897906.259532519150525 ], [ 4974517.925003036856651, 3897880.385850677732378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974455.96048207487911, 3909971.60912782792002 ], [ 4974478.321316052228212, 3910019.718937920406461 ], [ 4974436.825844317674637, 3910038.935794631484896 ], [ 4974414.177054236643016, 3909990.82544881105423 ], [ 4974455.96048207487911, 3909971.60912782792002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974344.932179647497833, 3909192.145675174426287 ], [ 4974383.27199777495116, 3909167.824588112067431 ], [ 4974399.632984263822436, 3909192.982092809397727 ], [ 4974361.292467291466892, 3909217.667288017924875 ], [ 4974344.932179647497833, 3909192.145675174426287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974295.806986973620951, 3897612.675166229717433 ], [ 4974264.097044794820249, 3897626.085415262263268 ], [ 4974245.746371715329587, 3897583.810152480844408 ], [ 4974251.22398561052978, 3897581.272042993921787 ], [ 4974242.622539538890123, 3897561.227936183102429 ], [ 4974268.567611359991133, 3897549.9910703971982 ], [ 4974295.806986973620951, 3897612.675166229717433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974242.554620048031211, 3895550.139244427904487 ], [ 4974200.496768591925502, 3895551.148755717091262 ], [ 4974199.705051420256495, 3895514.370114747900516 ], [ 4974241.762960379943252, 3895513.360602255910635 ], [ 4974242.554620048031211, 3895550.139244427904487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974147.856057654134929, 3894342.863792347256094 ], [ 4974161.202397507615387, 3894294.460866203065962 ], [ 4974150.54968068189919, 3894291.526867423672229 ], [ 4974160.415599436499178, 3894255.133358714636415 ], [ 4974186.039904716424644, 3894262.102260014042258 ], [ 4974177.334821191616356, 3894294.128493926487863 ], [ 4974217.354499088600278, 3894305.131192872766405 ], [ 4974202.847194076515734, 3894357.901355977170169 ], [ 4974147.856057654134929, 3894342.863792347256094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974023.121764574199915, 3905198.075191575102508 ], [ 4974034.411871171556413, 3905167.510309842880815 ], [ 4974065.200301013886929, 3905178.858885418623686 ], [ 4974071.858213459141552, 3905161.029522461351007 ], [ 4974089.410976143553853, 3905167.254269053693861 ], [ 4974081.304715358652174, 3905189.450359732843935 ], [ 4974090.799886828288436, 3905193.110345600638539 ], [ 4974096.010187745094299, 3905179.283589785918593 ], [ 4974112.987033946439624, 3905185.507219295948744 ], [ 4974098.222836189903319, 3905225.532658385112882 ], [ 4974023.121764574199915, 3905198.075191575102508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973980.5244793985039, 3903867.455145109444857 ], [ 4974012.802856363356113, 3903854.045641765929759 ], [ 4974037.452581351622939, 3903912.719195410143584 ], [ 4974005.461510537192225, 3903926.493364868219942 ], [ 4973980.5244793985039, 3903867.455145109444857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973639.439910862594843, 3905561.09195292647928 ], [ 4973615.270231661386788, 3905551.941549504641443 ], [ 4973628.29379016533494, 3905518.102684578392655 ], [ 4973652.462785341776907, 3905527.617229836061597 ], [ 4973639.439910862594843, 3905561.09195292647928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973538.904570987448096, 3898922.060431117191911 ], [ 4973587.898591569624841, 3898906.134058674797416 ], [ 4973591.620118704624474, 3898917.793473062571138 ], [ 4973612.082069538533688, 3898911.278983527328819 ], [ 4973620.099712141789496, 3898935.327199728693813 ], [ 4973577.735062563791871, 3898948.717507577501237 ], [ 4973577.162574406713247, 3898946.895741827320307 ], [ 4973550.071325270459056, 3898955.946269457694143 ], [ 4973538.904570987448096, 3898922.060431117191911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973466.516401959583163, 3902677.199022049084306 ], [ 4973428.727869126945734, 3902709.89742131344974 ], [ 4973404.591589840129018, 3902682.176609300076962 ], [ 4973442.380132087506354, 3902649.478176641277969 ], [ 4973466.516401959583163, 3902677.199022049084306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973447.872595850378275, 3909457.297079264651984 ], [ 4973413.563980498351157, 3909481.991461936384439 ], [ 4973391.741971635259688, 3909451.726099976804107 ], [ 4973425.762701376341283, 3909427.03113080561161 ], [ 4973447.872595850378275, 3909457.297079264651984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973441.844863998703659, 3902331.954893693793565 ], [ 4973472.048807807266712, 3902349.491855014115572 ], [ 4973447.489186447113752, 3902391.319206300657243 ], [ 4973417.285273785702884, 3902373.782272148411721 ], [ 4973441.844863998703659, 3902331.954893693793565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973409.795825138688087, 3898367.96758268494159 ], [ 4973412.089405801147223, 3898373.433985285460949 ], [ 4973430.537689548917115, 3898365.823060874827206 ], [ 4973445.160373542457819, 3898400.079683147370815 ], [ 4973392.120493618771434, 3898422.552805848885328 ], [ 4973375.204168017953634, 3898382.829812283162028 ], [ 4973409.795825138688087, 3898367.96758268494159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973335.447106269188225, 3896901.472098891157657 ], [ 4973349.183311693370342, 3896947.743203097488731 ], [ 4973339.096345104277134, 3896950.636692810337991 ], [ 4973344.818992086686194, 3896970.310792369768023 ], [ 4973313.693308094516397, 3896979.353732637595385 ], [ 4973300.529608336277306, 3896934.904403367079794 ], [ 4973288.424967270344496, 3896938.522264733910561 ], [ 4973282.129720263183117, 3896917.026420282199979 ], [ 4973335.447106269188225, 3896901.472098891157657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973173.983745055273175, 3903097.203641312196851 ], [ 4973202.81120082270354, 3903081.601716132368892 ], [ 4973198.219837377779186, 3903073.217824361752719 ], [ 4973219.552307620644569, 3903061.60687278304249 ], [ 4973237.918429978191853, 3903094.778329368680716 ], [ 4973187.75783705431968, 3903122.355307029094547 ], [ 4973173.983745055273175, 3903097.203641312196851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973088.765562794171274, 3904727.983298737555742 ], [ 4973105.889783365651965, 3904658.103091630153358 ], [ 4973146.472471215762198, 3904668.012985073029995 ], [ 4973129.348151272162795, 3904737.89316673297435 ], [ 4973088.765562794171274, 3904727.983298737555742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973051.178759282454848, 3910183.70220354758203 ], [ 4973068.116862719878554, 3910208.495892100036144 ], [ 4973050.820656787604094, 3910220.114785864949226 ], [ 4973033.882544772699475, 3910195.321108041796833 ], [ 4973051.178759282454848, 3910183.70220354758203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972921.899176337756217, 3899858.138632016256452 ], [ 4972974.602977829985321, 3899858.968268437776715 ], [ 4972974.263115455396473, 3899885.913265966810286 ], [ 4972963.894889491610229, 3899885.893314667511731 ], [ 4972963.574655164033175, 3899902.642698353622109 ], [ 4972919.798428303562105, 3899902.194375060498714 ], [ 4972920.111635143868625, 3899889.086281679105014 ], [ 4972905.424016579054296, 3899888.693919031415135 ], [ 4972905.756811658851802, 3899865.390211361460388 ], [ 4972921.885175459086895, 3899865.421213560272008 ], [ 4972921.899176337756217, 3899858.138632016256452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972831.532790648750961, 3905074.141526417806745 ], [ 4972872.675461793318391, 3905092.062979420647025 ], [ 4972856.768954063765705, 3905128.081453044898808 ], [ 4972836.34127327427268, 3905119.303072133101523 ], [ 4972840.100704560056329, 3905110.935263095889241 ], [ 4972819.38575370144099, 3905101.79221211001277 ], [ 4972831.532790648750961, 3905074.141526417806745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972820.890670763328671, 3910168.329738350585103 ], [ 4972853.367677628993988, 3910197.15858214488253 ], [ 4972835.19179027993232, 3910217.150977557059377 ], [ 4972803.002684080041945, 3910188.322707795072347 ], [ 4972820.890670763328671, 3910168.329738350585103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972695.812972373329103, 3912942.419473768677562 ], [ 4972674.466250739991665, 3912965.683136622887105 ], [ 4972603.773695000447333, 3912901.46043917723 ], [ 4972625.120406126603484, 3912878.196721086278558 ], [ 4972695.812972373329103, 3912942.419473768677562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972484.368972273543477, 3898220.53563809255138 ], [ 4972500.424033871851861, 3898259.528162147384137 ], [ 4972490.046850693412125, 3898263.877938539721072 ], [ 4972496.354213196784258, 3898279.183426003437489 ], [ 4972470.70069329906255, 3898289.330169904045761 ], [ 4972465.539168418385088, 3898277.304042259696871 ], [ 4972432.678832909092307, 3898290.714261950459331 ], [ 4972411.46282865665853, 3898239.331531907897443 ], [ 4972436.540325675159693, 3898229.183634765911847 ], [ 4972440.267301145009696, 3898238.29398388415575 ], [ 4972484.368972273543477, 3898220.53563809255138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972257.054420659318566, 3904778.462539489846677 ], [ 4972228.235549278557301, 3904790.788323706947267 ], [ 4972207.879909552633762, 3904743.776754012331367 ], [ 4972236.698821892030537, 3904731.450948305893689 ], [ 4972257.054420659318566, 3904778.462539489846677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971693.935103816911578, 3892129.704981206916273 ], [ 4971656.447982696816325, 3892148.569364689756185 ], [ 4971634.633728163316846, 3892105.561284204944968 ], [ 4971672.408983625471592, 3892086.6974110850133 ], [ 4971693.935103816911578, 3892129.704981206916273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971656.092655158601701, 3902321.991864097770303 ], [ 4971592.997713055461645, 3902336.438835007604212 ], [ 4971583.284137201495469, 3902294.909715148620307 ], [ 4971602.874995499849319, 3902290.576842563226819 ], [ 4971605.159736069850624, 3902300.776789231691509 ], [ 4971648.951876900158823, 3902290.663212152197957 ], [ 4971656.092655158601701, 3902321.991864097770303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971408.400911886245012, 3911129.150957674253732 ], [ 4971430.17141242697835, 3911187.452876385767013 ], [ 4971391.568294610828161, 3911201.581984688062221 ], [ 4971379.824120230972767, 3911169.880505251232535 ], [ 4971351.880226301960647, 3911180.024099889211357 ], [ 4971342.141010778024793, 3911153.788370044436306 ], [ 4971408.400911886245012, 3911129.150957674253732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971267.898279022425413, 3901391.276463408954442 ], [ 4971277.448044490069151, 3901366.53334948560223 ], [ 4971271.4049899186939, 3901363.973186429124326 ], [ 4971287.031046169809997, 3901323.947896684985608 ], [ 4971322.140830815769732, 3901337.486122727394104 ], [ 4971315.19649435672909, 3901354.951459603849798 ], [ 4971328.722550518810749, 3901360.074489835649729 ], [ 4971314.254517867229879, 3901396.824736969545484 ], [ 4971305.04561688285321, 3901393.16627694806084 ], [ 4971300.70609952416271, 3901403.717985934112221 ], [ 4971267.898279022425413, 3901391.276463408954442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971172.741886357776821, 3910909.504033487755805 ], [ 4971235.699963602237403, 3910957.686631937511265 ], [ 4971211.170602297410369, 3910989.320563619025052 ], [ 4971159.711833128705621, 3910949.898570026271045 ], [ 4971161.4432183066383, 3910947.716989411041141 ], [ 4971150.231828150339425, 3910938.956975067500025 ], [ 4971172.741886357776821, 3910909.504033487755805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971121.584289545193315, 3905278.46862299926579 ], [ 4971143.775254004634917, 3905268.314132535364479 ], [ 4971154.387425543740392, 3905290.909996128175408 ], [ 4971132.196475678123534, 3905301.064477968495339 ], [ 4971121.584289545193315, 3905278.46862299926579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970949.382100992836058, 3892977.830787790473551 ], [ 4970920.849368722178042, 3892984.696504746563733 ], [ 4970905.696123125962913, 3892922.402472659479827 ], [ 4970934.228917558677495, 3892915.536739877425134 ], [ 4970949.382100992836058, 3892977.830787790473551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970637.244398649781942, 3898074.339305717963725 ], [ 4970651.010739107616246, 3898106.40804172726348 ], [ 4970640.345772255212069, 3898110.758002456277609 ], [ 4970648.37568227108568, 3898129.707518024835736 ], [ 4970624.162845827639103, 3898139.858670093584806 ], [ 4970602.366547265090048, 3898088.840443229768425 ], [ 4970637.244398649781942, 3898074.339305717963725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970571.236351211555302, 3897944.587837915867567 ], [ 4970577.2461624648422, 3897965.71840323228389 ], [ 4970590.790777101181448, 3897961.737833588384092 ], [ 4970598.806059403344989, 3897988.698164735920727 ], [ 4970548.085995234549046, 3898003.534421115648001 ], [ 4970533.772801597602665, 3897955.443019604310393 ], [ 4970571.236351211555302, 3897944.587837915867567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970528.06174317933619, 3902954.944227514322847 ], [ 4970561.505408712662756, 3902933.8859723364003 ], [ 4970576.724567571654916, 3902957.582420036196709 ], [ 4970543.280919495038688, 3902978.640656587202102 ], [ 4970528.06174317933619, 3902954.944227514322847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970407.061926733702421, 3898101.227104280143976 ], [ 4970450.307060676626861, 3898078.730168503243476 ], [ 4970477.000082517974079, 3898129.75723879551515 ], [ 4970442.403750617057085, 3898147.900399520527571 ], [ 4970427.478419858962297, 3898119.470949301030487 ], [ 4970419.117695786990225, 3898123.825213686097413 ], [ 4970407.061926733702421, 3898101.227104280143976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970194.689057126641273, 3900369.006681537255645 ], [ 4970157.827566714957356, 3900367.483057185541838 ], [ 4970159.029930689372122, 3900339.811330089811236 ], [ 4970195.603457606397569, 3900341.334431580267847 ], [ 4970194.689057126641273, 3900369.006681537255645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970109.417633633129299, 3897846.52171193016693 ], [ 4970119.123865, 3897894.240376638248563 ], [ 4970069.853285495191813, 3897903.982350817881525 ], [ 4970060.146309049800038, 3897856.627832346130162 ], [ 4970109.417633633129299, 3897846.52171193016693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970018.076429737731814, 3913256.405747099313885 ], [ 4969999.323705058544874, 3913279.312111431267112 ], [ 4969939.823891007341444, 3913230.774468829855323 ], [ 4969964.923462770879269, 3913200.232772261835635 ], [ 4970000.85288823954761, 3913229.792751109693199 ], [ 4969994.793884006328881, 3913237.428556501399726 ], [ 4970018.076429737731814, 3913256.405747099313885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969999.450750816613436, 3898607.353734863456339 ], [ 4969979.601797945797443, 3898593.844929393846542 ], [ 4970009.345155140385032, 3898551.295651146676391 ], [ 4970056.521022531203926, 3898584.15297883329913 ], [ 4970034.86332908179611, 3898615.064717585686594 ], [ 4970007.247766483575106, 3898596.079845064785331 ], [ 4969999.450750816613436, 3898607.353734863456339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969700.682500494644046, 3897219.478526203427464 ], [ 4969724.379500417970121, 3897176.189808169845492 ], [ 4969775.02441458683461, 3897203.590919686481357 ], [ 4969753.638861084356904, 3897242.87833715416491 ], [ 4969721.985916669480503, 3897225.707139934413135 ], [ 4969719.961794001050293, 3897230.073047215584666 ], [ 4969700.682500494644046, 3897219.478526203427464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969190.384775119833648, 3897485.470696743112057 ], [ 4969227.273668741807342, 3897473.884360179305077 ], [ 4969243.026365524157882, 3897523.798266894649714 ], [ 4969230.633857461623847, 3897527.781571188475937 ], [ 4969236.935448009520769, 3897547.455831086263061 ], [ 4969212.439140153117478, 3897555.058836412616074 ], [ 4969190.384775119833648, 3897485.470696743112057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968756.555037898942828, 3893114.056050222367048 ], [ 4968798.265288488008082, 3893148.722031427547336 ], [ 4968778.346030610613525, 3893172.35518566891551 ], [ 4968736.923869751393795, 3893137.689743736293167 ], [ 4968756.555037898942828, 3893114.056050222367048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968425.000588095746934, 3905898.813230496831238 ], [ 4968450.942218049429357, 3905883.565257021225989 ], [ 4968468.167550354264677, 3905912.726051629986614 ], [ 4968477.967807755805552, 3905906.917168094776571 ], [ 4968486.866477701812983, 3905922.590470574330539 ], [ 4968479.660257851704955, 3905926.947383548133075 ], [ 4968488.846861510537565, 3905942.621192971244454 ], [ 4968460.887119378894567, 3905959.3221112084575 ], [ 4968425.000588095746934, 3905898.813230496831238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968179.106175334192812, 3891542.190688551869243 ], [ 4968139.637066435068846, 3891542.121823620516807 ], [ 4968139.62182511202991, 3891550.860881538130343 ], [ 4968104.47479741461575, 3891550.435477935709059 ], [ 4968104.823178402148187, 3891515.84387595159933 ], [ 4968157.256009072996676, 3891516.299432908650488 ], [ 4968157.275067866779864, 3891505.375610747840255 ], [ 4968179.458465972915292, 3891505.414323277305812 ], [ 4968179.106175334192812, 3891542.190688551869243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968137.261393285356462, 3913371.036387394648045 ], [ 4968116.531533868983388, 3913373.185013994574547 ], [ 4968114.549534040503204, 3913354.246623180806637 ], [ 4968135.27940790168941, 3913352.097995080519468 ], [ 4968137.261393285356462, 3913371.036387394648045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968083.910860612988472, 3902028.230105353053659 ], [ 4968057.774774270132184, 3901987.766055944841355 ], [ 4968094.965934001840651, 3901964.16235675662756 ], [ 4968120.814638971351087, 3902004.261809843592346 ], [ 4968083.910860612988472, 3902028.230105353053659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967823.370269948616624, 3901812.940193855669349 ], [ 4967829.688913982361555, 3901822.782674108631909 ], [ 4967862.267275900579989, 3901802.083706603385508 ], [ 4967882.946648891083896, 3901834.163084827363491 ], [ 4967841.142052702605724, 3901861.036253875121474 ], [ 4967827.64272371865809, 3901840.257402831222862 ], [ 4967817.263894841074944, 3901846.793770413845778 ], [ 4967803.477185484021902, 3901825.650303050875664 ], [ 4967823.370269948616624, 3901812.940193855669349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967675.513003054074943, 3898381.119979583192617 ], [ 4967704.891287986189127, 3898381.170738484710455 ], [ 4967705.362233418039978, 3898441.981259198393673 ], [ 4967675.984014948830009, 3898441.930499786045402 ], [ 4967675.513003054074943, 3898381.119979583192617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967184.769991674460471, 3901722.993230575229973 ], [ 4967154.558143522590399, 3901707.283990494906902 ], [ 4967138.379281055182219, 3901737.479208341334015 ], [ 4967114.785521365702152, 3901725.05848994711414 ], [ 4967149.455226549878716, 3901659.938286221120507 ], [ 4967190.025330048054457, 3901681.127184350509197 ], [ 4967187.136123747564852, 3901686.584206028841436 ], [ 4967200.371696004644036, 3901693.525315379723907 ], [ 4967184.769991674460471, 3901722.993230575229973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966875.141049640253186, 3901917.639861812349409 ], [ 4966881.089803669601679, 3901975.910878951661289 ], [ 4966836.156288772821426, 3901980.568323779385537 ], [ 4966837.286605982109904, 3901993.314817044883966 ], [ 4966809.923216653056443, 3901996.181461350060999 ], [ 4966806.804776106961071, 3901967.045715792570263 ], [ 4966828.983247536234558, 3901964.898535901214927 ], [ 4966824.735116256400943, 3901922.652166658546776 ], [ 4966875.141049640253186, 3901917.639861812349409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966855.08355972263962, 3905590.960688072256744 ], [ 4966833.758323568850756, 3905601.120187462773174 ], [ 4966837.488636318594217, 3905608.773278093896806 ], [ 4966808.959243603982031, 3905622.197760265320539 ], [ 4966792.316455393098295, 3905587.941183578688651 ], [ 4966795.774266233667731, 3905586.490518010221422 ], [ 4966788.887648082338274, 3905572.277716505806893 ], [ 4966811.653852119110525, 3905561.392361781094223 ], [ 4966817.391767184250057, 3905573.78256341535598 ], [ 4966841.310998906381428, 3905562.170925987884402 ], [ 4966855.08355972263962, 3905590.960688072256744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966709.199422726407647, 3898037.914451356511563 ], [ 4966750.401945381425321, 3898029.245049678254873 ], [ 4966762.687804811634123, 3898087.890760872513056 ], [ 4966721.773393446579576, 3898096.560631286818534 ], [ 4966709.199422726407647, 3898037.914451356511563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966681.425145389512181, 3898792.708895637653768 ], [ 4966689.701949870213866, 3898837.510882454924285 ], [ 4966679.330242229625583, 3898839.314000546466559 ], [ 4966683.326172519475222, 3898860.804427827708423 ], [ 4966657.684639223851264, 3898865.494787873700261 ], [ 4966645.699844625778496, 3898799.202874886803329 ], [ 4966681.425145389512181, 3898792.708895637653768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966540.786692482419312, 3894740.437371314037591 ], [ 4966496.690006747841835, 3894754.200022572651505 ], [ 4966476.920985920354724, 3894690.444153214339167 ], [ 4966508.912414411082864, 3894680.666507534682751 ], [ 4966512.063930631615222, 3894690.867429798468947 ], [ 4966524.168664798140526, 3894687.246521831024438 ], [ 4966540.786692482419312, 3894740.437371314037591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966380.213030330836773, 3907505.127796521410346 ], [ 4966357.753075147047639, 3907506.18247798178345 ], [ 4966356.935147221200168, 3907478.871208252385259 ], [ 4966379.107200272381306, 3907477.816042538266629 ], [ 4966380.213030330836773, 3907505.127796521410346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966306.178754569031298, 3905295.08820674335584 ], [ 4966291.489118156954646, 3905297.612500743474811 ], [ 4966288.63526800647378, 3905282.314196022693068 ], [ 4966334.432511935941875, 3905274.380101672373712 ], [ 4966336.714105860330164, 3905287.492662291042507 ], [ 4966358.604296404868364, 3905283.888084942940623 ], [ 4966363.736628551036119, 3905314.119612424634397 ], [ 4966311.02685915119946, 3905323.134458899497986 ], [ 4966306.178754569031298, 3905295.08820674335584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966083.602495487779379, 3902873.607660241890699 ], [ 4966086.256836785003543, 3902836.106604150962085 ], [ 4966152.482491635717452, 3902841.31500761769712 ], [ 4966153.07669313903898, 3902830.392073024995625 ], [ 4966180.718613987788558, 3902832.623058454599231 ], [ 4966178.357593605294824, 3902866.84741743421182 ], [ 4966137.470711898989975, 3902863.501915507484227 ], [ 4966136.583069487474859, 3902877.701538828667253 ], [ 4966083.602495487779379, 3902873.607660241890699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965979.799557998776436, 3895164.800986757967621 ], [ 4965937.444908264093101, 3895170.920741788111627 ], [ 4965922.919207414612174, 3895071.489318723790348 ], [ 4965965.274010389111936, 3895065.369541163090616 ], [ 4965979.799557998776436, 3895164.800986757967621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965821.235969401896, 3892116.778615402057767 ], [ 4965903.119315811432898, 3892077.224474454764277 ], [ 4965918.336659633554518, 3892108.200682932510972 ], [ 4965869.033449673093855, 3892132.151299765799195 ], [ 4965874.201530996710062, 3892142.719606591388583 ], [ 4965841.620872100815177, 3892158.687206507194787 ], [ 4965821.235969401896, 3892116.778615402057767 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965738.27406975068152, 3894549.021891163196415 ], [ 4965788.39288960956037, 3894551.653783937450498 ], [ 4965786.901898589916527, 3894582.238158915191889 ], [ 4965736.783135619945824, 3894579.606268877629191 ], [ 4965738.27406975068152, 3894549.021891163196415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965633.466625267639756, 3892949.594381263945252 ], [ 4965585.071485715918243, 3892948.058013438247144 ], [ 4965587.197344035841525, 3892881.790086290799081 ], [ 4965596.415345966815948, 3892882.16941886022687 ], [ 4965597.020940420217812, 3892864.328109354712069 ], [ 4965629.28426708560437, 3892865.473735090810806 ], [ 4965628.679252321831882, 3892882.950916141737252 ], [ 4965635.592602776363492, 3892883.326457884628326 ], [ 4965633.466625267639756, 3892949.594381263945252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965056.159345748834312, 3902488.483451334759593 ], [ 4965058.501754939556122, 3902464.818766936194152 ], [ 4965067.715290402062237, 3902465.926179990172386 ], [ 4965070.052368130534887, 3902445.538665437605232 ], [ 4965117.272578120231628, 3902450.713532418943942 ], [ 4965114.931304652243853, 3902473.64995181420818 ], [ 4965106.005752318538725, 3902472.542992519214749 ], [ 4965103.955439553596079, 3902493.659233888145536 ], [ 4965056.159345748834312, 3902488.483451334759593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964894.273136540316045, 3899676.768465348985046 ], [ 4964879.535051060840487, 3899707.33147374773398 ], [ 4964842.122924541123211, 3899689.428389762993902 ], [ 4964857.148985901847482, 3899658.865828447043896 ], [ 4964894.273136540316045, 3899676.768465348985046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964889.722509918734431, 3899996.103286049794406 ], [ 4964902.161137500777841, 3899962.623501399066299 ], [ 4964932.958783086389303, 3899974.325706914067268 ], [ 4964920.520122485235333, 3900007.805477546993643 ], [ 4964889.722509918734431, 3899996.103286049794406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964798.241996836848557, 3900108.835291494149715 ], [ 4964828.740888670086861, 3900127.091239963658154 ], [ 4964810.838036831468344, 3900155.828511068597436 ], [ 4964769.406231926754117, 3900130.636402161326259 ], [ 4964777.491563831456006, 3900117.540804846677929 ], [ 4964788.712504425086081, 3900124.477455063257366 ], [ 4964798.241996836848557, 3900108.835291494149715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964531.590198053047061, 3904375.288667925167829 ], [ 4964490.1060582222417, 3904386.509952767752111 ], [ 4964480.944121451117098, 3904353.723402598872781 ], [ 4964522.716266516596079, 3904342.502567533869296 ], [ 4964531.590198053047061, 3904375.288667925167829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964507.801570822484791, 3901979.996952472254634 ], [ 4964490.465711751952767, 3902015.289731686003506 ], [ 4964472.912190139293671, 3902006.886488813441247 ], [ 4964469.734416182152927, 3902013.071600032504648 ], [ 4964447.289262869395316, 3902002.111592919565737 ], [ 4964467.80285185482353, 3901960.633674477227032 ], [ 4964507.801570822484791, 3901979.996952472254634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964464.859849495813251, 3900387.949263466056436 ], [ 4964428.521427316591144, 3900419.2060691206716 ], [ 4964398.05007157009095, 3900383.836489804554731 ], [ 4964416.218693369999528, 3900368.572189894970506 ], [ 4964410.182364968582988, 3900361.279889077413827 ], [ 4964428.063592508435249, 3900345.651005494408309 ], [ 4964464.859849495813251, 3900387.949263466056436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964407.50705442391336, 3895569.691404449753463 ], [ 4964401.692228057421744, 3895603.181964910123497 ], [ 4964372.319084507413208, 3895598.037019310984761 ], [ 4964371.155777595937252, 3895604.953609902411699 ], [ 4964352.437642514705658, 3895601.646426558028907 ], [ 4964353.600360878743231, 3895595.093963534105569 ], [ 4964322.786937810480595, 3895589.94676270801574 ], [ 4964328.890888391062617, 3895555.728390339761972 ], [ 4964407.50705442391336, 3895569.691404449753463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964384.867025346495211, 3901061.097892531659454 ], [ 4964398.899794375523925, 3901110.278034400194883 ], [ 4964366.341963551938534, 3901119.32904549408704 ], [ 4964359.75491976365447, 3901096.378257749136537 ], [ 4964339.874624594114721, 3901101.808334001339972 ], [ 4964332.428243013098836, 3901075.943131583742797 ], [ 4964384.867025346495211, 3901061.097892531659454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964380.222847739234567, 3903775.321296970825642 ], [ 4964378.735104775987566, 3903805.177658316213638 ], [ 4964336.407858558930457, 3903802.92497442336753 ], [ 4964337.895554614253342, 3903773.068610772956163 ], [ 4964380.222847739234567, 3903775.321296970825642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964281.195299207232893, 3897819.081168716307729 ], [ 4964275.967072619125247, 3897846.382532747462392 ], [ 4964228.168958163820207, 3897837.20281965425238 ], [ 4964236.589909614995122, 3897794.613101901952177 ], [ 4964261.064773311838508, 3897799.38594137551263 ], [ 4964258.160016749985516, 3897814.674743944779038 ], [ 4964281.195299207232893, 3897819.081168716307729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963812.809232170693576, 3898578.638530984055251 ], [ 4963819.485601490363479, 3898545.877410537097603 ], [ 4963878.79994987603277, 3898557.259444120340049 ], [ 4963872.410953761078417, 3898590.385135801974684 ], [ 4963812.809232170693576, 3898578.638530984055251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963148.078324959613383, 3893390.207306635100394 ], [ 4963157.550204250961542, 3893412.43392723845318 ], [ 4963164.756637096405029, 3893409.532131482381374 ], [ 4963173.365972948260605, 3893430.665026707574725 ], [ 4963129.838785096071661, 3893448.43949580937624 ], [ 4963112.045592484995723, 3893405.08045488782227 ], [ 4963148.078324959613383, 3893390.207306635100394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962988.607614826411009, 3903882.727311645634472 ], [ 4962953.145729978568852, 3903909.982087725307792 ], [ 4962924.694411108270288, 3903873.160711739677936 ], [ 4962960.155750345438719, 3903846.270028917584568 ], [ 4962988.607614826411009, 3903882.727311645634472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962800.901308352127671, 3896401.016265164595097 ], [ 4962805.534211626276374, 3896385.36586108058691 ], [ 4962795.456618518568575, 3896382.801377723924816 ], [ 4962803.276017823256552, 3896355.503756716381758 ], [ 4962813.92858252953738, 3896358.797390842344612 ], [ 4962817.693989397957921, 3896345.330424443818629 ], [ 4962867.791132641024888, 3896359.973117284011096 ], [ 4962858.524686645716429, 3896391.638033024966717 ], [ 4962865.14687358867377, 3896393.468931494280696 ], [ 4962857.908581800758839, 3896417.490269675385207 ], [ 4962800.901308352127671, 3896401.016265164595097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962636.869665922597051, 3894991.582883534487337 ], [ 4962609.160005887970328, 3895027.953150481451303 ], [ 4962561.973838306032121, 3894991.831809613388032 ], [ 4962589.682911545038223, 3894955.825623063836247 ], [ 4962636.869665922597051, 3894991.582883534487337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962419.032067752443254, 3898983.200735273770988 ], [ 4962442.348524517379701, 3898991.611448870040476 ], [ 4962433.962030403316021, 3899013.810527020134032 ], [ 4962410.646147925406694, 3899005.035691440105438 ], [ 4962419.032067752443254, 3898983.200735273770988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962034.908260815776885, 3897025.417607651092112 ], [ 4962045.852558825165033, 3897026.162474695127457 ], [ 4962043.804801573976874, 3897046.914751840289682 ], [ 4961998.013038362376392, 3897042.839870968833566 ], [ 4962000.947504653595388, 3897007.159622940700501 ], [ 4962036.371650842018425, 3897010.126386714633554 ], [ 4962034.908260815776885, 3897025.417607651092112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961960.669711781665683, 3900208.528666510712355 ], [ 4961929.774046908132732, 3900260.916642700787634 ], [ 4961899.560244471766055, 3900243.392676889896393 ], [ 4961929.878762161359191, 3900191.732053500600159 ], [ 4961924.699116662144661, 3900188.811172337736934 ], [ 4961937.981433100067079, 3900166.255201771855354 ], [ 4961967.907294329255819, 3900183.778773645404726 ], [ 4961955.202621490694582, 3900205.243213778827339 ], [ 4961960.669711781665683, 3900208.528666510712355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961662.431386562995613, 3895522.09304572828114 ], [ 4961667.65794996637851, 3895494.427082564681768 ], [ 4961676.872918616048992, 3895496.261585358064622 ], [ 4961679.775357643142343, 3895481.700781655032188 ], [ 4961697.917795247398317, 3895485.005236873403192 ], [ 4961697.33675741404295, 3895488.28152558254078 ], [ 4961762.706769689917564, 3895500.396228280849755 ], [ 4961754.865137537010014, 3895542.987531209364533 ], [ 4961717.716739580966532, 3895536.013126606121659 ], [ 4961718.298327062278986, 3895532.372709836345166 ], [ 4961662.431386562995613, 3895522.09304572828114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961366.020786535926163, 3897840.425538593437523 ], [ 4961360.504237743094563, 3897869.911813610233366 ], [ 4961286.789168233983219, 3897856.329113593325019 ], [ 4961292.305096432566643, 3897827.206952612381428 ], [ 4961366.020786535926163, 3897840.425538593437523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961282.057505370117724, 3908378.247892000246793 ], [ 4961258.729861500672996, 3908382.582730508875102 ], [ 4961257.017551296390593, 3908372.384483550209552 ], [ 4961221.018383366987109, 3908378.88528239261359 ], [ 4961211.024207684211433, 3908323.15821441821754 ], [ 4961237.231596398167312, 3908318.46348815690726 ], [ 4961238.944459548220038, 3908328.297602278646082 ], [ 4961272.063456006348133, 3908322.520801346749067 ], [ 4961282.057505370117724, 3908378.247892000246793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961177.006128253415227, 3898661.620949828997254 ], [ 4961127.744006813503802, 3898668.83041562885046 ], [ 4961122.041417181491852, 3898629.860057300422341 ], [ 4961171.30360846221447, 3898622.650581221561879 ], [ 4961177.006128253415227, 3898661.620949828997254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961074.017015720717609, 3908101.198405980598181 ], [ 4961085.742844323627651, 3908154.379058133810759 ], [ 4961020.076055564917624, 3908168.847060857806355 ], [ 4961009.492615762166679, 3908121.858371210750192 ], [ 4961043.478267477825284, 3908114.261911493260413 ], [ 4961042.047844477929175, 3908108.069549344480038 ], [ 4961074.017015720717609, 3908101.198405980598181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960782.592852613888681, 3893254.810177331790328 ], [ 4960821.514379151165485, 3893233.747973520774394 ], [ 4960845.648001352325082, 3893277.843083612155169 ], [ 4960806.438442727550864, 3893298.904829145874828 ], [ 4960782.592852613888681, 3893254.810177331790328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960635.182088311761618, 3893393.326863181311637 ], [ 4960611.238205559551716, 3893416.231907043140382 ], [ 4960575.571693395264447, 3893378.674448809586465 ], [ 4960613.073823294602334, 3893343.044716257136315 ], [ 4960654.493844514712691, 3893386.072587232571095 ], [ 4960640.935068757273257, 3893399.161352083086967 ], [ 4960635.182088311761618, 3893393.326863181311637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960341.119731693528593, 3898895.620183855295181 ], [ 4960345.189042727462947, 3898870.137007609009743 ], [ 4960371.39224448800087, 3898874.544692846480757 ], [ 4960367.322909267619252, 3898900.027865190058947 ], [ 4960341.119731693528593, 3898895.620183855295181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960083.05421301163733, 3899096.245827610604465 ], [ 4960087.446516475640237, 3899046.366369007155299 ], [ 4960122.579640128649771, 3899049.694327242206782 ], [ 4960117.899257278069854, 3899099.573363690171391 ], [ 4960083.05421301163733, 3899096.245827610604465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959825.317079536616802, 3899070.749720003455877 ], [ 4959864.196490452624857, 3899072.62619763193652 ], [ 4959863.598489554598927, 3899087.918796867597848 ], [ 4959874.253991656005383, 3899088.662366863805801 ], [ 4959873.362738206982613, 3899107.595844286493957 ], [ 4959860.115111968480051, 3899106.848550929687917 ], [ 4959859.22229987103492, 3899126.874416676349938 ], [ 4959809.687477947212756, 3899124.254397538956255 ], [ 4959811.458402264863253, 3899094.398281012661755 ], [ 4959823.841991712339222, 3899095.144310339353979 ], [ 4959825.317079536616802, 3899070.749720003455877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959399.974080450832844, 3907551.115006713662297 ], [ 4959439.733488622121513, 3907532.964896267745644 ], [ 4959443.752524613402784, 3907541.345640745479614 ], [ 4959456.717917682603002, 3907535.173832564149052 ], [ 4959473.079358060844243, 3907570.51788959139958 ], [ 4959462.995288330130279, 3907575.237260247115046 ], [ 4959467.588604539632797, 3907584.711220757104456 ], [ 4959451.74244259763509, 3907591.971323462668806 ], [ 4959447.436010566540062, 3907583.22603711951524 ], [ 4959420.641509995795786, 3907595.568442008923739 ], [ 4959399.974080450832844, 3907551.115006713662297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958945.969171239994466, 3907103.320427468512207 ], [ 4958923.202874404378235, 3907117.489635163452476 ], [ 4958914.009569543413818, 3907102.911478550639004 ], [ 4958885.480123263783753, 3907120.349825981073081 ], [ 4958862.784722862765193, 3907083.904875821899623 ], [ 4958914.368445633910596, 3907052.29767400957644 ], [ 4958945.969171239994466, 3907103.320427468512207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958551.128385777585208, 3905093.491880100220442 ], [ 4958542.769736611284316, 3905099.30637886794284 ], [ 4958526.388385412283242, 3905076.343380713835359 ], [ 4958556.364574061706662, 3905055.26536720758304 ], [ 4958579.930514952167869, 3905088.434038266073912 ], [ 4958558.025041898712516, 3905103.697129544336349 ], [ 4958551.128385777585208, 3905093.491880100220442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958112.836674069985747, 3899026.83571155089885 ], [ 4958150.828722239471972, 3899045.822599682956934 ], [ 4958131.478735527954996, 3899084.393813090398908 ], [ 4958093.199212380684912, 3899065.042427838314325 ], [ 4958112.836674069985747, 3899026.83571155089885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958080.174801633693278, 3901843.702340975403786 ], [ 4958052.527215762063861, 3901844.392727653495967 ], [ 4958051.720601411536336, 3901802.516612548846751 ], [ 4958079.080244592390954, 3901801.825830409768969 ], [ 4958080.174801633693278, 3901843.702340975403786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957989.610315883532166, 3904892.810257866512984 ], [ 4958002.604539019986987, 3904866.246448983903974 ], [ 4958073.106098474003375, 3904900.571298202499747 ], [ 4958058.090171097777784, 3904931.501878887880594 ], [ 4958011.185343074612319, 3904908.497405741829425 ], [ 4958013.20649001840502, 3904904.494727467186749 ], [ 4957989.610315883532166, 3904892.810257866512984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957396.487383865751326, 3899280.753747181035578 ], [ 4957359.619793582707644, 3899282.160711091943085 ], [ 4957357.954331466928124, 3899235.549839667975903 ], [ 4957395.109509167261422, 3899234.507390115875751 ], [ 4957396.487383865751326, 3899280.753747181035578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957220.446441215462983, 3897176.940144052263349 ], [ 4957224.867848600260913, 3897101.571256467141211 ], [ 4957254.245581152848899, 3897103.067108191084117 ], [ 4957249.535568669438362, 3897178.799734094645828 ], [ 4957220.446441215462983, 3897176.940144052263349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956650.239061528816819, 3898847.9024593164213 ], [ 4956570.157783389091492, 3898857.264482925180346 ], [ 4956566.455661606043577, 3898825.21619166014716 ], [ 4956646.249016151763499, 3898815.853777914773673 ], [ 4956650.239061528816819, 3898847.9024593164213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956627.962039508856833, 3905267.858927345369011 ], [ 4956653.901881035417318, 3905249.322396489791572 ], [ 4956669.709787698462605, 3905271.555235216394067 ], [ 4956677.2031712802127, 3905266.467275578528643 ], [ 4956694.448388990014791, 3905290.522680437192321 ], [ 4956661.303137172013521, 3905314.147514264564961 ], [ 4956627.962039508856833, 3905267.858927345369011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956428.607846710830927, 3898959.035208472516388 ], [ 4956497.689715318381786, 3898991.169142013881356 ], [ 4956483.82629020512104, 3899020.645485694985837 ], [ 4956414.744480925612152, 3898988.511587224435061 ], [ 4956428.607846710830927, 3898959.035208472516388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956290.273669655434787, 3906092.902236164547503 ], [ 4956312.405120300129056, 3906123.51814650464803 ], [ 4956268.020213551819324, 3906155.867966982536018 ], [ 4956250.200241741724312, 3906131.083811276126653 ], [ 4956273.545161469839513, 3906114.364182249642909 ], [ 4956268.945721624419093, 3906108.532084627076983 ], [ 4956290.273669655434787, 3906092.902236164547503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956237.858524139970541, 3905216.005663701333106 ], [ 4956253.137379316613078, 3905202.552705481182784 ], [ 4956239.336200097575784, 3905186.877088369801641 ], [ 4956253.461851109750569, 3905174.515022726263851 ], [ 4956288.252476067282259, 3905213.886537690181285 ], [ 4956258.847977419383824, 3905239.701531816739589 ], [ 4956237.858524139970541, 3905216.005663701333106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956133.598910879343748, 3896801.182643652427942 ], [ 4956160.374273112975061, 3896810.684768836479634 ], [ 4956152.569791410118341, 3896831.794139412231743 ], [ 4956170.41969483345747, 3896838.371651808265597 ], [ 4956160.30191832780838, 3896866.396474189125001 ], [ 4956115.964750312268734, 3896850.317234417889267 ], [ 4956133.598910879343748, 3896801.182643652427942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956088.478987214155495, 3897166.710082891397178 ], [ 4956100.902750727720559, 3897137.231700534000993 ], [ 4956165.675789105705917, 3897164.261340491008013 ], [ 4956153.251966930925846, 3897193.739693379960954 ], [ 4956088.478987214155495, 3897166.710082891397178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956085.503424524329603, 3895239.734132958110422 ], [ 4956148.232993386685848, 3895291.157694542314857 ], [ 4956129.768147709779441, 3895313.709732362534851 ], [ 4956067.038596316240728, 3895262.286213194485754 ], [ 4956085.503424524329603, 3895239.734132958110422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956002.750206145457923, 3905770.636680462397635 ], [ 4956030.133089979179204, 3905748.824227021541446 ], [ 4956075.267537020146847, 3905804.958913928363472 ], [ 4956050.7674008179456, 3905824.226135733071715 ], [ 4956035.530952249653637, 3905805.271575939375907 ], [ 4956032.648695755749941, 3905807.452633185777813 ], [ 4956002.750206145457923, 3905770.636680462397635 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955687.854129775427282, 3893768.141022244933993 ], [ 4955663.068299239501357, 3893777.212501264642924 ], [ 4955653.59501713514328, 3893751.347235766239464 ], [ 4955678.380868288688362, 3893742.27574814716354 ], [ 4955687.854129775427282, 3893768.141022244933993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954984.086422812193632, 3900659.12717574601993 ], [ 4955025.302167324349284, 3900633.689824427012354 ], [ 4955064.103593708947301, 3900696.004881339613348 ], [ 4955027.787981001660228, 3900718.17115991609171 ], [ 4955012.841851263307035, 3900694.48391517996788 ], [ 4954997.278092500753701, 3900703.931753962766379 ], [ 4954986.643667086027563, 3900686.804282370954752 ], [ 4954997.307811717502773, 3900680.263326656073332 ], [ 4954984.086422812193632, 3900659.12717574601993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954888.314668368548155, 3894339.539147418458015 ], [ 4954867.835136984474957, 3894360.997131461277604 ], [ 4954845.392877591773868, 3894339.485473748762161 ], [ 4954865.872407388873398, 3894318.027472876943648 ], [ 4954888.314668368548155, 3894339.539147418458015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992610.411980814300478, 3912330.312322944868356 ], [ 4992630.579533338546753, 3912324.175626491196454 ], [ 4992638.28630636446178, 3912348.957203992642462 ], [ 4992618.405675951391459, 3912355.458790765609592 ], [ 4992610.411980814300478, 3912330.312322944868356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991863.183474401012063, 3910322.690246278420091 ], [ 4991876.206686154939234, 3910296.871011998970062 ], [ 4991887.708114315755665, 3910302.363248727284372 ], [ 4991898.704604694619775, 3910280.908296871930361 ], [ 4991967.708324626088142, 3910315.682502848096192 ], [ 4991955.553507995791733, 3910339.683311962056905 ], [ 4991949.228458136320114, 3910336.389467000495642 ], [ 4991937.362519389018416, 3910360.026911423541605 ], [ 4991863.183474401012063, 3910322.690246278420091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990304.939709548838437, 3909148.316037288401276 ], [ 4990286.999653308652341, 3909183.226703345309943 ], [ 4990259.10918312240392, 3909168.95386591553688 ], [ 4990266.053554257377982, 3909155.498781843110919 ], [ 4990251.102031036280096, 3909147.81358669186011 ], [ 4990262.097680442035198, 3909126.357980374246836 ], [ 4990304.939709548838437, 3909148.316037288401276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990109.951023653149605, 3908727.97029872238636 ], [ 4990120.917795957997441, 3908717.802685995120555 ], [ 4990110.867952274158597, 3908707.217073271051049 ], [ 4990128.472575068473816, 3908690.876217417884618 ], [ 4990160.919769232161343, 3908724.823776887264103 ], [ 4990132.347443958744407, 3908751.69634606782347 ], [ 4990109.951023653149605, 3908727.97029872238636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953262.270442110486329, 3893055.092427754309028 ], [ 4953325.615777187980711, 3893082.113444039132446 ], [ 4953312.615735251456499, 3893112.684735647868365 ], [ 4953249.270459251478314, 3893085.663749509956688 ], [ 4953262.270442110486329, 3893055.092427754309028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989092.243396767415106, 3907219.328479618765414 ], [ 4989097.513442305848002, 3907184.749196127988398 ], [ 4989107.298398639075458, 3907186.594567909836769 ], [ 4989111.686291838996112, 3907159.29571039788425 ], [ 4989146.511819072067738, 3907164.845674817450345 ], [ 4989140.949178612791002, 3907201.244871800299734 ], [ 4989149.871262533590198, 3907202.723946425598115 ], [ 4989146.064713160507381, 3907227.839472264517099 ], [ 4989092.243396767415106, 3907219.328479618765414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989013.172427956014872, 3908660.002007906790823 ], [ 4989037.058121145702899, 3908664.431853387504816 ], [ 4989028.592928321100771, 3908710.291237867437303 ], [ 4988982.835159777663648, 3908702.164924595039338 ], [ 4988990.132103079929948, 3908662.856972047593445 ], [ 4989012.003330559469759, 3908666.917583632282913 ], [ 4989013.172427956014872, 3908660.002007906790823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988776.488130510784686, 3913363.645231445319951 ], [ 4988739.902230641804636, 3913374.477308980189264 ], [ 4988731.05352130625397, 3913344.596098960842937 ], [ 4988767.638543028384447, 3913334.128141187131405 ], [ 4988776.488130510784686, 3913363.645231445319951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988464.233690919354558, 3896294.175312301609665 ], [ 4988482.155306497588754, 3896269.095153166446835 ], [ 4988526.147822584956884, 3896300.520409044809639 ], [ 4988508.226186688058078, 3896325.600539321545511 ], [ 4988464.233690919354558, 3896294.175312301609665 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952628.649306538514793, 3891688.499800404533744 ], [ 4952638.119002567604184, 3891720.554140692576766 ], [ 4952583.651031169109046, 3891736.14812068361789 ], [ 4952574.468945456668735, 3891704.458262712694705 ], [ 4952628.649306538514793, 3891688.499800404533744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952397.396784529089928, 3893105.054483334999532 ], [ 4952400.894236141815782, 3893070.102195552084595 ], [ 4952475.78597563225776, 3893077.835777366533875 ], [ 4952471.12300315592438, 3893124.074687149375677 ], [ 4952443.470824646763504, 3893121.129559693392366 ], [ 4952444.636237625963986, 3893109.8429269134067 ], [ 4952397.396784529089928, 3893105.054483334999532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951857.153555472381413, 3890910.560952687636018 ], [ 4951886.833502160385251, 3890905.861091679893434 ], [ 4951897.134631354361773, 3890967.774605380836874 ], [ 4951867.454336520284414, 3890972.838582795578986 ], [ 4951857.153555472381413, 3890910.560952687636018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988215.412411856465042, 3896158.097905586007982 ], [ 4988261.781499429605901, 3896160.762370143085718 ], [ 4988257.877145833335817, 3896224.839531210251153 ], [ 4988211.796213985420763, 3896222.175790820736438 ], [ 4988215.412411856465042, 3896158.097905586007982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988116.151303002610803, 3913007.691241940483451 ], [ 4988139.480208702385426, 3913003.015579442493618 ], [ 4988147.728569567203522, 3913043.090838197153062 ], [ 4988124.398790721781552, 3913048.130625213496387 ], [ 4988116.151303002610803, 3913007.691241940483451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987792.52743078302592, 3908731.598450947087258 ], [ 4987796.179192136973143, 3908768.384911223314703 ], [ 4987763.349214465357363, 3908771.580815055407584 ], [ 4987759.697408630512655, 3908734.794359179213643 ], [ 4987792.52743078302592, 3908731.598450947087258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987400.06317139044404, 3906992.988477862905711 ], [ 4987388.135247065685689, 3907042.845258528366685 ], [ 4987392.739431427791715, 3907043.9489889992401 ], [ 4987386.046247815713286, 3907072.698976624757051 ], [ 4987341.443185120820999, 3907062.029389939736575 ], [ 4987350.463050900958478, 3907023.817671881522983 ], [ 4987339.240953979082406, 3907020.877008391544223 ], [ 4987345.641691505908966, 3906993.946952868718654 ], [ 4987360.318064039573073, 3906997.260249936021864 ], [ 4987363.228722451254725, 3906984.522776617668569 ], [ 4987400.06317139044404, 3906992.988477862905711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987342.544606846757233, 3895254.351858087815344 ], [ 4987373.944492009468377, 3895253.700817515142262 ], [ 4987374.73073444981128, 3895285.382048649713397 ], [ 4987387.982186735607684, 3895285.050518419593573 ], [ 4987388.512607988901436, 3895303.622446182183921 ], [ 4987375.837275600060821, 3895303.955393309239298 ], [ 4987376.102938164025545, 3895313.059293319936842 ], [ 4987343.838956457562745, 3895313.708206669427454 ], [ 4987342.544606846757233, 3895254.351858087815344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987165.03084865771234, 3913831.56044850545004 ], [ 4987189.538901535794139, 3913815.234567158855498 ], [ 4987212.197346762754023, 3913848.790520221926272 ], [ 4987187.689310569316149, 3913865.116381249390543 ], [ 4987165.03084865771234, 3913831.56044850545004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986870.41560160368681, 3905871.61889122100547 ], [ 4986889.708614178933203, 3905871.301880176644772 ], [ 4986889.443798396736383, 3905861.833797273226082 ], [ 4986917.663027834147215, 3905861.538612213917077 ], [ 4986918.435198014602065, 3905899.046111622359604 ], [ 4986915.843721439130604, 3905899.039778633974493 ], [ 4986916.342188858427107, 3905930.720495247282088 ], [ 4986871.421535867266357, 3905931.339022354688495 ], [ 4986870.41560160368681, 3905871.61889122100547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986483.068752804771066, 3908387.923219801858068 ], [ 4986534.628572063520551, 3908378.58099818835035 ], [ 4986541.731775024905801, 3908417.560458375606686 ], [ 4986490.172027996741235, 3908426.902666588779539 ], [ 4986483.068752804771066, 3908387.923219801858068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986471.167690359055996, 3899410.227103691548109 ], [ 4986512.698798115365207, 3899386.659418305382133 ], [ 4986524.457753237336874, 3899407.079293325077742 ], [ 4986531.668651363812387, 3899402.727237879764289 ], [ 4986545.7219442659989, 3899427.158133092336357 ], [ 4986487.752150783315301, 3899459.789130912628025 ], [ 4986480.008555389940739, 3899446.297499763779342 ], [ 4986488.948385837487876, 3899441.58549811784178 ], [ 4986471.167690359055996, 3899410.227103691548109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951053.903810351155698, 3893266.661088527645916 ], [ 4951066.218437748961151, 3893332.21788574475795 ], [ 4951024.438875765539706, 3893339.818281423766166 ], [ 4951011.83566979598254, 3893274.625312257092446 ], [ 4951053.903810351155698, 3893266.661088527645916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985735.757250652648509, 3909177.379768856335431 ], [ 4985723.084112610667944, 3909179.534152172040194 ], [ 4985725.35940417367965, 3909191.191863745916635 ], [ 4985708.652961143292487, 3909194.428973973263055 ], [ 4985706.378536166623235, 3909182.407133019994944 ], [ 4985695.432842688634992, 3909184.565673583652824 ], [ 4985690.034229761920869, 3909154.693830620963126 ], [ 4985730.071647894568741, 3909147.14309622021392 ], [ 4985735.757250652648509, 3909177.379768856335431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985587.764830303378403, 3898475.559528911951929 ], [ 4985604.742399457842112, 3898482.154521265532821 ], [ 4985610.830082877539098, 3898465.78322565741837 ], [ 4985632.125357369892299, 3898473.480965805705637 ], [ 4985626.036790572106838, 3898490.216385069303215 ], [ 4985634.382428507320583, 3898493.149418653454632 ], [ 4985623.65587760694325, 3898522.254166166298091 ], [ 4985576.750301914289594, 3898504.663605422247201 ], [ 4985587.764830303378403, 3898475.559528911951929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985356.276086051948369, 3904719.491712463088334 ], [ 4985394.892408020794392, 3904706.839247928932309 ], [ 4985410.332413507625461, 3904752.756721572484821 ], [ 4985415.519065625034273, 3904751.312578273005784 ], [ 4985424.383033741265535, 3904777.551239124499261 ], [ 4985399.311055229045451, 3904785.86640874389559 ], [ 4985396.166163065470755, 3904776.391472983174026 ], [ 4985377.43438920006156, 3904782.537007095757872 ], [ 4985356.276086051948369, 3904719.491712463088334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985288.927355566993356, 3908934.162721395958215 ], [ 4985288.347197530791163, 3908935.982002581004053 ], [ 4985264.463738991878927, 3908930.463096786756068 ], [ 4985271.44644617754966, 3908899.892580130137503 ], [ 4985318.638454216532409, 3908910.56492138793692 ], [ 4985311.947946260683239, 3908939.315458823461086 ], [ 4985288.927355566993356, 3908934.162721395958215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984877.870356515981257, 3915950.040184141136706 ], [ 4984900.062922011129558, 3915937.712193363811821 ], [ 4984910.668777515180409, 3915956.308180666528642 ], [ 4984919.026322850957513, 3915951.958376646973193 ], [ 4984943.962551061064005, 3915996.441890460904688 ], [ 4984913.411622545681894, 3916013.48378111794591 ], [ 4984877.870356515981257, 3915950.040184141136706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984772.013983420096338, 3907398.845000628847629 ], [ 4984726.517410451546311, 3907400.558143887668848 ], [ 4984725.694922993890941, 3907383.077844361308962 ], [ 4984736.924894998781383, 3907382.740243433509022 ], [ 4984734.739351993426681, 3907332.848938073031604 ], [ 4984759.791537548415363, 3907331.815742910839617 ], [ 4984760.887299293652177, 3907355.486940025817603 ], [ 4984770.101799634285271, 3907355.144589126575738 ], [ 4984772.013983420096338, 3907398.845000628847629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950163.857672319747508, 3892357.552743840031326 ], [ 4950150.562223867513239, 3892397.95669599622488 ], [ 4950105.924447067081928, 3892383.343613808043301 ], [ 4950118.931748489849269, 3892342.939330562949181 ], [ 4950163.857672319747508, 3892357.552743840031326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984633.095376556739211, 3909409.985715850256383 ], [ 4984676.881746587343514, 3909399.529193742200732 ], [ 4984684.582087896764278, 3909430.498668098356575 ], [ 4984640.794906135648489, 3909441.319308712612838 ], [ 4984633.095376556739211, 3909409.985715850256383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984572.913221823051572, 3910513.530938160605729 ], [ 4984604.791516000404954, 3910302.408891755156219 ], [ 4984673.286375744268298, 3910312.766223730519414 ], [ 4984641.407555039040744, 3910523.888190202880651 ], [ 4984572.913221823051572, 3910513.530938160605729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984410.89780281484127, 3909504.501134371384978 ], [ 4984368.848536585457623, 3909510.95670900400728 ], [ 4984364.024323643185198, 3909481.086479133926332 ], [ 4984406.361538938246667, 3909474.631573831196874 ], [ 4984410.89780281484127, 3909504.501134371384978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984380.291940050199628, 3909296.873467506375164 ], [ 4984370.08179990388453, 3909353.654203901998699 ], [ 4984339.864618947729468, 3909348.121239135041833 ], [ 4984349.786791763268411, 3909291.339815292041749 ], [ 4984380.291940050199628, 3909296.873467506375164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984377.547171771526337, 3908994.636784948874265 ], [ 4984404.043328439816833, 3908991.057723910082132 ], [ 4984407.726225299760699, 3909016.555675517767668 ], [ 4984381.229237667284906, 3909020.498863742686808 ], [ 4984377.547171771526337, 3908994.636784948874265 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984259.835683885030448, 3906643.156866917852312 ], [ 4984229.009690915234387, 3906650.367244085296988 ], [ 4984223.022817035205662, 3906624.863955737091601 ], [ 4984204.87273348774761, 3906629.191012596711516 ], [ 4984197.175286480225623, 3906596.401078097522259 ], [ 4984213.020209106616676, 3906592.796878978144377 ], [ 4984208.173954554833472, 3906572.029986581299454 ], [ 4984245.338009892962873, 3906563.377914981450886 ], [ 4984257.876500234939158, 3906619.119544832967222 ], [ 4984254.419583135284483, 3906619.839703497476876 ], [ 4984259.835683885030448, 3906643.156866917852312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983997.865238615311682, 3915989.117251705843955 ], [ 4983968.214964482933283, 3915990.504542109090835 ], [ 4983967.399925011210144, 3915969.746980406809598 ], [ 4983953.007378583773971, 3915970.077513793483377 ], [ 4983952.475910807959735, 3915951.141286570578814 ], [ 4983961.688303136266768, 3915950.43452410493046 ], [ 4983960.334993237629533, 3915913.653795129153877 ], [ 4983994.878539005294442, 3915912.277925616130233 ], [ 4983997.865238615311682, 3915989.117251705843955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983819.740767979994416, 3904349.18942538369447 ], [ 4983867.139368182048202, 3904398.457611861638725 ], [ 4983837.413552599027753, 3904426.790638243313879 ], [ 4983803.229661486111581, 3904391.026134671643376 ], [ 4983792.262681106105447, 3904401.560428536497056 ], [ 4983779.047967565245926, 3904388.056802512146533 ], [ 4983819.740767979994416, 3904349.18942538369447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983649.882259066216648, 3914869.686272738035768 ], [ 4983637.80627020355314, 3914863.832077882718295 ], [ 4983649.667157388292253, 3914838.370241117663682 ], [ 4983700.561729122884572, 3914861.793096860405058 ], [ 4983683.782886473461986, 3914897.803369706496596 ], [ 4983644.965199538506567, 3914879.870605780743062 ], [ 4983649.882259066216648, 3914869.686272738035768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949274.837660054676235, 3892064.58041860209778 ], [ 4949314.596372690051794, 3892062.437122642062604 ], [ 4949316.008313983678818, 3892089.748217786662281 ], [ 4949276.24964162055403, 3892091.89151169732213 ], [ 4949274.837660054676235, 3892064.58041860209778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983348.153017373755574, 3918259.44320065760985 ], [ 4983347.528569842688739, 3918280.561579768545926 ], [ 4983355.298575348220766, 3918280.943680009339005 ], [ 4983354.625288213603199, 3918323.181769744958729 ], [ 4983346.567486203275621, 3918322.799004276748747 ], [ 4983346.251054269261658, 3918335.178858970757574 ], [ 4983307.39773708768189, 3918334.724925017450005 ], [ 4983308.389047182165086, 3918279.378713116049767 ], [ 4983312.993994046002626, 3918279.389353430364281 ], [ 4983313.328922217711806, 3918258.99857434257865 ], [ 4983348.153017373755574, 3918259.44320065760985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983026.681731507182121, 3906861.685875600203872 ], [ 4983082.777579005807638, 3906758.765477230306715 ], [ 4983119.87477489002049, 3906778.878142290282995 ], [ 4983063.779664419591427, 3906881.434334144927561 ], [ 4983026.681731507182121, 3906861.685875600203872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982854.484700270928442, 3915906.725218797102571 ], [ 4982867.156105119735003, 3915903.841208389028907 ], [ 4982865.445802590809762, 3915896.554598958231509 ], [ 4982887.90944366902113, 3915891.144121853169054 ], [ 4982886.770637875422835, 3915885.679494058713317 ], [ 4982916.721343264915049, 3915878.829684982541949 ], [ 4982928.122700016014278, 3915927.649860043544322 ], [ 4982863.037050343118608, 3915942.794131728354841 ], [ 4982854.484700270928442, 3915906.725218797102571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982525.524748679250479, 3905287.487834751605988 ], [ 4982566.25804684497416, 3905355.673414194025099 ], [ 4982533.387169704772532, 3905375.261552040465176 ], [ 4982521.339041321538389, 3905355.206823073327541 ], [ 4982496.2535669663921, 3905370.079044438898563 ], [ 4982484.778814703226089, 3905351.118034539278597 ], [ 4982506.115997624583542, 3905338.422049246262759 ], [ 4982488.905512789264321, 3905309.252270561177284 ], [ 4982525.524748679250479, 3905287.487834751605988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982391.707355918362737, 3906897.739144689403474 ], [ 4982377.249499909579754, 3906924.652036740910262 ], [ 4982305.066558618098497, 3906885.889906077645719 ], [ 4982319.524362923577428, 3906858.976975823286921 ], [ 4982391.707355918362737, 3906897.739144689403474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982224.984321841970086, 3895223.686167939566076 ], [ 4982278.916970973834395, 3895194.678180906921625 ], [ 4982295.268389309756458, 3895224.573941546026617 ], [ 4982241.335782293230295, 3895253.581896290183067 ], [ 4982224.984321841970086, 3895223.686167939566076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981712.693547224625945, 3905136.716711016837507 ], [ 4981731.139558535069227, 3905129.111453000456095 ], [ 4981736.009301899932325, 3905140.410500598605722 ], [ 4981750.420737309381366, 3905134.252701998222619 ], [ 4981744.979197253473103, 3905121.131705427542329 ], [ 4981766.019240840338171, 3905112.439915785100311 ], [ 4981770.601022458635271, 3905123.73832107661292 ], [ 4981790.487630649469793, 3905115.77221649652347 ], [ 4981810.821311761625111, 3905164.975832014810294 ], [ 4981773.929303403012455, 3905180.186251689679921 ], [ 4981775.36166974157095, 3905183.466664442792535 ], [ 4981738.181757554411888, 3905198.676484803669155 ], [ 4981712.693547224625945, 3905136.716711016837507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981592.975367926992476, 3895356.623888452071697 ], [ 4981615.433830960653722, 3895361.043867930304259 ], [ 4981617.18260220810771, 3895351.944552762433887 ], [ 4981663.250921616330743, 3895361.151288225781173 ], [ 4981656.547110918909311, 3895396.09267391404137 ], [ 4981646.757352266460657, 3895394.250028381124139 ], [ 4981642.970105957239866, 3895413.176264045760036 ], [ 4981611.873333964496851, 3895407.280344114638865 ], [ 4981615.663012248463929, 3895387.261720533948392 ], [ 4981588.021224261261523, 3895382.101846483070403 ], [ 4981592.975367926992476, 3895356.623888452071697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981526.012928497046232, 3916083.229506195988506 ], [ 4981483.978737390600145, 3916087.868960526771843 ], [ 4981480.026646472513676, 3916053.267339277546853 ], [ 4981521.773874968290329, 3916048.263100546784699 ], [ 4981526.012928497046232, 3916083.229506195988506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981429.189726759679615, 3901607.282620314974338 ], [ 4981420.923679834231734, 3901569.030353509820998 ], [ 4981462.990358191542327, 3901560.021292642690241 ], [ 4981474.390760717913508, 3901613.209968536160886 ], [ 4981450.764344711787999, 3901618.254869851283729 ], [ 4981447.62991957180202, 3901603.31847620755434 ], [ 4981429.189726759679615, 3901607.282620314974338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981346.652772212401032, 3903873.451070606708527 ], [ 4981376.928050960414112, 3903856.040478551294655 ], [ 4981398.730163653381169, 3903893.230685203336179 ], [ 4981391.521301295608282, 3903897.584129528142512 ], [ 4981401.274561013095081, 3903914.35601004306227 ], [ 4981378.207367092370987, 3903927.777255098335445 ], [ 4981346.652772212401032, 3903873.451070606708527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981296.337004084140062, 3904353.992295926902443 ], [ 4981128.326627243310213, 3904412.242601720616221 ], [ 4981106.866865001618862, 3904350.656545242294669 ], [ 4981248.07624947745353, 3904301.813677965197712 ], [ 4981244.641878301277757, 3904292.338587994221598 ], [ 4981271.731175674125552, 3904282.931657298468053 ], [ 4981296.337004084140062, 3904353.992295926902443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981289.256111945956945, 3907265.211558736860752 ], [ 4981321.553616779856384, 3907243.071675478946418 ], [ 4981340.49656770657748, 3907270.059821639209986 ], [ 4981308.198265668936074, 3907292.563812973443419 ], [ 4981289.256111945956945, 3907265.211558736860752 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981195.908956465311348, 3907807.560345210134983 ], [ 4981140.516043774783611, 3907857.687093066517264 ], [ 4981120.698186696507037, 3907835.794981953222305 ], [ 4981176.091107271611691, 3907785.668193924706429 ], [ 4981195.908956465311348, 3907807.560345210134983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948014.360106659121811, 3897644.299048922490329 ], [ 4947976.045922254212201, 3897650.451126858592033 ], [ 4947956.002831042744219, 3897530.632618380710483 ], [ 4947994.317181563004851, 3897524.480512324720621 ], [ 4948014.360106659121811, 3897644.299048922490329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981107.138585187494755, 3906943.27646507229656 ], [ 4981081.187529529444873, 3906959.968749838415533 ], [ 4981055.937177360989153, 3906920.586258159484714 ], [ 4981081.888255205005407, 3906903.893949403893203 ], [ 4981107.138585187494755, 3906943.27646507229656 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981107.260089703835547, 3903656.986798208206892 ], [ 4981161.335976762697101, 3903684.78129312582314 ], [ 4981144.273779539391398, 3903717.150963248685002 ], [ 4981090.485905710607767, 3903689.357143334578723 ], [ 4981107.260089703835547, 3903656.986798208206892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981001.987859779968858, 3906061.842716396786273 ], [ 4980992.562745947390795, 3906027.22921873209998 ], [ 4981065.168324393220246, 3906007.363480774220079 ], [ 4981074.88129214849323, 3906041.977644535712898 ], [ 4981001.987859779968858, 3906061.842716396786273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980920.469875585287809, 3894919.62366011319682 ], [ 4980916.481493759900331, 3894899.587680848781019 ], [ 4980935.789578834548593, 3894895.989247412420809 ], [ 4980939.778755342587829, 3894915.661101725883782 ], [ 4980920.469875585287809, 3894919.62366011319682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980854.319232992827892, 3899809.015895615331829 ], [ 4980883.733928874135017, 3899791.967003545723855 ], [ 4980910.129565632902086, 3899837.54191074706614 ], [ 4980881.002909305505455, 3899854.591413378715515 ], [ 4980854.319232992827892, 3899809.015895615331829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980801.991511899977922, 3906526.031247358769178 ], [ 4980768.554742637090385, 3906542.343108916189522 ], [ 4980756.229986778460443, 3906516.826564371120185 ], [ 4980789.666780211962759, 3906500.514687730930746 ], [ 4980801.991511899977922, 3906526.031247358769178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980728.157892764545977, 3904759.827932083979249 ], [ 4980746.5047194538638, 3904797.00998213654384 ], [ 4980722.866731845773757, 3904808.609872165601701 ], [ 4980704.231926553882658, 3904771.427200901322067 ], [ 4980728.157892764545977, 3904759.827932083979249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980613.734776533208787, 3902851.889975965488702 ], [ 4980577.157996453344822, 3902853.629861169494689 ], [ 4980574.680367452092469, 3902801.917749284300953 ], [ 4980581.592572070658207, 3902801.568877508863807 ], [ 4980580.48970921523869, 3902779.354434818029404 ], [ 4980610.154379331506789, 3902777.963416873477399 ], [ 4980613.734776533208787, 3902851.889975965488702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980568.125139739364386, 3915290.197623997461051 ], [ 4980571.758559641428292, 3915209.003745546098799 ], [ 4980595.071354703977704, 3915210.147641881369054 ], [ 4980591.438668890856206, 3915290.977384908124804 ], [ 4980568.125139739364386, 3915290.197623997461051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980583.162240747362375, 3906264.100325431674719 ], [ 4980577.146094309166074, 3906250.250024151057005 ], [ 4980604.238816143013537, 3906238.293497379869223 ], [ 4980617.991467215120792, 3906269.275102732237428 ], [ 4980582.252597794868052, 3906284.853843756020069 ], [ 4980574.516063678078353, 3906267.722555773798376 ], [ 4980583.162240747362375, 3906264.100325431674719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980463.270770171657205, 3903177.091432699933648 ], [ 4980475.126532453112304, 3903154.905545242596418 ], [ 4980497.849769171327353, 3903166.971967377699912 ], [ 4980485.993993386626244, 3903189.15784496627748 ], [ 4980463.270770171657205, 3903177.091432699933648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980451.041071495972574, 3901800.284397756215185 ], [ 4980465.079364812001586, 3901833.451251415535808 ], [ 4980401.376084801740944, 3901859.892535117454827 ], [ 4980392.4942208500579, 3901839.117517302278429 ], [ 4980409.789372616447508, 3901831.872961881570518 ], [ 4980404.344899669289589, 3901819.480521650519222 ], [ 4980451.041071495972574, 3901800.284397756215185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947570.766623253002763, 3899141.890244038775563 ], [ 4947600.439230580814183, 3899134.636722407303751 ], [ 4947606.463965168222785, 3899158.675194893963635 ], [ 4947576.791382733732462, 3899165.928709974046797 ], [ 4947570.766623253002763, 3899141.890244038775563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980387.740181157365441, 3898895.110031366348267 ], [ 4980391.181160941720009, 3898902.036080428399146 ], [ 4980407.903768011368811, 3898894.062011864501983 ], [ 4980420.518796233460307, 3898920.307170364074409 ], [ 4980372.36955988034606, 3898943.141432888340205 ], [ 4980356.313509548082948, 3898909.970251528546214 ], [ 4980387.740181157365441, 3898895.110031366348267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980345.531655389815569, 3907479.049874536693096 ], [ 4980331.951144625432789, 3907500.867948683444411 ], [ 4980310.385607201606035, 3907487.711774759925902 ], [ 4980323.678982527926564, 3907465.528926328290254 ], [ 4980345.531655389815569, 3907479.049874536693096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980108.871791076846421, 3909574.841467815916985 ], [ 4980118.415655053220689, 3909555.199207353871316 ], [ 4980145.450568445958197, 3909568.003103326074779 ], [ 4980135.905891114845872, 3909588.009485375601798 ], [ 4980108.871791076846421, 3909574.841467815916985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980066.512238657101989, 3909197.507190009113401 ], [ 4980033.903916677460074, 3909231.664300276897848 ], [ 4980058.612038008868694, 3909255.386995966080576 ], [ 4979979.83384895324707, 3909337.508673890028149 ], [ 4979917.200160479173064, 3909278.018204536288977 ], [ 4980028.874555084854364, 3909161.73982031783089 ], [ 4980066.512238657101989, 3909197.507190009113401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980044.992209208197892, 3906400.923433496616781 ], [ 4980053.289774137549102, 3906424.97430680738762 ], [ 4980018.711148495785892, 3906436.915016072802246 ], [ 4980010.414352647960186, 3906412.500022936146706 ], [ 4980044.992209208197892, 3906400.923433496616781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979967.325102689675987, 3902807.866507658734918 ], [ 4979974.508563237264752, 3902815.164828956127167 ], [ 4979955.462449478916824, 3902833.329780235886574 ], [ 4979930.465102054178715, 3902807.421866642311215 ], [ 4979943.451014540158212, 3902795.069761905353516 ], [ 4979936.555515367537737, 3902787.772077854722738 ], [ 4979968.010844119824469, 3902757.617892474401742 ], [ 4979992.720226734876633, 3902783.525210732594132 ], [ 4979967.325102689675987, 3902807.866507658734918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979910.434528129175305, 3899054.281480586156249 ], [ 4979924.769311306066811, 3899084.535596310626715 ], [ 4979899.974607100710273, 3899096.133655089419335 ], [ 4979885.639802286401391, 3899065.879552383907139 ], [ 4979910.434528129175305, 3899054.281480586156249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979864.241344021633267, 3908346.815560827031732 ], [ 4979893.864067168906331, 3908361.809631613548845 ], [ 4979879.406318933703005, 3908390.180415059439838 ], [ 4979850.071534408256412, 3908375.186987885273993 ], [ 4979864.241344021633267, 3908346.815560827031732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979761.493745257146657, 3904097.535123868379742 ], [ 4979781.129033857025206, 3904072.816938942298293 ], [ 4979804.126276244409382, 3904091.073615221772343 ], [ 4979784.779733818024397, 3904115.428281028755009 ], [ 4979761.493745257146657, 3904097.535123868379742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979700.176999034360051, 3899586.546329839620739 ], [ 4979700.696003042161465, 3899612.764858191367239 ], [ 4979675.925628424622118, 3899613.439262340776622 ], [ 4979675.407391801476479, 3899586.856605627108365 ], [ 4979700.176999034360051, 3899586.546329839620739 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979617.31330293789506, 3904586.978572700172663 ], [ 4979634.199063919484615, 3904634.71650045691058 ], [ 4979583.768138910643756, 3904652.449430706910789 ], [ 4979572.605850930325687, 3904621.10987987741828 ], [ 4979599.982183976098895, 3904611.701887044124305 ], [ 4979593.97148216329515, 3904594.938780410215259 ], [ 4979617.31330293789506, 3904586.978572700172663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947124.431471257470548, 3889773.152050835546106 ], [ 4947124.710124718025327, 3889782.983768762554973 ], [ 4947137.964094560593367, 3889782.268271305598319 ], [ 4947139.094464348629117, 3889805.20940937101841 ], [ 4947108.841062258929014, 3889806.636807241011411 ], [ 4947107.432007053866982, 3889773.863952675834298 ], [ 4947124.431471257470548, 3889773.152050835546106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946898.501840996555984, 3896164.11798439361155 ], [ 4946925.621654995717108, 3896118.627734702080488 ], [ 4946939.440238232724369, 3896126.651777730323374 ], [ 4946944.345035008154809, 3896118.281495930161327 ], [ 4946963.921409228816628, 3896129.588217835873365 ], [ 4946958.727865474298596, 3896138.686478197574615 ], [ 4946979.743404719047248, 3896151.086975591257215 ], [ 4946975.126997563056648, 3896159.093397964257747 ], [ 4946999.860951717942953, 3896198.807154716458172 ], [ 4946969.309633444063365, 3896218.076750296633691 ], [ 4946953.779196794144809, 3896192.936985281761736 ], [ 4946947.14300325512886, 3896204.582772703375667 ], [ 4946933.036764511838555, 3896196.194321337621659 ], [ 4946938.229940518736839, 3896187.460184487048537 ], [ 4946898.501840996555984, 3896164.11798439361155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979522.47095793299377, 3908485.534908928908408 ], [ 4979546.747390624135733, 3908443.348199088592082 ], [ 4979566.588996536098421, 3908454.67936442559585 ], [ 4979586.529409615322948, 3908420.494195501320064 ], [ 4979601.770706885494292, 3908428.902338919229805 ], [ 4979604.082723871804774, 3908424.901902572717518 ], [ 4979624.787272205576301, 3908436.599117463454604 ], [ 4979620.452731415629387, 3908443.872350772842765 ], [ 4979641.444381107576191, 3908455.934334906749427 ], [ 4979625.548961452208459, 3908483.573866547551006 ], [ 4979591.904120760038495, 3908464.565898993983865 ], [ 4979585.835783054120839, 3908474.748433422762901 ], [ 4979567.432191236875951, 3908464.148639836814255 ], [ 4979547.20155047532171, 3908499.425591578241438 ], [ 4979522.47095793299377, 3908485.534908928908408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979470.186441623605788, 3906970.266881564632058 ], [ 4979441.938511025160551, 3906984.40684568323195 ], [ 4979405.525840321555734, 3906912.958107518497854 ], [ 4979433.773826623335481, 3906898.818105735816061 ], [ 4979470.186441623605788, 3906970.266881564632058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979335.641428117640316, 3914464.561471483204514 ], [ 4979372.847357767634094, 3914430.777498465497047 ], [ 4979396.108856559731066, 3914455.953076616860926 ], [ 4979359.189994417130947, 3914490.101772808004171 ], [ 4979335.641428117640316, 3914464.561471483204514 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979345.292188011109829, 3900544.897021161392331 ], [ 4979372.077689904719591, 3900544.22667152248323 ], [ 4979372.849554531276226, 3900586.831638785079122 ], [ 4979346.064095073379576, 3900587.501987665891647 ], [ 4979345.292188011109829, 3900544.897021161392331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979293.379172212444246, 3892708.345344036817551 ], [ 4979369.248958071693778, 3892660.444218845572323 ], [ 4979409.157892554067075, 3892722.796593047212809 ], [ 4979333.288210829719901, 3892770.697607352863997 ], [ 4979293.379172212444246, 3892708.345344036817551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946667.863732606172562, 3889368.534789768978953 ], [ 4946704.165689556859434, 3889369.661514775361866 ], [ 4946702.981846189126372, 3889402.796013123821467 ], [ 4946666.679933929815888, 3889401.669289702083915 ], [ 4946667.863732606172562, 3889368.534789768978953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979178.320216682739556, 3900112.313484573736787 ], [ 4979199.021164721809328, 3900128.743988853879273 ], [ 4979182.561002487316728, 3900149.099820985458791 ], [ 4979161.860060149803758, 3900132.669329190161079 ], [ 4979178.320216682739556, 3900112.313484573736787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979090.522941509261727, 3908520.286560265813023 ], [ 4979081.263460291549563, 3908541.750447089318186 ], [ 4979031.212708056904376, 3908520.158947345335037 ], [ 4979040.760070603340864, 3908498.695662822574377 ], [ 4979090.522941509261727, 3908520.286560265813023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979077.247261251322925, 3908401.186657953076065 ], [ 4979123.850280010141432, 3908419.493622581474483 ], [ 4979112.559652162715793, 3908448.235772392246872 ], [ 4979065.957459230907261, 3908429.564696217421442 ], [ 4979077.247261251322925, 3908401.186657953076065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979062.260577122680843, 3901180.423243884462863 ], [ 4979045.254930458031595, 3901186.94102454232052 ], [ 4979048.692827452905476, 3901195.323428037576377 ], [ 4979023.905142743140459, 3901204.737534535117447 ], [ 4979004.140884970314801, 3901154.809125360567123 ], [ 4979045.647067811340094, 3901138.512461584527045 ], [ 4979062.260577122680843, 3901180.423243884462863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978976.402746348641813, 3909239.567130328156054 ], [ 4978964.226216642186046, 3909278.867300303187221 ], [ 4978883.378630652092397, 3909253.568600262980908 ], [ 4978895.842959647066891, 3909214.269011968746781 ], [ 4978976.402746348641813, 3909239.567130328156054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978884.94994486309588, 3899793.796762759797275 ], [ 4978926.462060294114053, 3899775.679283840116113 ], [ 4978941.365759937092662, 3899809.575413201004267 ], [ 4978899.853686669841409, 3899827.69286946952343 ], [ 4978884.94994486309588, 3899793.796762759797275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978847.433251775801182, 3901979.229448165278882 ], [ 4978874.00662063062191, 3901942.509176586288959 ], [ 4978904.486080495640635, 3901964.422408640850335 ], [ 4978878.200675084255636, 3902001.14326809393242 ], [ 4978847.433251775801182, 3901979.229448165278882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978764.047066957689822, 3901380.419538106303662 ], [ 4978723.996953087858856, 3901389.437133489642292 ], [ 4978711.727040903642774, 3901336.247784321196377 ], [ 4978751.778008868917823, 3901326.866041720844805 ], [ 4978764.047066957689822, 3901380.419538106303662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978698.663951942697167, 3906772.7031941851601 ], [ 4978710.118957862257957, 3906801.858256294392049 ], [ 4978698.880261139012873, 3906806.203810900449753 ], [ 4978702.030386224389076, 3906814.221452629193664 ], [ 4978677.247219174169004, 3906824.00004168972373 ], [ 4978662.641270948573947, 3906787.191486248280853 ], [ 4978698.663951942697167, 3906772.7031941851601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978681.095303337089717, 3907179.037120485678315 ], [ 4978678.692261982709169, 3907225.640906419605017 ], [ 4978650.766393641941249, 3907224.12470640707761 ], [ 4978652.570193467661738, 3907188.443603903055191 ], [ 4978657.464191936887801, 3907188.818191671278328 ], [ 4978658.063387130387127, 3907177.89550589909777 ], [ 4978681.095303337089717, 3907179.037120485678315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978566.276700197719038, 3906068.553272449877113 ], [ 4978604.318980800919235, 3906052.612638525199145 ], [ 4978621.509873692877591, 3906092.703851125668734 ], [ 4978583.466862569563091, 3906109.008591407444328 ], [ 4978566.276700197719038, 3906068.553272449877113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978425.657320147380233, 3907876.533927551005036 ], [ 4978387.02484758477658, 3907900.484483376611024 ], [ 4978366.077095889486372, 3907867.30390274617821 ], [ 4978404.422450841404498, 3907842.988574160262942 ], [ 4978425.657320147380233, 3907876.533927551005036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978381.132469282485545, 3915138.347036711405963 ], [ 4978382.514372563920915, 3915165.295892202295363 ], [ 4978338.181976801715791, 3915167.386442424263805 ], [ 4978336.799255315214396, 3915140.801721535623074 ], [ 4978381.132469282485545, 3915138.347036711405963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946366.814757537096739, 3891180.880391090177 ], [ 4946367.707971496507525, 3891149.93034115806222 ], [ 4946410.057632791809738, 3891151.062323083169758 ], [ 4946409.164370112121105, 3891182.012371622025967 ], [ 4946366.814757537096739, 3891180.880391090177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978349.502526419237256, 3902794.548897797707468 ], [ 4978364.255809009075165, 3902763.264963917899877 ], [ 4978387.270619315095246, 3902774.237821911461651 ], [ 4978372.518089855089784, 3902805.157613796647638 ], [ 4978349.502526419237256, 3902794.548897797707468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978199.082432271912694, 3895771.610041245352477 ], [ 4978209.392063727602363, 3895800.033999855164438 ], [ 4978177.393059909343719, 3895811.982495104428381 ], [ 4978181.689902145415545, 3895823.279615382198244 ], [ 4978159.20428666099906, 3895831.606985494960099 ], [ 4978144.598525850102305, 3895791.521802661940455 ], [ 4978199.082432271912694, 3895771.610041245352477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978089.230084344744682, 3908212.278457086533308 ], [ 4978120.392949079163373, 3908180.300745856016874 ], [ 4978142.23072359431535, 3908201.102523681242019 ], [ 4978111.067856835201383, 3908233.080209983047098 ], [ 4978089.230084344744682, 3908212.278457086533308 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977886.147812833078206, 3905390.918307071086019 ], [ 4977921.798752427101135, 3905416.84682681132108 ], [ 4977899.274404031224549, 3905447.386402833741158 ], [ 4977883.173947275616229, 3905435.700248391367495 ], [ 4977877.398896942846477, 3905443.334845356177539 ], [ 4977857.848435596562922, 3905429.092513586394489 ], [ 4977886.147812833078206, 3905390.918307071086019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977691.766194856725633, 3904713.224369066301733 ], [ 4977665.262909618206322, 3904718.630689877085388 ], [ 4977656.422689194791019, 3904677.465259846299887 ], [ 4977682.926013197749853, 3904672.05893045431003 ], [ 4977691.766194856725633, 3904713.224369066301733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977641.141327192075551, 3904549.622997723054141 ], [ 4977645.139856131747365, 3904565.289046903140843 ], [ 4977614.887659282423556, 3904573.236471017822623 ], [ 4977610.601921401917934, 3904557.205692335497588 ], [ 4977641.141327192075551, 3904549.622997723054141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977593.578358900733292, 3906908.005178656429052 ], [ 4977625.886224372312427, 3906879.67063969373703 ], [ 4977653.748300601728261, 3906911.772736353799701 ], [ 4977621.441208052448928, 3906939.743111850693822 ], [ 4977593.578358900733292, 3906908.005178656429052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977391.989521284587681, 3900860.452595191076398 ], [ 4977432.887213194742799, 3900859.445665577426553 ], [ 4977434.216056298464537, 3900912.61153555708006 ], [ 4977393.318445226177573, 3900913.618463177699596 ], [ 4977391.989521284587681, 3900860.452595191076398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977352.472984884865582, 3903234.868463933002204 ], [ 4977329.351009885780513, 3903275.238776671234518 ], [ 4977313.530893525108695, 3903266.46661750273779 ], [ 4977295.610682756640017, 3903298.108661096077412 ], [ 4977306.540619571693242, 3903304.321689863689244 ], [ 4977285.153421565890312, 3903341.41847899928689 ], [ 4977219.573786097578704, 3903304.140424778684974 ], [ 4977242.695571304298937, 3903263.770016868133098 ], [ 4977255.35107784345746, 3903271.079013849142939 ], [ 4977273.559988478198647, 3903239.073414551094174 ], [ 4977262.917228924110532, 3903233.225129358004779 ], [ 4977284.304481674917042, 3903196.128324964083731 ], [ 4977352.472984884865582, 3903234.868463933002204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977240.170501623302698, 3905443.091946159489453 ], [ 4977190.883854511193931, 3905465.929598478134722 ], [ 4977169.956965111196041, 3905421.097833979409188 ], [ 4977191.573454660363495, 3905411.311269031837583 ], [ 4977193.866418099962175, 3905416.41388729121536 ], [ 4977221.824582893401384, 3905403.363364255055785 ], [ 4977240.170501623302698, 3905443.091946159489453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977129.54132519941777, 3911146.631681037601084 ], [ 4977149.088756524957716, 3911160.509401659946889 ], [ 4977132.920210682787001, 3911183.052014681510627 ], [ 4977113.660672849975526, 3911169.174904236570001 ], [ 4977129.54132519941777, 3911146.631681037601084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977005.151948007754982, 3913376.689723788294941 ], [ 4976984.115378895774484, 3913387.570077745709568 ], [ 4976966.62454703822732, 3913354.397641681134701 ], [ 4977007.833397594280541, 3913332.999262891244143 ], [ 4977029.91107976809144, 3913375.284588108770549 ], [ 4977010.02670175768435, 3913385.803180668037385 ], [ 4977005.151948007754982, 3913376.689723788294941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976967.756142417900264, 3909754.943897237069905 ], [ 4976942.67483084090054, 3909771.277867987286299 ], [ 4976929.472918901592493, 3909751.223205059301108 ], [ 4976918.517608039081097, 3909758.483158252201974 ], [ 4976903.594301713630557, 3909735.511879820376635 ], [ 4976917.720299079082906, 3909726.437826314009726 ], [ 4976905.954080080613494, 3909708.20681389933452 ], [ 4976927.863987204618752, 3909694.051033370662481 ], [ 4976967.756142417900264, 3909754.943897237069905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976906.348309095017612, 3912714.126042047515512 ], [ 4976931.875800692476332, 3912758.967350130435079 ], [ 4976890.374493253417313, 3912782.185900735668838 ], [ 4976865.135577090084553, 3912736.981095534749329 ], [ 4976906.348309095017612, 3912714.126042047515512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976861.515204787254333, 3911426.458008038345724 ], [ 4976897.706201899796724, 3911466.223456581123173 ], [ 4976886.747072471305728, 3911475.668219862505794 ], [ 4976850.843200853094459, 3911436.267513195984066 ], [ 4976861.515204787254333, 3911426.458008038345724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944632.696009594015777, 3892227.64122948795557 ], [ 4944630.949429286643863, 3892248.39502115175128 ], [ 4944623.171683241613209, 3892247.660001683514565 ], [ 4944619.68170774076134, 3892285.526307181920856 ], [ 4944567.541935998946428, 3892280.74736764607951 ], [ 4944570.158730394206941, 3892253.075889375060797 ], [ 4944578.512652426026762, 3892253.811393469572067 ], [ 4944581.420393039472401, 3892222.863014885224402 ], [ 4944632.696009594015777, 3892227.64122948795557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976687.971112222410738, 3911820.819667065050453 ], [ 4976711.03521044831723, 3911804.481277400162071 ], [ 4976724.814282321371138, 3911823.444652628153563 ], [ 4976701.750191926956177, 3911839.783030659426004 ], [ 4976687.971112222410738, 3911820.819667065050453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976674.55119610670954, 3908976.186005634721369 ], [ 4976652.349176116287708, 3908992.162047738209367 ], [ 4976633.114836389198899, 3908965.176584767643362 ], [ 4976655.316116260364652, 3908949.564658029936254 ], [ 4976674.55119610670954, 3908976.186005634721369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976625.440026403404772, 3910174.445394339039922 ], [ 4976567.230298694223166, 3910200.90717692906037 ], [ 4976551.179339933209121, 3910166.281516239512712 ], [ 4976609.101980532519519, 3910139.454974981490523 ], [ 4976625.440026403404772, 3910174.445394339039922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976532.178453775122762, 3900508.37654949631542 ], [ 4976577.1356260497123, 3900494.267963342368603 ], [ 4976586.005141670815647, 3900522.68841486889869 ], [ 4976541.048761282116175, 3900536.432857290841639 ], [ 4976532.178453775122762, 3900508.37654949631542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976481.646728693507612, 3900712.549970858730376 ], [ 4976467.819860154762864, 3900713.978082655929029 ], [ 4976464.714726154692471, 3900683.384724508039653 ], [ 4976508.211367351934314, 3900679.104550573043525 ], [ 4976512.446729506365955, 3900720.260028121527284 ], [ 4976482.489020060747862, 3900723.111492241267115 ], [ 4976481.646728693507612, 3900712.549970858730376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976432.187137478962541, 3906705.686481618322432 ], [ 4976477.14213652163744, 3906687.572239350527525 ], [ 4976488.888269136659801, 3906716.362814288586378 ], [ 4976443.932562267407775, 3906734.841167725622654 ], [ 4976432.187137478962541, 3906705.686481618322432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944597.156141540035605, 3892016.780096092261374 ], [ 4944604.413127889856696, 3891953.792219858150929 ], [ 4944628.898353087715805, 3891956.726526277139783 ], [ 4944626.287168809212744, 3891977.843691357411444 ], [ 4944659.414148121140897, 3891981.877925521694124 ], [ 4944654.480465010739863, 3892023.384245804511011 ], [ 4944597.156141540035605, 3892016.780096092261374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944517.48568329680711, 3891199.971648122183979 ], [ 4944519.24327280279249, 3891166.473390170373023 ], [ 4944506.855300201103091, 3891166.098543442320079 ], [ 4944507.733143888413906, 3891150.441797616425902 ], [ 4944566.50267787091434, 3891153.769852798897773 ], [ 4944565.041338081471622, 3891177.801035488024354 ], [ 4944571.667312786914408, 3891178.17091028438881 ], [ 4944570.20533799752593, 3891202.930348553694785 ], [ 4944517.48568329680711, 3891199.971648122183979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976317.641924801282585, 3901199.420383621007204 ], [ 4976352.769507732242346, 3901203.133689699694514 ], [ 4976348.663713164627552, 3901239.174222350586206 ], [ 4976342.617378725670278, 3901238.433565699961036 ], [ 4976339.975444468669593, 3901262.824914922937751 ], [ 4976310.894268669188023, 3901259.85227359784767 ], [ 4976317.641924801282585, 3901199.420383621007204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976216.894080094061792, 3907369.422155061271042 ], [ 4976245.140647624619305, 3907354.914666551165283 ], [ 4976267.511661325581372, 3907397.56392782414332 ], [ 4976239.265126410871744, 3907412.07139319460839 ], [ 4976216.894080094061792, 3907369.422155061271042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943785.660321563482285, 3892981.027638333849609 ], [ 4943791.774733562022448, 3892903.837544237729162 ], [ 4943829.222829207777977, 3892906.781996801961213 ], [ 4943826.601355828344822, 3892941.007864245679229 ], [ 4943839.852149939164519, 3892942.111380372662097 ], [ 4943838.105615290813148, 3892963.593488476704806 ], [ 4943825.430992635898292, 3892962.490457007661462 ], [ 4943823.972551045008004, 3892983.972808198072016 ], [ 4943785.660321563482285, 3892981.027638333849609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975957.384693983010948, 3905715.005082610528916 ], [ 4976001.092057723551989, 3905744.588777657598257 ], [ 4975985.207695866003633, 3905767.860853036399931 ], [ 4975968.242771610617638, 3905756.174084110651165 ], [ 4975963.621590693481266, 3905763.0831786734052 ], [ 4975936.591973121277988, 3905744.821566179860383 ], [ 4975957.384693983010948, 3905715.005082610528916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975880.541522164829075, 3910652.483372750226408 ], [ 4975819.719621810130775, 3910690.229587939102203 ], [ 4975803.650250229984522, 3910664.343516926746815 ], [ 4975864.472186387516558, 3910626.597265973687172 ], [ 4975880.541522164829075, 3910652.483372750226408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975759.400586941279471, 3903525.443882879335433 ], [ 4975820.22157455701381, 3903496.07268348429352 ], [ 4975838.000860216096044, 3903532.886054022237659 ], [ 4975777.179936238564551, 3903562.257213838864118 ], [ 4975759.400586941279471, 3903525.443882879335433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975531.995694437995553, 3906901.940710364375263 ], [ 4975553.422006937675178, 3906985.370244874618948 ], [ 4975527.78297914005816, 3906991.872818852774799 ], [ 4975517.7833779649809, 3906953.254622646141797 ], [ 4975502.803637515753508, 3906956.865693854633719 ], [ 4975497.377065850421786, 3906935.006814287044108 ], [ 4975509.18810857553035, 3906932.117605416569859 ], [ 4975503.187880638055503, 3906909.16517046559602 ], [ 4975531.995694437995553, 3906901.940710364375263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975504.497323039919138, 3898842.934472986031324 ], [ 4975514.935790091753006, 3898808.363170118071139 ], [ 4975529.903157382272184, 3898813.127085542306304 ], [ 4975535.122777340933681, 3898795.659374363720417 ], [ 4975558.726270976476371, 3898802.625530814286321 ], [ 4975545.389916818588972, 3898845.93008911749348 ], [ 4975535.603207915090024, 3898842.997279096394777 ], [ 4975532.993401470594108, 3898851.731134731322527 ], [ 4975504.497323039919138, 3898842.934472986031324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975284.750652698799968, 3898693.926665614824742 ], [ 4975286.407758471556008, 3898729.250629771966487 ], [ 4975244.06535638961941, 3898730.986188891809434 ], [ 4975242.408195091411471, 3898695.662227304186672 ], [ 4975284.750652698799968, 3898693.926665614824742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943398.432064871303737, 3890241.734179919585586 ], [ 4943440.489157320931554, 3890250.143797890748829 ], [ 4943432.968868018127978, 3890285.822119402699172 ], [ 4943402.146589299663901, 3890279.242406171280891 ], [ 4943404.459864093922079, 3890269.048732969444245 ], [ 4943393.225699515081942, 3890266.490583688486367 ], [ 4943398.432064871303737, 3890241.734179919585586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975138.450067177414894, 3904575.803032637573779 ], [ 4975171.264632570557296, 3904582.059092803858221 ], [ 4975175.337666010484099, 3904561.311769301537424 ], [ 4975199.229256346821785, 3904565.72930160863325 ], [ 4975187.590417466126382, 3904625.787639623973519 ], [ 4975173.773668918758631, 3904623.210989892948419 ], [ 4975171.734599322080612, 3904634.859107278753072 ], [ 4975155.902896464802325, 3904631.914292098488659 ], [ 4975158.229914957657456, 3904620.266751189250499 ], [ 4975130.884359580464661, 3904615.114066424313933 ], [ 4975138.450067177414894, 3904575.803032637573779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975084.298808538354933, 3909900.762518716044724 ], [ 4975125.702225664630532, 3909927.791332488879561 ], [ 4975103.46687912940979, 3909961.246964508201927 ], [ 4975062.350660677999258, 3909934.582892322912812 ], [ 4975084.298808538354933, 3909900.762518716044724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974582.53933850582689, 3903056.994586291722953 ], [ 4974562.353105837479234, 3903071.155649110209197 ], [ 4974566.660406959243119, 3903077.354424147401005 ], [ 4974544.456228097900748, 3903092.603890627622604 ], [ 4974521.483437083661556, 3903059.786537204869092 ], [ 4974563.585900070145726, 3903030.375404150690883 ], [ 4974582.53933850582689, 3903056.994586291722953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942795.827775433659554, 3892247.225829700939357 ], [ 4942732.446350046433508, 3892249.724007452372462 ], [ 4942730.750697044655681, 3892208.576162100303918 ], [ 4942751.493654654361308, 3892207.864487060811371 ], [ 4942750.92417533416301, 3892199.489082343410701 ], [ 4942789.24113155156374, 3892198.063240353483707 ], [ 4942789.52192694414407, 3892207.166671043727547 ], [ 4942794.131343893706799, 3892207.170364398043603 ], [ 4942795.827775433659554, 3892247.225829700939357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974366.512994165532291, 3896813.913826102856547 ], [ 4974328.177896671928465, 3896826.946774509735405 ], [ 4974320.730578130111098, 3896805.812541622668505 ], [ 4974306.318551984615624, 3896810.881908445153385 ], [ 4974300.018339166417718, 3896792.298854259774089 ], [ 4974312.989457853138447, 3896787.590769436676055 ], [ 4974304.39786312635988, 3896762.448855123948306 ], [ 4974356.280267630703747, 3896744.708947330247611 ], [ 4974364.873978125862777, 3896768.758492857217789 ], [ 4974352.191600199788809, 3896773.102993246633559 ], [ 4974366.512994165532291, 3896813.913826102856547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974349.392081724479795, 3900231.241637305822223 ], [ 4974389.741239940747619, 3900216.756162003148347 ], [ 4974399.479327373206615, 3900244.085208126809448 ], [ 4974359.130204848013818, 3900258.570669058244675 ], [ 4974349.392081724479795, 3900231.241637305822223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974303.943759140558541, 3909974.585707799997181 ], [ 4974320.587907820940018, 3910001.928533242084086 ], [ 4974326.641676103696227, 3909997.935032074339688 ], [ 4974339.268171781674027, 3910018.715543900616467 ], [ 4974300.068069404922426, 3910041.942607332486659 ], [ 4974271.084563413634896, 3909994.184007835574448 ], [ 4974303.943759140558541, 3909974.585707799997181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974081.784019927494228, 3910802.914177430327982 ], [ 4974119.501100230030715, 3910801.167709019035101 ], [ 4974121.69815843179822, 3910855.063701505307108 ], [ 4974083.981869711540639, 3910856.446035398170352 ], [ 4974081.784019927494228, 3910802.914177430327982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974065.661207322962582, 3900694.949075315147638 ], [ 4974059.550295311026275, 3900726.980563420336694 ], [ 4974017.805705147795379, 3900719.251828153152019 ], [ 4974023.916569107212126, 3900687.220330710057169 ], [ 4974065.661207322962582, 3900694.949075315147638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973974.565599509514868, 3909545.353179747704417 ], [ 4973994.372274023480713, 3909575.2509291972965 ], [ 4973986.012382144108415, 3909580.696508115157485 ], [ 4973996.920503783039749, 3909597.103888574056327 ], [ 4973973.569698454812169, 3909612.715758346021175 ], [ 4973942.566258132457733, 3909566.77422730345279 ], [ 4973974.565599509514868, 3909545.353179747704417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973973.92383733112365, 3897102.624127902556211 ], [ 4973921.166852636262774, 3897126.189139549154788 ], [ 4973901.377967718057334, 3897082.454788605682552 ], [ 4973954.135020673274994, 3897058.889738722704351 ], [ 4973973.92383733112365, 3897102.624127902556211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973928.816196852363646, 3895868.500077230855823 ], [ 4973910.776089118793607, 3895813.84529356751591 ], [ 4973969.000019495375454, 3895794.660550790373236 ], [ 4973978.448533438146114, 3895823.80944852065295 ], [ 4973968.937176915816963, 3895826.703829983249307 ], [ 4973981.250459804199636, 3895863.869198592379689 ], [ 4973941.185901709832251, 3895876.89930132497102 ], [ 4973937.462672491557896, 3895865.968115925788879 ], [ 4973928.816196852363646, 3895868.500077230855823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973822.684251425787807, 3910213.603149142116308 ], [ 4973845.453666569665074, 3910200.538934647571295 ], [ 4973860.086437386460602, 3910226.056876797694713 ], [ 4973837.317036676220596, 3910239.121079090982676 ], [ 4973822.684251425787807, 3910213.603149142116308 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973669.826687075197697, 3904597.294887870550156 ], [ 4973657.046561733819544, 3904653.710341999307275 ], [ 4973603.797553222626448, 3904641.95433985767886 ], [ 4973612.222757278010249, 3904603.736949057783931 ], [ 4973643.596441932022572, 3904610.716598640196025 ], [ 4973647.663321176543832, 3904592.517953904811293 ], [ 4973669.826687075197697, 3904597.294887870550156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973639.337031122297049, 3901625.561069372110069 ], [ 4973650.394864715635777, 3901566.957564803771675 ], [ 4973867.458881446160376, 3901607.800182385835797 ], [ 4973855.236525483429432, 3901672.59154487028718 ], [ 4973775.492556147277355, 3901657.87034079246223 ], [ 4973774.035540407523513, 3901666.606633380521089 ], [ 4973750.716402091085911, 3901662.555630448739976 ], [ 4973753.626151603646576, 3901647.267819592729211 ], [ 4973639.337031122297049, 3901625.561069372110069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973567.40080267097801, 3903073.569866207428277 ], [ 4973520.987714149057865, 3903098.968731137923896 ], [ 4973504.057556608691812, 3903067.98465926758945 ], [ 4973568.632795819081366, 3903032.425445766188204 ], [ 4973581.546180751174688, 3903055.754981640260667 ], [ 4973563.384078241884708, 3903065.915292866062373 ], [ 4973567.40080267097801, 3903073.569866207428277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973444.607543320395052, 3905357.527336354367435 ], [ 4973432.155084099620581, 3905393.916317291557789 ], [ 4973406.831981156021357, 3905385.492126211989671 ], [ 4973419.284409917891026, 3905349.103133733384311 ], [ 4973444.607543320395052, 3905357.527336354367435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973384.400117529556155, 3910119.531117950100452 ], [ 4973354.405199781060219, 3910147.147017326205969 ], [ 4973321.366284313611686, 3910111.397957224398851 ], [ 4973351.361207794398069, 3910083.78202157933265 ], [ 4973384.400117529556155, 3910119.531117950100452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973290.707630328834057, 3899776.192596557084471 ], [ 4973303.026366609148681, 3899810.080580186098814 ], [ 4973260.659729849547148, 3899825.292040151078254 ], [ 4973248.340947235934436, 3899791.404075629077852 ], [ 4973290.707630328834057, 3899776.192596557084471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973226.668204251676798, 3903700.306766610592604 ], [ 4973204.466709203086793, 3903714.829086192883551 ], [ 4973212.219240318052471, 3903726.496276258025318 ], [ 4973188.287873615510762, 3903742.107658416964114 ], [ 4973161.58661621529609, 3903700.909231591504067 ], [ 4973207.430843334645033, 3903671.139064223971218 ], [ 4973226.668204251676798, 3903700.306766610592604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973203.067697140388191, 3908161.603587294463068 ], [ 4973230.448751114308834, 3908146.727121509611607 ], [ 4973249.67017958406359, 3908182.449276697821915 ], [ 4973222.289151255041361, 3908197.325723227579147 ], [ 4973203.067697140388191, 3908161.603587294463068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972104.173278694041073, 3912068.101495716720819 ], [ 4972127.172305800020695, 3912084.531032491941005 ], [ 4972117.936156357638538, 3912097.258202272467315 ], [ 4972155.021717916242778, 3912123.910167287569493 ], [ 4972136.54873856343329, 3912149.728623445611447 ], [ 4972116.137201244011521, 3912135.124642605427653 ], [ 4972113.539431953802705, 3912138.761055551469326 ], [ 4972089.678195792250335, 3912121.601631866302341 ], [ 4972095.450860736891627, 3912113.601627701893449 ], [ 4972079.639768484979868, 3912101.919447424355894 ], [ 4972104.173278694041073, 3912068.101495716720819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972037.862378703430295, 3908160.832370272837579 ], [ 4972017.105478988029063, 3908174.994300851132721 ], [ 4972003.898418531753123, 3908155.306209190282971 ], [ 4972024.654638336971402, 3908141.508399520535022 ], [ 4972037.862378703430295, 3908160.832370272837579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971997.328956735320389, 3911328.345250178128481 ], [ 4971959.02737074252218, 3911335.191454940475523 ], [ 4971950.763270293362439, 3911290.387504622340202 ], [ 4971937.227909966371953, 3911292.910894913133234 ], [ 4971933.811083917506039, 3911272.877136677503586 ], [ 4971942.73824421595782, 3911271.437447968870401 ], [ 4971938.178125683218241, 3911247.031936962623149 ], [ 4971980.51227917894721, 3911239.100918177515268 ], [ 4971997.328956735320389, 3911328.345250178128481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971993.232269744388759, 3911515.865995968692005 ], [ 4971976.52069544699043, 3911523.481229629833251 ], [ 4971967.634174708276987, 3911503.437137000262737 ], [ 4971984.345071273855865, 3911496.186029600445181 ], [ 4971993.232269744388759, 3911515.865995968692005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971541.195475829765201, 3900932.981834105215967 ], [ 4971540.388724428601563, 3900902.393352507613599 ], [ 4971591.367317614145577, 3900900.66813830146566 ], [ 4971592.450411099009216, 3900937.44735973328352 ], [ 4971565.08884016238153, 3900938.488513818476349 ], [ 4971564.812433827668428, 3900932.297775759827346 ], [ 4971541.195475829765201, 3900932.981834105215967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971368.306021770462394, 3912560.119052981492132 ], [ 4971378.648295138031244, 3912571.426479404326528 ], [ 4971359.905479174107313, 3912588.141640658956021 ], [ 4971349.563204396516085, 3912576.834221330936998 ], [ 4971331.396829362027347, 3912593.186344263609499 ], [ 4971309.563483722507954, 3912569.112858010455966 ], [ 4971328.883380197919905, 3912551.670471178833395 ], [ 4971324.286953473463655, 3912546.564038187731057 ], [ 4971363.791794447228312, 3912510.952647373080254 ], [ 4971390.221556109376252, 3912540.132620275486261 ], [ 4971368.306021770462394, 3912560.119052981492132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971347.198400697670877, 3906897.089823295827955 ], [ 4971383.945564460940659, 3906955.055339952465147 ], [ 4971346.759077740833163, 3906978.290428723674268 ], [ 4971310.01186581607908, 3906920.324962099548429 ], [ 4971347.198400697670877, 3906897.089823295827955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971305.644097292795777, 3902154.200765938032418 ], [ 4971264.17266053520143, 3902155.215948365628719 ], [ 4971263.368346323259175, 3902123.170934074558318 ], [ 4971304.840510684065521, 3902121.791620808187872 ], [ 4971305.644097292795777, 3902154.200765938032418 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971260.649637700989842, 3907916.134212047792971 ], [ 4971279.60694660525769, 3907940.566358657553792 ], [ 4971243.853379420936108, 3907968.173855521250516 ], [ 4971224.608137687668204, 3907943.741198215167969 ], [ 4971260.649637700989842, 3907916.134212047792971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971152.236082283779979, 3893884.887751685921103 ], [ 4971147.660069818608463, 3893867.036932519637048 ], [ 4971176.769419050775468, 3893859.444267053157091 ], [ 4971191.359565562568605, 3893914.09073102241382 ], [ 4971164.267438684590161, 3893921.322997068054974 ], [ 4971160.834933592937887, 3893908.207976659294218 ], [ 4971148.729896830394864, 3893911.462667240295559 ], [ 4971142.148881466127932, 3893887.417932720389217 ], [ 4971152.236082283779979, 3893884.887751685921103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971098.655258720740676, 3904289.445029166061431 ], [ 4971116.176843085326254, 3904313.146075216121972 ], [ 4971094.262254029512405, 3904329.127198358532041 ], [ 4971077.028619755990803, 3904305.426700278185308 ], [ 4971098.655258720740676, 3904289.445029166061431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970683.328583313152194, 3912787.889698204118758 ], [ 4970702.645904639735818, 3912771.539254658855498 ], [ 4970726.775194593705237, 3912799.621944314800203 ], [ 4970707.457878679037094, 3912815.972370803821832 ], [ 4970683.328583313152194, 3912787.889698204118758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970673.479532034136355, 3900454.361135655082762 ], [ 4970834.068089295178652, 3900517.287369186989963 ], [ 4970824.809119316749275, 3900540.574642124585807 ], [ 4970664.22067981865257, 3900477.648463039193302 ], [ 4970673.479532034136355, 3900454.361135655082762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970646.858779691159725, 3908354.870492905378342 ], [ 4970614.574107680469751, 3908375.566696814261377 ], [ 4970591.032589386217296, 3908338.746098304633051 ], [ 4970623.604534150101244, 3908318.41452665720135 ], [ 4970646.858779691159725, 3908354.870492905378342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970654.066677493043244, 3893152.068347248714417 ], [ 4970623.805735811591148, 3893158.931203851476312 ], [ 4970614.658770138397813, 3893119.952612344641238 ], [ 4970645.207832158543169, 3893113.090274904854596 ], [ 4970654.066677493043244, 3893152.068347248714417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970628.765576007775962, 3900651.27355779428035 ], [ 4970638.024338220246136, 3900627.986215764656663 ], [ 4970809.259794939309359, 3900695.301442828029394 ], [ 4970800.000907219946384, 3900718.588726800400764 ], [ 4970628.765576007775962, 3900651.27355779428035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970577.155323717743158, 3899270.760492554865777 ], [ 4970585.173566347919405, 3899295.900195577647537 ], [ 4970530.419793767854571, 3899312.913870148360729 ], [ 4970519.252722422592342, 3899277.208634165581316 ], [ 4970554.122309632599354, 3899266.34866857714951 ], [ 4970557.559092688374221, 3899276.914749981835485 ], [ 4970577.155323717743158, 3899270.760492554865777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970470.026047201827168, 3911997.69321580696851 ], [ 4970493.388762046582997, 3911973.339113563299179 ], [ 4970517.241130561567843, 3911995.959095566533506 ], [ 4970493.878413651138544, 3912020.313177407719195 ], [ 4970470.026047201827168, 3911997.69321580696851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970480.177822687663138, 3904256.26132216444239 ], [ 4970449.322162579745054, 3904280.237481118179858 ], [ 4970431.510010627098382, 3904257.628733646590263 ], [ 4970462.653640375472605, 3904233.653081905562431 ], [ 4970480.177822687663138, 3904256.26132216444239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970458.829159000888467, 3903648.851276874542236 ], [ 4970484.199515973217785, 3903632.875972854439169 ], [ 4970497.407922034151852, 3903653.655652944464236 ], [ 4970503.462547119706869, 3903649.661305989604443 ], [ 4970512.938055668957531, 3903664.608053384814411 ], [ 4970508.037297811359167, 3903667.512119612656534 ], [ 4970518.086725956760347, 3903683.552314602769911 ], [ 4970491.851165839470923, 3903700.254264099057764 ], [ 4970458.829159000888467, 3903648.851276874542236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970431.850067956373096, 3903127.730233064386994 ], [ 4970403.305587326176465, 3903146.976956366561353 ], [ 4970382.052294627763331, 3903115.986950216349214 ], [ 4970410.5967928301543, 3903096.740204690489918 ], [ 4970431.850067956373096, 3903127.730233064386994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970399.121005841530859, 3902600.772771225776523 ], [ 4970421.319233565591276, 3902587.704662833362818 ], [ 4970446.297271315008402, 3902629.26130573824048 ], [ 4970424.098399387672544, 3902642.693523581605405 ], [ 4970399.121005841530859, 3902600.772771225776523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970189.271748958155513, 3903027.515476217959076 ], [ 4970143.445017077028751, 3903048.915794074069709 ], [ 4970122.504483329132199, 3903004.089585027657449 ], [ 4970168.043301687575877, 3902982.688707844354212 ], [ 4970189.271748958155513, 3903027.515476217959076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969893.621539101935923, 3894060.640016213990748 ], [ 4969808.290063246153295, 3894095.442141551990062 ], [ 4969787.641185010783374, 3894044.42677839146927 ], [ 4969849.045275120995939, 3894019.412807196844369 ], [ 4969854.493571764789522, 3894033.259562474675477 ], [ 4969878.421082041226327, 3894023.471348606515676 ], [ 4969893.621539101935923, 3894060.640016213990748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969722.471326718106866, 3897755.152786046266556 ], [ 4969702.568437573499978, 3897771.138616836164147 ], [ 4969669.232512074522674, 3897729.203609676565975 ], [ 4969691.730959483422339, 3897711.401782755274326 ], [ 4969696.042215130291879, 3897716.507371069863439 ], [ 4969713.925650211051106, 3897702.338544083293527 ], [ 4969738.640368721447885, 3897733.334156085271388 ], [ 4969717.872709731571376, 3897749.682545300573111 ], [ 4969722.471326718106866, 3897755.152786046266556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969511.055528649128973, 3903369.664562033955008 ], [ 4969532.971262556500733, 3903352.953897293657064 ], [ 4969562.274724019691348, 3903391.604459414258599 ], [ 4969540.359003275632858, 3903408.315100647509098 ], [ 4969511.055528649128973, 3903369.664562033955008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969511.373039964586496, 3901428.847461048513651 ], [ 4969534.05161502584815, 3901469.306701381225139 ], [ 4969491.962690703570843, 3901492.899613465648144 ], [ 4969488.230597145855427, 3901486.33856207691133 ], [ 4969464.303329630754888, 3901499.7684620693326 ], [ 4969445.068794901482761, 3901465.869808212388307 ], [ 4969511.373039964586496, 3901428.847461048513651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969415.978497472591698, 3899057.094903835561126 ], [ 4969432.092333173379302, 3899065.498778719455004 ], [ 4969421.399882613681257, 3899085.506772429682314 ], [ 4969360.974771784618497, 3899052.990960555151105 ], [ 4969378.601728818379343, 3899020.614934272598475 ], [ 4969422.62568767927587, 3899044.362260970287025 ], [ 4969415.978497472591698, 3899057.094903835561126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969260.654242225922644, 3904907.306546010542661 ], [ 4969240.775117079727352, 3904913.097139824181795 ], [ 4969250.221609896048903, 3904944.429316490888596 ], [ 4969224.868175849318504, 3904952.030801517888904 ], [ 4969200.824454208835959, 3904871.150706444866955 ], [ 4969245.769163237884641, 3904857.758080371655524 ], [ 4969260.654242225922644, 3904907.306546010542661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968886.289457591250539, 3897934.994558085687459 ], [ 4968895.747882045805454, 3897961.228675716090947 ], [ 4968908.717485741712153, 3897956.517979838419706 ], [ 4968917.315675132907927, 3897980.565800694283098 ], [ 4968865.726644548587501, 3897998.680858194362372 ], [ 4968855.121901116333902, 3897969.167551124002784 ], [ 4968848.492770664393902, 3897971.704720588866621 ], [ 4968841.040177962742746, 3897951.300249372143298 ], [ 4968886.289457591250539, 3897934.994558085687459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968744.940352389588952, 3900338.731758936308324 ], [ 4968754.151892825961113, 3900341.296951559372246 ], [ 4968745.45393818244338, 3900374.053318080026656 ], [ 4968697.092261053621769, 3900361.223333713598549 ], [ 4968706.370021557435393, 3900326.283193125855178 ], [ 4968719.61166197899729, 3900329.947881405241787 ], [ 4968721.641178779304028, 3900322.304727160837501 ], [ 4968747.549739768728614, 3900328.904848773963749 ], [ 4968744.940352389588952, 3900338.731758936308324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968615.601010733284056, 3900026.807897936552763 ], [ 4968644.094861923716962, 3900037.417908223345876 ], [ 4968647.855618163011968, 3900027.957150834146887 ], [ 4968673.470694038085639, 3900037.833855004049838 ], [ 4968663.922859964892268, 3900062.5778743843548 ], [ 4968640.033905035816133, 3900053.796613687649369 ], [ 4968631.931905811652541, 3900075.266020687762648 ], [ 4968601.711346891708672, 3900063.92472011083737 ], [ 4968615.601010733284056, 3900026.807897936552763 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968306.2656633509323, 3902174.999094578903168 ], [ 4968321.204361284151673, 3902195.780712169129401 ], [ 4968300.155573014169931, 3902210.673217345494777 ], [ 4968285.216867143288255, 3902189.891611264552921 ], [ 4968306.2656633509323, 3902174.999094578903168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968038.573157571256161, 3904084.398923230357468 ], [ 4968014.933084321208298, 3904100.015416968613863 ], [ 4967994.253088091500103, 3904069.392413686495274 ], [ 4967983.58648291695863, 3904076.292355128098279 ], [ 4967968.077082687057555, 3904052.960989424958825 ], [ 4967973.842646255157888, 3904049.329701091628522 ], [ 4967961.204612870700657, 3904030.737038166262209 ], [ 4967989.457807971164584, 3904011.851339897140861 ], [ 4968038.573157571256161, 3904084.398923230357468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967692.749720641411841, 3892237.924124570563436 ], [ 4967717.221486382186413, 3892247.069626383949071 ], [ 4967707.093098336830735, 3892273.269386228173971 ], [ 4967682.621353045105934, 3892264.123893489595503 ], [ 4967692.749720641411841, 3892237.924124570563436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967609.927651137113571, 3906846.321946382522583 ], [ 4967581.688370172865689, 3906859.017853629775345 ], [ 4967566.197810085490346, 3906825.491019112989306 ], [ 4967594.43711887858808, 3906812.79509585397318 ], [ 4967609.927651137113571, 3906846.321946382522583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967489.794722674414515, 3899352.663013324141502 ], [ 4967496.895403155125678, 3899410.57192978868261 ], [ 4967469.528061296790838, 3899414.166156214661896 ], [ 4967462.427322837524116, 3899356.257246844936162 ], [ 4967489.794722674414515, 3899352.663013324141502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967488.97026638686657, 3894641.187791038304567 ], [ 4967551.196151466108859, 3894638.745990130584687 ], [ 4967553.121646990068257, 3894691.548036241903901 ], [ 4967490.896510270424187, 3894693.62570468056947 ], [ 4967488.97026638686657, 3894641.187791038304567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966887.636542872525752, 3906599.29650531988591 ], [ 4966914.147541516460478, 3906586.961065428797156 ], [ 4966933.943825931288302, 3906628.869868359994143 ], [ 4966907.432859447784722, 3906641.205289037898183 ], [ 4966887.636542872525752, 3906599.29650531988591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966898.876474070362747, 3896250.359143933746964 ], [ 4966928.258944184519351, 3896249.316668639425188 ], [ 4966931.037913794629276, 3896309.038629394024611 ], [ 4966902.519024205394089, 3896310.446697721257806 ], [ 4966901.680863231420517, 3896295.151834992226213 ], [ 4966894.767789128236473, 3896295.140095395036042 ], [ 4966893.93580618314445, 3896276.203948527108878 ], [ 4966899.98536865785718, 3896275.85009192628786 ], [ 4966898.876474070362747, 3896250.359143933746964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966603.119358265772462, 3890576.002271582372487 ], [ 4966635.65505666192621, 3890588.073406984098256 ], [ 4966605.55444832611829, 3890669.587350052781403 ], [ 4966572.730730079114437, 3890657.515764846932143 ], [ 4966603.119358265772462, 3890576.002271582372487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966589.726500101387501, 3895271.056143676396459 ], [ 4966626.906587175093591, 3895258.738483075518161 ], [ 4966642.669111714698374, 3895306.466030944138765 ], [ 4966605.489083318039775, 3895318.78367009293288 ], [ 4966589.726500101387501, 3895271.056143676396459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966351.090019405819476, 3898436.033437820151448 ], [ 4966353.918299988843501, 3898466.989230172708631 ], [ 4966274.987604713998735, 3898474.503624853678048 ], [ 4966272.15984398778528, 3898443.183711727615446 ], [ 4966351.090019405819476, 3898436.033437820151448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966287.109805874526501, 3897428.014748618006706 ], [ 4966260.890911220572889, 3897432.704517978709191 ], [ 4966256.89625617582351, 3897410.12178561789915 ], [ 4966225.490931992419064, 3897415.895295087713748 ], [ 4966219.783885637298226, 3897383.842330525629222 ], [ 4966277.407582246698439, 3897373.743164542131126 ], [ 4966287.109805874526501, 3897428.014748618006706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965453.900984160602093, 3903688.217953876126558 ], [ 4965460.879849501885474, 3903647.082621981855482 ], [ 4965481.320039668120444, 3903650.393436668906361 ], [ 4965483.063418385572731, 3903640.92889815941453 ], [ 4965504.366908898577094, 3903644.605282429140061 ], [ 4965502.622923295013607, 3903654.433949671685696 ], [ 4965522.199205190874636, 3903657.743372905068099 ], [ 4965514.932883044704795, 3903698.514084707479924 ], [ 4965453.900984160602093, 3903688.217953876126558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965439.31298173032701, 3898548.85578754870221 ], [ 4965431.438265472650528, 3898608.560156756546348 ], [ 4965397.459086553193629, 3898604.134765382856131 ], [ 4965401.544600328430533, 3898571.733909007161856 ], [ 4965390.890238985419273, 3898570.25989006087184 ], [ 4965394.391335947439075, 3898542.955892900004983 ], [ 4965439.31298173032701, 3898548.85578754870221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965331.091194453649223, 3892179.692999319173396 ], [ 4965323.808386985212564, 3892228.838419763371348 ], [ 4965290.974072018638253, 3892224.050940924324095 ], [ 4965297.968731814064085, 3892174.905039720237255 ], [ 4965331.091194453649223, 3892179.692999319173396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965153.850476196035743, 3911082.880964742507786 ], [ 4965153.518556015565991, 3911109.82624535029754 ], [ 4965136.821762522682548, 3911109.434832429513335 ], [ 4965136.798564300872386, 3911123.635971690528095 ], [ 4965097.646681948564947, 3911123.20791105274111 ], [ 4965098.314570689573884, 3911066.768426107708365 ], [ 4965144.663696839474142, 3911067.208245727233589 ], [ 4965144.638709713704884, 3911082.501779925078154 ], [ 4965153.850476196035743, 3911082.880964742507786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964798.144158274866641, 3896258.161791669204831 ], [ 4964782.597386166453362, 3896253.402926850132644 ], [ 4964790.992573296651244, 3896227.563333190977573 ], [ 4964822.373003894463181, 3896237.809805280528963 ], [ 4964808.765835857018828, 3896280.390897993929684 ], [ 4964792.644168221391737, 3896274.902836796827614 ], [ 4964798.144158274866641, 3896258.161791669204831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964664.028592795133591, 3904032.854857497382909 ], [ 4964656.472770341672003, 3904075.445996561087668 ], [ 4964617.321187117137015, 3904068.464293801225722 ], [ 4964624.876949432305992, 3904025.873143911827356 ], [ 4964664.028592795133591, 3904032.854857497382909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964177.677272669970989, 3898432.47442651540041 ], [ 4964173.317985145375133, 3898456.864168621134013 ], [ 4964102.771853058598936, 3898444.735316880512983 ], [ 4964107.420842250809073, 3898419.253635819070041 ], [ 4964114.043606031686068, 3898420.356586189009249 ], [ 4964117.5294871320948, 3898401.791520474944264 ], [ 4964147.475657904520631, 3898406.937115480192006 ], [ 4964143.988013493828475, 3898426.594564291648567 ], [ 4964177.677272669970989, 3898432.47442651540041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964161.100787847302854, 3898171.366834719199687 ], [ 4964167.531517405994236, 3898112.388067206833512 ], [ 4964197.480910339392722, 3898115.713072489481419 ], [ 4964191.050697552971542, 3898174.327704038005322 ], [ 4964161.100787847302854, 3898171.366834719199687 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964082.044389572925866, 3892291.646293422672898 ], [ 4964069.876853547990322, 3892334.229956534225494 ], [ 4964038.777344925329089, 3892325.441355431918055 ], [ 4964051.232923347502947, 3892282.858137102797627 ], [ 4964082.044389572925866, 3892291.646293422672898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964007.286691887304187, 3891656.851286456920207 ], [ 4963973.292124635539949, 3891656.433116169646382 ], [ 4963974.218322724103928, 3891617.472844140138477 ], [ 4964008.212360125035048, 3891618.255143100395799 ], [ 4964007.286691887304187, 3891656.851286456920207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963947.919929905794561, 3909072.382530895061791 ], [ 4963951.929226910695434, 3909085.861796285491437 ], [ 4963963.162257947027683, 3909082.966593452729285 ], [ 4963984.635449668392539, 3909158.376118787098676 ], [ 4963938.838000763207674, 3909171.047944711055607 ], [ 4963932.826666261069477, 3909149.190457647200674 ], [ 4963919.001346768811345, 3909152.809820838272572 ], [ 4963900.105842015706003, 3909085.7794821690768 ], [ 4963947.919929905794561, 3909072.382530895061791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963912.495576842688024, 3904001.792495153844357 ], [ 4963931.207913069054484, 3904005.099388650152832 ], [ 4963933.240420400165021, 3903994.542814289219677 ], [ 4963957.134342966601253, 3903998.950349735096097 ], [ 4963948.418527808971703, 3904047.365939918905497 ], [ 4963905.811758242547512, 3904040.015653393696994 ], [ 4963912.495576842688024, 3904001.792495153844357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963605.107506507076323, 3892752.969909860752523 ], [ 4963580.857531538233161, 3892785.339168422855437 ], [ 4963540.285459729842842, 3892755.052635716274381 ], [ 4963564.535412994213402, 3892722.683341134805232 ], [ 4963605.107506507076323, 3892752.969909860752523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963405.168023271486163, 3901207.744479236658663 ], [ 4963421.618998270481825, 3901185.194197214208543 ], [ 4963444.920081632211804, 3901201.980772317387164 ], [ 4963428.181105357594788, 3901224.530588341876864 ], [ 4963405.168023271486163, 3901207.744479236658663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963393.457326873205602, 3893429.916759791318327 ], [ 4963394.626182810403407, 3893419.358856531791389 ], [ 4963375.904694213531911, 3893417.144741120748222 ], [ 4963379.999380802735686, 3893377.825246407650411 ], [ 4963426.372192773036659, 3893382.631632639095187 ], [ 4963421.108001188375056, 3893432.873150396160781 ], [ 4963393.457326873205602, 3893429.916759791318327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963064.330250518396497, 3900003.397071244660765 ], [ 4963034.976382696069777, 3899988.78621071903035 ], [ 4963044.509997366927564, 3899969.866262591443956 ], [ 4963035.876629399135709, 3899965.483276292216033 ], [ 4963049.166218186728656, 3899938.922435285057873 ], [ 4963086.866059042513371, 3899957.551733187399805 ], [ 4963064.330250518396497, 3900003.397071244660765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962947.609146983362734, 3897083.622151876799762 ], [ 4962915.350774041377008, 3897082.479741661343724 ], [ 4962916.273019222542644, 3897044.975824018009007 ], [ 4962948.820038718171418, 3897045.754553442820907 ], [ 4962947.609146983362734, 3897083.622151876799762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962809.774297636933625, 3899231.774620153475553 ], [ 4962795.036090610548854, 3899263.795280172955245 ], [ 4962769.996964377351105, 3899252.104427041020244 ], [ 4962774.620925078168511, 3899241.915928856935352 ], [ 4962751.883627006784081, 3899231.685169278644025 ], [ 4962761.709821671247482, 3899209.852540716528893 ], [ 4962809.774297636933625, 3899231.774620153475553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962140.75290494505316, 3895800.647016929462552 ], [ 4962134.941506277769804, 3895833.773943773005158 ], [ 4962093.761464660055935, 3895826.428756645414978 ], [ 4962099.572260782122612, 3895793.665949502028525 ], [ 4962140.75290494505316, 3895800.647016929462552 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961791.347394366748631, 3893317.486103888135403 ], [ 4961758.512141603045166, 3893313.795320040080696 ], [ 4961757.636389701627195, 3893321.440704392734915 ], [ 4961731.137727098539472, 3893318.487760008312762 ], [ 4961739.307522274553776, 3893249.679729373659939 ], [ 4961764.365865051746368, 3893252.630510957445949 ], [ 4961762.909565185196698, 3893263.188049946911633 ], [ 4961784.223438072018325, 3893265.769078829791397 ], [ 4961783.347677341662347, 3893273.414462123066187 ], [ 4961796.308951641432941, 3893274.890522263944149 ], [ 4961791.347394366748631, 3893317.486103888135403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961766.23182422760874, 3896983.864650786854327 ], [ 4961768.266747646033764, 3896971.487313651479781 ], [ 4961760.779418797232211, 3896970.383639908395708 ], [ 4961763.687783502042294, 3896951.817416767124087 ], [ 4961772.039230523630977, 3896952.922393960412592 ], [ 4961774.365490510128438, 3896938.360719500109553 ], [ 4961791.35533082485199, 3896941.299374938011169 ], [ 4961794.55450392793864, 3896920.912946369964629 ], [ 4961819.031692842021585, 3896924.955302402377129 ], [ 4961808.274841822683811, 3896990.84651624597609 ], [ 4961766.23182422760874, 3896983.864650786854327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961745.738542041741312, 3898923.91709333145991 ], [ 4961785.739348920993507, 3898946.189317913725972 ], [ 4961770.432762543670833, 3898973.84011579817161 ], [ 4961730.431984236463904, 3898951.567913629580289 ], [ 4961745.738542041741312, 3898923.91709333145991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961623.834036601707339, 3898205.669574298430234 ], [ 4961651.755424846895039, 3898216.999552564229816 ], [ 4961640.770562930963933, 3898243.564519595354795 ], [ 4961612.849744491279125, 3898231.870423565618694 ], [ 4961623.834036601707339, 3898205.669574298430234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961585.000740553252399, 3899131.957749951630831 ], [ 4961573.731033195741475, 3899156.701680719386786 ], [ 4961542.359331732615829, 3899142.0894331545569 ], [ 4961537.73527561314404, 3899152.64227192569524 ], [ 4961523.056375556625426, 3899146.06593336397782 ], [ 4961539.237569557502866, 3899111.133703269064426 ], [ 4961585.000740553252399, 3899131.957749951630831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961263.595464082434773, 3909368.659862932283431 ], [ 4961266.685945827513933, 3909420.007116675376892 ], [ 4961195.855037399567664, 3909424.271301897242665 ], [ 4961194.16767318919301, 3909397.323004621546715 ], [ 4961207.412898157723248, 3909396.250302718952298 ], [ 4961206.001535044983029, 3909377.313325572293252 ], [ 4961229.61187713034451, 3909375.891918709035963 ], [ 4961229.331558166071773, 3909370.793649794533849 ], [ 4961263.595464082434773, 3909368.659862932283431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961161.262027666904032, 3896074.456654508132488 ], [ 4961171.731226721778512, 3896007.472404095809907 ], [ 4961209.169326203875244, 3896012.989970221649855 ], [ 4961205.970491192303598, 3896033.376457520294935 ], [ 4961215.473895165137947, 3896034.847102359402925 ], [ 4961207.914835516363382, 3896081.808548940345645 ], [ 4961161.262027666904032, 3896074.456654508132488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960670.466689490713179, 3898798.15024757059291 ], [ 4960639.346878579817712, 3898807.572002173401415 ], [ 4960636.767524150200188, 3898798.829104367177933 ], [ 4960617.749807807616889, 3898804.627321641892195 ], [ 4960602.556832429952919, 3898755.447535489685833 ], [ 4960633.96470916364342, 3898746.026160610374063 ], [ 4960644.569625310599804, 3898781.362302702385932 ], [ 4960663.587363912723958, 3898775.56410448346287 ], [ 4960670.466689490713179, 3898798.15024757059291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959685.23600372299552, 3901158.471508300863206 ], [ 4959693.966933176852763, 3901094.761175070889294 ], [ 4959728.519354675896466, 3901099.54431695304811 ], [ 4959723.28126510232687, 3901137.406379960943013 ], [ 4959739.693729592487216, 3901139.614662083331496 ], [ 4959735.912801236845553, 3901165.462506753858179 ], [ 4959685.23600372299552, 3901158.471508300863206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959313.128638606518507, 3897511.908184586558491 ], [ 4959326.172078717499971, 3897454.030051060486585 ], [ 4959387.215301828458905, 3897467.953515575267375 ], [ 4959374.172253362834454, 3897525.467491085175425 ], [ 4959313.128638606518507, 3897511.908184586558491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959145.013288425281644, 3899078.521076454315335 ], [ 4959148.257439505308867, 3899024.63441932760179 ], [ 4959186.847919621504843, 3899027.237769437488168 ], [ 4959185.964343618601561, 3899041.073459959588945 ], [ 4959194.316274128854275, 3899041.449379205238074 ], [ 4959191.956123576499522, 3899081.136211287230253 ], [ 4959145.013288425281644, 3899078.521076454315335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958989.164548597298563, 3901357.756801939103752 ], [ 4958989.963581667281687, 3901404.002490691374987 ], [ 4958939.276318663731217, 3901404.659622201696038 ], [ 4958939.266616512089968, 3901411.578087180387229 ], [ 4958922.850680178031325, 3901411.919201655779034 ], [ 4958922.045917434617877, 3901369.678941675461829 ], [ 4958947.678082498721778, 3901368.986621957737952 ], [ 4958947.404903828166425, 3901358.42645595734939 ], [ 4958989.164548597298563, 3901357.756801939103752 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958929.202917885966599, 3900373.064250898547471 ], [ 4958933.867094807326794, 3900333.016465895809233 ], [ 4958964.390653633512557, 3900336.336452233605087 ], [ 4958959.725920891389251, 3900376.748361533042043 ], [ 4958929.202917885966599, 3900373.064250898547471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958873.528400815092027, 3905168.588250061962754 ], [ 4958814.727112174965441, 3905211.109346768818796 ], [ 4958794.896773120388389, 3905183.771786344703287 ], [ 4958853.697580460458994, 3905141.614777516108006 ], [ 4958873.528400815092027, 3905168.588250061962754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958857.297242933884263, 3905450.039034502115101 ], [ 4958880.647947772406042, 3905430.772763177752495 ], [ 4958895.883114735595882, 3905449.364801076240838 ], [ 4958872.244978427886963, 3905468.266525592189282 ], [ 4958857.297242933884263, 3905450.039034502115101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958501.938892554491758, 3899863.414688647724688 ], [ 4958472.283298291265965, 3899856.819260353222489 ], [ 4958469.965126535855234, 3899867.011692951899022 ], [ 4958444.052605794742703, 3899861.14973972691223 ], [ 4958446.948797282762825, 3899849.501584486570209 ], [ 4958435.720063781365752, 3899846.937136038206518 ], [ 4958444.702693406492472, 3899807.623514940962195 ], [ 4958487.314629842527211, 3899817.149900613818318 ], [ 4958488.76273699849844, 3899811.325825430452824 ], [ 4958512.660256675444543, 3899816.456767661031336 ], [ 4958501.938892554491758, 3899863.414688647724688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958335.955476642586291, 3905772.663122430909425 ], [ 4958349.747591398656368, 3905793.801782637834549 ], [ 4958327.844832981936634, 3905807.60854529356584 ], [ 4958314.340651179663837, 3905786.470293311402202 ], [ 4958335.955476642586291, 3905772.663122430909425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958304.225487658753991, 3905813.402067572344095 ], [ 4958285.783600536175072, 3905823.208191624376923 ], [ 4958277.166896246373653, 3905807.538666049484164 ], [ 4958266.504986075684428, 3905813.350079242605716 ], [ 4958237.208502363413572, 3905759.782420906703919 ], [ 4958266.600291606038809, 3905744.165243271738291 ], [ 4958304.225487658753991, 3905813.402067572344095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958246.254736598581076, 3900861.506560820154846 ], [ 4958233.826821884140372, 3900893.532924511935562 ], [ 4958191.514008788391948, 3900877.088867398444563 ], [ 4958203.941880608908832, 3900845.062484460882843 ], [ 4958246.254736598581076, 3900861.506560820154846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958220.921995582059026, 3898131.588936719112098 ], [ 4958290.009878180921078, 3898159.357912451494485 ], [ 4958277.004120260477066, 3898191.74753960268572 ], [ 4958207.916307616047561, 3898163.978596766944975 ], [ 4958220.921995582059026, 3898131.588936719112098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958096.715227395296097, 3907422.578354963567108 ], [ 4958119.712794269435108, 3907449.191521234344691 ], [ 4958103.858427437022328, 3907462.642646847292781 ], [ 4958080.860357301309705, 3907436.393625018652529 ], [ 4958096.715227395296097, 3907422.578354963567108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957977.756170830689371, 3901556.627347826492041 ], [ 4957934.266944159753621, 3901558.752733978908509 ], [ 4957931.460614713840187, 3901504.857595453970134 ], [ 4957958.821552353911102, 3901503.438431466929615 ], [ 4957959.101086149923503, 3901509.629031016491354 ], [ 4958004.894803509116173, 3901507.142706057988107 ], [ 4958006.580904485657811, 3901537.731970609631389 ], [ 4957976.628102111630142, 3901539.147543937899172 ], [ 4957977.756170830689371, 3901556.627347826492041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957768.05541468411684, 3907946.479496628046036 ], [ 4957796.307224990800023, 3907920.300413318444043 ], [ 4957841.732164286077023, 3907969.155909293331206 ], [ 4957819.534101740457118, 3907989.881205840036273 ], [ 4957802.859047271311283, 3907972.016053140163422 ], [ 4957797.093720666132867, 3907977.106057044584304 ], [ 4957768.05541468411684, 3907946.479496628046036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957281.77685215510428, 3905785.06588774593547 ], [ 4957315.49991225078702, 3905759.986062451731414 ], [ 4957366.950247397646308, 3905828.147736688610166 ], [ 4957333.227224565111101, 3905853.227498466614634 ], [ 4957281.77685215510428, 3905785.06588774593547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956984.482791733928025, 3901556.380699254572392 ], [ 4957043.805487462319434, 3901558.64442460052669 ], [ 4957043.201868399977684, 3901579.399056471884251 ], [ 4957067.967876987531781, 3901580.160312536172569 ], [ 4957066.78001425601542, 3901607.104383369442075 ], [ 4957029.343534991145134, 3901605.597996246535331 ], [ 4957029.040034744888544, 3901617.249766966793686 ], [ 4956994.19497294165194, 3901616.111009286250919 ], [ 4956994.792741824872792, 3901599.725933611858636 ], [ 4956982.985721562989056, 3901599.346102240029722 ], [ 4956984.482791733928025, 3901556.380699254572392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956475.81390651781112, 3893046.002401718404144 ], [ 4956494.83622820302844, 3893039.108889743685722 ], [ 4956490.816955315880477, 3893028.543891436886042 ], [ 4956508.398416491225362, 3893022.012629008386284 ], [ 4956511.842956827022135, 3893031.484490261878818 ], [ 4956527.406907006166875, 3893025.678851288743317 ], [ 4956540.613646198064089, 3893059.92427302710712 ], [ 4956488.733576714061201, 3893079.519164944067597 ], [ 4956475.81390651781112, 3893046.002401718404144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956347.155978725291789, 3900238.845708534121513 ], [ 4956339.617521728388965, 3900277.433661700692028 ], [ 4956277.711785465478897, 3900266.064875779673457 ], [ 4956284.962628744542599, 3900227.112400563899428 ], [ 4956347.155978725291789, 3900238.845708534121513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956040.916798139922321, 3895859.424167178105563 ], [ 4956061.646453984081745, 3895867.097717547323555 ], [ 4956052.108297468163073, 3895892.210281899664551 ], [ 4956031.379129441455007, 3895884.172610175795853 ], [ 4956040.916798139922321, 3895859.424167178105563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955917.679815099574625, 3901404.597559378948063 ], [ 4955918.268477242439985, 3901394.766798042226583 ], [ 4955898.110108517110348, 3901394.012541540432721 ], [ 4955900.187069525010884, 3901346.678268676158041 ], [ 4955928.696731702424586, 3901347.807431718334556 ], [ 4955928.398404491133988, 3901355.817915260791779 ], [ 4955966.122811550274491, 3901357.687270371709019 ], [ 4955964.043383559212089, 3901406.842187400907278 ], [ 4955917.679815099574625, 3901404.597559378948063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955873.1038762871176, 3905155.815697383135557 ], [ 4955895.527342667803168, 3905184.246834076009691 ], [ 4955879.097797469235957, 3905196.970249894075096 ], [ 4955881.110158117488027, 3905199.5217618891038 ], [ 4955841.333775738254189, 3905230.057553543709219 ], [ 4955821.498086550273001, 3905204.542840309906751 ], [ 4955840.521956927143037, 3905189.637941251508892 ], [ 4955836.209745235741138, 3905184.170422279741615 ], [ 4955873.1038762871176, 3905155.815697383135557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955760.512084138579667, 3901346.13442194275558 ], [ 4955825.306228091940284, 3901349.130743762943894 ], [ 4955825.003715710714459, 3901360.418396500870585 ], [ 4955830.763056713156402, 3901360.789936757646501 ], [ 4955828.688092994503677, 3901406.667696216609329 ], [ 4955796.435087347403169, 3901405.169696746394038 ], [ 4955796.738523394800723, 3901393.153783804737031 ], [ 4955779.460051505826414, 3901392.40331836650148 ], [ 4955780.348349577747285, 3901373.469679388217628 ], [ 4955759.614448007196188, 3901372.350656975526363 ], [ 4955760.512084138579667, 3901346.13442194275558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955525.289901606738567, 3900616.480422744527459 ], [ 4955524.095651485025883, 3900649.614749853964895 ], [ 4955527.839162294752896, 3900649.983654236420989 ], [ 4955526.933836933225393, 3900682.390089923515916 ], [ 4955484.024028590880334, 3900680.878878049086779 ], [ 4955484.326404671184719, 3900669.591226091608405 ], [ 4955477.414919293485582, 3900669.218293116893619 ], [ 4955478.313229321502149, 3900642.273800486233085 ], [ 4955498.184175157919526, 3900643.027374786324799 ], [ 4955499.083434851840138, 3900615.354624025058001 ], [ 4955525.289901606738567, 3900616.480422744527459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954981.375039823353291, 3895934.540869635995477 ], [ 4954992.351510943844914, 3895910.157989768311381 ], [ 4955010.200480620376766, 3895918.191242605447769 ], [ 4955033.885922896675766, 3895866.150526334531605 ], [ 4955080.523796717636287, 3895886.964543892536312 ], [ 4955054.238976581022143, 3895944.463888771831989 ], [ 4955033.223333410918713, 3895934.970109813380986 ], [ 4955029.468634838238358, 3895942.976233588997275 ], [ 4955010.179901623167098, 3895934.577030381187797 ], [ 4955005.269815021194518, 3895945.13061085017398 ], [ 4954981.375039823353291, 3895934.540869635995477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954889.176867735572159, 3892269.104842158500105 ], [ 4954917.318283240310848, 3892341.965751805342734 ], [ 4954869.760686500929296, 3892360.476788014173508 ], [ 4954862.868452688679099, 3892342.990005605854094 ], [ 4954833.469012681394815, 3892354.605374385602772 ], [ 4954811.932037381455302, 3892298.866831515450031 ], [ 4954889.176867735572159, 3892269.104842158500105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954492.023598243482411, 3893103.557473816443235 ], [ 4954502.394890968687832, 3893103.206171332858503 ], [ 4954503.229852087795734, 3893126.875561934430152 ], [ 4954458.28687547519803, 3893129.004780267365277 ], [ 4954455.482995654456317, 3893066.735330149531364 ], [ 4954490.3423976842314, 3893065.32189464289695 ], [ 4954492.023598243482411, 3893103.557473816443235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953667.725182461552322, 3900831.925547481048852 ], [ 4953640.65442300774157, 3900831.164648308418691 ], [ 4953641.845026968047023, 3900799.122623020317405 ], [ 4953668.915379446931183, 3900800.247653064318001 ], [ 4953667.725182461552322, 3900831.925547481048852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953175.377428091131151, 3893450.068620023317635 ], [ 4953172.738486118614674, 3893489.027250357437879 ], [ 4953138.172098756767809, 3893486.801455129403621 ], [ 4953140.81099085137248, 3893447.842821445781738 ], [ 4953175.377428091131151, 3893450.068620023317635 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952602.631120510399342, 3902877.803293407894671 ], [ 4952608.298828966915607, 3902956.462132112123072 ], [ 4952543.787704966962337, 3902960.756502413656563 ], [ 4952532.736462709493935, 3902806.3522331956774 ], [ 4952562.976381467655301, 3902804.202666788361967 ], [ 4952568.647192461416125, 3902880.312582415994257 ], [ 4952602.631120510399342, 3902877.803293407894671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952225.674485674127936, 3902626.116026131436229 ], [ 4952262.831911554560065, 3902618.876267607323825 ], [ 4952279.149061574600637, 3902703.373404801357538 ], [ 4952311.697513960301876, 3902697.220784349367023 ], [ 4952318.28139566630125, 3902731.456673739012331 ], [ 4952248.287739570252597, 3902744.848681563977152 ], [ 4952225.674485674127936, 3902626.116026131436229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952184.580373533070087, 3892790.201727278530598 ], [ 4952264.081430001184344, 3892798.668278213124722 ], [ 4952260.005438041873276, 3892835.804681687150151 ], [ 4952180.504490152932703, 3892827.33814261900261 ], [ 4952184.580373533070087, 3892790.201727278530598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951807.210575010627508, 3900628.745960033498704 ], [ 4951842.935629672370851, 3900617.134436308871955 ], [ 4951857.571300438605249, 3900663.031500373035669 ], [ 4951821.846714589744806, 3900674.278875259682536 ], [ 4951807.210575010627508, 3900628.745960033498704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951598.51452683005482, 3901047.623356654308736 ], [ 4951564.235868422314525, 3901054.139015414286405 ], [ 4951558.508433357812464, 3901025.366266411263496 ], [ 4951592.787538153119385, 3901018.486470688600093 ], [ 4951598.51452683005482, 3901047.623356654308736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951527.749985521659255, 3893559.221715339459479 ], [ 4951529.519032341428101, 3893523.174973838962615 ], [ 4951558.325246528722346, 3893524.299820178654045 ], [ 4951558.330172712914646, 3893519.930282265879214 ], [ 4951583.679495444521308, 3893521.051258714869618 ], [ 4951583.094718612730503, 3893528.697299991734326 ], [ 4951612.188999088481069, 3893529.822529084049165 ], [ 4951610.715317892841995, 3893559.315283618867397 ], [ 4951583.349924622103572, 3893557.827878119889647 ], [ 4951583.345405219122767, 3893561.833287953864783 ], [ 4951527.749985521659255, 3893559.221715339459479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950731.048306806012988, 3891092.459002536255866 ], [ 4950740.876475251279771, 3891062.611277557443827 ], [ 4950818.348766251467168, 3891087.092949601821601 ], [ 4950807.65261712577194, 3891120.21684543415904 ], [ 4950783.460599409416318, 3891112.543570188805461 ], [ 4950779.991397833451629, 3891123.463602642528713 ], [ 4950756.087475429289043, 3891115.790668448898941 ], [ 4950760.712267156690359, 3891101.958876573015004 ], [ 4950731.048306806012988, 3891092.459002536255866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949922.060511653311551, 3894334.511870699469 ], [ 4949904.146873368881643, 3894384.742541892454028 ], [ 4949892.916209287010133, 3894381.089285714086145 ], [ 4949885.981697587296367, 3894400.744852322153747 ], [ 4949866.688316056504846, 3894394.169989434536546 ], [ 4949873.912043805234134, 3894373.422339535318315 ], [ 4949829.278560702688992, 3894357.717314768582582 ], [ 4949838.523376261815429, 3894332.602259295526892 ], [ 4949884.884901545010507, 3894348.673268528655171 ], [ 4949893.552864445373416, 3894324.285875149071217 ], [ 4949922.060511653311551, 3894334.511870699469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949501.124881830997765, 3888644.56367339938879 ], [ 4949470.570072054862976, 3888657.276052224915475 ], [ 4949460.223874349147081, 3888632.14039355609566 ], [ 4949472.906807321123779, 3888627.055917099583894 ], [ 4949469.170328868553042, 3888618.312934022862464 ], [ 4949462.540351030416787, 3888621.218997215852141 ], [ 4949454.459045293740928, 3888634.319111322518438 ], [ 4949419.329695633612573, 3888613.162887186743319 ], [ 4949442.13067592214793, 3888576.045773594640195 ], [ 4949462.286608913913369, 3888588.447251006495208 ], [ 4949469.781359056010842, 3888585.177967817522585 ], [ 4949493.681014164350927, 3888599.404035963583738 ], [ 4949486.754489338025451, 3888610.320587906986475 ], [ 4949501.124881830997765, 3888644.56367339938879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948862.988717700354755, 3890825.390320193488151 ], [ 4948892.662615632638335, 3890826.149068572558463 ], [ 4948892.347932156175375, 3890852.001834156922996 ], [ 4948862.38558569829911, 3890851.606917870230973 ], [ 4948862.988717700354755, 3890825.390320193488151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947021.735782470554113, 3890206.001388918608427 ], [ 4947081.38364871032536, 3890196.591304736677557 ], [ 4947088.543709794990718, 3890241.021783755626529 ], [ 4947077.017575808800757, 3890242.831348821055144 ], [ 4947083.317852430976927, 3890282.527339386753738 ], [ 4947035.196285434998572, 3890290.127831767313182 ], [ 4947021.735782470554113, 3890206.001388918608427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945034.896869133226573, 3891868.96361914742738 ], [ 4945025.656344395130873, 3891893.352034292183816 ], [ 4945000.600710676982999, 3891883.862555384170264 ], [ 4945010.129308207891881, 3891859.474386364687234 ], [ 4945034.896869133226573, 3891868.96361914742738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944265.246774395927787, 3890704.176356827374548 ], [ 4944256.818827763199806, 3890789.375081204343587 ], [ 4944217.927931833080947, 3890785.700550609268248 ], [ 4944219.380582897923887, 3890771.500801760703325 ], [ 4944216.211750554852188, 3890771.133966823108494 ], [ 4944220.860612216405571, 3890725.257818068377674 ], [ 4944224.605658777058125, 3890725.625145916361362 ], [ 4944226.932276936247945, 3890700.138178988359869 ], [ 4944265.246774395927787, 3890704.176356827374548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944151.370911054313183, 3891468.019679925404489 ], [ 4944152.262496203184128, 3891435.977167855016887 ], [ 4944239.554588055238128, 3891437.508180763572454 ], [ 4944238.662587567232549, 3891469.914817793760449 ], [ 4944151.370911054313183, 3891468.019679925404489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943178.450793636962771, 3889723.4000567314215 ], [ 4943154.804583783261478, 3889748.869721998926252 ], [ 4943160.274612771347165, 3889753.971966955345124 ], [ 4943147.009764549322426, 3889768.162141837645322 ], [ 4943113.325808854773641, 3889736.819747127592564 ], [ 4943150.524679725058377, 3889697.524228323251009 ], [ 4943178.450793636962771, 3889723.4000567314215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943084.042454495094717, 3889608.258873554877937 ], [ 4943076.557339660823345, 3889600.970242580398917 ], [ 4943059.255878071300685, 3889618.798459889367223 ], [ 4943031.04230909049511, 3889591.830141121521592 ], [ 4943064.780310645699501, 3889556.901235640048981 ], [ 4943100.478997675701976, 3889591.158224747516215 ], [ 4943084.042454495094717, 3889608.258873554877937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990114.617661872878671, 3909715.510999421589077 ], [ 4990121.902926323004067, 3909681.301159809343517 ], [ 4990098.307148842141032, 3909676.506954208016396 ], [ 4990103.551895319484174, 3909652.123475709464401 ], [ 4990156.497777863405645, 3909663.183206546120346 ], [ 4990149.504100837744772, 3909695.937251767143607 ], [ 4990167.63253332208842, 3909699.625078211538494 ], [ 4990162.096101017668843, 3909725.464329416397959 ], [ 4990114.617661872878671, 3909715.510999421589077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988514.331542097963393, 3906199.03311047423631 ], [ 4988488.995676325634122, 3906197.877303767949343 ], [ 4988489.924185586161911, 3906172.026235398370773 ], [ 4988515.548014609143138, 3906173.182763758581132 ], [ 4988514.331542097963393, 3906199.03311047423631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988316.97281548101455, 3908438.683105657342821 ], [ 4988323.531222080811858, 3908464.188771684188396 ], [ 4988296.162094398401678, 3908471.038985561113805 ], [ 4988289.603663539513946, 3908445.533326118253171 ], [ 4988316.97281548101455, 3908438.683105657342821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988265.11091436073184, 3908222.62298050429672 ], [ 4988223.915192713029683, 3908231.987714507617056 ], [ 4988218.788051280193031, 3908209.762838639318943 ], [ 4988259.983805160969496, 3908200.398096913937479 ], [ 4988265.11091436073184, 3908222.62298050429672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987903.462560696527362, 3906954.906182690057904 ], [ 4987868.326008450239897, 3906958.460371005348861 ], [ 4987865.235505496151745, 3906927.501452622935176 ], [ 4987900.372097781859338, 3906923.947260339744389 ], [ 4987903.462560696527362, 3906954.906182690057904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986830.991530727595091, 3906569.56413421779871 ], [ 4986867.858726464211941, 3906564.920418661553413 ], [ 4986867.011817044578493, 3906557.999836644157767 ], [ 4986888.038171877153218, 3906555.138132107444108 ], [ 4986887.193046268075705, 3906547.489289226476103 ], [ 4986913.691064896062016, 3906544.276838758029044 ], [ 4986917.368368024006486, 3906571.231616219971329 ], [ 4986895.191173737868667, 3906573.726353940088302 ], [ 4986898.582336161285639, 3906599.952165612019598 ], [ 4986884.181172428652644, 3906601.737646878231317 ], [ 4986885.879426376894116, 3906613.758161673787981 ], [ 4986852.467504038475454, 3906618.410288105718791 ], [ 4986850.771013405174017, 3906605.661515071988106 ], [ 4986836.081032942049205, 3906607.810449328739196 ], [ 4986830.991530727595091, 3906569.56413421779871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986553.751806820742786, 3904656.103069354780018 ], [ 4986558.201221087016165, 3904602.58649773336947 ], [ 4986599.082965829409659, 3904605.963070524390787 ], [ 4986599.974283747375011, 3904594.677150296512991 ], [ 4986627.036815464496613, 3904596.9277672348544 ], [ 4986620.813470529392362, 3904669.374869840219617 ], [ 4986590.872346248477697, 3904666.753127504140139 ], [ 4986591.466849685646594, 3904659.107803638558835 ], [ 4986553.751806820742786, 3904656.103069354780018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986499.637102860957384, 3899072.382929942104965 ], [ 4986512.376072929240763, 3899045.104060179088265 ], [ 4986570.202546059153974, 3899071.826067454181612 ], [ 4986557.463529762811959, 3899099.104910234455019 ], [ 4986499.637102860957384, 3899072.382929942104965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986475.927699437364936, 3908245.894133848138154 ], [ 4986471.704409465193748, 3908206.557553440332413 ], [ 4986521.239421725273132, 3908201.215850730892271 ], [ 4986526.309582274407148, 3908247.473017222248018 ], [ 4986502.694224508479238, 3908249.964584175497293 ], [ 4986501.84727630764246, 3908243.044006478972733 ], [ 4986475.927699437364936, 3908245.894133848138154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986366.539222392253578, 3905623.511560804210603 ], [ 4986404.267053581774235, 3905620.689954963047057 ], [ 4986403.707938738167286, 3905613.770089711528271 ], [ 4986441.147842695936561, 3905610.94783750269562 ], [ 4986446.453588160686195, 3905679.053410991560668 ], [ 4986417.941813887096941, 3905681.169042325112969 ], [ 4986417.108005682006478, 3905668.786528913769871 ], [ 4986410.195576296187937, 3905669.498030344024301 ], [ 4986411.033802600577474, 3905680.059893764089793 ], [ 4986384.825585604645312, 3905682.181146268267184 ], [ 4986383.98646645527333, 3905671.983413608279079 ], [ 4986370.162493935786188, 3905673.04230533214286 ], [ 4986366.539222392253578, 3905623.511560804210603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986315.368536293506622, 3901069.193975518923253 ], [ 4986337.002447381615639, 3901055.045246853493154 ], [ 4986352.210547807626426, 3901078.022339120041579 ], [ 4986330.864640468731523, 3901092.171753122936934 ], [ 4986315.368536293506622, 3901069.193975518923253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986282.42860047519207, 3909561.765232741367072 ], [ 4986329.085578675381839, 3909554.959679379593581 ], [ 4986333.335317706689239, 3909583.372345132287592 ], [ 4986328.150429202243686, 3909584.452184769324958 ], [ 4986332.400164400227368, 3909612.864850892219692 ], [ 4986290.639382349327207, 3909618.953984781168401 ], [ 4986282.42860047519207, 3909561.765232741367072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986228.610648913308978, 3908601.052547988947481 ], [ 4986176.188505548983812, 3908610.029140330851078 ], [ 4986169.372737981379032, 3908571.050467781722546 ], [ 4986174.557815392501652, 3908569.970598184503615 ], [ 4986166.894130003638566, 3908524.435489268507808 ], [ 4986171.502509023994207, 3908523.718358470592648 ], [ 4986164.971987055614591, 3908485.832776574417949 ], [ 4986170.156200900673866, 3908485.117036783602089 ], [ 4986162.205448241904378, 3908439.217105349991471 ], [ 4986213.764175691641867, 3908430.238398283720016 ], [ 4986220.579035105183721, 3908469.581209287513047 ], [ 4986216.25855977088213, 3908470.29902780149132 ], [ 4986224.210091223008931, 3908515.834845504723489 ], [ 4986219.02588183619082, 3908516.550574874039739 ], [ 4986225.84071104042232, 3908555.893389315344393 ], [ 4986220.944422694854438, 3908556.609814601019025 ], [ 4986228.610648913308978, 3908601.052547988947481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986221.029231313616037, 3901971.282792183104903 ], [ 4986258.263714291155338, 3901936.416231277864426 ], [ 4986280.381234725005925, 3901960.138272770214826 ], [ 4986243.147636282257736, 3901994.640674377325922 ], [ 4986221.029231313616037, 3901971.282792183104903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986054.430190710350871, 3906329.537559855729342 ], [ 4986057.672148814424872, 3906298.594139330089092 ], [ 4986066.883515720255673, 3906299.708753801416606 ], [ 4986069.82613474689424, 3906273.498332054819912 ], [ 4986081.053074494935572, 3906274.617813537828624 ], [ 4986082.819357954896986, 3906258.600257496349514 ], [ 4986128.014192971400917, 3906263.443058576434851 ], [ 4986125.660578522831202, 3906284.19291262421757 ], [ 4986119.615644620731473, 3906283.45005424041301 ], [ 4986116.378887513652444, 3906312.208686353173107 ], [ 4986108.894272550009191, 3906311.462354985997081 ], [ 4986106.245708672329783, 3906335.124557245988399 ], [ 4986054.430190710350871, 3906329.537559855729342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985973.393977319821715, 3908413.636461146641523 ], [ 4985995.83038997463882, 3908541.865231715142727 ], [ 4986001.879206562414765, 3908540.787410207558423 ], [ 4986008.693469639867544, 3908580.494300790596753 ], [ 4986003.508401001803577, 3908581.574202396441251 ], [ 4986011.178490058518946, 3908624.560351920314133 ], [ 4986017.515201315283775, 3908623.483227840159088 ], [ 4986024.330297581851482, 3908662.825993773061782 ], [ 4985972.195378843694925, 3908672.167809219565243 ], [ 4985964.814031029120088, 3908628.818232380785048 ], [ 4985957.901498011313379, 3908629.893982120789587 ], [ 4985951.087172782979906, 3908590.187103201169521 ], [ 4985953.391353704966605, 3908589.828519186004996 ], [ 4985938.336229427717626, 3908504.94934329809621 ], [ 4985939.776675715111196, 3908504.588678612839431 ], [ 4985932.677006479352713, 3908463.78872246760875 ], [ 4985926.05234669148922, 3908464.865173398517072 ], [ 4985918.66736026480794, 3908422.972137151751667 ], [ 4985973.393977319821715, 3908413.636461146641523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985668.479346833191812, 3904214.45923729846254 ], [ 4985660.631989757530391, 3904244.663362429477274 ], [ 4985626.673695891164243, 3904235.842828306835145 ], [ 4985646.436448731459677, 3904160.150776636321098 ], [ 4985680.393958898261189, 3904169.335464969743043 ], [ 4985673.998597056604922, 3904194.445222350768745 ], [ 4985685.510016526095569, 3904197.38587578991428 ], [ 4985680.278718176297843, 3904217.400578821077943 ], [ 4985668.479346833191812, 3904214.45923729846254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985499.230516755022109, 3904063.66765161883086 ], [ 4985494.218522591516376, 3904112.449318889994174 ], [ 4985498.825027807615697, 3904112.824463619850576 ], [ 4985495.289407547563314, 3904146.316129327751696 ], [ 4985468.51516064722091, 3904143.703211226500571 ], [ 4985470.579615917988122, 3904123.316768240183592 ], [ 4985450.138743686489761, 3904121.447268141899258 ], [ 4985453.384609623812139, 3904088.683168276678771 ], [ 4985443.596536884084344, 3904087.567389830946922 ], [ 4985445.659237654879689, 3904067.909204878844321 ], [ 4985457.463047633878887, 3904069.029800154734403 ], [ 4985458.349552604369819, 3904059.564493884798139 ], [ 4985499.230516755022109, 3904063.66765161883086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984917.787214426323771, 3908943.84054100047797 ], [ 4984958.912471074610949, 3908963.237062134314328 ], [ 4984945.602187488228083, 3908991.24372939625755 ], [ 4984904.47696424741298, 3908971.847228293307126 ], [ 4984917.787214426323771, 3908943.84054100047797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984774.814263981766999, 3905239.911874982062727 ], [ 4984764.672363195568323, 3905266.83366584405303 ], [ 4984751.725861778482795, 3905262.069353016559035 ], [ 4984744.190154389478266, 3905282.80706754559651 ], [ 4984761.164482179097831, 3905289.037424064707011 ], [ 4984752.471819338388741, 3905311.957193970680237 ], [ 4984704.425753692165017, 3905294.365362027660012 ], [ 4984711.669178903102875, 3905275.447605777066201 ], [ 4984705.627419067546725, 3905273.248546245973557 ], [ 4984722.72561529930681, 3905227.044170287903398 ], [ 4984736.247176439501345, 3905232.173959537409246 ], [ 4984738.276584225706756, 3905226.352643105201423 ], [ 4984774.814263981766999, 3905239.911874982062727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984595.095793902873993, 3906721.505298777483404 ], [ 4984576.081057950854301, 3906726.19419907219708 ], [ 4984579.219141977839172, 3906738.582092199008912 ], [ 4984550.121626212261617, 3906745.432042889297009 ], [ 4984547.840466130524874, 3906735.959229946602136 ], [ 4984528.537815898656845, 3906740.647485658060759 ], [ 4984531.676777665503323, 3906752.671243085991591 ], [ 4984501.71463436447084, 3906759.883342215791345 ], [ 4984499.433458477258682, 3906750.410533306188881 ], [ 4984480.41875980887562, 3906755.099501378368586 ], [ 4984483.270665736868978, 3906766.758445446379483 ], [ 4984453.309407738037407, 3906773.606468351557851 ], [ 4984442.472447924315929, 3906729.156842751894146 ], [ 4984468.976842981763184, 3906723.02893905248493 ], [ 4984465.268836593255401, 3906708.090792376082391 ], [ 4984490.04480124078691, 3906702.322975501418114 ], [ 4984492.611346664838493, 3906712.88885177206248 ], [ 4984516.811446456238627, 3906707.119704191572964 ], [ 4984513.675901857204735, 3906693.639427860733122 ], [ 4984537.58809014223516, 3906687.869621148332953 ], [ 4984540.440836220979691, 3906699.164440553635359 ], [ 4984565.216825388371944, 3906693.396693017333746 ], [ 4984562.082161390222609, 3906679.552280908916146 ], [ 4984586.858173317275941, 3906673.784553403034806 ], [ 4984589.13932503387332, 3906683.257369291502982 ], [ 4984612.47481326572597, 3906677.850402071606368 ], [ 4984609.625529574230313, 3906665.099054224789143 ], [ 4984634.401565117761493, 3906659.331370609812438 ], [ 4984645.519296790473163, 3906706.694792965427041 ], [ 4984624.488150713965297, 3906711.743034027516842 ], [ 4984627.338281154632568, 3906724.130253558512777 ], [ 4984597.376938586123288, 3906730.978115641977638 ], [ 4984595.095793902873993, 3906721.505298777483404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984543.761399414390326, 3908956.42975091189146 ], [ 4984549.755159929394722, 3908978.655970565974712 ], [ 4984533.621972915716469, 3908982.987559871282429 ], [ 4984527.628200053237379, 3908960.761343762278557 ], [ 4984543.761399414390326, 3908956.42975091189146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984388.491995897144079, 3906297.169135776814073 ], [ 4984378.695274575613439, 3906300.059175509959459 ], [ 4984382.120582141913474, 3906312.811849012505263 ], [ 4984346.392402612604201, 3906322.923631307203323 ], [ 4984329.258060659281909, 3906262.437462925445288 ], [ 4984375.070133890025318, 3906249.800420161802322 ], [ 4984388.491995897144079, 3906297.169135776814073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984348.811912967823446, 3904311.464413006324321 ], [ 4984323.87053647916764, 3904386.781129997223616 ], [ 4984291.356049523688853, 3904376.145013251341879 ], [ 4984316.585303517989814, 3904300.828942373394966 ], [ 4984348.811912967823446, 3904311.464413006324321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984276.056163244880736, 3916909.936384269036353 ], [ 4984306.316135101951659, 3916893.621348395943642 ], [ 4984341.567956231534481, 3916957.791816363111138 ], [ 4984319.952990137040615, 3916969.757495685014874 ], [ 4984309.062725777737796, 3916949.704523533117026 ], [ 4984294.941429627127945, 3916957.318201513029635 ], [ 4984282.045776115730405, 3916933.255053101107478 ], [ 4984287.233437546528876, 3916930.354150601197034 ], [ 4984276.056163244880736, 3916909.936384269036353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983795.16544228605926, 3900679.416840303689241 ], [ 4983755.337065360508859, 3900715.737274858634919 ], [ 4983736.951795236207545, 3900695.667322972789407 ], [ 4983776.492178872227669, 3900659.346191599499434 ], [ 4983795.16544228605926, 3900679.416840303689241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983667.253364381380379, 3909250.783323830924928 ], [ 4983604.740594990551472, 3909266.66001553228125 ], [ 4983591.90058699157089, 3909216.744024786632508 ], [ 4983654.701371187344193, 3909200.867972400039434 ], [ 4983667.253364381380379, 3909250.783323830924928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982714.884824796579778, 3906217.185156789142638 ], [ 4982705.327059641480446, 3906241.560146863572299 ], [ 4982680.874791347421706, 3906231.672667264938354 ], [ 4982690.719643726944923, 3906207.662457203026861 ], [ 4982714.884824796579778, 3906217.185156789142638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981644.258769212290645, 3914955.043269983958453 ], [ 4981711.229076611809433, 3914998.525876490864903 ], [ 4981690.721667907200754, 3915029.795256205368787 ], [ 4981623.752224017865956, 3914985.948567751329392 ], [ 4981644.258769212290645, 3914955.043269983958453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981472.673400202766061, 3901737.010679748374969 ], [ 4981484.918893907219172, 3901798.576274645049125 ], [ 4981457.548008500598371, 3901803.976909155957401 ], [ 4981459.825789509341121, 3901815.634206840768456 ], [ 4981441.09857037756592, 3901819.233568849507719 ], [ 4981439.107136266306043, 3901808.305176207795739 ], [ 4981427.006845842115581, 3901810.462865970097482 ], [ 4981419.033736996352673, 3901770.026464390568435 ], [ 4981440.642479677684605, 3901765.705278270877898 ], [ 4981440.073031449690461, 3901762.790954319294542 ], [ 4981450.445427256636322, 3901760.62939991755411 ], [ 4981446.743202152661979, 3901742.050422490108758 ], [ 4981472.673400202766061, 3901737.010679748374969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981432.747501197271049, 3903104.962238142732531 ], [ 4981456.467237088829279, 3903057.678289921022952 ], [ 4981455.03390162717551, 3903054.762027939315885 ], [ 4981490.784097124822438, 3903036.271442384459078 ], [ 4981493.676882641389966, 3903030.451825285796076 ], [ 4981512.705119233578444, 3903020.662941079121083 ], [ 4981530.197944103740156, 3903053.473995209671557 ], [ 4981496.465998083353043, 3903070.876658896915615 ], [ 4981494.440397658385336, 3903075.241694352123886 ], [ 4981472.529222397133708, 3903086.480656593106687 ], [ 4981457.198181979358196, 3903117.033340489026159 ], [ 4981432.747501197271049, 3903104.962238142732531 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981357.645975134335458, 3907069.097164035309106 ], [ 4981384.464961056597531, 3907050.58642615005374 ], [ 4981408.572775974869728, 3907085.597085919696838 ], [ 4981381.753808224573731, 3907104.107800140511245 ], [ 4981357.645975134335458, 3907069.097164035309106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981346.772281363606453, 3901630.766716402955353 ], [ 4981340.538323514163494, 3901585.236397390719503 ], [ 4981383.461581197567284, 3901579.506306606344879 ], [ 4981390.544763708487153, 3901631.592894713394344 ], [ 4981368.363204507157207, 3901634.456315441988409 ], [ 4981367.513903211802244, 3901627.900056833401322 ], [ 4981346.772281363606453, 3901630.766716402955353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981287.742297883145511, 3903560.894564415793866 ], [ 4981268.469659888185561, 3903551.384096495807171 ], [ 4981279.462022232823074, 3903529.196629474405199 ], [ 4981334.690671586431563, 3903556.629914473276585 ], [ 4981318.782492776401341, 3903587.909657693002373 ], [ 4981283.113678242079914, 3903570.351642274297774 ], [ 4981287.742297883145511, 3903560.894564415793866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981009.376077778637409, 3901703.204714874271303 ], [ 4981016.582225981168449, 3901700.307690840214491 ], [ 4981007.986341965384781, 3901680.62549979519099 ], [ 4981050.073771623894572, 3901662.148431723937392 ], [ 4981067.552653721533716, 3901701.877613503951579 ], [ 4981017.971143692731857, 3901723.251035878900439 ], [ 4981009.376077778637409, 3901703.204714874271303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980937.226621629670262, 3903327.797915139235556 ], [ 4980950.240250655449927, 3903303.065886424854398 ], [ 4980973.826248720288277, 3903315.498760883696377 ], [ 4980960.524634674191475, 3903340.23013852769509 ], [ 4980937.226621629670262, 3903327.797915139235556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980900.856891539879143, 3908035.942996089812368 ], [ 4980939.8044139649719, 3908000.708642207551748 ], [ 4980965.368538657203317, 3908028.075379117857665 ], [ 4980926.420213396660984, 3908063.673827210441232 ], [ 4980900.856891539879143, 3908035.942996089812368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980822.325427633710206, 3903717.891872269567102 ], [ 4980809.016080526635051, 3903746.264628017321229 ], [ 4980773.632690580561757, 3903729.800314456224442 ], [ 4980787.229973756708205, 3903701.428179437294602 ], [ 4980822.325427633710206, 3903717.891872269567102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980736.020728388801217, 3901597.728542783297598 ], [ 4980784.741506152786314, 3901574.896171086467803 ], [ 4980791.335385967977345, 3901588.383626294787973 ], [ 4980784.992389605380595, 3901591.646753612440079 ], [ 4980790.439153921790421, 3901602.946881540585309 ], [ 4980802.836349382996559, 3901596.784122020471841 ], [ 4980813.729049311950803, 3901619.748515599872917 ], [ 4980758.954141243360937, 3901645.480477449949831 ], [ 4980736.020728388801217, 3901597.728542783297598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980551.490785362198949, 3899999.150491462554783 ], [ 4980619.811527811922133, 3899970.53499860316515 ], [ 4980637.574529558420181, 3900012.813398818019778 ], [ 4980583.090958112850785, 3900035.633299326058477 ], [ 4980577.074206626974046, 3900021.418921436183155 ], [ 4980563.525122631341219, 3900027.215107984375209 ], [ 4980551.490785362198949, 3899999.150491462554783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980455.692328087985516, 3904917.623549822252244 ], [ 4980464.293989328667521, 3904934.392563010100275 ], [ 4980478.419697532430291, 3904927.141058555804193 ], [ 4980498.778402895666659, 3904966.148035975638777 ], [ 4980466.779640027321875, 3904982.463431881275028 ], [ 4980446.422505021095276, 3904942.728218354284763 ], [ 4980431.432155684567988, 3904950.341967159416527 ], [ 4980423.116827652789652, 3904934.301858372986317 ], [ 4980455.692328087985516, 3904917.623549822252244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980359.017984791658819, 3898335.014364192727953 ], [ 4980313.75518243573606, 3898354.577900917734951 ], [ 4980304.870480317622423, 3898334.531212738249451 ], [ 4980293.91521174274385, 3898339.240839154459536 ], [ 4980287.323477284051478, 3898324.29701805440709 ], [ 4980298.566773838363588, 3898319.588021744042635 ], [ 4980290.256495633162558, 3898300.270861363038421 ], [ 4980325.14012305624783, 3898285.418165497481823 ], [ 4980338.035538755357265, 3898315.305194114800543 ], [ 4980348.413977917283773, 3898310.958447725977749 ], [ 4980359.017984791658819, 3898335.014364192727953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980148.920444851741195, 3907459.683298110496253 ], [ 4980165.107325276359916, 3907430.952333290595561 ], [ 4980188.688456259667873, 3907444.11281103361398 ], [ 4980193.312834091484547, 3907436.112044414971024 ], [ 4980215.455918788909912, 3907448.541126551106572 ], [ 4980194.356697554700077, 3907485.272195522673428 ], [ 4980148.920444851741195, 3907459.683298110496253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980140.436266731470823, 3907126.847810893319547 ], [ 4980149.700270221568644, 3907103.927785995882004 ], [ 4980171.563705447129905, 3907112.71489351708442 ], [ 4980162.298887925222516, 3907135.999041478615254 ], [ 4980140.436266731470823, 3907126.847810893319547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980118.940090370364487, 3901955.40299013722688 ], [ 4980145.763308401219547, 3901936.891073785722256 ], [ 4980160.692197674885392, 3901958.043396524619311 ], [ 4980133.868990380316973, 3901976.555298211518675 ], [ 4980118.940090370364487, 3901955.40299013722688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980047.159093614667654, 3907384.449175104498863 ], [ 4980027.210958381183445, 3907421.547024641185999 ], [ 4979998.451843590475619, 3907406.190573525615036 ], [ 4980018.399950378574431, 3907369.092702988069504 ], [ 4980047.159093614667654, 3907384.449175104498863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979918.59653134457767, 3894918.51085529057309 ], [ 4980041.414201661013067, 3894871.078207158483565 ], [ 4980060.033747779205441, 3894918.819904981181026 ], [ 4980007.562348345294595, 3894939.09641952207312 ], [ 4980013.005228080786765, 3894952.945239919237792 ], [ 4979996.86038872320205, 3894959.100155403837562 ], [ 4980004.880678905174136, 3894979.873068642336875 ], [ 4979992.771863278932869, 3894984.580290030688047 ], [ 4980000.220806538127363, 3895003.167176296934485 ], [ 4980011.464643223211169, 3894998.822197015397251 ], [ 4980023.209766985848546, 3895028.706497915554792 ], [ 4980039.931483789347112, 3895022.188730095978826 ], [ 4980070.2959667397663, 3895099.814753854181617 ], [ 4980010.329053743742406, 3895122.987901297863573 ], [ 4979961.344824690371752, 3894997.620298302266747 ], [ 4979950.965966614894569, 3895001.603057751897722 ], [ 4979918.59653134457767, 3894918.51085529057309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979837.196692825295031, 3908866.009596320800483 ], [ 4979818.718855790793896, 3908889.637930889613926 ], [ 4979785.952670478262007, 3908864.077242556959391 ], [ 4979804.42970257718116, 3908840.813016700558364 ], [ 4979837.196692825295031, 3908866.009596320800483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979777.199301915243268, 3903232.757139233872294 ], [ 4979799.186597741208971, 3903186.19622091576457 ], [ 4979822.488432634621859, 3903197.170938173308969 ], [ 4979800.501105298288167, 3903243.73183773830533 ], [ 4979777.199301915243268, 3903232.757139233872294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979674.420819127000868, 3904279.775589328724891 ], [ 4979658.815621335059404, 3904305.230877205263823 ], [ 4979620.279745045118034, 3904281.842724715359509 ], [ 4979635.596960328519344, 3904256.386789188254625 ], [ 4979674.420819127000868, 3904279.775589328724891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979538.608782748691738, 3906753.392458777409047 ], [ 4979515.243597965687513, 3906773.004918844904751 ], [ 4979481.355157415382564, 3906732.512791014742106 ], [ 4979504.720352483913302, 3906712.900301962159574 ], [ 4979538.608782748691738, 3906753.392458777409047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979446.720398158766329, 3908631.752005535643548 ], [ 4979474.911367319524288, 3908643.101190618705004 ], [ 4979460.727135149762034, 3908678.391314326319844 ], [ 4979432.536197122186422, 3908667.042143879458308 ], [ 4979446.720398158766329, 3908631.752005535643548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979412.949062501080334, 3901087.962386507540941 ], [ 4979408.624433788470924, 3901090.137813035398722 ], [ 4979417.224042961373925, 3901108.727098048198968 ], [ 4979371.676236120052636, 3901129.384018094278872 ], [ 4979352.47123639844358, 3901087.467442260123789 ], [ 4979402.342943013645709, 3901064.999191141221672 ], [ 4979412.949062501080334, 3901087.962386507540941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979387.378894806839526, 3908646.188840011134744 ], [ 4979417.014164942316711, 3908655.356294311583042 ], [ 4979412.665527142584324, 3908669.18391737062484 ], [ 4979420.722337464801967, 3908671.386154675390571 ], [ 4979408.546479904092848, 3908709.957847686018795 ], [ 4979395.886244313791394, 3908706.289121047127992 ], [ 4979390.669163008220494, 3908722.299664068967104 ], [ 4979361.897692944854498, 3908713.134106565732509 ], [ 4979369.434594516642392, 3908689.481792283244431 ], [ 4979363.105257242918015, 3908687.283306597266346 ], [ 4979370.063191937282681, 3908665.086270837113261 ], [ 4979380.420940968208015, 3908668.385871032252908 ], [ 4979387.378894806839526, 3908646.188840011134744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979367.359030655585229, 3897531.765507501084358 ], [ 4979358.462328259833157, 3897516.816939338110387 ], [ 4979329.911001276224852, 3897533.505216155666858 ], [ 4979310.970138097181916, 3897501.420848700683564 ], [ 4979322.79439018573612, 3897494.527920557651669 ], [ 4979316.192467897199094, 3897483.953885674942285 ], [ 4979332.91956913843751, 3897474.15851315530017 ], [ 4979338.37250685878098, 3897483.273548719938844 ], [ 4979362.021834360435605, 3897469.123593548778445 ], [ 4979391.007543301209807, 3897517.979705815203488 ], [ 4979367.359030655585229, 3897531.765507501084358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979268.163110422901809, 3909988.488400379661471 ], [ 4979257.209620639681816, 3909994.655007523950189 ], [ 4979244.591628811322153, 3909971.6873983531259 ], [ 4979270.245236365124583, 3909957.541604867670685 ], [ 4979289.745235989801586, 3909993.268741623032838 ], [ 4979275.045924759469926, 3910000.883781268261373 ], [ 4979268.163110422901809, 3909988.488400379661471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979082.13598336558789, 3907868.835575389675796 ], [ 4979055.477282262407243, 3907947.794934457633644 ], [ 4979012.320610703900456, 3907933.136827963870019 ], [ 4979020.723529768176377, 3907908.393892105203122 ], [ 4979031.081613514572382, 3907911.693356095347553 ], [ 4979036.297852576710284, 3907896.046881960704923 ], [ 4979025.365488407202065, 3907892.01791640650481 ], [ 4979038.115436574444175, 3907854.175569068174809 ], [ 4979082.13598336558789, 3907868.835575389675796 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979071.168187147937715, 3895164.646976735442877 ], [ 4979072.105197757482529, 3895130.784942112863064 ], [ 4979101.485468029044569, 3895131.576413204427809 ], [ 4979100.548420432023704, 3895165.438446803949773 ], [ 4979071.168187147937715, 3895164.646976735442877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978923.881216689012945, 3906479.695194542873651 ], [ 4978951.267941381782293, 3906464.460444153286517 ], [ 4978979.666407394222915, 3906514.407532433047891 ], [ 4978952.278935379348695, 3906530.006384722422808 ], [ 4978923.881216689012945, 3906479.695194542873651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978705.863787061534822, 3900980.4793955902569 ], [ 4978737.904395608231425, 3900946.319614036940038 ], [ 4978776.131338953971863, 3900982.086229061242193 ], [ 4978759.10070369578898, 3901000.256323158740997 ], [ 4978751.628432114608586, 3900992.95771854557097 ], [ 4978736.618452974595129, 3901008.947365257889032 ], [ 4978705.863787061534822, 3900980.4793955902569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978646.217025577090681, 3902208.929798917844892 ], [ 4978668.335578622296453, 3902235.194485153071582 ], [ 4978639.774129193276167, 3902259.166131203062832 ], [ 4978603.00583045464009, 3902215.391907895449549 ], [ 4978623.200280708260834, 3902198.684981765691191 ], [ 4978637.850014396943152, 3902216.19455280341208 ], [ 4978646.217025577090681, 3902208.929798917844892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978634.799073120579123, 3905397.968608298804611 ], [ 4978592.435866579413414, 3905414.264105540700257 ], [ 4978575.825824522413313, 3905371.625245803501457 ], [ 4978617.9019177518785, 3905354.964977934490889 ], [ 4978634.799073120579123, 3905397.968608298804611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978538.501144317910075, 3905725.845916463062167 ], [ 4978531.581957194954157, 3905729.836616524495184 ], [ 4978507.195973071269691, 3905687.909479675814509 ], [ 4978534.008153373375535, 3905672.308954150881618 ], [ 4978564.707127479836345, 3905724.445271716918796 ], [ 4978544.526223036460578, 3905736.054454697761685 ], [ 4978538.501144317910075, 3905725.845916463062167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978309.506453603506088, 3907661.084817144554108 ], [ 4978287.600346618331969, 3907672.326407779939473 ], [ 4978275.844196930527687, 3907649.361120169050992 ], [ 4978297.462394446134567, 3907638.11890880484134 ], [ 4978309.506453603506088, 3907661.084817144554108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978197.807276311330497, 3896373.513807307463139 ], [ 4978141.036422940902412, 3896385.774009556043893 ], [ 4978129.624852349050343, 3896333.679298219271004 ], [ 4978186.395810379646719, 3896321.419072250835598 ], [ 4978197.807276311330497, 3896373.513807307463139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978164.499504838138819, 3908426.183531930204481 ], [ 4978130.457727232947946, 3908458.155101608950645 ], [ 4978115.520086277276278, 3908442.101654421538115 ], [ 4978127.925080087035894, 3908430.475672662723809 ], [ 4978112.125218716450036, 3908413.692137542180717 ], [ 4978133.762006424367428, 3908393.346518505830318 ], [ 4978164.499504838138819, 3908426.183531930204481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977916.115789663977921, 3904561.489508848171681 ], [ 4977942.623121733777225, 3904554.262786122970283 ], [ 4977949.769015500321984, 3904579.402942667715251 ], [ 4977923.261706260032952, 3904586.629658460617065 ], [ 4977916.115789663977921, 3904561.489508848171681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977728.864304943941534, 3906654.125004546251148 ], [ 4977749.053355558775365, 3906638.145637118257582 ], [ 4977764.84759939648211, 3906658.206114401109517 ], [ 4977744.658554393798113, 3906674.185470157302916 ], [ 4977728.864304943941534, 3906654.125004546251148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977713.154361707158387, 3907142.02901293663308 ], [ 4977683.451073230244219, 3907164.178674357943237 ], [ 4977658.183710766024888, 3907130.625459632836282 ], [ 4977687.887015328742564, 3907108.4757707323879 ], [ 4977713.154361707158387, 3907142.02901293663308 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977463.019926753826439, 3906830.171594189014286 ], [ 4977500.794647267088294, 3906803.669003971386701 ], [ 4977517.445149078033864, 3906827.372451081406325 ], [ 4977479.67044532019645, 3906853.875018275342882 ], [ 4977463.019926753826439, 3906830.171594189014286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977383.288085863925517, 3904612.442033374216408 ], [ 4977393.845065939240158, 3904659.072931717149913 ], [ 4977363.884045954793692, 3904665.564720440655947 ], [ 4977353.61497207172215, 3904618.934434871654958 ], [ 4977383.288085863925517, 3904612.442033374216408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977268.286266544833779, 3906045.060470439027995 ], [ 4977290.486525325104594, 3906031.269748336169869 ], [ 4977290.199344304390252, 3906030.905017520301044 ], [ 4977309.228481382131577, 3906018.928357216995209 ], [ 4977333.910049827769399, 3906057.941973805427551 ], [ 4977292.968629625625908, 3906083.709919724147767 ], [ 4977268.286266544833779, 3906045.060470439027995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977255.837890307419002, 3902899.302025580313057 ], [ 4977241.69226682279259, 3902916.022585330996662 ], [ 4977245.717071729712188, 3902919.308152095880359 ], [ 4977211.94224898237735, 3902958.56397023005411 ], [ 4977213.954271041788161, 3902960.388816174119711 ], [ 4977192.591943017207086, 3902985.469392923638225 ], [ 4977156.945398837327957, 3902955.536452850326896 ], [ 4977175.133187245577574, 3902933.726422734092921 ], [ 4977168.809132684022188, 3902928.251294960733503 ], [ 4977186.707459378987551, 3902907.16893308609724 ], [ 4977191.881135871633887, 3902911.913407903630286 ], [ 4977207.469633380882442, 3902893.739301540888846 ], [ 4977201.433550049550831, 3902888.264765851199627 ], [ 4977218.754463539458811, 3902867.909485965035856 ], [ 4977255.837890307419002, 3902899.302025580313057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977209.324239570647478, 3912095.728762599173933 ], [ 4977228.848174828104675, 3912120.530500317458063 ], [ 4977196.553831895813346, 3912145.588423816021532 ], [ 4977177.029127134941518, 3912121.150840875227004 ], [ 4977209.324239570647478, 3912095.728762599173933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977187.899572197347879, 3906761.140617109835148 ], [ 4977147.827703002840281, 3906784.725810634437948 ], [ 4977125.160551758483052, 3906746.444799621589482 ], [ 4977149.088513856753707, 3906732.293416746426374 ], [ 4977159.992081641219556, 3906750.522704800590873 ], [ 4977175.848085821606219, 3906741.088268065825105 ], [ 4977187.899572197347879, 3906761.140617109835148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977033.622680674307048, 3900214.102692649699748 ], [ 4977044.763323051854968, 3900258.185622027143836 ], [ 4977013.354452977888286, 3900266.131310987751931 ], [ 4977002.21451779268682, 3900221.684265371412039 ], [ 4977033.622680674307048, 3900214.102692649699748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977001.249813799746335, 3908598.164104643743485 ], [ 4976968.671101840212941, 3908619.580340452026576 ], [ 4976953.172885614447296, 3908595.879594760946929 ], [ 4976985.750858490355313, 3908574.827471385709941 ], [ 4977001.249813799746335, 3908598.164104643743485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976970.302052674815059, 3908249.62517126603052 ], [ 4977014.66011063195765, 3908240.613887371495366 ], [ 4977020.648920578882098, 3908268.300379342399538 ], [ 4976976.290151044726372, 3908277.675784345250577 ], [ 4976970.302052674815059, 3908249.62517126603052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976969.975968732498586, 3900907.639620090369135 ], [ 4976967.610105509869754, 3900937.493437814991921 ], [ 4976919.235994771122932, 3900933.023626605514437 ], [ 4976921.88904573675245, 3900903.534530459903181 ], [ 4976969.975968732498586, 3900907.639620090369135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976840.34106301702559, 3906354.41213907673955 ], [ 4976848.05433392804116, 3906383.922786640468985 ], [ 4976804.840498997829854, 3906395.121498860884458 ], [ 4976796.839247074909508, 3906365.610268274322152 ], [ 4976840.34106301702559, 3906354.41213907673955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976796.814645116217434, 3911391.00324587430805 ], [ 4976827.256420578807592, 3911426.751247819513083 ], [ 4976818.02760760858655, 3911434.74308602605015 ], [ 4976787.585828986950219, 3911398.995094369165599 ], [ 4976796.814645116217434, 3911391.00324587430805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976671.389812516979873, 3906042.002085448708385 ], [ 4976662.483186191879213, 3906032.516288013663143 ], [ 4976673.735393699258566, 3906021.615537732373923 ], [ 4976682.642019689083099, 3906031.101338834036142 ], [ 4976692.740219888277352, 3906021.29061155859381 ], [ 4976714.001971996389329, 3906043.546534156892449 ], [ 4976673.322779818437994, 3906082.060580360237509 ], [ 4976652.348964812234044, 3906059.805283090565354 ], [ 4976671.389812516979873, 3906042.002085448708385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976637.31185176409781, 3905532.147260150872171 ], [ 4976645.646515469066799, 3905539.811207996681333 ], [ 4976630.638818752020597, 3905556.530335544608533 ], [ 4976596.437051589600742, 3905525.508668737951666 ], [ 4976613.464117486029863, 3905506.97302400926128 ], [ 4976604.841488272882998, 3905499.308493140619248 ], [ 4976620.714540262706578, 3905481.862871320452541 ], [ 4976654.916335222311318, 3905512.884568203240633 ], [ 4976637.31185176409781, 3905532.147260150872171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976591.480095537379384, 3911845.745916065759957 ], [ 4976614.833492692559958, 3911828.679773274343461 ], [ 4976642.678854694589972, 3911866.971158143598586 ], [ 4976619.325472977943718, 3911884.037277136463672 ], [ 4976591.480095537379384, 3911845.745916065759957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976548.268177002668381, 3913398.685768335592002 ], [ 4976581.989220727235079, 3913378.727858285419643 ], [ 4976595.472208051942289, 3913401.331913052126765 ], [ 4976607.86600808147341, 3913393.710645456332713 ], [ 4976621.348966087214649, 3913416.314713427331299 ], [ 4976574.947054330259562, 3913443.529126811772585 ], [ 4976548.268177002668381, 3913398.685768335592002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976281.178949745371938, 3911127.038014594931155 ], [ 4976251.115822287276387, 3911187.058401150163263 ], [ 4976238.461544477380812, 3911180.842236105818301 ], [ 4976268.524650533683598, 3911120.821835620328784 ], [ 4976281.178949745371938, 3911127.038014594931155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976281.75964465085417, 3907751.165490936953574 ], [ 4976253.506018904969096, 3907769.314251877833158 ], [ 4976227.96144459862262, 3907729.935688502620906 ], [ 4976252.755552972666919, 3907713.964612592943013 ], [ 4976260.505601720884442, 3907725.632710461504757 ], [ 4976263.965142212808132, 3907723.454999991692603 ], [ 4976281.75964465085417, 3907751.165490936953574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976224.001988145522773, 3911353.411712064407766 ], [ 4976207.303261455148458, 3911354.105813628062606 ], [ 4976205.975573266856372, 3911299.483137666713446 ], [ 4976222.385704800486565, 3911299.152577762492001 ], [ 4976224.001988145522773, 3911353.411712064407766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976214.173310254700482, 3909966.045194074511528 ], [ 4976235.235341561026871, 3909943.876192460767925 ], [ 4976287.246507994830608, 3909992.048211179673672 ], [ 4976265.895827915519476, 3910014.5807143910788 ], [ 4976214.173310254700482, 3909966.045194074511528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976119.314101668074727, 3912431.031951412558556 ], [ 4976141.686263584531844, 3912471.132319829892367 ], [ 4976114.884475391358137, 3912485.642902984283864 ], [ 4976092.511542335152626, 3912445.906688321381807 ], [ 4976119.314101668074727, 3912431.031951412558556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976047.358492554165423, 3900705.834914949722588 ], [ 4976056.947801806032658, 3900663.97943910676986 ], [ 4976086.310218701139092, 3900670.593683886341751 ], [ 4976077.008863436058164, 3900712.449736912269145 ], [ 4976047.358492554165423, 3900705.834914949722588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975753.68746021296829, 3911451.497643228620291 ], [ 4975686.308235129341483, 3911458.64369367621839 ], [ 4975684.896860184147954, 3911444.803776833228767 ], [ 4975752.275380871258676, 3911438.021854487247765 ], [ 4975753.68746021296829, 3911451.497643228620291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975741.364149848930538, 3902905.29181313700974 ], [ 4975700.042965102940798, 3902974.757113949861377 ], [ 4975669.26670260168612, 3902956.488216482102871 ], [ 4975710.587835595943034, 3902887.022869121283293 ], [ 4975741.364149848930538, 3902905.29181313700974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975697.894958840683103, 3911139.322491630446166 ], [ 4975698.447115007787943, 3911150.975867032539099 ], [ 4975635.680690571665764, 3911154.49006349593401 ], [ 4975634.840621607378125, 3911142.836106571834534 ], [ 4975697.894958840683103, 3911139.322491630446166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975648.790967476554215, 3911646.460382045712322 ], [ 4975665.778852691873908, 3911645.038253031671047 ], [ 4975673.107358386740088, 3911722.24932224676013 ], [ 4975656.407401008531451, 3911723.672029697801918 ], [ 4975648.790967476554215, 3911646.460382045712322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975608.061176770366728, 3911288.070987306069583 ], [ 4975633.109304326586425, 3911287.029280190821737 ], [ 4975633.944946643896401, 3911300.868027428165078 ], [ 4975608.896831961348653, 3911301.909733767621219 ], [ 4975608.061176770366728, 3911288.070987306069583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975589.673074524849653, 3905717.900292808189988 ], [ 4975567.775361970998347, 3905724.774523780681193 ], [ 4975571.781546239741147, 3905737.163102974649519 ], [ 4975553.052704211324453, 3905743.315488624852151 ], [ 4975537.027914030477405, 3905693.761186992749572 ], [ 4975577.654526567086577, 3905680.734549739398062 ], [ 4975589.673074524849653, 3905717.900292808189988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975466.863442389294505, 3899080.635616187006235 ], [ 4975457.55590274464339, 3899125.769003356341273 ], [ 4975405.734583200886846, 3899115.104760432150215 ], [ 4975410.972408179193735, 3899088.533800926525146 ], [ 4975413.563074010424316, 3899089.267282059416175 ], [ 4975417.345425740815699, 3899070.340127835050225 ], [ 4975466.863442389294505, 3899080.635616187006235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975364.375504175201058, 3910783.254864467773587 ], [ 4975337.400393012911081, 3910740.232860513962805 ], [ 4975382.367720887996256, 3910712.285192584618926 ], [ 4975409.342788381502032, 3910755.307240924797952 ], [ 4975364.375504175201058, 3910783.254864467773587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975357.137086434289813, 3910517.787408856209368 ], [ 4975323.986958990804851, 3910538.840373539365828 ], [ 4975332.597334696911275, 3910551.966488088015467 ], [ 4975310.401076692156494, 3910566.122997815720737 ], [ 4975283.710622726008296, 3910524.558158435858786 ], [ 4975339.057049104012549, 3910489.348640390206128 ], [ 4975357.137086434289813, 3910517.787408856209368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975344.807624720968306, 3909063.052465866785496 ], [ 4975376.990961008705199, 3909094.06854697316885 ], [ 4975355.92897592484951, 3909116.238209675531834 ], [ 4975303.918836923316121, 3909065.883233653381467 ], [ 4975328.441579265519977, 3909040.80743607878685 ], [ 4975347.981210539117455, 3909059.781662833876908 ], [ 4975344.807624720968306, 3909063.052465866785496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975230.824408083222806, 3910624.952518335077912 ], [ 4975208.918349036946893, 3910638.017296756152064 ], [ 4975200.884454348124564, 3910624.528245963156223 ], [ 4975167.73750417958945, 3910644.124879185575992 ], [ 4975150.23532637860626, 3910614.594996851403266 ], [ 4975205.575542050413787, 3910582.298253070097417 ], [ 4975230.824408083222806, 3910624.952518335077912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975230.751210920512676, 3908225.318477568682283 ], [ 4975187.226781999692321, 3908249.627937027253211 ], [ 4975169.152336160652339, 3908217.548014215193689 ], [ 4975212.676800517365336, 3908193.238525952678174 ], [ 4975230.751210920512676, 3908225.318477568682283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974993.363470179960132, 3911031.577060137875378 ], [ 4975002.297433310188353, 3911026.861204720567912 ], [ 4975015.490677751600742, 3911051.648646280169487 ], [ 4974972.262539265677333, 3911074.138415358029306 ], [ 4974948.458217112347484, 3911028.93833758495748 ], [ 4974982.46455307956785, 3911011.163813939318061 ], [ 4974993.363470179960132, 3911031.577060137875378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974812.241076661273837, 3903107.70152266509831 ], [ 4974831.841306076385081, 3903098.637315200641751 ], [ 4974837.003017019480467, 3903109.57154276734218 ], [ 4974859.197179074399173, 3903099.420134137384593 ], [ 4974873.534012351185083, 3903130.399888603482395 ], [ 4974831.451693585142493, 3903149.614904895890504 ], [ 4974812.241076661273837, 3903107.70152266509831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974782.65102999098599, 3904517.559113447088748 ], [ 4974785.230307725258172, 3904523.754487190861255 ], [ 4974823.564103531651199, 3904505.988439339678735 ], [ 4974831.592042961157858, 3904523.482757033314556 ], [ 4974769.048173870891333, 3904552.124511253554374 ], [ 4974758.440920136868954, 3904528.434840479400009 ], [ 4974782.65102999098599, 3904517.559113447088748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974700.1575778266415, 3900677.268640407826751 ], [ 4974693.260836048051715, 3900669.608181891497225 ], [ 4974720.671344966627657, 3900644.173556104768068 ], [ 4974743.661914262920618, 3900668.980189478490502 ], [ 4974712.21292326413095, 3900697.683934464585036 ], [ 4974696.407089501619339, 3900680.538357763085514 ], [ 4974700.1575778266415, 3900677.268640407826751 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974553.32203071564436, 3900655.129185469355434 ], [ 4974504.05127877369523, 3900666.683693691622466 ], [ 4974495.76787119358778, 3900632.074871428776532 ], [ 4974545.039404983632267, 3900620.156219079624861 ], [ 4974553.32203071564436, 3900655.129185469355434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974515.256520811468363, 3896610.659613052848727 ], [ 4974529.013220711611211, 3896645.643333604093641 ], [ 4974488.078946013003588, 3896661.948069587349892 ], [ 4974476.901593681424856, 3896633.523812789469957 ], [ 4974471.71252765879035, 3896635.698316826950759 ], [ 4974459.961947362869978, 3896605.816413589287549 ], [ 4974505.220521285198629, 3896587.699553302954882 ], [ 4974508.659705861471593, 3896596.445481320377439 ], [ 4974519.325901456177235, 3896592.097059433814138 ], [ 4974525.057865913957357, 3896606.673609427642077 ], [ 4974515.256520811468363, 3896610.659613052848727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974304.25900715123862, 3899751.228525578044355 ], [ 4974312.614106556400657, 3899749.788497605361044 ], [ 4974308.917448870837688, 3899725.748591211624444 ], [ 4974345.793981216847897, 3899719.995328040793538 ], [ 4974353.188664430752397, 3899767.346893617417663 ], [ 4974307.957821866497397, 3899774.176044637802988 ], [ 4974304.25900715123862, 3899751.228525578044355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974213.663936474360526, 3900271.028187609277666 ], [ 4974229.440173150040209, 3900303.466899966355413 ], [ 4974190.811351955868304, 3900321.961440974380821 ], [ 4974171.307544863782823, 3900281.140408427920192 ], [ 4974190.044891215860844, 3900272.438176287338138 ], [ 4974194.061140711419284, 3900280.456959543284029 ], [ 4974213.663936474360526, 3900271.028187609277666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974004.811196108348668, 3895894.138182439375669 ], [ 4974014.255347432568669, 3895925.471863630693406 ], [ 4974003.591828222386539, 3895928.363971429411322 ], [ 4974012.463445651344955, 3895957.875881034415215 ], [ 4974018.22798697091639, 3895956.066548307891935 ], [ 4974023.091211244463921, 3895973.190186911262572 ], [ 4973986.487658415921032, 3895984.042239901609719 ], [ 4973978.188546796329319, 3895956.352109451312572 ], [ 4973963.200748195871711, 3895961.056399457156658 ], [ 4973956.905094543471932, 3895939.924537608865649 ], [ 4973935.000557977706194, 3895946.435930269770324 ], [ 4973927.273911371827126, 3895920.567586255725473 ], [ 4973948.602369433268905, 3895914.055057991761714 ], [ 4973950.605147683061659, 3895920.977446684613824 ], [ 4973970.780701619572937, 3895914.826805355492979 ], [ 4973967.918780149891973, 3895905.353823093697429 ], [ 4974004.811196108348668, 3895894.138182439375669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973926.714469129219651, 3906344.536923599429429 ], [ 4973913.115057568065822, 3906378.374532385263592 ], [ 4973833.131358737125993, 3906346.174288015346974 ], [ 4973846.730685628950596, 3906312.336639410350472 ], [ 4973926.714469129219651, 3906344.536923599429429 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973866.350437593646348, 3903938.965229029767215 ], [ 4973848.19309882633388, 3903946.940573536790907 ], [ 4973860.233356836251915, 3903974.638124877586961 ], [ 4973824.494666452519596, 3903990.589961543213576 ], [ 4973802.70637602545321, 3903941.025480386335403 ], [ 4973856.889720089733601, 3903917.462957908865064 ], [ 4973866.350437593646348, 3903938.965229029767215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973800.120988257229328, 3894804.626009761821479 ], [ 4973858.880388006567955, 3894807.289843733888119 ], [ 4973857.676838997751474, 3894833.504802178125829 ], [ 4973835.2102633388713, 3894832.36845713108778 ], [ 4973834.002464844845235, 3894860.76818485930562 ], [ 4973797.709736225195229, 3894859.240700119175017 ], [ 4973800.120988257229328, 3894804.626009761821479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973682.954718527384102, 3896538.382075379602611 ], [ 4973705.436927989125252, 3896530.779214217793196 ], [ 4973702.000315885059536, 3896520.576875977218151 ], [ 4973736.588148176670074, 3896508.992238413076848 ], [ 4973752.054963305592537, 3896553.810398990754038 ], [ 4973694.98499793279916, 3896572.997868216596544 ], [ 4973682.954718527384102, 3896538.382075379602611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973609.246983159333467, 3909381.507372669875622 ], [ 4973638.242979530245066, 3909423.803272310644388 ], [ 4973601.91881943307817, 3909448.493484400678426 ], [ 4973572.922792755067348, 3909406.197623315732926 ], [ 4973609.246983159333467, 3909381.507372669875622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973571.394410910084844, 3900874.226988123729825 ], [ 4973733.215276755392551, 3900891.292511538602412 ], [ 4973730.574256275780499, 3900916.412370705977082 ], [ 4973568.753540095873177, 3900899.346862935461104 ], [ 4973571.394410910084844, 3900874.226988123729825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973461.3748919069767, 3903841.316425666213036 ], [ 4973481.743184969760478, 3903881.046320002060384 ], [ 4973464.448396932333708, 3903889.751862515695393 ], [ 4973469.612633189186454, 3903899.593442840501666 ], [ 4973442.517919399775565, 3903913.013665474019945 ], [ 4973417.272590890526772, 3903863.806917991023511 ], [ 4973461.3748919069767, 3903841.316425666213036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973355.607397395186126, 3900171.399883677717298 ], [ 4973362.472171153873205, 3900195.809936938341707 ], [ 4973353.250429387204349, 3900198.705102247186005 ], [ 4973359.2582500083372, 3900219.472188696265221 ], [ 4973320.644018694758415, 3900230.68539649900049 ], [ 4973316.926790526136756, 3900216.841235604137182 ], [ 4973305.111626113764942, 3900220.4596545137465 ], [ 4973300.820498391054571, 3900205.521992909256369 ], [ 4973312.634963435120881, 3900202.267701293341815 ], [ 4973307.772062541916966, 3900185.14414814626798 ], [ 4973355.607397395186126, 3900171.399883677717298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973065.692433377727866, 3897875.726466351188719 ], [ 4973085.291666821576655, 3897868.845785500481725 ], [ 4973080.419767520390451, 3897856.091840975917876 ], [ 4973121.348557768389583, 3897841.241464291233569 ], [ 4973139.113517982885242, 3897889.340912143234164 ], [ 4973110.002349487505853, 3897899.844500078354031 ], [ 4973106.564283611252904, 3897890.370486975181848 ], [ 4973075.14750449731946, 3897901.597924645524472 ], [ 4973065.692433377727866, 3897875.726466351188719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972658.397569326683879, 3910381.035974625032395 ], [ 4972692.010727621614933, 3910417.877722215373069 ], [ 4972664.613467758521438, 3910442.586306570097804 ], [ 4972630.71171308029443, 3910406.108173531480134 ], [ 4972658.397569326683879, 3910381.035974625032395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971703.227833650074899, 3898689.878240375313908 ], [ 4971751.070473958738148, 3898673.218101728707552 ], [ 4971763.960171188227832, 3898711.111857375130057 ], [ 4971716.406292574480176, 3898727.40838537318632 ], [ 4971703.227833650074899, 3898689.878240375313908 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971675.773510534316301, 3897664.436569156590849 ], [ 4971698.588710716925561, 3897632.071818037889898 ], [ 4971758.421037990599871, 3897673.694990844465792 ], [ 4971735.605800811201334, 3897706.059691972564906 ], [ 4971675.773510534316301, 3897664.436569156590849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971609.253081004135311, 3904880.289948386140168 ], [ 4971623.888842695392668, 3904906.89897961076349 ], [ 4971570.563767456449568, 3904935.565459514036775 ], [ 4971556.216602860949934, 3904908.59286569384858 ], [ 4971609.253081004135311, 3904880.289948386140168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971337.420819939114153, 3906736.125286484602839 ], [ 4971295.62104562856257, 3906762.629031592514366 ], [ 4971288.444429825991392, 3906750.963445186149329 ], [ 4971270.571588265709579, 3906762.218257068656385 ], [ 4971258.227081564255059, 3906742.532157085370272 ], [ 4971291.954551544971764, 3906721.475297974888235 ], [ 4971271.857535838149488, 3906690.122534927446395 ], [ 4971306.738851540721953, 3906667.975447272416204 ], [ 4971331.715099234133959, 3906707.71236321888864 ], [ 4971322.778992421925068, 3906713.157687805593014 ], [ 4971337.420819939114153, 3906736.125286484602839 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971187.435897283256054, 3906255.920354664325714 ], [ 4971124.010458597913384, 3906298.405978077556938 ], [ 4971109.940706291235983, 3906277.260223116260022 ], [ 4971128.391705725342035, 3906264.91398508567363 ], [ 4971117.767060522921383, 3906249.236598418559879 ], [ 4971162.740865103900433, 3906219.461293413769454 ], [ 4971187.435897283256054, 3906255.920354664325714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970841.659331003203988, 3898119.867791513446718 ], [ 4970852.269226130098104, 3898145.376468507573009 ], [ 4970860.916694744490087, 3898141.751127913594246 ], [ 4970866.939004779793322, 3898155.963314042426646 ], [ 4970859.156286299228668, 3898159.226118727121502 ], [ 4970864.031199659220874, 3898170.887276636436582 ], [ 4970830.882169134914875, 3898185.027179622091353 ], [ 4970816.828730354085565, 3898152.593690108507872 ], [ 4970824.034724242985249, 3898149.693939496763051 ], [ 4970816.004943992011249, 3898130.744371227920055 ], [ 4970841.659331003203988, 3898119.867791513446718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970684.732151325792074, 3902322.008197045885026 ], [ 4970615.324916462413967, 3902324.065401100087911 ], [ 4970614.513814811594784, 3902295.297569967806339 ], [ 4970683.921123892068863, 3902293.240363859571517 ], [ 4970684.732151325792074, 3902322.008197045885026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970630.160342948511243, 3894090.749040101189166 ], [ 4970689.850765775889158, 3894058.087128363549709 ], [ 4970703.632515127770603, 3894082.87325754808262 ], [ 4970643.942130423150957, 3894115.535139157902449 ], [ 4970630.160342948511243, 3894090.749040101189166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970524.997725843451917, 3900071.023268284741789 ], [ 4970524.0756348175928, 3900102.700923647731543 ], [ 4970488.364478678442538, 3900101.907216612715274 ], [ 4970488.998523334041238, 3900070.229032407980412 ], [ 4970524.997725843451917, 3900071.023268284741789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970362.427682845853269, 3893839.009517279453576 ], [ 4970336.195928746834397, 3893848.428963416721672 ], [ 4970325.30506777856499, 3893817.822239095810801 ], [ 4970351.536847868002951, 3893808.402782495133579 ], [ 4970362.427682845853269, 3893839.009517279453576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969592.390290504321456, 3891928.122153206262738 ], [ 4969608.89927380066365, 3891879.35860664723441 ], [ 4969622.719176304526627, 3891884.117140460759401 ], [ 4969629.960136422887444, 3891862.646580721251667 ], [ 4969652.130128785967827, 3891869.969057247508317 ], [ 4969644.598439177498221, 3891892.895602317992598 ], [ 4969660.434315895661712, 3891898.021913124714047 ], [ 4969654.930413331836462, 3891914.761920265853405 ], [ 4969636.791777481324971, 3891908.53908222168684 ], [ 4969626.364782092161477, 3891939.471252214629203 ], [ 4969592.390290504321456, 3891928.122153206262738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969087.453377510420978, 3903530.581392240244895 ], [ 4969055.188741414807737, 3903537.442469084169716 ], [ 4969043.479226622730494, 3903482.801972276996821 ], [ 4969076.031893063336611, 3903475.941394091118127 ], [ 4969087.453377510420978, 3903530.581392240244895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969005.511578729376197, 3910586.219874995294958 ], [ 4969004.178266124799848, 3910526.499740905594081 ], [ 4969032.105110152624547, 3910525.821128801908344 ], [ 4969032.364507536403835, 3910541.843429114669561 ], [ 4969074.686589506454766, 3910540.826334491372108 ], [ 4969075.765559501945972, 3910581.611118805129081 ], [ 4969061.370328212156892, 3910581.94963005464524 ], [ 4969061.640075628645718, 3910592.145826158579439 ], [ 4969039.759022186510265, 3910592.83516095764935 ], [ 4969039.484084809198976, 3910585.552017568610609 ], [ 4969005.511578729376197, 3910586.219874995294958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968722.262786714360118, 3894425.224025430157781 ], [ 4968714.196972555480897, 3894425.209783166181296 ], [ 4968713.582911931909621, 3894446.692318712361157 ], [ 4968680.456772233359516, 3894445.905593806877732 ], [ 4968682.020449270494282, 3894375.995557478629053 ], [ 4968712.266021974384785, 3894376.777198245748878 ], [ 4968711.651961928233504, 3894398.259733234532177 ], [ 4968722.886500060558319, 3894398.279570273123682 ], [ 4968722.262786714360118, 3894425.224025430157781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968685.143242381513119, 3891299.840903169941157 ], [ 4968715.717017042450607, 3891279.867796087637544 ], [ 4968749.621932622976601, 3891331.269791385624558 ], [ 4968741.834283215925097, 3891336.353832765948027 ], [ 4968756.201217078603804, 3891357.862795899156481 ], [ 4968727.934852397069335, 3891376.383418354671448 ], [ 4968694.317408048547804, 3891325.346084808930755 ], [ 4968699.79769657086581, 3891321.714471364859492 ], [ 4968685.143242381513119, 3891299.840903169941157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968224.947168797254562, 3905366.466521308757365 ], [ 4968253.772496474906802, 3905349.038613857235759 ], [ 4968291.384646831080317, 3905411.370922045316547 ], [ 4968262.272051574662328, 3905428.434155636001378 ], [ 4968224.947168797254562, 3905366.466521308757365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967557.885436841286719, 3906803.628782568965107 ], [ 4967527.054747650399804, 3906816.320281048770994 ], [ 4967516.445151498541236, 3906790.812782999593765 ], [ 4967502.038508675061166, 3906796.614090063143522 ], [ 4967479.385833879001439, 3906741.955334637314081 ], [ 4967524.911199324764311, 3906723.462975461967289 ], [ 4967557.885436841286719, 3906803.628782568965107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967229.985323165543377, 3913163.732864632736892 ], [ 4967228.277459044009447, 3913152.441810442600399 ], [ 4967263.117748918011785, 3913147.403597404714674 ], [ 4967268.808288814499974, 3913186.375604110304266 ], [ 4967214.96405984275043, 3913194.294352890923619 ], [ 4967215.81705894228071, 3913200.486078006681055 ], [ 4967189.039516972377896, 3913204.081605963874608 ], [ 4967183.915876501239836, 3913170.208450903184712 ], [ 4967229.985323165543377, 3913163.732864632736892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966404.548622220754623, 3899875.165397905744612 ], [ 4966408.046301000751555, 3899850.410416186787188 ], [ 4966449.510074215009809, 3899855.942067917436361 ], [ 4966446.011745628900826, 3899881.061173561960459 ], [ 4966404.548622220754623, 3899875.165397905744612 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966236.686243332922459, 3898471.162322986405343 ], [ 4966212.208075861446559, 3898468.936585313640535 ], [ 4966211.33000220824033, 3898477.310105573851615 ], [ 4966151.718702704645693, 3898471.74850719422102 ], [ 4966155.237618651241064, 3898434.249000586103648 ], [ 4966189.506737435236573, 3898437.583444229792804 ], [ 4966190.968763990327716, 3898424.477210479322821 ], [ 4966216.310430267825723, 3898427.068503195885569 ], [ 4966215.134585808031261, 3898441.267604227177799 ], [ 4966239.324756517075002, 3898443.492862430866808 ], [ 4966236.686243332922459, 3898471.162322986405343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965636.461342901922762, 3906658.010602827649564 ], [ 4965616.07456417940557, 3906623.748549966141582 ], [ 4965642.30183126218617, 3906608.49833366042003 ], [ 4965658.382819573394954, 3906634.742391214240342 ], [ 4965667.893669040873647, 3906629.29613513732329 ], [ 4965678.518328480422497, 3906646.79202412860468 ], [ 4965672.75423399079591, 3906650.05967994267121 ], [ 4965687.39851094968617, 3906674.480721679050475 ], [ 4965659.441275021992624, 3906691.184562341310084 ], [ 4965651.402005699463189, 3906677.334270005580038 ], [ 4965636.702961058355868, 3906686.04914709739387 ], [ 4965624.068166811950505, 3906665.272768812254071 ], [ 4965636.461342901922762, 3906658.010602827649564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965630.870994873344898, 3895743.188236678019166 ], [ 4965639.441562720574439, 3895786.169652780052274 ], [ 4965621.864489495754242, 3895789.781926941592246 ], [ 4965620.433855169452727, 3895783.953495621681213 ], [ 4965591.907271852716804, 3895789.732494471594691 ], [ 4965597.336372502148151, 3895816.322894569952041 ], [ 4965567.368979089893401, 3895822.463671949226409 ], [ 4965556.225660649128258, 3895767.461768534965813 ], [ 4965583.02275597397238, 3895762.408138241618872 ], [ 4965581.022015678696334, 3895752.937475308310241 ], [ 4965630.870994873344898, 3895743.188236678019166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965198.427994729019701, 3904069.044228154234588 ], [ 4965153.486971583217382, 3904080.622965990565717 ], [ 4965145.18783899769187, 3904048.929997442290187 ], [ 4965190.128911503590643, 3904037.351245946250856 ], [ 4965198.427994729019701, 3904069.044228154234588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965075.108926435932517, 3902346.867465892806649 ], [ 4965122.902890838682652, 3902353.499800969846547 ], [ 4965115.329235947690904, 3902406.286402658559382 ], [ 4965073.869127770885825, 3902400.756800797302276 ], [ 4965077.657396147958934, 3902373.453169165179133 ], [ 4965071.32303196657449, 3902372.714578167069703 ], [ 4965075.108926435932517, 3902346.867465892806649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965048.7298384308815, 3900509.057426556479186 ], [ 4965025.920933812856674, 3900543.976782906334847 ], [ 4965000.603675398044288, 3900527.549691395834088 ], [ 4965023.70056073833257, 3900492.630782966502011 ], [ 4965048.7298384308815, 3900509.057426556479186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964915.704590355977416, 3898362.657922744285315 ], [ 4964918.344120074994862, 3898333.531818545423448 ], [ 4964905.3848632639274, 3898332.418377818074077 ], [ 4964907.144346431829035, 3898313.122350914403796 ], [ 4964921.5437280703336, 3898314.238132288213819 ], [ 4964923.304407277144492, 3898294.213848785962909 ], [ 4964964.197798491455615, 3898297.921623411588371 ], [ 4964958.03799123223871, 3898366.368027702439576 ], [ 4964915.704590355977416, 3898362.657922744285315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964609.095252607017756, 3896135.872828644700348 ], [ 4964617.773656280711293, 3896112.946675034705549 ], [ 4964649.726852368563414, 3896125.378645138349384 ], [ 4964641.048425409011543, 3896148.304788604844362 ], [ 4964609.095252607017756, 3896135.872828644700348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964552.718647168017924, 3901091.590642152354121 ], [ 4964542.877602448686957, 3901122.161749865859747 ], [ 4964499.700328822247684, 3901108.619404398370534 ], [ 4964509.541915412060916, 3901077.684151582419872 ], [ 4964552.718647168017924, 3901091.590642152354121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964531.849608483724296, 3901710.943112807348371 ], [ 4964547.446061793714762, 3901682.930176538415253 ], [ 4964589.743160008452833, 3901705.938581868074834 ], [ 4964574.146088854409754, 3901734.31562366662547 ], [ 4964531.849608483724296, 3901710.943112807348371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964467.628167973831296, 3900099.198380863759667 ], [ 4964446.248571896925569, 3900141.03899364406243 ], [ 4964418.6224560206756, 3900127.157656794413924 ], [ 4964440.00202002748847, 3900085.317022390197963 ], [ 4964467.628167973831296, 3900099.198380863759667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964451.91628790833056, 3897331.421184862032533 ], [ 4964476.392706850543618, 3897335.465961640235037 ], [ 4964470.569387090392411, 3897374.418473307043314 ], [ 4964445.804384383372962, 3897370.737367608584464 ], [ 4964451.91628790833056, 3897331.421184862032533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964248.818758388049901, 3897712.339335555676371 ], [ 4964250.563828838989139, 3897701.782364404760301 ], [ 4964281.6634561419487, 3897706.565821100026369 ], [ 4964274.388111542910337, 3897753.162783723790199 ], [ 4964242.424449349753559, 3897748.377953231800348 ], [ 4964244.753145311027765, 3897733.088228130247444 ], [ 4964238.70569377578795, 3897732.350296115502715 ], [ 4964241.907795956358314, 3897711.235891745425761 ], [ 4964248.818758388049901, 3897712.339335555676371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964146.641058506444097, 3901456.162353779189289 ], [ 4964106.262728733941913, 3901493.603384251240641 ], [ 4964077.799974477849901, 3901463.335174850188196 ], [ 4964102.892788987606764, 3901439.706686676014215 ], [ 4964098.005092805251479, 3901434.601065892726183 ], [ 4964113.291194812394679, 3901420.42434915015474 ], [ 4964146.641058506444097, 3901456.162353779189289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963984.33522027451545, 3905002.175144549459219 ], [ 4964041.640458511188626, 3905000.445680716075003 ], [ 4964042.726159887388349, 3905041.958383764605969 ], [ 4963985.708961104042828, 3905043.688303276430815 ], [ 4963984.33522027451545, 3905002.175144549459219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963706.722072381526232, 3904472.652341271750629 ], [ 4963664.669411950744689, 3904479.504427348729223 ], [ 4963658.678054593503475, 3904444.174243181478232 ], [ 4963700.731343957595527, 3904436.958017577417195 ], [ 4963706.722072381526232, 3904472.652341271750629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963698.489462143741548, 3903668.637792339548469 ], [ 4963699.365438180044293, 3903660.992424100637436 ], [ 4963721.823319546878338, 3903663.212694300804287 ], [ 4963717.430177860893309, 3903709.814525835681707 ], [ 4963673.378384683281183, 3903705.375375188421458 ], [ 4963677.182871595956385, 3903666.783490278292447 ], [ 4963698.489462143741548, 3903668.637792339548469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963685.318255907855928, 3903803.34548263438046 ], [ 4963681.519525453448296, 3903838.296067848801613 ], [ 4963639.48425929620862, 3903833.496025092434138 ], [ 4963643.282935727387667, 3903798.545434033032507 ], [ 4963685.318255907855928, 3903803.34548263438046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963503.6444879649207, 3893706.099383667577058 ], [ 4963558.361070713959634, 3893717.109305879101157 ], [ 4963553.136804897338152, 3893741.861848572734743 ], [ 4963532.402485116384923, 3893737.459682814776897 ], [ 4963530.078436946496367, 3893749.83640971686691 ], [ 4963496.096237354911864, 3893743.228666631970555 ], [ 4963503.6444879649207, 3893706.099383667577058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963460.709829783067107, 3903617.284909554757178 ], [ 4963505.041752566583455, 3903626.821985974442214 ], [ 4963497.791649744845927, 3903659.218249194789678 ], [ 4963453.459777892567217, 3903649.68118454888463 ], [ 4963460.709829783067107, 3903617.284909554757178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963005.666966149583459, 3899389.382423940580338 ], [ 4963018.662005859427154, 3899367.190680059604347 ], [ 4963064.989424183964729, 3899394.572470707818866 ], [ 4963047.374853363260627, 3899424.039610346313566 ], [ 4963024.067449775524437, 3899410.166431490331888 ], [ 4963028.398940373212099, 3899402.890562077518553 ], [ 4963005.666966149583459, 3899389.382423940580338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962879.477630030363798, 3896997.581968659069389 ], [ 4962878.521599668078125, 3897056.933608886785805 ], [ 4962830.996688634157181, 3897056.13179093087092 ], [ 4962831.613318157382309, 3897029.915415189694613 ], [ 4962842.270682736299932, 3897029.931903518736362 ], [ 4962842.897465595975518, 3896997.161211892496794 ], [ 4962879.477630030363798, 3896997.581968659069389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962874.821004215627909, 3897214.59599445713684 ], [ 4962875.871080244891346, 3897280.505082362797111 ], [ 4962826.904140523634851, 3897281.15755636850372 ], [ 4962825.577736852690578, 3897207.601321236696094 ], [ 4962856.686077922582626, 3897207.285325443837792 ], [ 4962856.962276677601039, 3897214.932474873028696 ], [ 4962874.821004215627909, 3897214.59599445713684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962385.260557274334133, 3893007.786485821940005 ], [ 4962385.755372027866542, 3893060.950034655630589 ], [ 4962338.221712713129818, 3893061.241473238915205 ], [ 4962337.97203257959336, 3893036.116210478357971 ], [ 4962325.295970464125276, 3893036.460968845058233 ], [ 4962325.050728634931147, 3893008.422683743294328 ], [ 4962385.260557274334133, 3893007.786485821940005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962272.748304923065007, 3894434.635546451434493 ], [ 4962270.091270548291504, 3894476.87045723432675 ], [ 4962212.770925847813487, 3894473.870021294802427 ], [ 4962215.140360594727099, 3894431.270537791308016 ], [ 4962272.748304923065007, 3894434.635546451434493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962144.690187938511372, 3899081.825286155566573 ], [ 4962159.133052927441895, 3899054.173384520225227 ], [ 4962202.301488460041583, 3899076.451052985154092 ], [ 4962187.858590925112367, 3899104.102931806817651 ], [ 4962144.690187938511372, 3899081.825286155566573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962098.969925512559712, 3893536.064909880980849 ], [ 4962081.320518552325666, 3893586.65200325474143 ], [ 4962039.859441471286118, 3893572.388039172627032 ], [ 4962057.220705186016858, 3893521.800481724087149 ], [ 4962098.969925512559712, 3893536.064909880980849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961608.305247174575925, 3895695.33724997472018 ], [ 4961605.675067817792296, 3895720.458220635540783 ], [ 4961585.226731265895069, 3895718.242754718754441 ], [ 4961587.856891721487045, 3895693.121782093774527 ], [ 4961608.305247174575925, 3895695.33724997472018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961554.578243327327073, 3897908.07161358371377 ], [ 4961599.242725628428161, 3897894.665823508519679 ], [ 4961623.601464912295341, 3897976.995722978841513 ], [ 4961588.73492927197367, 3897987.139007686637342 ], [ 4961572.973217617720366, 3897933.952414332423359 ], [ 4961563.175924097187817, 3897936.850756591651589 ], [ 4961554.578243327327073, 3897908.07161358371377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961228.479457597248256, 3895618.302541022188962 ], [ 4961236.027306691743433, 3895578.987809974234551 ], [ 4961286.710433533415198, 3895588.530608554370701 ], [ 4961284.677798323333263, 3895599.451458317693323 ], [ 4961307.139359376393259, 3895603.854470621328801 ], [ 4961301.624593668617308, 3895631.88420492131263 ], [ 4961228.479457597248256, 3895618.302541022188962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960905.14443227276206, 3908009.187385519035161 ], [ 4960959.300692809745669, 3907990.696637721266598 ], [ 4960979.368906361982226, 3908048.987417314667255 ], [ 4960925.212749321945012, 3908067.478125330526382 ], [ 4960905.14443227276206, 3908009.187385519035161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960814.663498289883137, 3901605.442012473009527 ], [ 4960813.480456739664078, 3901626.559841814916581 ], [ 4960799.658122453838587, 3901625.811236379202455 ], [ 4960798.771118518896401, 3901641.467544168699533 ], [ 4960766.806651518680155, 3901639.96400345955044 ], [ 4960768.58865466248244, 3901603.189439834095538 ], [ 4960814.663498289883137, 3901605.442012473009527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960656.399596060626209, 3901713.356260986533016 ], [ 4960665.118766998872161, 3901659.113595674280077 ], [ 4960667.998105690814555, 3901659.481949177570641 ], [ 4960670.323367773555219, 3901644.920138182118535 ], [ 4960703.721891121007502, 3901650.431105251889676 ], [ 4960701.398749478161335, 3901663.536394375376403 ], [ 4960715.218928195536137, 3901665.741468317806721 ], [ 4960708.534810793586075, 3901706.878405624534935 ], [ 4960692.987266378477216, 3901704.30666930321604 ], [ 4960690.661997055634856, 3901718.868478852789849 ], [ 4960656.399596060626209, 3901713.356260986533016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960272.170522121712565, 3893020.657957845833153 ], [ 4960319.414557855576277, 3893021.454831326846033 ], [ 4960318.76907782163471, 3893069.154749264009297 ], [ 4960271.525125898420811, 3893068.35787691315636 ], [ 4960272.170522121712565, 3893020.657957845833153 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959959.597195191308856, 3908022.009667908307165 ], [ 4959940.300323931500316, 3908026.351457601878792 ], [ 4959929.428592592477798, 3907978.270389402285218 ], [ 4959956.501948777586222, 3907972.11913367267698 ], [ 4959954.785970636643469, 3907964.105759324971586 ], [ 4959979.843383602797985, 3907958.315755193587393 ], [ 4959989.856000198051333, 3908003.118417194113135 ], [ 4959956.734790043905377, 3908010.353322191629559 ], [ 4959959.597195191308856, 3908022.009667908307165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959938.563581499271095, 3893027.458371066488326 ], [ 4959922.72024176735431, 3893026.70731843682006 ], [ 4959922.713432393036783, 3893031.440981221850961 ], [ 4959906.293935112655163, 3893030.689109466969967 ], [ 4959907.178594226948917, 3893016.489363818895072 ], [ 4959892.487566758878529, 3893015.739985972642899 ], [ 4959894.86653149407357, 3892964.037137008737773 ], [ 4959922.520683196373284, 3892965.169288928154856 ], [ 4959921.922523299232125, 3892980.461831729393452 ], [ 4959940.646692954003811, 3892981.217029659543186 ], [ 4959938.563581499271095, 3893027.458371066488326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959124.63160664588213, 3899235.068232418037951 ], [ 4959130.474494745023549, 3899176.451540693640709 ], [ 4959164.167495775036514, 3899179.776216879952699 ], [ 4959160.953119456768036, 3899212.543380364309996 ], [ 4959171.320063955150545, 3899213.650394756812602 ], [ 4959168.691469521261752, 3899239.499914785847068 ], [ 4959124.63160664588213, 3899235.068232418037951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959045.046022269874811, 3905240.198673713486642 ], [ 4959064.020930347964168, 3905261.344984094146639 ], [ 4959016.738494578748941, 3905303.153590500820428 ], [ 4958985.113789051771164, 3905267.788425337057561 ], [ 4959022.882146339863539, 3905234.3414087286219 ], [ 4959035.531932085752487, 3905248.560313845984638 ], [ 4959045.046022269874811, 3905240.198673713486642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958879.886696482077241, 3907619.20252270437777 ], [ 4958909.19006943423301, 3907665.488320346456021 ], [ 4958889.305535458028316, 3907678.205072747543454 ], [ 4958882.410688498988748, 3907667.271459902171046 ], [ 4958854.745629066601396, 3907684.711055825464427 ], [ 4958832.337570336647332, 3907648.994783916976303 ], [ 4958879.886696482077241, 3907619.20252270437777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958867.164066429249942, 3906423.740350707899779 ], [ 4958813.894338591955602, 3906424.758224065881222 ], [ 4958813.086013768799603, 3906385.066754404455423 ], [ 4958866.355820258148015, 3906384.048879466019571 ], [ 4958867.164066429249942, 3906423.740350707899779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958565.857073825784028, 3905269.751868155784905 ], [ 4958551.442458939738572, 3905282.112319192383438 ], [ 4958565.529178871773183, 3905298.51778566557914 ], [ 4958536.412045428529382, 3905323.238296807277948 ], [ 4958503.926420796662569, 3905285.323584670200944 ], [ 4958512.863425429910421, 3905277.689218730200082 ], [ 4958497.339442681521177, 3905259.461131411604583 ], [ 4958518.095989067107439, 3905242.011608217377216 ], [ 4958539.369341009296477, 3905267.166179618332535 ], [ 4958553.207555361092091, 3905255.169053355697542 ], [ 4958565.857073825784028, 3905269.751868155784905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958424.592908827587962, 3898521.488703169394284 ], [ 4958458.274215484969318, 3898533.915721125900745 ], [ 4958455.671443914063275, 3898541.558844346553087 ], [ 4958489.352206591516733, 3898554.350030516274273 ], [ 4958480.102261080406606, 3898578.369784895796329 ], [ 4958412.452734640799463, 3898552.787079457659274 ], [ 4958424.592908827587962, 3898521.488703169394284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958134.286494909785688, 3895568.726876987610012 ], [ 4958061.692767417058349, 3895571.904531247913837 ], [ 4958059.458651158958673, 3895520.559259925968945 ], [ 4958132.052517022937536, 3895517.381599733605981 ], [ 4958134.286494909785688, 3895568.726876987610012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958115.317801062017679, 3906665.20996253984049 ], [ 4958152.789679916575551, 3906635.76673928136006 ], [ 4958208.551201967522502, 3906706.849040758330375 ], [ 4958168.485463495366275, 3906738.109281634911895 ], [ 4958129.969431187026203, 3906689.262754012364894 ], [ 4958132.563330608420074, 3906687.445656262803823 ], [ 4958115.317801062017679, 3906665.20996253984049 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958040.791960135102272, 3896741.823339452035725 ], [ 4958028.931503167375922, 3896778.948310033883899 ], [ 4957980.561753026209772, 3896763.588735866826028 ], [ 4957992.422149876132607, 3896726.463744282722473 ], [ 4958040.791960135102272, 3896741.823339452035725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957961.383593827486038, 3900892.795271008275449 ], [ 4957972.07325857039541, 3900868.049012989271432 ], [ 4957979.268673772923648, 3900871.336018181405962 ], [ 4957990.826333652250469, 3900843.677911649923772 ], [ 4958032.849332527257502, 3900861.577776857186109 ], [ 4958010.602433361113071, 3900913.617974736727774 ], [ 4957961.383593827486038, 3900892.795271008275449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957931.273984286934137, 3907548.341589361429214 ], [ 4957951.970702672377229, 3907573.130814104340971 ], [ 4957930.640473485924304, 3907590.580013494938612 ], [ 4957909.943748934194446, 3907565.790804916061461 ], [ 4957931.273984286934137, 3907548.341589361429214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957404.513508670032024, 3900379.709118706174195 ], [ 4957415.741137288510799, 3900383.001396235078573 ], [ 4957422.685014801099896, 3900359.342278137803078 ], [ 4957454.065374025143683, 3900368.123655166476965 ], [ 4957440.177090089768171, 3900415.806007072329521 ], [ 4957430.964502236805856, 3900413.244692200794816 ], [ 4957425.755495076999068, 3900431.808321024291217 ], [ 4957399.269740652292967, 3900424.125950085930526 ], [ 4957405.925102522596717, 3900400.830569261685014 ], [ 4957398.727532288990915, 3900399.000236660242081 ], [ 4957404.513508670032024, 3900379.709118706174195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957368.689485273323953, 3899819.992932322435081 ], [ 4957390.865043696947396, 3899820.751001980621368 ], [ 4957391.162353743799031, 3899813.832930329721421 ], [ 4957438.970543269999325, 3899814.62551942281425 ], [ 4957438.347462771460414, 3899849.581168099306524 ], [ 4957368.075793423689902, 3899848.030123666860163 ], [ 4957368.689485273323953, 3899819.992932322435081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956829.570289279334247, 3899361.562420622911304 ], [ 4956828.44764388538897, 3899339.349006770178676 ], [ 4956867.907718822360039, 3899337.580619775690138 ], [ 4956869.302901769056916, 3899371.446555437520146 ], [ 4956840.788288075476885, 3899372.501171885523945 ], [ 4956840.227693733759224, 3899360.848270617891103 ], [ 4956829.570289279334247, 3899361.562420622911304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956743.260898583568633, 3904959.591818167362362 ], [ 4956785.623535898514092, 3904934.158621381502599 ], [ 4956801.426702383905649, 3904960.032838908489794 ], [ 4956759.351561261340976, 3904985.830522253643721 ], [ 4956743.260898583568633, 3904959.591818167362362 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956746.955160248093307, 3900854.38670723233372 ], [ 4956695.709178530611098, 3900841.210382259916514 ], [ 4956707.287147091701627, 3900797.165890209376812 ], [ 4956774.367713322862983, 3900814.368594986386597 ], [ 4956765.973956800065935, 3900846.036836494226009 ], [ 4956776.625957737676799, 3900848.963957153726369 ], [ 4956765.048859938047826, 3900892.280161368194968 ], [ 4956738.849924783222377, 3900885.69120867876336 ], [ 4956746.955160248093307, 3900854.38670723233372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955683.101175410673022, 3898152.978890800848603 ], [ 4955674.177534963935614, 3898148.962034192401916 ], [ 4955661.758899996057153, 3898175.163469688035548 ], [ 4955638.154857791960239, 3898164.209370356053114 ], [ 4955649.128689688630402, 3898141.647371890023351 ], [ 4955639.629456268623471, 3898137.265660479199141 ], [ 4955658.113398797810078, 3898097.963310735765845 ], [ 4955699.851885586977005, 3898117.679775467142463 ], [ 4955683.101175410673022, 3898152.978890800848603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955556.306925911456347, 3901135.769768022932112 ], [ 4955557.213667256757617, 3901102.270935298874974 ], [ 4955595.803365733474493, 3901103.412613764405251 ], [ 4955594.89704164583236, 3901136.547315462958068 ], [ 4955556.306925911456347, 3901135.769768022932112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954916.311172076500952, 3894526.372304180171341 ], [ 4954939.671255924738944, 3894504.917964894324541 ], [ 4954977.932135499082506, 3894546.112505902536213 ], [ 4954954.283993517048657, 3894567.566451301798224 ], [ 4954916.311172076500952, 3894526.372304180171341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954519.459533896297216, 3900960.776114478707314 ], [ 4954534.469533734023571, 3900933.120798521209508 ], [ 4954587.71293662302196, 3900961.953081607352942 ], [ 4954572.414903543889523, 3900989.608011234551668 ], [ 4954519.459533896297216, 3900960.776114478707314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954413.844493869692087, 3895527.466584506910294 ], [ 4954414.391848848201334, 3895550.771522083319724 ], [ 4954421.305563705042005, 3895550.415923479478806 ], [ 4954421.841678311116993, 3895582.824075330514461 ], [ 4954378.632473957724869, 3895583.863177116494626 ], [ 4954378.093614832498133, 3895553.639797393232584 ], [ 4954369.73963790666312, 3895553.993632568977773 ], [ 4954369.194936021231115, 3895528.503924603108317 ], [ 4954413.844493869692087, 3895527.466584506910294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954380.934015209786594, 3894417.56088279094547 ], [ 4954395.032582756131887, 3894431.051029742695391 ], [ 4954367.342931066639721, 3894459.783084189519286 ], [ 4954352.956300181336701, 3894446.292596817016602 ], [ 4954380.934015209786594, 3894417.56088279094547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954307.120964548550546, 3901264.927038799971342 ], [ 4954363.024963025934994, 3901237.686083307955414 ], [ 4954384.28383154887706, 3901280.315533868502825 ], [ 4954354.025903791189194, 3901295.571721401996911 ], [ 4954360.920196210034192, 3901309.781297846697271 ], [ 4954335.56174554489553, 3901322.130500152241439 ], [ 4954307.120964548550546, 3901264.927038799971342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953731.694520185701549, 3892699.173674575984478 ], [ 4953712.388103480450809, 3892703.15576879773289 ], [ 4953715.538990627042949, 3892718.088841442484409 ], [ 4953681.824923694133759, 3892724.966590723954141 ], [ 4953673.803832339122891, 3892687.451682091224939 ], [ 4953686.194494346156716, 3892684.917729299981147 ], [ 4953683.330352718941867, 3892671.077391755301505 ], [ 4953703.501478568650782, 3892666.732192057184875 ], [ 4953705.507074415683746, 3892675.837825057096779 ], [ 4953725.966283881105483, 3892671.49298998573795 ], [ 4953731.694520185701549, 3892699.173674575984478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953347.046637960709631, 3900706.643999354913831 ], [ 4953311.624685165472329, 3900705.145199321210384 ], [ 4953311.034790224395692, 3900716.796662071719766 ], [ 4953289.435855382122099, 3900716.042644809465855 ], [ 4953290.027477324940264, 3900702.934662849642336 ], [ 4953274.188481370918453, 3900702.187525050248951 ], [ 4953275.674895594827831, 3900663.22736536199227 ], [ 4953324.632373803295195, 3900665.106398157775402 ], [ 4953324.039865092374384, 3900678.942638397682458 ], [ 4953347.942810986191034, 3900679.699434956070036 ], [ 4953347.046637960709631, 3900706.643999354913831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953319.122277874499559, 3895144.531082978006452 ], [ 4953239.901813231408596, 3895148.442111683543772 ], [ 4953237.644585187546909, 3895108.749365595169365 ], [ 4953281.432357301004231, 3895106.252602677792311 ], [ 4953281.997191200964153, 3895115.720629415474832 ], [ 4953317.430422274395823, 3895113.942229322623461 ], [ 4953319.122277874499559, 3895144.531082978006452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953172.124398629181087, 3893763.579537904821336 ], [ 4953249.866964836604893, 3893794.622904122341424 ], [ 4953237.731565342284739, 3893825.195273384917527 ], [ 4953214.120981821790338, 3893815.699843605048954 ], [ 4953206.320115483365953, 3893834.989391284063458 ], [ 4953186.452725052833557, 3893826.95495042251423 ], [ 4953194.542948903515935, 3893806.573354788590223 ], [ 4953160.278441864065826, 3893793.059899077750742 ], [ 4953172.124398629181087, 3893763.579537904821336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952982.674398859962821, 3892457.22611355734989 ], [ 4952999.3433883395046, 3892491.109736833721399 ], [ 4952924.974852913990617, 3892527.070728595368564 ], [ 4952910.318102513439953, 3892496.830804670229554 ], [ 4952930.20758409705013, 3892487.022767177782953 ], [ 4952928.482932244427502, 3892483.743579132016748 ], [ 4952982.674398859962821, 3892457.22611355734989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951596.535080118104815, 3890298.53047946235165 ], [ 4951565.705363028682768, 3890300.316340012010187 ], [ 4951560.893304443918169, 3890224.20817672368139 ], [ 4951591.72310846298933, 3890222.422310752328485 ], [ 4951596.535080118104815, 3890298.53047946235165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951222.891384563408792, 3901118.207225501537323 ], [ 4951259.179731341078877, 3901117.155329080298543 ], [ 4951260.005897538736463, 3901151.020366004202515 ], [ 4951223.717596456408501, 3901152.072261328808963 ], [ 4951222.891384563408792, 3901118.207225501537323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951006.330528614111245, 3900848.874345852062106 ], [ 4950911.293067881837487, 3900847.676901501603425 ], [ 4950911.904826303012669, 3900815.269989635329694 ], [ 4951006.654405305162072, 3900816.467117271851748 ], [ 4951006.330528614111245, 3900848.874345852062106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950759.596086875535548, 3901039.77066574152559 ], [ 4950823.533940757624805, 3901036.927902962546796 ], [ 4950825.500611767172813, 3901081.718086601234972 ], [ 4950761.562864219769835, 3901084.560844784602523 ], [ 4950759.596086875535548, 3901039.77066574152559 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950679.095714911818504, 3893547.355449442751706 ], [ 4950682.626356224529445, 3893479.995522225741297 ], [ 4950726.123273678123951, 3893482.227950186468661 ], [ 4950722.592523654922843, 3893549.587871776893735 ], [ 4950679.095714911818504, 3893547.355449442751706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950563.135653886944056, 3900555.990795081946999 ], [ 4950567.998670282773674, 3900586.218900146894157 ], [ 4950528.535698303021491, 3900592.730223655235022 ], [ 4950523.672638725489378, 3900562.502125629223883 ], [ 4950563.135653886944056, 3900555.990795081946999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950523.84826438035816, 3892995.531191291287541 ], [ 4950525.032305738888681, 3892966.402201252058148 ], [ 4950592.152262422256172, 3892969.024273679126054 ], [ 4950590.372515814378858, 3893015.994907166343182 ], [ 4950556.956836067140102, 3893014.501945184078068 ], [ 4950557.840129692107439, 3892997.024740213062614 ], [ 4950523.84826438035816, 3892995.531191291287541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950382.469192341901362, 3896387.966158196795732 ], [ 4950441.737005533650517, 3896451.753070758655667 ], [ 4950410.597147210501134, 3896480.485481269657612 ], [ 4950351.32932370249182, 3896416.698636280372739 ], [ 4950382.469192341901362, 3896387.966158196795732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950088.535492101684213, 3890868.551649012602866 ], [ 4950134.938445757143199, 3890851.487443749327213 ], [ 4950146.430086938664317, 3890881.722419375088066 ], [ 4950100.026787377893925, 3890899.150732732377946 ], [ 4950088.535492101684213, 3890868.551649012602866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950074.032736673951149, 3894452.652114525903016 ], [ 4950141.148633846081793, 3894455.637191564310342 ], [ 4950139.370159296318889, 3894502.243767375592142 ], [ 4950110.276871445588768, 3894501.120131581556052 ], [ 4950110.27257136348635, 3894505.125543887726963 ], [ 4950071.962019928731024, 3894503.263798153493553 ], [ 4950074.032736673951149, 3894452.652114525903016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950051.514931666664779, 3890733.420468803029507 ], [ 4950067.886922899633646, 3890780.046397904865444 ], [ 4950037.912815720774233, 3890790.573999682441354 ], [ 4950021.540778973139822, 3890743.948088553268462 ], [ 4950051.514931666664779, 3890733.420468803029507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949656.909732383675873, 3890367.780301345512271 ], [ 4949662.940381371416152, 3890386.357198046520352 ], [ 4949623.745002950541675, 3890398.332028038334101 ], [ 4949618.002053541131318, 3890380.119571510702372 ], [ 4949656.909732383675873, 3890367.780301345512271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949414.624917482957244, 3892829.031929273623973 ], [ 4949426.46680558193475, 3892799.91406247485429 ], [ 4949457.854394277557731, 3892812.691472398582846 ], [ 4949432.438281058333814, 3892874.566653033718467 ], [ 4949401.914615948684514, 3892862.154305356089026 ], [ 4949407.401894620619714, 3892849.051427755504847 ], [ 4949396.459365421906114, 3892844.670427873730659 ], [ 4949404.546245797537267, 3892825.015959619078785 ], [ 4949414.624917482957244, 3892829.031929273623973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948915.138329410925508, 3891662.574435414280742 ], [ 4948987.735111482441425, 3891665.562261148355901 ], [ 4948986.25707448925823, 3891701.973555836826563 ], [ 4948941.604383896104991, 3891700.106886057648808 ], [ 4948941.90035395603627, 3891692.460498752072453 ], [ 4948913.956727380864322, 3891690.975218608509749 ], [ 4948915.138329410925508, 3891662.574435414280742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947431.8992959568277, 3891201.923533739056438 ], [ 4947496.419682841747999, 3891216.187437064945698 ], [ 4947487.161066113971174, 3891256.596617225557566 ], [ 4947422.640771354548633, 3891242.332735780160874 ], [ 4947431.8992959568277, 3891201.923533739056438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947009.095341489650309, 3888965.04198017064482 ], [ 4947012.811986663378775, 3888995.268131881486624 ], [ 4946974.775224832817912, 3888999.965372728649527 ], [ 4946971.058537561446428, 3888969.739226193167269 ], [ 4947009.095341489650309, 3888965.04198017064482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946220.06575564108789, 3897807.887095218524337 ], [ 4946232.742395946756005, 3897804.257579743862152 ], [ 4946229.584571754559875, 3897792.966631423216313 ], [ 4946262.716682606376708, 3897783.530076223891228 ], [ 4946271.043079383671284, 3897811.939924178645015 ], [ 4946277.957458645105362, 3897810.125714075751603 ], [ 4946284.561087964102626, 3897832.707891017198563 ], [ 4946231.26164292730391, 3897847.9517403091304 ], [ 4946220.06575564108789, 3897807.887095218524337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945378.925609206780791, 3891175.241989778820425 ], [ 4945367.657060485333204, 3891211.644683645572513 ], [ 4945316.965612329542637, 3891195.941753247752786 ], [ 4945327.945673055946827, 3891159.902908204123378 ], [ 4945378.925609206780791, 3891175.241989778820425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944976.442276153713465, 3892163.491694431286305 ], [ 4944981.652306557632983, 3892135.82254643086344 ], [ 4945008.152341218665242, 3892140.579618514049798 ], [ 4945009.600510743446648, 3892131.84182051429525 ], [ 4945035.812455095350742, 3892136.598665251862258 ], [ 4945034.364921567961574, 3892144.608205933589488 ], [ 4945047.03891383856535, 3892146.804190707392991 ], [ 4945041.828173762187362, 3892175.201582137960941 ], [ 4944976.442276153713465, 3892163.491694431286305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944056.910380342043936, 3891766.160313530825078 ], [ 4944075.082515140064061, 3891739.958508468233049 ], [ 4944090.630596616305411, 3891750.531429213937372 ], [ 4944072.458453777246177, 3891776.733223920222372 ], [ 4944056.910380342043936, 3891766.160313530825078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943102.34950821660459, 3892606.867839945014566 ], [ 4943111.80151068046689, 3892674.239264667034149 ], [ 4943072.906092778779566, 3892679.305460588075221 ], [ 4943067.752504191361368, 3892639.975418190471828 ], [ 4943059.397184292785823, 3892641.061023804824799 ], [ 4943055.386455096304417, 3892613.384017993230373 ], [ 4943102.34950821660459, 3892606.867839945014566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993439.29130878392607, 3907476.081187414936721 ], [ 4993461.458593618124723, 3907477.23315056366846 ], [ 4993460.554697056300938, 3907492.160163790918887 ], [ 4993438.6753492904827, 3907491.008974921889603 ], [ 4993439.29130878392607, 3907476.081187414936721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989110.914526735432446, 3908718.87408571690321 ], [ 4989085.584738965146244, 3908716.26119262771681 ], [ 4989084.70169822871685, 3908723.905753430910408 ], [ 4989059.659824319183826, 3908721.293611656874418 ], [ 4989064.388642953708768, 3908672.875875870231539 ], [ 4989115.049219228327274, 3908677.737515296787024 ], [ 4989110.914526735432446, 3908718.87408571690321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988585.238942925818264, 3896283.918379746377468 ], [ 4988606.22424791008234, 3896300.720940380357206 ], [ 4988589.465661196038127, 3896321.4343695724383 ], [ 4988594.927559087984264, 3896325.817614254076034 ], [ 4988578.168996647000313, 3896346.531050795689225 ], [ 4988551.721806858666241, 3896325.345274580642581 ], [ 4988585.238942925818264, 3896283.918379746377468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988453.291670911945403, 3904700.840866994578391 ], [ 4988446.266031372360885, 3904746.703923877794296 ], [ 4988402.513373288325965, 3904740.040177568793297 ], [ 4988406.027063586749136, 3904716.744513427838683 ], [ 4988384.150707920081913, 3904713.412664181552827 ], [ 4988387.662566184997559, 3904690.845257360022515 ], [ 4988453.291670911945403, 3904700.840866994578391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988286.345701592974365, 3906866.282103347126395 ], [ 4988291.18148386105895, 3906889.962775961961597 ], [ 4988272.74480295740068, 3906893.558107040822506 ], [ 4988267.909005112946033, 3906869.877437692135572 ], [ 4988286.345701592974365, 3906866.282103347126395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988044.386532511562109, 3903660.953299694228917 ], [ 4988054.56581212207675, 3903620.559983880724758 ], [ 4988093.129742119461298, 3903630.123301473911852 ], [ 4988082.949502478353679, 3903670.880732355173677 ], [ 4988044.386532511562109, 3903660.953299694228917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987242.059037614613771, 3899693.581886142957956 ], [ 4987293.357626957818866, 3899680.235048749949783 ], [ 4987287.936461748555303, 3899659.466272751335055 ], [ 4987320.502927717752755, 3899650.807169244159013 ], [ 4987336.480110397562385, 3899712.384555327240378 ], [ 4987316.019002037122846, 3899717.432084408588707 ], [ 4987318.301584803499281, 3899726.176834722980857 ], [ 4987297.263579715043306, 3899731.58709081215784 ], [ 4987295.267209071666002, 3899723.571307194884866 ], [ 4987252.615196893922985, 3899734.390457368921489 ], [ 4987242.059037614613771, 3899693.581886142957956 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987084.866396890953183, 3899433.571151186712086 ], [ 4987004.97418041806668, 3899479.620184306520969 ], [ 4986989.199500962160528, 3899452.635921589098871 ], [ 4987069.091770275495946, 3899406.586842321325094 ], [ 4987084.866396890953183, 3899433.571151186712086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986993.561051839031279, 3908381.520679067354649 ], [ 4987041.66786240041256, 3908371.442715816665441 ], [ 4987048.781032693572342, 3908406.052743272390217 ], [ 4987024.583695022389293, 3908411.09135545603931 ], [ 4987026.860271699726582, 3908422.020910566672683 ], [ 4987002.950867299921811, 3908427.06024711811915 ], [ 4986993.561051839031279, 3908381.520679067354649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986963.980170536786318, 3909410.487714540679008 ], [ 4986926.38261389080435, 3909479.945178757421672 ], [ 4986874.915486878715456, 3909452.14531426737085 ], [ 4986882.145102970302105, 3909439.054187247529626 ], [ 4986874.093576786108315, 3909435.029057702049613 ], [ 4986881.902563200332224, 3909420.482814035844058 ], [ 4986895.991181107237935, 3909428.164025232661515 ], [ 4986907.27015875838697, 3909407.43600727012381 ], [ 4986896.057017725892365, 3909401.218347603455186 ], [ 4986907.336896473541856, 3909380.126199247781187 ], [ 4986963.980170536786318, 3909410.487714540679008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986862.149174924008548, 3908313.470771747175604 ], [ 4986869.539836183190346, 3908352.451020078267902 ], [ 4986815.09802863933146, 3908362.8779646162875 ], [ 4986807.707291382364929, 3908323.897731005214155 ], [ 4986862.149174924008548, 3908313.470771747175604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986729.389640955254436, 3906316.97268459526822 ], [ 4986675.180283254943788, 3906348.520146431867033 ], [ 4986653.674522147513926, 3906311.690435228403658 ], [ 4986661.171531839296222, 3906307.339097096119076 ], [ 4986644.540280046872795, 3906278.896302114240825 ], [ 4986682.314215680584311, 3906256.77619125880301 ], [ 4986706.688713890500367, 3906297.982499100733548 ], [ 4986715.339260735549033, 3906292.905721618793905 ], [ 4986729.389640955254436, 3906316.97268459526822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986707.587324856780469, 3898598.426386885344982 ], [ 4986685.914901385083795, 3898627.504060517530888 ], [ 4986652.564858517609537, 3898602.662012724671513 ], [ 4986674.52528608776629, 3898573.585013687610626 ], [ 4986707.587324856780469, 3898598.426386885344982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986600.031247839331627, 3906228.901903119403869 ], [ 4986588.135465827770531, 3906266.014462646562606 ], [ 4986591.876002286560833, 3906267.115954965818673 ], [ 4986580.851143172942102, 3906301.31757841585204 ], [ 4986554.95711931400001, 3906292.879593316931278 ], [ 4986554.667411784641445, 3906293.607153709977865 ], [ 4986525.894879844039679, 3906284.798068912699819 ], [ 4986527.055476458743215, 3906281.159565951209515 ], [ 4986505.189008985646069, 3906274.18794234469533 ], [ 4986522.597955737262964, 3906219.610391030088067 ], [ 4986568.920633413828909, 3906234.288243371993303 ], [ 4986573.561283270828426, 3906220.462499928660691 ], [ 4986600.031247839331627, 3906228.901903119403869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986317.845624574460089, 3906468.544389330781996 ], [ 4986326.981963256374002, 3906500.610154932364821 ], [ 4986343.693683531135321, 3906495.916914075147361 ], [ 4986348.26095330901444, 3906512.31393120996654 ], [ 4986334.430358572863042, 3906516.285883046686649 ], [ 4986341.853164906613529, 3906542.521387739572674 ], [ 4986297.480331302620471, 3906555.158564636018127 ], [ 4986276.35467997007072, 3906480.096182707697153 ], [ 4986317.845624574460089, 3906468.544389330781996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985670.234623310156167, 3906365.026961029972881 ], [ 4985664.20628014113754, 3906357.365732538048178 ], [ 4985650.935872741043568, 3906367.893758691381663 ], [ 4985630.267236648127437, 3906341.626710124313831 ], [ 4985625.651519391685724, 3906345.256973816081882 ], [ 4985609.575884228572249, 3906324.827061144635081 ], [ 4985648.808659138157964, 3906294.333952308166772 ], [ 4985691.293309752829373, 3906348.691505508497357 ], [ 4985670.234623310156167, 3906365.026961029972881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985070.117376106791198, 3905781.347637181170285 ], [ 4985047.014496254734695, 3905809.695079343393445 ], [ 4985005.916431256569922, 3905776.825649890117347 ], [ 4985001.295518640428782, 3905782.640799727290869 ], [ 4984973.992736060172319, 3905760.728114295750856 ], [ 4985015.579273749142885, 3905709.120013560168445 ], [ 4985033.68602938298136, 3905723.364137276541442 ], [ 4985029.06510160677135, 3905729.179282142780721 ], [ 4985045.446768939495087, 3905742.326923371292651 ], [ 4985035.916973367333412, 3905753.956526502966881 ], [ 4985070.117376106791198, 3905781.347637181170285 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985040.623831720091403, 3914927.208900933153927 ], [ 4985096.128603921271861, 3914948.096414603758603 ], [ 4985087.438740288838744, 3914971.016214070376009 ], [ 4985057.529712119139731, 3914959.656993305776268 ], [ 4985055.501825032755733, 3914965.114188820123672 ], [ 4985029.906990790739655, 3914955.221783364191651 ], [ 4985040.623831720091403, 3914927.208900933153927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984945.4539411701262, 3907110.498590010218322 ], [ 4984927.880788366310298, 3907114.462394557893276 ], [ 4984926.741153968498111, 3907109.361840622965246 ], [ 4984900.237896662205458, 3907115.125163928139955 ], [ 4984901.37494810577482, 3907121.318107743747532 ], [ 4984881.497517016716301, 3907125.640616555232555 ], [ 4984880.644940761849284, 3907120.90487672900781 ], [ 4984844.059029957279563, 3907128.829174865502864 ], [ 4984844.627992822788656, 3907131.743580426555127 ], [ 4984795.366362255066633, 3907142.551006486173719 ], [ 4984784.541312540881336, 3907093.367538627702743 ], [ 4984807.587694321759045, 3907088.324188989587128 ], [ 4984809.580803386867046, 3907097.796344956383109 ], [ 4984830.89875019621104, 3907093.113059188239276 ], [ 4984828.334097914397717, 3907081.818887498229742 ], [ 4984851.668427118100226, 3907076.776256985962391 ], [ 4984854.233070085756481, 3907088.070430868770927 ], [ 4984885.921656102873385, 3907081.226945018395782 ], [ 4984883.071683463640511, 3907068.839695336297154 ], [ 4984906.69396367482841, 3907063.797794519923627 ], [ 4984909.258584790863097, 3907075.091973569709808 ], [ 4984936.338605152443051, 3907068.965893868356943 ], [ 4984945.4539411701262, 3907110.498590010218322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984358.705654975026846, 3907332.691385250538588 ], [ 4984311.457510749809444, 3907344.596824846696109 ], [ 4984304.037221153266728, 3907316.541216139215976 ], [ 4984334.864180881530046, 3907308.602661279495806 ], [ 4984332.867501037195325, 3907300.587060851044953 ], [ 4984349.576662947423756, 3907296.620838229544461 ], [ 4984358.705654975026846, 3907332.691385250538588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984327.352754078805447, 3909036.394167975522578 ], [ 4984310.643821505829692, 3909040.724539500661194 ], [ 4984304.363678088411689, 3909017.769435127265751 ], [ 4984321.360532364808023, 3909013.439735594205558 ], [ 4984327.352754078805447, 3909036.394167975522578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984113.873713063076138, 3914631.532021508552134 ], [ 4984096.601113144308329, 3914632.219873602502048 ], [ 4984094.990732398815453, 3914582.329741295892745 ], [ 4984124.929563950747252, 3914581.30739791598171 ], [ 4984127.081492668017745, 3914645.764162020757794 ], [ 4984114.415323419496417, 3914646.098651284817606 ], [ 4984113.873713063076138, 3914631.532021508552134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984043.5159962316975, 3916161.459496401250362 ], [ 4984015.842443786561489, 3916179.237403452862054 ], [ 4984002.362843668088317, 3916158.450247834436595 ], [ 4984030.036408510059118, 3916140.672327136155218 ], [ 4984043.5159962316975, 3916161.459496401250362 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984062.37269845046103, 3907602.547415741719306 ], [ 4984090.339608492329717, 3907586.226847736630589 ], [ 4984123.034258559346199, 3907641.28733255667612 ], [ 4984095.067385737784207, 3907657.607867093756795 ], [ 4984062.37269845046103, 3907602.547415741719306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983895.999332660809159, 3915853.785642089787871 ], [ 4983907.86682728305459, 3915825.410844576079398 ], [ 4983932.309050338342786, 3915835.663631955161691 ], [ 4983920.729369413107634, 3915864.039090416859835 ], [ 4983895.999332660809159, 3915853.785642089787871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983569.889535469003022, 3909396.938708433415741 ], [ 4983616.263268183916807, 3909387.942991743795574 ], [ 4983618.823978614062071, 3909401.057718256488442 ], [ 4983628.041143686510623, 3909399.258451715577394 ], [ 4983630.884678865782917, 3909414.558633212465793 ], [ 4983622.532076619565487, 3909415.995772980619222 ], [ 4983624.521199958398938, 3909427.288509103469551 ], [ 4983634.602914072573185, 3909425.127119060140103 ], [ 4983637.445597187615931, 3909440.79143238067627 ], [ 4983628.516349581070244, 3909442.591364173218608 ], [ 4983630.794217567890882, 3909453.520638476591557 ], [ 4983640.58717301953584, 3909451.722713082097471 ], [ 4983643.429849760606885, 3909467.387027308810502 ], [ 4983640.549122577533126, 3909468.108603403903544 ], [ 4983645.383443878032267, 3909493.973263212945312 ], [ 4983641.351106238551438, 3909494.692164835054427 ], [ 4983643.340215694159269, 3909505.984902904834598 ], [ 4983653.421901838853955, 3909503.823519817087799 ], [ 4983656.551622706465423, 3909519.852635527495295 ], [ 4983646.758690987713635, 3909521.650555179454386 ], [ 4983649.319373486563563, 3909534.765285688918084 ], [ 4983658.248591899871826, 3909532.965360712260008 ], [ 4983660.806730165146291, 3909547.172485155053437 ], [ 4983603.488730757497251, 3909557.963388260453939 ], [ 4983592.112035503610969, 3909497.85506381932646 ], [ 4983589.231312974356115, 3909498.576645434368402 ], [ 4983569.889535469003022, 3909396.938708433415741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983463.280403979122639, 3907319.315125761087984 ], [ 4983438.834452157840133, 3907307.24216741649434 ], [ 4983459.083744826726615, 3907266.506216301117092 ], [ 4983511.427430882118642, 3907292.116719024255872 ], [ 4983496.384373703040183, 3907322.668985235970467 ], [ 4983468.198765067383647, 3907309.130807628389448 ], [ 4983463.280403979122639, 3907319.315125761087984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983279.656911568716168, 3917759.691959454677999 ], [ 4983296.54629431758076, 3917799.421658455394208 ], [ 4983281.564812178723514, 3917805.941480288747698 ], [ 4983282.137917765416205, 3917807.035208180081099 ], [ 4983227.688091318123043, 3917829.850000546313822 ], [ 4983215.379294930957258, 3917800.690819550305605 ], [ 4983236.986377071589231, 3917791.637307535391301 ], [ 4983231.832607062533498, 3917779.973101631272584 ], [ 4983279.656911568716168, 3917759.691959454677999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983263.709848256781697, 3916937.803210313431919 ], [ 4983287.055514628067613, 3916924.020006690640002 ], [ 4983322.893788452260196, 3916984.549142233096063 ], [ 4983288.596588032320142, 3917004.497306067962199 ], [ 4983265.37373563926667, 3916965.117144372314215 ], [ 4983276.037491018883884, 3916958.951479576528072 ], [ 4983263.709848256781697, 3916937.803210313431919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982028.241468315012753, 3916483.452474518679082 ], [ 4982018.449535310268402, 3916485.979260765016079 ], [ 4982023.866370745003223, 3916508.931984825059772 ], [ 4981977.789169074036181, 3916519.751804338768125 ], [ 4981961.254809683188796, 3916449.072350522968918 ], [ 4981992.933269269764423, 3916441.49714723136276 ], [ 4981996.926639151759446, 3916457.528092278167605 ], [ 4982020.82877881359309, 3916452.120142847299576 ], [ 4982028.241468315012753, 3916483.452474518679082 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981845.319182919338346, 3905317.624849805608392 ], [ 4981790.541779109276831, 3905347.360197501257062 ], [ 4981765.879955882206559, 3905302.152294742874801 ], [ 4981769.628203462809324, 3905299.975944930221885 ], [ 4981752.996071984060109, 3905269.351415188983083 ], [ 4981781.826201410964131, 3905253.758672891184688 ], [ 4981811.936081501655281, 3905309.174559213221073 ], [ 4981834.423129808157682, 3905297.208896789699793 ], [ 4981845.319182919338346, 3905317.624849805608392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981784.797705012373626, 3916456.685053145512938 ], [ 4981745.938368733972311, 3916457.689908644650131 ], [ 4981744.067901548929513, 3916393.598041930701584 ], [ 4981732.841735548339784, 3916393.936895764898509 ], [ 4981732.30707267858088, 3916375.728972445242107 ], [ 4981744.396735020913184, 3916375.392063080798835 ], [ 4981743.846498152241111, 3916364.102657931856811 ], [ 4981782.130310295149684, 3916363.096502197906375 ], [ 4981784.797705012373626, 3916456.685053145512938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981507.999238737858832, 3902807.635560083668679 ], [ 4981504.47414417937398, 3902838.578817734494805 ], [ 4981486.911772173829377, 3902836.718790487851948 ], [ 4981486.615635824389756, 3902840.359439861029387 ], [ 4981414.927074887789786, 3902832.552093374542892 ], [ 4981419.040245924144983, 3902796.148171403445303 ], [ 4981442.648494414053857, 3902798.749957580585033 ], [ 4981443.529546864330769, 3902791.105173595715314 ], [ 4981460.22802625503391, 3902792.963236852549016 ], [ 4981459.343705922365189, 3902802.064538206439465 ], [ 4981507.999238737858832, 3902807.635560083668679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981235.665407268330455, 3905733.552168416790664 ], [ 4981288.701541986316442, 3905709.273774274624884 ], [ 4981301.596357530914247, 3905737.340748300310224 ], [ 4981248.2731360970065, 3905761.25434435158968 ], [ 4981235.665407268330455, 3905733.552168416790664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980956.23109061922878, 3916413.319203915540129 ], [ 4980966.233872667886317, 3916445.385265158489347 ], [ 4980903.155689669772983, 3916464.908361118752509 ], [ 4980892.865010783076286, 3916432.841683853417635 ], [ 4980956.23109061922878, 3916413.319203915540129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980963.850701012648642, 3906508.547982270363718 ], [ 4980949.43532838113606, 3906516.89098983630538 ], [ 4980941.116753665730357, 3906502.671356968581676 ], [ 4980932.179434301331639, 3906507.749354403931648 ], [ 4980917.550524328835309, 3906482.591750570572913 ], [ 4980976.364655405282974, 3906448.858128953259438 ], [ 4980990.705593212507665, 3906474.015124130062759 ], [ 4980955.532131309621036, 3906494.328345011454076 ], [ 4980963.850701012648642, 3906508.547982270363718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980919.781889322213829, 3904180.919279583264142 ], [ 4980945.725814018398523, 3904168.59642495540902 ], [ 4980956.332615760155022, 3904190.103753191418946 ], [ 4980930.387898217886686, 3904202.790727547369897 ], [ 4980919.781889322213829, 3904180.919279583264142 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980799.307114044204354, 3903189.486151223536581 ], [ 4980811.748775294981897, 3903162.932133411522955 ], [ 4980861.804063582792878, 3903186.347527233883739 ], [ 4980849.362363559193909, 3903212.901522246189415 ], [ 4980799.307114044204354, 3903189.486151223536581 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980788.503873425535858, 3901176.545223041437566 ], [ 4980795.666573768481612, 3901193.311114370822906 ], [ 4980749.832271837629378, 3901212.872674276586622 ], [ 4980739.51936549693346, 3901188.088941426482052 ], [ 4980719.052573283202946, 3901196.782788489479572 ], [ 4980709.313200579024851, 3901173.092729390133172 ], [ 4980770.712855109013617, 3901147.375342368148267 ], [ 4980783.891961286775768, 3901178.355661248322576 ], [ 4980788.503873425535858, 3901176.545223041437566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980364.533936836756766, 3903029.036736166104674 ], [ 4980336.807707295753062, 3903065.753025360871106 ], [ 4980318.982243489474058, 3903052.605111335869879 ], [ 4980346.709262846969068, 3903015.524674486834556 ], [ 4980364.533936836756766, 3903029.036736166104674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980329.450090935453773, 3907197.904389081988484 ], [ 4980339.600437323562801, 3907164.790674364194274 ], [ 4980364.058319196105003, 3907172.127115665469319 ], [ 4980354.195873225107789, 3907205.241454630624503 ], [ 4980329.450090935453773, 3907197.904389081988484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980171.006966738961637, 3904214.951992967631668 ], [ 4980187.166261818259954, 3904199.693902126513422 ], [ 4980173.950439537875354, 3904185.827920809388161 ], [ 4980204.53653007466346, 3904157.492741486057639 ], [ 4980223.210012805648148, 3904177.560950751416385 ], [ 4980217.438821827061474, 3904183.010259957518429 ], [ 4980230.654623103328049, 3904196.876262648031116 ], [ 4980189.393273298628628, 3904234.655418228823692 ], [ 4980171.006966738961637, 3904214.951992967631668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979889.899485316127539, 3901073.705300726927817 ], [ 4979936.552054787985981, 3901074.899523586034775 ], [ 4979935.299103184603155, 3901121.141410124022514 ], [ 4979872.519797190092504, 3901119.547877460252494 ], [ 4979873.46320228651166, 3901083.136846818495542 ], [ 4979889.590040870942175, 3901083.536159317940474 ], [ 4979889.899485316127539, 3901073.705300726927817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979771.846110825426877, 3902517.22753250785172 ], [ 4979760.887880992144346, 3902524.122164859436452 ], [ 4979748.259649394080043, 3902504.431589493062347 ], [ 4979783.153391410596669, 3902482.295563364867121 ], [ 4979807.261067435145378, 3902520.217724723275751 ], [ 4979783.325579961761832, 3902535.45909231249243 ], [ 4979771.846110825426877, 3902517.22753250785172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979685.842707575298846, 3897568.869011178612709 ], [ 4979664.317132643423975, 3897533.501603175885975 ], [ 4979692.004573027603328, 3897516.811802820768207 ], [ 4979686.2637301646173, 3897507.69606916885823 ], [ 4979709.913220023736358, 3897493.546419890131801 ], [ 4979741.771453499794006, 3897545.686331024393439 ], [ 4979719.563732705079019, 3897559.110828594304621 ], [ 4979721.285583227872849, 3897562.027614970691502 ], [ 4979702.539009615778923, 3897573.274875313509256 ], [ 4979696.225287156179547, 3897562.701372961979359 ], [ 4979685.842707575298846, 3897568.869011178612709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979650.75358562450856, 3908279.35030823526904 ], [ 4979635.44179729744792, 3908303.349775012116879 ], [ 4979597.777770480141044, 3908278.8710822830908 ], [ 4979613.089538977481425, 3908254.871594397351146 ], [ 4979650.75358562450856, 3908279.35030823526904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979627.418623575940728, 3900995.20987939555198 ], [ 4979679.30669442564249, 3900972.746522409841418 ], [ 4979685.898110604844987, 3900987.690218065865338 ], [ 4979698.005756547674537, 3900982.254583280533552 ], [ 4979704.024339092895389, 3900995.740514311473817 ], [ 4979693.646247589960694, 3901000.451645673718303 ], [ 4979704.249768250621855, 3901024.507342508994043 ], [ 4979681.476861502043903, 3901034.289355389308184 ], [ 4979672.880577039904892, 3901014.243470102082938 ], [ 4979648.666120254434645, 3901024.750638858880848 ], [ 4979641.789071693085134, 3901008.713938879780471 ], [ 4979634.582887393422425, 3901011.611330333631486 ], [ 4979627.418623575940728, 3900995.20987939555198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979622.776151644997299, 3901276.308838872704655 ], [ 4979569.738328988663852, 3901298.041550959926099 ], [ 4979563.434916456229985, 3901283.098505872301757 ], [ 4979551.904995440505445, 3901287.807193340267986 ], [ 4979546.175183909013867, 3901273.957789478823543 ], [ 4979555.686799797229469, 3901270.337113627698272 ], [ 4979545.373605400323868, 3901245.18970893137157 ], [ 4979569.29825125914067, 3901235.41007916117087 ], [ 4979577.607340102083981, 3901255.091179771348834 ], [ 4979601.24478782247752, 3901244.946824176236987 ], [ 4979607.260987498797476, 3901259.525123262312263 ], [ 4979614.467102475464344, 3901256.627724053803831 ], [ 4979622.776151644997299, 3901276.308838872704655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979614.568035808391869, 3902403.64070961996913 ], [ 4979588.607215236872435, 3902423.247425140812993 ], [ 4979573.674185234121978, 3902403.916061468888074 ], [ 4979599.635013495571911, 3902384.309331763070077 ], [ 4979614.568035808391869, 3902403.64070961996913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979455.389183999039233, 3909680.472860348410904 ], [ 4979465.157315351068974, 3909689.961476170923561 ], [ 4979444.958484687842429, 3909711.037419507745653 ], [ 4979395.827496130019426, 3909664.686182714533061 ], [ 4979414.295759379863739, 3909645.062987660989165 ], [ 4979429.235896477475762, 3909659.296513456851244 ], [ 4979445.97283370513469, 3909641.490255070850253 ], [ 4979470.394771113991737, 3909664.483530118130147 ], [ 4979455.389183999039233, 3909680.472860348410904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979357.529602911323309, 3897815.037492223083973 ], [ 4979308.789084304124117, 3897844.426711879204959 ], [ 4979303.336996804922819, 3897834.947551907971501 ], [ 4979291.800927271135151, 3897841.841111953835934 ], [ 4979269.414898933842778, 3897804.651506348047405 ], [ 4979329.403522118926048, 3897768.368045173585415 ], [ 4979357.529602911323309, 3897815.037492223083973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979195.89896585047245, 3904515.060894120018929 ], [ 4979213.762490028515458, 3904510.365708528086543 ], [ 4979218.617694354616106, 3904528.946894184686244 ], [ 4979239.074394010938704, 3904523.52905617794022 ], [ 4979248.212773168459535, 3904558.869545374531299 ], [ 4979223.722355811856687, 3904565.371068891137838 ], [ 4979226.292749951593578, 3904575.208168322686106 ], [ 4979202.666220692917705, 3904581.711574865039438 ], [ 4979190.670209305360913, 3904536.169253733474761 ], [ 4979200.754181656055152, 3904533.642076607327908 ], [ 4979195.89896585047245, 3904515.060894120018929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979160.916691554710269, 3907519.074088304303586 ], [ 4979171.9355314001441, 3907483.048742874059826 ], [ 4979243.005819238722324, 3907505.049977891612798 ], [ 4979239.526361930184066, 3907516.330569297540933 ], [ 4979250.460419293493032, 3907519.631359867285937 ], [ 4979245.530335733667016, 3907536.006671444047242 ], [ 4979233.732511434704065, 3907532.704018836375326 ], [ 4979231.411830190569162, 3907540.709921442437917 ], [ 4979160.916691554710269, 3907519.074088304303586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978924.659136516973376, 3902763.00527091929689 ], [ 4978890.603839349932969, 3902797.52467324770987 ], [ 4978884.281663085334003, 3902791.32088315486908 ], [ 4978857.441433848813176, 3902818.57317757466808 ], [ 4978863.188440908677876, 3902824.411597158759832 ], [ 4978829.999564118683338, 3902857.840540964622051 ], [ 4978780.57163586653769, 3902809.305229341611266 ], [ 4978814.338021261617541, 3902775.149200052488595 ], [ 4978817.499509726651013, 3902778.06902187410742 ], [ 4978877.529545722529292, 3902717.023634773679078 ], [ 4978924.659136516973376, 3902763.00527091929689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978855.461186689324677, 3908577.678635412361473 ], [ 4978859.71430105343461, 3908608.274886117782444 ], [ 4978816.802029319107533, 3908614.373163477517664 ], [ 4978812.837560288608074, 3908583.413405422121286 ], [ 4978855.461186689324677, 3908577.678635412361473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978787.359848412685096, 3906901.431612147949636 ], [ 4978813.307190352119505, 3906885.82950401538983 ], [ 4978838.557735968381166, 3906926.666409290861338 ], [ 4978812.609638587571681, 3906942.632623909972608 ], [ 4978787.359848412685096, 3906901.431612147949636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978676.524875212460756, 3905006.2519770283252 ], [ 4978725.507767505012453, 3904991.791431242134422 ], [ 4978737.514486839063466, 3905032.599866705015302 ], [ 4978688.531662330031395, 3905047.060390959028155 ], [ 4978676.524875212460756, 3905006.2519770283252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978693.161360056139529, 3896682.257526699453592 ], [ 4978718.23568382486701, 3896675.392654076684266 ], [ 4978730.811363860964775, 3896721.299909523222595 ], [ 4978705.737079624086618, 3896728.164770604576916 ], [ 4978693.161360056139529, 3896682.257526699453592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978565.120143752545118, 3907555.666353630367666 ], [ 4978599.737873035483062, 3907524.424842840060592 ], [ 4978619.558788171969354, 3907545.950959737878293 ], [ 4978584.653139556758106, 3907577.191831023897976 ], [ 4978565.120143752545118, 3907555.666353630367666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978403.772485472261906, 3908689.959234869573265 ], [ 4978408.721212924458086, 3908664.48048520507291 ], [ 4978424.550185590982437, 3908667.427223951090127 ], [ 4978419.313531750813127, 3908692.905358131974936 ], [ 4978403.772485472261906, 3908689.959234869573265 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978336.611954068765044, 3909132.601671781390905 ], [ 4978357.317279351875186, 3909143.933784105814993 ], [ 4978337.666098101995885, 3909178.48462336556986 ], [ 4978357.795574340038002, 3909189.815512928646058 ], [ 4978344.502349621616304, 3909213.091750642750412 ], [ 4978266.859594964422286, 3909169.595087083987892 ], [ 4978284.777064742520452, 3909137.95357707189396 ], [ 4978321.872997124679387, 3909158.787909226957709 ], [ 4978336.611954068765044, 3909132.601671781390905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978315.148342304863036, 3904733.111642793752253 ], [ 4978296.708442744798958, 3904738.170333792921156 ], [ 4978291.563139404170215, 3904720.316961077041924 ], [ 4978268.801601389423013, 3904726.458892993628979 ], [ 4978260.22785983607173, 3904695.85364491911605 ], [ 4978302.006034722551703, 3904684.290098289493471 ], [ 4978315.148342304863036, 3904733.111642793752253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978261.025786746293306, 3909883.646962300408632 ], [ 4978308.447174215689301, 3909922.345707255415618 ], [ 4978286.221768970601261, 3909949.244343642611057 ], [ 4978238.801169583573937, 3909910.181506108492613 ], [ 4978261.025786746293306, 3909883.646962300408632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978076.945445681922138, 3909528.22755065606907 ], [ 4978080.120080245658755, 3909524.592938336078078 ], [ 4978060.000747916288674, 3909508.52855044323951 ], [ 4978079.917669918388128, 3909484.173779937904328 ], [ 4978135.676877033896744, 3909528.715969043783844 ], [ 4978112.872433197684586, 3909557.070047474931926 ], [ 4978076.945445681922138, 3909528.22755065606907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977819.560581150464714, 3911031.553162474185228 ], [ 4977837.418769022449851, 3911027.221174338832498 ], [ 4977839.131517633795738, 3911034.143309774808586 ], [ 4977862.750513443723321, 3911028.366941140498966 ], [ 4977871.026328110136092, 3911062.977021058555692 ], [ 4977829.549198979511857, 3911073.085364139638841 ], [ 4977819.560581150464714, 3911031.553162474185228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977766.933719156309962, 3906077.055845151189715 ], [ 4977806.70238536875695, 3906061.481845973059535 ], [ 4977817.873791198246181, 3906089.179387700278312 ], [ 4977778.105159400962293, 3906104.753370607271791 ], [ 4977766.933719156309962, 3906077.055845151189715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977462.556341035291553, 3901132.24166687997058 ], [ 4977475.893904994241893, 3901089.302129910793155 ], [ 4977508.415815004147589, 3901099.565849841106683 ], [ 4977495.07820407487452, 3901142.505370942875743 ], [ 4977462.556341035291553, 3901132.24166687997058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977400.556728958152235, 3905719.074384180828929 ], [ 4977419.512304455973208, 3905742.418438208755106 ], [ 4977382.304456899873912, 3905772.563630939461291 ], [ 4977363.349630894139409, 3905748.855472473893315 ], [ 4977400.556728958152235, 3905719.074384180828929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977352.690590154379606, 3900923.365154673811048 ], [ 4977326.782422013580799, 3900917.849123524967581 ], [ 4977332.016484147869051, 3900893.8274140721187 ], [ 4977357.924674401059747, 3900899.343450183514506 ], [ 4977352.690590154379606, 3900923.365154673811048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977351.138551449403167, 3901528.911501862108707 ], [ 4977348.499529486522079, 3901551.482109540142119 ], [ 4977333.239942017011344, 3901549.62960730586201 ], [ 4977331.192869873717427, 3901564.554702993948013 ], [ 4977306.143964627757668, 3901561.589397777337581 ], [ 4977310.830011637881398, 3901524.093688630033284 ], [ 4977351.138551449403167, 3901528.911501862108707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976983.240094689652324, 3912283.151559532620013 ], [ 4977000.721029837615788, 3912321.421828557737172 ], [ 4976969.024788139387965, 3912335.921402740757912 ], [ 4976951.544572398997843, 3912297.287022253498435 ], [ 4976983.240094689652324, 3912283.151559532620013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977008.140761939808726, 3900141.587826769798994 ], [ 4977022.734490980394185, 3900187.134431270416826 ], [ 4976992.474535580724478, 3900196.539051023777574 ], [ 4976977.880005463026464, 3900151.356591728050262 ], [ 4977008.140761939808726, 3900141.587826769798994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976956.554246011190116, 3906687.105331056751311 ], [ 4976977.773715563118458, 3906729.388647929299623 ], [ 4976943.762910578399897, 3906746.068207059055567 ], [ 4976937.166869300417602, 3906733.309914579614997 ], [ 4976942.354944502934813, 3906730.771742700599134 ], [ 4976927.442792598158121, 3906701.610275819897652 ], [ 4976956.554246011190116, 3906687.105331056751311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976913.11380881909281, 3901525.087673436384648 ], [ 4976938.165808722376823, 3901526.596094951499254 ], [ 4976934.583195703104138, 3901587.76266313996166 ], [ 4976902.620293302461505, 3901585.875802195630968 ], [ 4976905.309459374286234, 3901538.908484647516161 ], [ 4976912.220430757850409, 3901539.2869280455634 ], [ 4976913.11380881909281, 3901525.087673436384648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976753.217355719767511, 3912985.088634161744267 ], [ 4976774.258661086671054, 3912972.02331073815003 ], [ 4976779.997164942324162, 3912981.138508504722267 ], [ 4976802.47856991738081, 3912967.712050545960665 ], [ 4976821.988684478215873, 3912999.067880484741181 ], [ 4976778.466009823605418, 3913025.559626372531056 ], [ 4976753.217355719767511, 3912985.088634161744267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976673.630564505234361, 3912492.615959946066141 ], [ 4976651.148076632991433, 3912506.406653510406613 ], [ 4976637.089691973291337, 3912483.437264687381685 ], [ 4976659.284320349805057, 3912469.645965811330825 ], [ 4976673.630564505234361, 3912492.615959946066141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976678.679286382161081, 3908231.179503043182194 ], [ 4976664.336012582294643, 3908205.660651370417327 ], [ 4976685.955340332351625, 3908193.324747094418854 ], [ 4976700.58651724178344, 3908218.844204305671155 ], [ 4976678.679286382161081, 3908231.179503043182194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976670.119662900455296, 3901491.449586096219718 ], [ 4976700.068272569216788, 3901492.603752407710999 ], [ 4976697.640404642559588, 3901552.680339660029858 ], [ 4976675.46679846290499, 3901551.906340061221272 ], [ 4976676.073564362712204, 3901536.978224861435592 ], [ 4976668.009883994236588, 3901536.961596155539155 ], [ 4976670.119662900455296, 3901491.449586096219718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976282.837164718657732, 3901600.621287856716663 ], [ 4976279.341794164851308, 3901619.913068050984293 ], [ 4976273.29628904722631, 3901618.808297456242144 ], [ 4976268.634814384393394, 3901645.016178969293833 ], [ 4976238.407309915870428, 3901639.492351568304002 ], [ 4976249.764011724852026, 3901578.341600170359015 ], [ 4976279.991582714952528, 3901583.865440144203603 ], [ 4976277.079643311910331, 3901599.517106139566749 ], [ 4976282.837164718657732, 3901600.621287856716663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976180.287588308565319, 3900344.888659347780049 ], [ 4976214.567941253073514, 3900340.953306130133569 ], [ 4976216.54671639110893, 3900359.163883757777512 ], [ 4976258.605326011776924, 3900354.152103553060442 ], [ 4976256.340067992918193, 3900335.212675268296152 ], [ 4976277.657394821755588, 3900332.707397758495063 ], [ 4976283.03622377756983, 3900378.234738440252841 ], [ 4976185.380067313089967, 3900389.687134006991982 ], [ 4976180.287588308565319, 3900344.888659347780049 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976104.986290455795825, 3911270.874368067830801 ], [ 4976123.799917577765882, 3911221.390694277826697 ], [ 4976137.895114247687161, 3911226.881483182776719 ], [ 4976119.081464950926602, 3911276.365147280041128 ], [ 4976104.986290455795825, 3911270.874368067830801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976088.363805152475834, 3902910.367220474407077 ], [ 4976023.76785793621093, 3902954.295358867850155 ], [ 4976004.817255983129144, 3902926.946902669966221 ], [ 4976033.366734560579062, 3902907.34200254175812 ], [ 4976024.75275119766593, 3902894.943984350189567 ], [ 4976037.730141218751669, 3902885.86715863738209 ], [ 4976044.907963736914098, 3902896.441596782766283 ], [ 4976067.97782338783145, 3902880.831004450563341 ], [ 4976088.363805152475834, 3902910.367220474407077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976036.168278510682285, 3910006.828626509290189 ], [ 4976017.983209965750575, 3910030.096047395374626 ], [ 4975962.793633867055178, 3909987.380068166181445 ], [ 4975980.978683300316334, 3909964.112610540352762 ], [ 4976036.168278510682285, 3910006.828626509290189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976019.5445935446769, 3902483.101067037321627 ], [ 4975999.042488330043852, 3902510.369123414158821 ], [ 4976009.106884846463799, 3902517.672250268980861 ], [ 4976000.443804124370217, 3902529.30679476307705 ], [ 4975990.092173285782337, 3902521.638954943511635 ], [ 4975965.5480599058792, 3902553.996639929711819 ], [ 4975940.53179291356355, 3902535.37503373529762 ], [ 4975993.953082112595439, 3902464.114108567126095 ], [ 4976019.5445935446769, 3902483.101067037321627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975908.802340319380164, 3901569.6351178586483 ], [ 4975939.031472330912948, 3901574.430315576959401 ], [ 4975932.033814555034041, 3901616.655259259510785 ], [ 4975901.804728827439249, 3901611.860069295857102 ], [ 4975908.802340319380164, 3901569.6351178586483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975879.568146776407957, 3907732.866414661519229 ], [ 4975906.666164314374328, 3907716.535571838263422 ], [ 4975931.345232743769884, 3907757.004463826306164 ], [ 4975903.959319113753736, 3907773.33469651080668 ], [ 4975879.568146776407957, 3907732.866414661519229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975798.366735925897956, 3898230.69811884732917 ], [ 4975739.03969435300678, 3898227.664743961300701 ], [ 4975740.535916574299335, 3898199.993886601179838 ], [ 4975763.287624126300216, 3898201.132410302292556 ], [ 4975763.883612289093435, 3898191.302105377893895 ], [ 4975800.458281581290066, 3898193.561089259572327 ], [ 4975798.366735925897956, 3898230.69811884732917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975763.460923025384545, 3908762.761040653567761 ], [ 4975777.800317957997322, 3908790.464206099044532 ], [ 4975717.563465773127973, 3908821.657419539988041 ], [ 4975703.224025576375425, 3908793.95428569894284 ], [ 4975763.460923025384545, 3908762.761040653567761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975726.98135356977582, 3904886.137383748777211 ], [ 4975740.526944207027555, 3904880.338741968851537 ], [ 4975745.113512218929827, 3904890.543727756943554 ], [ 4975774.511280285194516, 3904877.494622881989926 ], [ 4975794.577065691351891, 3904922.323532338254154 ], [ 4975772.096099230460823, 3904932.473595533519983 ], [ 4975768.943400167860091, 3904925.184566778130829 ], [ 4975748.480326441116631, 3904934.246348900254816 ], [ 4975726.98135356977582, 3904886.137383748777211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975700.364691731519997, 3910773.009730360470712 ], [ 4975681.051742476411164, 3910784.986982074100524 ], [ 4975667.565189369022846, 3910763.11168614635244 ], [ 4975684.284188552759588, 3910752.585700797848403 ], [ 4975678.544834236614406, 3910743.470749793108553 ], [ 4975720.629180839285254, 3910717.702604287303984 ], [ 4975738.995073002763093, 3910746.870480296667665 ], [ 4975717.664644686505198, 3910759.936012658756226 ], [ 4975723.977546588517725, 3910770.144533846061677 ], [ 4975705.529729392379522, 3910781.395256257615983 ], [ 4975700.364691731519997, 3910773.009730360470712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975623.934438154101372, 3910557.28825956210494 ], [ 4975638.632406482473016, 3910549.671219735872 ], [ 4975629.740920448675752, 3910533.267242002300918 ], [ 4975659.42552475631237, 3910517.669628675561398 ], [ 4975686.669792723841965, 3910569.795817906968296 ], [ 4975642.57590470276773, 3910592.646883057896048 ], [ 4975623.934438154101372, 3910557.28825956210494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975367.446192718110979, 3911116.806839627679437 ], [ 4975412.877111823298037, 3911144.208366849925369 ], [ 4975405.367129153572023, 3911156.573749631177634 ], [ 4975359.936223375611007, 3911129.172234898433089 ], [ 4975367.446192718110979, 3911116.806839627679437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975291.571869572624564, 3905470.417795287445188 ], [ 4975295.822956452146173, 3905504.290595538914204 ], [ 4975259.820183011703193, 3905508.951921082567424 ], [ 4975255.569783337414265, 3905474.714996181894094 ], [ 4975291.571869572624564, 3905470.417795287445188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975067.982517451047897, 3904534.879084390588105 ], [ 4975053.859527881257236, 3904541.405170975252986 ], [ 4975046.692692318931222, 3904525.36903626145795 ], [ 4975104.335816082544625, 3904499.631158160045743 ], [ 4975112.649341900832951, 3904518.218526957556605 ], [ 4975117.836940929293633, 3904516.044136311393231 ], [ 4975128.730379323475063, 3904540.462786188349128 ], [ 4975080.021982899866998, 3904562.213062036316842 ], [ 4975067.982517451047897, 3904534.879084390588105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975038.8094996009022, 3898248.102160095702857 ], [ 4975041.101302138529718, 3898254.296958626713604 ], [ 4975059.837425842881203, 3898247.051858144346625 ], [ 4975080.183566113002598, 3898298.799076627474278 ], [ 4975064.905938487499952, 3898304.958696824032813 ], [ 4975061.180590228177607, 3898295.483854808378965 ], [ 4975035.814136191271245, 3898305.628727170173079 ], [ 4975016.614183822646737, 3898256.796875976957381 ], [ 4975038.8094996009022, 3898248.102160095702857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974896.270953661762178, 3910059.512422677129507 ], [ 4974940.661707181483507, 3910032.291140196844935 ], [ 4974958.167408622801304, 3910060.364350147079676 ], [ 4974967.103143892250955, 3910054.920223318506032 ], [ 4974977.433951056562364, 3910071.690986751578748 ], [ 4974938.51981383189559, 3910095.645957715343684 ], [ 4974923.883629944175482, 3910072.312218102626503 ], [ 4974909.759216758422554, 3910081.023190557956696 ], [ 4974896.270953661762178, 3910059.512422677129507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974784.471616316586733, 3910251.551520434673876 ], [ 4974794.32101162429899, 3910220.983994403388351 ], [ 4974805.54167880769819, 3910224.64768675994128 ], [ 4974809.018927425146103, 3910213.366502322722226 ], [ 4974842.393754247575998, 3910223.992906225845218 ], [ 4974829.067052057012916, 3910265.841596375685185 ], [ 4974784.471616316586733, 3910251.551520434673876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974771.710063959471881, 3896273.256624802015722 ], [ 4974817.421416200697422, 3896317.407372059300542 ], [ 4974789.134308834560215, 3896346.84552324609831 ], [ 4974763.259623560123146, 3896322.03318030340597 ], [ 4974748.827687622047961, 3896336.933771510608494 ], [ 4974728.702980702742934, 3896317.594851960428059 ], [ 4974771.710063959471881, 3896273.256624802015722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974587.956157804466784, 3903519.816116316244006 ], [ 4974648.782384293153882, 3903487.165097315330058 ], [ 4974663.41517972946167, 3903514.139891018625349 ], [ 4974602.588996319100261, 3903546.790877434890717 ], [ 4974587.956157804466784, 3903519.816116316244006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974470.392296484671533, 3900648.046358960680664 ], [ 4974450.237474173307419, 3900645.457541738636792 ], [ 4974449.067462731152773, 3900654.558491679374129 ], [ 4974426.609379189088941, 3900651.601002568844706 ], [ 4974433.036844961345196, 3900605.36913044936955 ], [ 4974475.649095018394291, 3900611.279575147666037 ], [ 4974470.392296484671533, 3900648.046358960680664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974405.355791934765875, 3904553.223303995095193 ], [ 4974422.639652265235782, 3904549.980314534623176 ], [ 4974420.36193888168782, 3904536.867073977831751 ], [ 4974436.20530850160867, 3904533.985374614596367 ], [ 4974437.913588140159845, 3904543.820305985398591 ], [ 4974458.365699865855277, 3904540.219479008112103 ], [ 4974464.627912327647209, 3904577.009160324931145 ], [ 4974437.550678307190537, 3904581.689263445790857 ], [ 4974439.826937940903008, 3904595.530765972100198 ], [ 4974413.613594214431942, 3904600.21260317787528 ], [ 4974405.355791934765875, 3904553.223303995095193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974394.426721921190619, 3894495.920277453493327 ], [ 4974339.936596347950399, 3894519.116886099800467 ], [ 4974330.18916118144989, 3894495.429233106784523 ], [ 4974338.550209218636155, 3894491.804450444877148 ], [ 4974325.361087983474135, 3894460.463287913706154 ], [ 4974371.201464880257845, 3894441.254978854674846 ], [ 4974394.426721921190619, 3894495.920277453493327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974265.487121916376054, 3898819.706629848107696 ], [ 4974248.480435721576214, 3898826.591565120965242 ], [ 4974252.779876782558858, 3898837.159819865599275 ], [ 4974230.583866721950471, 3898846.583445529453456 ], [ 4974211.090520137920976, 3898799.936359127983451 ], [ 4974250.581284950487316, 3898783.62834080401808 ], [ 4974265.487121916376054, 3898819.706629848107696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974246.983695746399462, 3908054.766802565660328 ], [ 4974263.919173220172524, 3908081.01773570291698 ], [ 4974223.560335444286466, 3908106.427395679987967 ], [ 4974206.912753180600703, 3908080.177055035252124 ], [ 4974246.983695746399462, 3908054.766802565660328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974156.714126328937709, 3898477.209923328831792 ], [ 4974139.129776181653142, 3898484.82205003220588 ], [ 4974142.283679565414786, 3898492.110859280917794 ], [ 4974120.087423969991505, 3898501.534574248827994 ], [ 4974100.016158001497388, 3898455.614702403079718 ], [ 4974139.796814948320389, 3898438.57883352227509 ], [ 4974156.714126328937709, 3898477.209923328831792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974010.901812970638275, 3897193.729149603750557 ], [ 4974029.252408856526017, 3897236.368370771873742 ], [ 4973966.408719920553267, 3897262.826530540827662 ], [ 4973957.233745601028204, 3897241.324875134974718 ], [ 4973962.999436445534229, 3897238.787272219546139 ], [ 4973954.397665021941066, 3897218.7432617014274 ], [ 4973972.847608497366309, 3897210.768586287740618 ], [ 4973968.832973198033869, 3897201.657465343829244 ], [ 4973982.670084612444043, 3897195.858529319986701 ], [ 4973986.110074869357049, 3897204.240265152882785 ], [ 4974010.901812970638275, 3897193.729149603750557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973974.194883967749774, 3901222.394857664126903 ], [ 4973973.019343535415828, 3901234.408866281155497 ], [ 4974000.9488330995664, 3901237.376716773957014 ], [ 4973998.599874603562057, 3901260.312343958765268 ], [ 4973933.239354669116437, 3901253.265657420735806 ], [ 4973936.763781837187707, 3901218.316014392767102 ], [ 4973974.194883967749774, 3901222.394857664126903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973903.176735384389758, 3900428.086662786081433 ], [ 4973898.496685511432588, 3900464.854682843666524 ], [ 4973877.189671110361814, 3900462.264039013534784 ], [ 4973876.021984998136759, 3900470.272625352721661 ], [ 4973854.139685368165374, 3900467.316742768976837 ], [ 4973859.6993562662974, 3900422.539564290549606 ], [ 4973903.176735384389758, 3900428.086662786081433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973838.138769496232271, 3903051.522162046749145 ], [ 4973880.239782307296991, 3903022.474088296759874 ], [ 4973883.112377455458045, 3903026.121025565080345 ], [ 4973903.008885308168828, 3903012.687148197554052 ], [ 4973918.515883419662714, 3903034.929534485097975 ], [ 4973856.229707061313093, 3903077.775012015830725 ], [ 4973838.138769496232271, 3903051.522162046749145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973225.195944648236036, 3898504.887044733855873 ], [ 4973202.388086407445371, 3898532.880971416831017 ], [ 4973172.481757144443691, 3898508.062334041576833 ], [ 4973212.032855548895895, 3898460.437718539964408 ], [ 4973249.703800627030432, 3898491.461631842888892 ], [ 4973233.247858684509993, 3898511.456958410795778 ], [ 4973225.195944648236036, 3898504.887044733855873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973041.810770872980356, 3903392.623100657947361 ], [ 4973027.74310040101409, 3903370.383989546447992 ], [ 4973041.582451637834311, 3903361.671508765313774 ], [ 4973053.92721598688513, 3903381.358387339860201 ], [ 4973064.306730728596449, 3903374.82403615815565 ], [ 4973084.977981918491423, 3903407.271576699335128 ], [ 4973058.164616081863642, 3903423.969906975049525 ], [ 4973063.907133863307536, 3903432.720127292908728 ], [ 4973041.70691005140543, 3903446.514319256879389 ], [ 4973017.303971257992089, 3903407.869392093736678 ], [ 4973041.810770872980356, 3903392.623100657947361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972841.584296161308885, 3913034.824766203761101 ], [ 4972807.023678720928729, 3913043.497616676148027 ], [ 4972804.452457582578063, 3913033.29694784199819 ], [ 4972776.804808042943478, 3913039.798304426949471 ], [ 4972769.377572257071733, 3913009.925123714376241 ], [ 4972854.914238499477506, 3912988.969565455336124 ], [ 4972861.769851469434798, 3913016.656871185638011 ], [ 4972838.441551897674799, 3913022.438196372240782 ], [ 4972841.584296161308885, 3913034.824766203761101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972672.650080108083785, 3901878.949768147896975 ], [ 4972635.743452148512006, 3901902.183551912195981 ], [ 4972619.664334727451205, 3901877.027783896308392 ], [ 4972658.588969120755792, 3901852.705445892177522 ], [ 4972660.024715837091208, 3901854.892977443523705 ], [ 4972692.029404544271529, 3901834.927021898794919 ], [ 4972710.117403229698539, 3901863.72798769408837 ], [ 4972676.670023812912405, 3901885.147684763651341 ], [ 4972672.650080108083785, 3901878.949768147896975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972465.507970483973622, 3899805.194439637009054 ], [ 4972530.937002642080188, 3899778.373546922579408 ], [ 4972542.118564863689244, 3899804.976402333471924 ], [ 4972476.689586153253913, 3899831.797268256079406 ], [ 4972465.507970483973622, 3899805.194439637009054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972380.754210438579321, 3907868.356261012144387 ], [ 4972351.359979020431638, 3907882.137364360969514 ], [ 4972326.411946502514184, 3907828.926630227360874 ], [ 4972355.805530600249767, 3907815.509630893357098 ], [ 4972380.754210438579321, 3907868.356261012144387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972202.174038623459637, 3898487.634828130714595 ], [ 4972156.343486693687737, 3898506.11862436356023 ], [ 4972141.150071149691939, 3898468.220322457142174 ], [ 4972186.980677102692425, 3898449.736500739119947 ], [ 4972202.174038623459637, 3898487.634828130714595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972129.862656550481915, 3892409.449079524260014 ], [ 4972067.007514559663832, 3892437.003987113945186 ], [ 4972072.457746725529432, 3892449.394669020548463 ], [ 4972056.599944271147251, 3892456.283143600448966 ], [ 4972047.993832174688578, 3892436.968054424971342 ], [ 4972064.428504365496337, 3892429.716536356601864 ], [ 4972054.961570699699223, 3892408.579174251295626 ], [ 4972117.240593244321644, 3892381.023148798849434 ], [ 4972129.862656550481915, 3892409.449079524260014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971357.668775408528745, 3911935.246723533142358 ], [ 4971376.063698949292302, 3911950.938761720899493 ], [ 4971358.753045439720154, 3911971.297921147663146 ], [ 4971340.069569926708937, 3911955.969489682931453 ], [ 4971357.668775408528745, 3911935.246723533142358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971184.405181365087628, 3902928.117662960197777 ], [ 4971163.071458901278675, 3902940.822618468664587 ], [ 4971146.708348508924246, 3902913.118272522464395 ], [ 4971167.754111184738576, 3902900.41276933113113 ], [ 4971184.405181365087628, 3902928.117662960197777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971030.022975239902735, 3907761.678047995083034 ], [ 4971015.946500879712403, 3907744.537762796971947 ], [ 4971026.615132403559983, 3907736.182486007921398 ], [ 4971016.848035456612706, 3907724.148033924400806 ], [ 4971041.64646434597671, 3907704.166710135526955 ], [ 4971077.55507040489465, 3907748.293262743391097 ], [ 4971054.198964186944067, 3907766.820698798634112 ], [ 4971042.133238565176725, 3907752.23305180715397 ], [ 4971030.022975239902735, 3907761.678047995083034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970972.828128299675882, 3897589.572798357345164 ], [ 4970985.221541265025735, 3897585.226168500259519 ], [ 4970994.394055387936532, 3897609.275714264251292 ], [ 4970945.97191469091922, 3897627.028510040603578 ], [ 4970929.348924659192562, 3897582.209806277416646 ], [ 4970965.089009054005146, 3897569.167210146319121 ], [ 4970972.828128299675882, 3897589.572798357345164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970978.948499113321304, 3894125.255985328927636 ], [ 4970983.783006543293595, 3894159.128938803914934 ], [ 4970982.054600686766207, 3894159.125741283409297 ], [ 4970984.045475657097995, 3894172.96633188566193 ], [ 4970955.231320357881486, 3894176.918461048975587 ], [ 4970953.52782522700727, 3894163.442533050198108 ], [ 4970942.002429055050015, 3894164.877742918673903 ], [ 4970937.167870056815445, 3894131.004796835593879 ], [ 4970978.948499113321304, 3894125.255985328927636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970627.59521905425936, 3912569.671394755598158 ], [ 4970649.425156844779849, 3912595.929118669126183 ], [ 4970624.919391322880983, 3912615.911394527647644 ], [ 4970603.08944592718035, 3912589.653690207749605 ], [ 4970627.59521905425936, 3912569.671394755598158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970646.289529501460493, 3899108.12125095538795 ], [ 4970597.890372474677861, 3899114.950820492114872 ], [ 4970596.467012793757021, 3899105.844952211715281 ], [ 4970576.876671519130468, 3899108.722034183330834 ], [ 4970573.466602625325322, 3899083.590792557224631 ], [ 4970602.851474430412054, 3899079.639300272800028 ], [ 4970600.862113168463111, 3899065.070439797826111 ], [ 4970621.31653415504843, 3899062.194962508510798 ], [ 4970623.023220638744533, 3899073.850263674277812 ], [ 4970641.172848146408796, 3899071.334698043297976 ], [ 4970646.289529501460493, 3899108.12125095538795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970380.958181945607066, 3899145.868606147356331 ], [ 4970448.960861152969301, 3899128.878876661416143 ], [ 4970457.53996195551008, 3899162.394560612738132 ], [ 4970410.28368301782757, 3899174.32438324810937 ], [ 4970408.568919136188924, 3899167.038642771076411 ], [ 4970387.821927133016288, 3899172.462658547796309 ], [ 4970380.958181945607066, 3899145.868606147356331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970237.57292356248945, 3898646.384460699278861 ], [ 4970279.657654163427651, 3898627.890560989268124 ], [ 4970289.409800609573722, 3898650.120287452824414 ], [ 4970281.626631154678762, 3898653.747389206197113 ], [ 4970289.658623295836151, 3898671.604417082387954 ], [ 4970255.357108449563384, 3898686.471189929172397 ], [ 4970237.57292356248945, 3898646.384460699278861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970249.911688658408821, 3891085.99073618138209 ], [ 4970208.385422266088426, 3891107.762794852722436 ], [ 4970197.474732536822557, 3891087.35173450037837 ], [ 4970174.692922370508313, 3891099.326508209574968 ], [ 4970161.197909278795123, 3891074.177090034820139 ], [ 4970225.794815835542977, 3891040.066606822423637 ], [ 4970249.911688658408821, 3891085.99073618138209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970198.460562199354172, 3891653.573397336062044 ], [ 4970153.78670818079263, 3891664.051829012576491 ], [ 4970148.353975270874798, 3891641.465974941384047 ], [ 4970159.306207752786577, 3891638.936996608972549 ], [ 4970149.870610845275223, 3891599.593946213368326 ], [ 4970176.963475071825087, 3891593.088922485243529 ], [ 4970182.396193886175752, 3891615.674781704321504 ], [ 4970189.02502778172493, 3891614.230332874692976 ], [ 4970198.460562199354172, 3891653.573397336062044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970137.202499537728727, 3906005.287121086847037 ], [ 4970178.97578174713999, 3905993.346806270070374 ], [ 4970180.69215470738709, 3905999.540170683059841 ], [ 4970198.265827565453947, 3905994.474333140999079 ], [ 4970196.262180709280074, 3905987.91631262935698 ], [ 4970246.38978951703757, 3905973.806531272828579 ], [ 4970256.689257925376296, 3906010.238484160974622 ], [ 4970132.235305420123041, 3906044.968441481236368 ], [ 4970124.50992807932198, 3906018.008642077911645 ], [ 4970139.490787609480321, 3906013.666313675697893 ], [ 4970137.202499537728727, 3906005.287121086847037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968871.256786501966417, 3894389.074633223935962 ], [ 4968875.650014465674758, 3894348.299952549859881 ], [ 4968906.755291315726936, 3894351.632239084690809 ], [ 4968905.583018570207059, 3894362.918164159171283 ], [ 4968927.760184121318161, 3894365.142262073699385 ], [ 4968925.707562914118171, 3894385.529853579588234 ], [ 4968898.922015581279993, 3894382.933459524065256 ], [ 4968898.041684944182634, 3894392.035127725917846 ], [ 4968871.256786501966417, 3894389.074633223935962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968740.548815586604178, 3911132.313496171031147 ], [ 4968707.099393383599818, 3911163.205679986160249 ], [ 4968665.721652267500758, 3911119.072547638323158 ], [ 4968699.171081565320492, 3911088.180313168093562 ], [ 4968740.548815586604178, 3911132.313496171031147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968741.454770492389798, 3893997.40623016981408 ], [ 4968736.501632767729461, 3894029.076708522625268 ], [ 4968669.975669546052814, 3894018.76366505259648 ], [ 4968675.217442585155368, 3893986.72955490462482 ], [ 4968741.454770492389798, 3893997.40623016981408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968508.086393027566373, 3901551.233116543386132 ], [ 4968550.755464005284011, 3901524.726640095468611 ], [ 4968566.838597323745489, 3901549.879968216642737 ], [ 4968551.270558532327414, 3901559.319961616769433 ], [ 4968570.511281240731478, 3901590.304941193200648 ], [ 4968545.716757753863931, 3901605.918916066177189 ], [ 4968540.547713283449411, 3901597.534814017359167 ], [ 4968519.501538, 3901610.606494134757668 ], [ 4968506.003886952996254, 3901589.099046370014548 ], [ 4968524.743605071678758, 3901577.479821369983256 ], [ 4968508.086393027566373, 3901551.233116543386132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968459.758337906561792, 3892828.420346432365477 ], [ 4968476.478601893410087, 3892821.895394647028297 ], [ 4968478.772383123636246, 3892828.089613727293909 ], [ 4968528.931933276355267, 3892809.243080470245332 ], [ 4968547.857588010840118, 3892859.162015975918621 ], [ 4968523.354647200554609, 3892868.222138927783817 ], [ 4968519.340713426470757, 3892857.291216855403036 ], [ 4968476.676492929458618, 3892873.237903658766299 ], [ 4968459.758337906561792, 3892828.420346432365477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968328.725330861285329, 3898888.396920851897448 ], [ 4968287.233045262284577, 3898898.51991948671639 ], [ 4968281.79895440209657, 3898876.662604451645166 ], [ 4968323.291271645575762, 3898866.539597560185939 ], [ 4968328.725330861285329, 3898888.396920851897448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968086.427875177934766, 3895625.007017214316875 ], [ 4968137.992982243187726, 3895622.912133872974664 ], [ 4968139.643170023337007, 3895667.702927674166858 ], [ 4968120.9185541709885, 3895668.398531378246844 ], [ 4968120.372291193343699, 3895651.283497285097837 ], [ 4968087.243813229724765, 3895652.682272581383586 ], [ 4968086.427875177934766, 3895625.007017214316875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967723.010227712802589, 3901894.331746973097324 ], [ 4967733.67700011190027, 3901887.795840900857002 ], [ 4967727.933676458895206, 3901878.318508559837937 ], [ 4967755.321858989074826, 3901861.251742939464748 ], [ 4967759.341677667573094, 3901868.177183185704052 ], [ 4967771.738270869478583, 3901860.551893710624427 ], [ 4967787.820038781501353, 3901886.797149687539786 ], [ 4967737.657139324583113, 3901917.661446303129196 ], [ 4967723.010227712802589, 3901894.331746973097324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967695.014206979423761, 3902263.147832338698208 ], [ 4967715.697200115770102, 3902293.042312354780734 ], [ 4967667.547227906994522, 3902326.095011358615011 ], [ 4967646.864835483022034, 3902295.836438055615872 ], [ 4967695.014206979423761, 3902263.147832338698208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967521.779701388441026, 3900514.65787044679746 ], [ 4967467.57943294942379, 3900547.336351071950048 ], [ 4967443.742465351708233, 3900508.333414367865771 ], [ 4967496.502156874164939, 3900476.016537942923605 ], [ 4967500.810250494629145, 3900482.942429310176522 ], [ 4967512.053527585230768, 3900476.407432066742331 ], [ 4967525.838653970509768, 3900499.007250193040818 ], [ 4967515.748008321039379, 3900505.180095450486988 ], [ 4967521.779701388441026, 3900514.65787044679746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967404.576584422960877, 3912911.687926957383752 ], [ 4967465.045504197478294, 3912901.960288318805397 ], [ 4967470.174481062218547, 3912932.556302038487047 ], [ 4967432.16546483989805, 3912938.68119849730283 ], [ 4967431.594739800319076, 3912935.767151643522084 ], [ 4967409.134900847449899, 3912939.369882937055081 ], [ 4967404.576584422960877, 3912911.687926957383752 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967333.46917955763638, 3902505.764844480901957 ], [ 4967371.382316672243178, 3902564.090823150239885 ], [ 4967333.32681739795953, 3902588.786440249532461 ], [ 4967320.976252736523747, 3902569.830458879936486 ], [ 4967312.039588113315403, 3902575.277103476691991 ], [ 4967301.699854118749499, 3902559.237624763976783 ], [ 4967309.196009457111359, 3902554.152638786006719 ], [ 4967298.855641664937139, 3902538.477291170973331 ], [ 4967317.882778037339449, 3902526.493581615388393 ], [ 4967313.000258840620518, 3902518.838464244734496 ], [ 4967333.46917955763638, 3902505.764844480901957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967220.352222744375467, 3899103.864061351399869 ], [ 4967249.737819065339863, 3899099.180645066313446 ], [ 4967257.428825970739126, 3899149.079635916743428 ], [ 4967228.043905708007514, 3899153.398914873600006 ], [ 4967220.352222744375467, 3899103.864061351399869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967217.431289189495146, 3898959.299414388369769 ], [ 4967185.451533386483788, 3898965.070822497829795 ], [ 4967175.748577524907887, 3898912.61950967554003 ], [ 4967206.8637206973508, 3898907.210741824004799 ], [ 4967210.285676547326148, 3898927.243747325614095 ], [ 4967218.640647501684725, 3898925.801514884456992 ], [ 4967222.065706173889339, 3898944.013877005781978 ], [ 4967214.86342881526798, 3898945.093949526082724 ], [ 4967217.431289189495146, 3898959.299414388369769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966450.858484304510057, 3899054.129681376274675 ], [ 4966467.909576268866658, 3899019.566003264393657 ], [ 4966538.703730504028499, 3899053.913424426224083 ], [ 4966525.120400837622583, 3899081.56442767335102 ], [ 4966501.810198733583093, 3899070.237139477860183 ], [ 4966498.342371514998376, 3899077.149773105978966 ], [ 4966450.858484304510057, 3899054.129681376274675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965437.916403578594327, 3911655.763461405877024 ], [ 4965436.705591474659741, 3911691.810625149402767 ], [ 4965429.22131627984345, 3911691.43418358033523 ], [ 4965428.005726993083954, 3911730.39440379338339 ], [ 4965385.977135675959289, 3911729.232925205491483 ], [ 4965386.909570105373859, 3911687.359174955636263 ], [ 4965365.895539356395602, 3911686.596393657848239 ], [ 4965366.206141203641891, 3911672.759854230098426 ], [ 4965362.464299448765814, 3911672.389577050227672 ], [ 4965363.678600204177201, 3911634.15761906793341 ], [ 4965391.313920739106834, 3911634.931276843417436 ], [ 4965390.706451161764562, 3911654.229321044869721 ], [ 4965437.916403578594327, 3911655.763461405877024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965365.32702471781522, 3906597.118223331402987 ], [ 4965296.433713448233902, 3906643.978198206983507 ], [ 4965273.740034169517457, 3906611.533283351454884 ], [ 4965342.921920993365347, 3906564.309592963196337 ], [ 4965365.32702471781522, 3906597.118223331402987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965258.380356871522963, 3899989.785920687951148 ], [ 4965278.321309745311737, 3899947.943598783109337 ], [ 4965305.372947195544839, 3899960.732485761865973 ], [ 4965285.431961589492857, 3900002.574787910096347 ], [ 4965258.380356871522963, 3899989.785920687951148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965084.959635796025395, 3902310.470453585498035 ], [ 4965091.944821276701987, 3902265.329632473178208 ], [ 4965124.190940647386014, 3902270.115956143010408 ], [ 4965116.917127607390285, 3902315.620428732130677 ], [ 4965084.959635796025395, 3902310.470453585498035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965059.241038591600955, 3902541.287443472538143 ], [ 4965100.984157425351441, 3902549.730531983077526 ], [ 4965090.533203995786607, 3902601.055928708519787 ], [ 4965042.168464462272823, 3902591.509672746993601 ], [ 4965047.974297701381147, 3902563.116929091047496 ], [ 4965054.595408162102103, 3902564.584243782795966 ], [ 4965059.241038591600955, 3902541.287443472538143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964417.917471170425415, 3891956.456962181720883 ], [ 4964443.556422024033964, 3891957.226398459635675 ], [ 4964442.640083805657923, 3891989.632365323137492 ], [ 4964416.713072936050594, 3891988.862467340193689 ], [ 4964417.917471170425415, 3891956.456962181720883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964300.772207459434867, 3904117.477152193896472 ], [ 4964327.835865465924144, 3904120.433571341447532 ], [ 4964324.61985141877085, 3904150.651302596088499 ], [ 4964297.26826289948076, 3904147.694425353780389 ], [ 4964300.772207459434867, 3904117.477152193896472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964244.241521169431508, 3901473.796580106019974 ], [ 4964270.781414591707289, 3901445.800996515434235 ], [ 4964302.987830544821918, 3901476.075407123193145 ], [ 4964276.159944378770888, 3901504.070498370099813 ], [ 4964244.241521169431508, 3901473.796580106019974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964103.338122353889048, 3901341.028017452917993 ], [ 4964071.638260757550597, 3901354.086190229281783 ], [ 4964056.720749657601118, 3901317.649372197687626 ], [ 4964088.420066492632031, 3901304.955311724916101 ], [ 4964103.338122353889048, 3901341.028017452917993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964091.609351858496666, 3901110.878833249676973 ], [ 4964101.618281750939786, 3901155.318710159044713 ], [ 4964076.554215514101088, 3901160.740716596599668 ], [ 4964079.700663922354579, 3901174.218559180386364 ], [ 4964053.195497840642929, 3901180.366551921702921 ], [ 4964039.467518464662135, 3901120.263159936759621 ], [ 4964064.243621778674424, 3901114.840660253539681 ], [ 4964064.816127532161772, 3901117.026355224661529 ], [ 4964091.609351858496666, 3901110.878833249676973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963887.720354511402547, 3901648.739541763439775 ], [ 4963906.778381384909153, 3901616.72629116801545 ], [ 4963935.262563289143145, 3901633.521523941773921 ], [ 4963916.204514301382005, 3901665.534754664637148 ], [ 4963887.720354511402547, 3901648.739541763439775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963866.620171396061778, 3901334.097263865172863 ], [ 4963853.913367279805243, 3901356.289080495946109 ], [ 4963863.408971506170928, 3901361.401962338015437 ], [ 4963851.568462342023849, 3901382.138631818350405 ], [ 4963808.983962909318507, 3901358.038547792471945 ], [ 4963833.530658487230539, 3901315.474157444667071 ], [ 4963866.620171396061778, 3901334.097263865172863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963822.750725639984012, 3901757.511599856428802 ], [ 4963806.280735032632947, 3901792.077924831304699 ], [ 4963767.14403825160116, 3901773.445319326128811 ], [ 4963783.901399960741401, 3901739.243556237313896 ], [ 4963822.750725639984012, 3901757.511599856428802 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963829.248270654119551, 3892927.377486533019692 ], [ 4963863.838749958202243, 3892914.323659537360072 ], [ 4963877.608900800347328, 3892950.758361962623894 ], [ 4963843.019038498401642, 3892963.448043716140091 ], [ 4963829.248270654119551, 3892927.377486533019692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963441.686890818178654, 3892802.234444569796324 ], [ 4963458.920941425487399, 3892834.668950009159744 ], [ 4963422.304275028407574, 3892853.910306536126882 ], [ 4963405.069621734321117, 3892821.839952008333057 ], [ 4963441.686890818178654, 3892802.234444569796324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963291.15986624546349, 3894738.80017534410581 ], [ 4963221.984189033508301, 3894764.909375631716102 ], [ 4963207.351607537828386, 3894727.381236915942281 ], [ 4963226.374473092146218, 3894720.492481418885291 ], [ 4963223.792720805853605, 3894713.569997538812459 ], [ 4963241.374722691252828, 3894707.043132066261023 ], [ 4963234.201612680219114, 3894688.825474204029888 ], [ 4963267.348658532835543, 3894676.132745008915663 ], [ 4963291.15986624546349, 3894738.80017534410581 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963234.396738867275417, 3900096.1512729562819 ], [ 4963264.315004713833332, 3900118.045839914586395 ], [ 4963236.608050845563412, 3900155.507959026377648 ], [ 4963207.265243083238602, 3900133.978450986556709 ], [ 4963221.118985267356038, 3900115.065308188088238 ], [ 4963220.831550066359341, 3900114.700729076750576 ], [ 4963234.396738867275417, 3900096.1512729562819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963094.071408588439226, 3903838.467330531217158 ], [ 4963127.223007887601852, 3903815.578713735565543 ], [ 4963150.783836426213384, 3903849.115497830789536 ], [ 4963117.632258300669491, 3903872.004086013417691 ], [ 4963094.071408588439226, 3903838.467330531217158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963068.464951544068754, 3896049.682177187409252 ], [ 4963090.92811331897974, 3896052.630167166702449 ], [ 4963095.298138049431145, 3896020.957714657299221 ], [ 4963132.736395234242082, 3896026.113831340800971 ], [ 4963124.001374349929392, 3896086.181569221429527 ], [ 4963064.389240612275898, 3896077.349669226910919 ], [ 4963068.464951544068754, 3896049.682177187409252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963031.211688147857785, 3896481.481734331697226 ], [ 4963015.290695873089135, 3896532.070988451130688 ], [ 4962966.05921087693423, 3896516.701103088911623 ], [ 4962986.612551741302013, 3896450.825575374998152 ], [ 4963025.480259605683386, 3896462.538094579707831 ], [ 4963020.559198590926826, 3896478.188013866078109 ], [ 4963031.211688147857785, 3896481.481734331697226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962958.476492092944682, 3898062.055502985138446 ], [ 4963006.547388978302479, 3898081.06488792784512 ], [ 4962994.1147848861292, 3898111.632480714470148 ], [ 4962946.331959472037852, 3898092.62356447475031 ], [ 4962958.476492092944682, 3898062.055502985138446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962932.728409969247878, 3904263.157598493155092 ], [ 4962982.8322096131742, 3904263.96362407784909 ], [ 4962981.559927091002464, 3904341.521587548777461 ], [ 4962931.168878273107111, 3904340.350987355224788 ], [ 4962932.728409969247878, 3904263.157598493155092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962923.336017147637904, 3900106.226943822577596 ], [ 4962947.500100157223642, 3900124.470934002194554 ], [ 4962905.942346558906138, 3900179.390160975977778 ], [ 4962881.778284889645875, 3900161.146207568701357 ], [ 4962923.336017147637904, 3900106.226943822577596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961959.106564267538488, 3895915.800307089928538 ], [ 4961995.392988385632634, 3895920.9530945639126 ], [ 4961984.910115745849907, 3895995.58371914178133 ], [ 4961948.623790426179767, 3895990.430945601779968 ], [ 4961959.106564267538488, 3895915.800307089928538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961829.884800280444324, 3896604.537726808805019 ], [ 4961840.669898239895701, 3896520.075977223925292 ], [ 4961888.476119318976998, 3896525.9742800896056 ], [ 4961884.689735852181911, 3896553.642394251655787 ], [ 4961872.018089640885592, 3896552.16672399174422 ], [ 4961864.443170830607414, 3896608.959473337512463 ], [ 4961829.884800280444324, 3896604.537726808805019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961555.745933657512069, 3900202.456421155948192 ], [ 4961532.070210948586464, 3900242.111122827976942 ], [ 4961505.885438829660416, 3900226.414290266577154 ], [ 4961529.560590918175876, 3900187.123695322778076 ], [ 4961555.745933657512069, 3900202.456421155948192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961531.148133039474487, 3892976.634626102168113 ], [ 4961536.386506969109178, 3892941.321993716061115 ], [ 4961589.957495362497866, 3892949.413155060261488 ], [ 4961584.719052595086396, 3892984.725777177140117 ], [ 4961531.148133039474487, 3892976.634626102168113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961502.499939385801554, 3893447.046036576852202 ], [ 4961508.901394278742373, 3893404.452555365394801 ], [ 4961530.790239445865154, 3893407.762502250261605 ], [ 4961531.371301181614399, 3893404.486213935539126 ], [ 4961555.564749134704471, 3893407.79963421728462 ], [ 4961548.582158143632114, 3893453.669392418581992 ], [ 4961502.499939385801554, 3893447.046036576852202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961405.132783701643348, 3897880.538209734484553 ], [ 4961406.32841410022229, 3897851.409617759287357 ], [ 4961454.137807100079954, 3897853.665863651782274 ], [ 4961452.94212497677654, 3897882.79445353616029 ], [ 4961405.132783701643348, 3897880.538209734484553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961393.529147163033485, 3896007.074457874987274 ], [ 4961397.019438540562987, 3895984.503652361687273 ], [ 4961390.97206003498286, 3895983.402233306784183 ], [ 4961399.989113431423903, 3895924.790880153886974 ], [ 4961435.122892430983484, 3895930.305318943224847 ], [ 4961429.595541006885469, 3895966.709987960755825 ], [ 4961439.675052956677973, 3895968.18157311854884 ], [ 4961436.185268034227192, 3895990.388244360219687 ], [ 4961423.80192413367331, 3895988.549087989144027 ], [ 4961420.31161077413708, 3896011.119890073314309 ], [ 4961393.529147163033485, 3896007.074457874987274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961114.505097100511193, 3899633.027017829474062 ], [ 4961076.678798364475369, 3899698.514360762666911 ], [ 4961049.629205036908388, 3899682.816697506699711 ], [ 4961063.777758231386542, 3899658.440934649202973 ], [ 4961058.022437735460699, 3899655.155238872393966 ], [ 4961068.705734184011817, 3899636.964558612555265 ], [ 4961075.612013816833496, 3899640.980222263373435 ], [ 4961088.893886377103627, 3899618.423839485738426 ], [ 4961114.505097100511193, 3899633.027017829474062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961090.062439321540296, 3899801.5830227159895 ], [ 4961093.816249029710889, 3899795.034244700800627 ], [ 4961086.046529571525753, 3899790.653166044037789 ], [ 4961100.485226459801197, 3899764.821330475620925 ], [ 4961135.592970851808786, 3899784.536434354260564 ], [ 4961117.400436491705477, 3899816.917025630362332 ], [ 4961090.062439321540296, 3899801.5830227159895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960762.580402252264321, 3894522.677446460817009 ], [ 4960796.562282435595989, 3894529.281737182755023 ], [ 4960791.338573505170643, 3894555.491341150831431 ], [ 4960757.356725194491446, 3894548.887056929059327 ], [ 4960762.580402252264321, 3894522.677446460817009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960533.076251483522356, 3908848.693464298732579 ], [ 4960576.626378985121846, 3908797.050409678369761 ], [ 4960599.056223331950605, 3908815.65398784307763 ], [ 4960587.231097625568509, 3908829.83782556373626 ], [ 4960612.824185573495924, 3908850.994972055312246 ], [ 4960581.098626800812781, 3908888.818254840560257 ], [ 4960533.076251483522356, 3908848.693464298732579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960277.906357310712337, 3900577.081176678650081 ], [ 4960267.790979097597301, 3900601.463219777215272 ], [ 4960243.613359886221588, 3900591.596612857654691 ], [ 4960253.728719841688871, 3900567.214560804888606 ], [ 4960277.906357310712337, 3900577.081176678650081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960035.761843869462609, 3897539.522654092404991 ], [ 4960033.423967711627483, 3897562.823577219620347 ], [ 4960008.656962431035936, 3897560.238945834804326 ], [ 4960010.994817335158587, 3897536.938020593021065 ], [ 4960035.761843869462609, 3897539.522654092404991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959827.290770204737782, 3893279.639648619107902 ], [ 4959873.966579013504088, 3893274.608865267597139 ], [ 4959880.796188888140023, 3893333.243401856161654 ], [ 4959834.119957942515612, 3893338.638301497790962 ], [ 4959827.290770204737782, 3893279.639648619107902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959679.370340248569846, 3905461.397792195435613 ], [ 4959690.306578610092402, 3905465.418879437725991 ], [ 4959697.534416410140693, 3905445.0378637178801 ], [ 4959725.739116569980979, 3905454.909780117683113 ], [ 4959699.720238694921136, 3905527.334680467844009 ], [ 4959665.471863916143775, 3905515.269361916929483 ], [ 4959673.278165238909423, 3905493.068509226664901 ], [ 4959668.673108568415046, 3905491.605399440973997 ], [ 4959679.370340248569846, 3905461.397792195435613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959034.982893859036267, 3907277.136290942784399 ], [ 4959050.205121826380491, 3907304.103451320901513 ], [ 4959020.237190905958414, 3907320.811370515730232 ], [ 4959005.014942398294806, 3907293.844226827379316 ], [ 4959034.982893859036267, 3907277.136290942784399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958991.998922511935234, 3904670.986992797348648 ], [ 4958950.486403557471931, 3904704.428789226338267 ], [ 4958930.076853767968714, 3904679.27511227875948 ], [ 4958971.589386051520705, 3904645.833284836262465 ], [ 4958991.998922511935234, 3904670.986992797348648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958988.670091073960066, 3899453.719118445180357 ], [ 4958983.711027451790869, 3899498.500149606727064 ], [ 4958974.784237426705658, 3899497.395228584297001 ], [ 4958972.447957595810294, 3899520.332141861319542 ], [ 4958941.059442049823701, 3899517.010936311911792 ], [ 4958943.685237838886678, 3899492.982036305125803 ], [ 4958934.470433859154582, 3899491.87672475585714 ], [ 4958939.427884804084897, 3899448.188072606921196 ], [ 4958988.670091073960066, 3899453.719118445180357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958251.731096941046417, 3901695.008609468583018 ], [ 4958278.515884568914771, 3901693.588977800682187 ], [ 4958279.358773705549538, 3901708.883620294742286 ], [ 4958313.343720104545355, 3901707.109814300201833 ], [ 4958315.58735067397356, 3901750.808569819200784 ], [ 4958254.529744109138846, 3901754.001605147495866 ], [ 4958251.731096941046417, 3901695.008609468583018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958239.700478636659682, 3901438.644195126369596 ], [ 4958244.46748682204634, 3901532.232283657882363 ], [ 4958199.826244551688433, 3901534.355654418002814 ], [ 4958197.020444925874472, 3901480.460488961543888 ], [ 4958214.877277182415128, 3901479.392652065958828 ], [ 4958212.627449447289109, 3901440.06346918689087 ], [ 4958239.700478636659682, 3901438.644195126369596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957838.582745011895895, 3906053.090748472604901 ], [ 4957858.783702318556607, 3906019.982299869414419 ], [ 4957901.076196336187422, 3906045.529153851326555 ], [ 4957880.875205995514989, 3906078.637571189086884 ], [ 4957838.582745011895895, 3906053.090748472604901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957231.681143489666283, 3901478.78660306148231 ], [ 4957257.688962082378566, 3901412.549697391223162 ], [ 4957307.197824451141059, 3901431.550856445450336 ], [ 4957296.505087891593575, 3901459.210425544530153 ], [ 4957282.400929297320545, 3901453.729555779602379 ], [ 4957267.373749660328031, 3901492.307239057961851 ], [ 4957231.681143489666283, 3901478.78660306148231 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956026.887778797186911, 3900245.711997060105205 ], [ 4956021.66180822532624, 3900278.112818685360253 ], [ 4955968.392713285982609, 3900269.304831399582326 ], [ 4955973.618621315807104, 3900236.903999579604715 ], [ 4956026.887778797186911, 3900245.711997060105205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955805.633265814743936, 3891559.852753066457808 ], [ 4955807.118205984123051, 3891525.262475948315114 ], [ 4955832.181141239590943, 3891526.387086853384972 ], [ 4955830.696168884634972, 3891560.977362615056336 ], [ 4955805.633265814743936, 3891559.852753066457808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955485.693779692985117, 3898691.638740990776569 ], [ 4955487.183503820560873, 3898652.678750710561872 ], [ 4955521.744449918158352, 3898653.815185308456421 ], [ 4955519.9661924270913, 3898693.138935674913228 ], [ 4955485.693779692985117, 3898691.638740990776569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954715.341471466235816, 3895372.357113861013204 ], [ 4954698.037804613821208, 3895388.721386014018208 ], [ 4954656.323302770964801, 3895345.702284622006118 ], [ 4954673.627424567006528, 3895328.973857542965561 ], [ 4954715.341471466235816, 3895372.357113861013204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954637.893528692424297, 3901137.890307140070945 ], [ 4954659.239854124374688, 3901109.878799908794463 ], [ 4954649.457136907614768, 3901102.58403469575569 ], [ 4954661.861669519916177, 3901085.849458845797926 ], [ 4954701.280057380907238, 3901115.393047204706818 ], [ 4954667.529175055213273, 3901160.139089225325733 ], [ 4954637.893528692424297, 3901137.890307140070945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953790.852361531928182, 3892853.99982603918761 ], [ 4953803.203275949694216, 3892884.237445540726185 ], [ 4953750.458865826018155, 3892905.293085125274956 ], [ 4953738.396423281170428, 3892874.691709629725665 ], [ 4953790.852361531928182, 3892853.99982603918761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953231.411736902780831, 3893325.967362073250115 ], [ 4953254.157215010374784, 3893336.554159768391401 ], [ 4953256.178952316753566, 3893332.187023347243667 ], [ 4953282.955315536819398, 3893344.599287742748857 ], [ 4953279.777798875235021, 3893351.878074042033404 ], [ 4953301.947517805732787, 3893362.10009779734537 ], [ 4953288.084711681120098, 3893391.577991596888751 ], [ 4953216.393220841884613, 3893358.356946230866015 ], [ 4953231.411736902780831, 3893325.967362073250115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952702.975591407157481, 3894152.64429307449609 ], [ 4952704.75469795614481, 3894109.315051096491516 ], [ 4952748.251286019571126, 3894110.822495060972869 ], [ 4952746.760177148506045, 3894154.15207170182839 ], [ 4952702.975591407157481, 3894152.64429307449609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952264.312049736268818, 3900337.965440697502345 ], [ 4952291.975327438674867, 3900324.888693169225007 ], [ 4952305.191844289191067, 3900352.213718984741718 ], [ 4952277.240587093867362, 3900365.290120652411133 ], [ 4952264.312049736268818, 3900337.965440697502345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952004.173508719541132, 3890330.308666064403951 ], [ 4952006.166110603138804, 3890351.430366810411215 ], [ 4951990.894281405955553, 3890353.233541249297559 ], [ 4951988.902083955705166, 3890331.747714133933187 ], [ 4952004.173508719541132, 3890330.308666064403951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951293.657195188105106, 3890107.751433438621461 ], [ 4951320.180516275577247, 3890092.487712226808071 ], [ 4951361.301308404654264, 3890163.174545715562999 ], [ 4951334.4895158438012, 3890178.802032064646482 ], [ 4951325.287500622682273, 3890163.134237118531018 ], [ 4951317.503631713800132, 3890167.495066236238927 ], [ 4951307.151602754369378, 3890149.641224157996476 ], [ 4951315.223992967046797, 3890144.91658679721877 ], [ 4951293.657195188105106, 3890107.751433438621461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951154.237768027931452, 3890083.927693899255246 ], [ 4951172.679728616960347, 3890081.399316505994648 ], [ 4951170.393477477133274, 3890064.6468894071877 ], [ 4951185.089597323909402, 3890062.478480238933116 ], [ 4951187.377461248077452, 3890077.774398810695857 ], [ 4951214.464394542388618, 3890073.799165670294315 ], [ 4951218.753596754744649, 3890102.934177442453802 ], [ 4951204.34560735989362, 3890105.102889241650701 ], [ 4951205.490343704819679, 3890112.022594609763473 ], [ 4951173.504753290675581, 3890116.720640280749649 ], [ 4951172.934610019437969, 3890111.258087321650237 ], [ 4951158.52662880718708, 3890113.426823681220412 ], [ 4951154.237768027931452, 3890083.927693899255246 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951085.299589935690165, 3890674.83077133866027 ], [ 4951086.7098085032776, 3890702.141937420237809 ], [ 4951059.337844682857394, 3890703.932215871289372 ], [ 4951057.927598414942622, 3890676.621051197405905 ], [ 4951085.299589935690165, 3890674.83077133866027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950980.317228246480227, 3896767.315174673683941 ], [ 4951030.14930557180196, 3896766.277948479168117 ], [ 4951030.966224251314998, 3896808.881983293686062 ], [ 4950981.134225866757333, 3896809.919208000879735 ], [ 4950980.317228246480227, 3896767.315174673683941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950863.32538834027946, 3897333.407201073598117 ], [ 4950828.474120645783842, 3897332.640569298528135 ], [ 4950828.173265137709677, 3897344.292379996273667 ], [ 4950806.571152132935822, 3897343.904488526284695 ], [ 4950806.872398679144681, 3897331.88854859303683 ], [ 4950789.878813802264631, 3897331.50573845859617 ], [ 4950790.789335196837783, 3897289.26772597944364 ], [ 4950815.559466882608831, 3897290.023218511138111 ], [ 4950815.263823140412569, 3897296.941352312918752 ], [ 4950838.018109829165041, 3897297.330518955364823 ], [ 4950838.314961890690029, 3897289.319998469669372 ], [ 4950864.237629783339798, 3897289.712675131857395 ], [ 4950863.32538834027946, 3897333.407201073598117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950792.688421627506614, 3894512.785272777080536 ], [ 4950852.613321478478611, 3894505.93274660082534 ], [ 4950853.469894574955106, 3894512.852137480862439 ], [ 4950878.534660311415792, 3894509.966720259282738 ], [ 4950882.814276282675564, 3894547.476706541609019 ], [ 4950849.682565637864172, 3894551.44562277989462 ], [ 4950851.394507073797286, 3894566.376789961010218 ], [ 4950799.536312498152256, 3894572.5099270734936 ], [ 4950792.688421627506614, 3894512.785272777080536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949841.901215844787657, 3895490.171605296432972 ], [ 4949871.877764710225165, 3895472.361183971166611 ], [ 4949871.01515475846827, 3895470.903749473858625 ], [ 4949894.074185732752085, 3895457.09140796167776 ], [ 4949916.213939813897014, 3895494.984426036011428 ], [ 4949890.561287413351238, 3895509.886372453998774 ], [ 4949896.311873883940279, 3895519.723983590491116 ], [ 4949868.9297757120803, 3895535.716494986321777 ], [ 4949841.901215844787657, 3895490.171605296432972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949656.233258615247905, 3894007.242062211502343 ], [ 4949629.732423326000571, 3894005.757558149751276 ], [ 4949630.908149842172861, 3893983.546948962379247 ], [ 4949657.409006964415312, 3893985.031454167328775 ], [ 4949656.233258615247905, 3894007.242062211502343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949195.701836764812469, 3888652.619440285488963 ], [ 4949221.930074171163142, 3888644.271778728347272 ], [ 4949233.991984925232828, 3888682.153596069198102 ], [ 4949207.763780690729618, 3888690.501246051862836 ], [ 4949195.701836764812469, 3888652.619440285488963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947168.472421357408166, 3898778.826087709050626 ], [ 4947169.02177145332098, 3898806.50047425692901 ], [ 4947142.523428307846189, 3898807.203194064553827 ], [ 4947141.974050940945745, 3898779.528808047063649 ], [ 4947168.472421357408166, 3898778.826087709050626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947009.698697998188436, 3898857.689597339369357 ], [ 4947022.924798430874944, 3898881.370707419235259 ], [ 4946996.989661348052323, 3898895.546910115052015 ], [ 4947002.740579303354025, 3898905.383921951986849 ], [ 4946961.820599612779915, 3898927.920789097435772 ], [ 4946943.418867998756468, 3898895.131517581176013 ], [ 4946965.319648290984333, 3898883.136181383393705 ], [ 4946961.582045167684555, 3898876.214141236618161 ], [ 4946976.854967495426536, 3898867.853772266767919 ], [ 4946980.305247894488275, 3898874.047280031256378 ], [ 4947009.698697998188436, 3898857.689597339369357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946880.684012974612415, 3889171.015498946420848 ], [ 4946863.678624762222171, 3889177.553591581061482 ], [ 4946850.169871989637613, 3889142.9486009539105 ], [ 4946876.110167525708675, 3889133.141865308396518 ], [ 4946878.984093884006143, 3889140.791284787002951 ], [ 4946870.337328707799315, 3889144.060192973352969 ], [ 4946880.684012974612415, 3889171.015498946420848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946374.563501497730613, 3891212.930900211445987 ], [ 4946408.269746508449316, 3891214.41893172217533 ], [ 4946406.20876076631248, 3891261.753652012906969 ], [ 4946369.045390521176159, 3891260.262392826844007 ], [ 4946370.227384051308036, 3891228.584355229977518 ], [ 4946373.68423233833164, 3891228.951713349670172 ], [ 4946374.563501497730613, 3891212.930900211445987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943310.638064234517515, 3889091.382595171686262 ], [ 4943359.897934511303902, 3889102.346883712336421 ], [ 4943354.692882498726249, 3889125.282641997560859 ], [ 4943359.590051172301173, 3889126.379051196854562 ], [ 4943354.384405352175236, 3889150.043064545840025 ], [ 4943284.671877525746822, 3889134.328358345199376 ], [ 4943294.214217660948634, 3889092.461507746949792 ], [ 4943309.770113493315876, 3889095.751414033118635 ], [ 4943310.638064234517515, 3889091.382595171686262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943216.234892281703651, 3891083.812562942504883 ], [ 4943214.195282909087837, 3891111.84875267278403 ], [ 4943225.142498929984868, 3891112.585954112932086 ], [ 4943223.685629550367594, 3891132.611803708598018 ], [ 4943210.72172106988728, 3891131.872955513186753 ], [ 4943209.847011419013143, 3891144.616721372585744 ], [ 4943152.806188598275185, 3891140.928912092000246 ], [ 4943154.845435128547251, 3891113.256844994612038 ], [ 4943177.027968918904662, 3891114.731438963208348 ], [ 4943179.360094854608178, 3891081.233565032482147 ], [ 4943216.234892281703651, 3891083.812562942504883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943191.928487233817577, 3890154.538315768819302 ], [ 4943214.668993346393108, 3890179.317574211396277 ], [ 4943182.953098586760461, 3890208.421908104792237 ], [ 4943144.09264681302011, 3890166.151410061866045 ], [ 4943182.151440953835845, 3890131.59028733195737 ], [ 4943198.271378085017204, 3890149.081575821619481 ], [ 4943191.928487233817577, 3890154.538315768819302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992198.670923166908324, 3912033.54516292270273 ], [ 4992210.899258230812848, 3911981.506337609142065 ], [ 4992219.817663257941604, 3911983.714698269497603 ], [ 4992223.018937299959362, 3911970.614341540727764 ], [ 4992238.266784923151135, 3911974.2959652133286 ], [ 4992240.303090649656951, 3911966.290404290892184 ], [ 4992275.977675366215408, 3911974.759772502351552 ], [ 4992270.154683006927371, 3911999.505471237469465 ], [ 4992288.568185715936124, 3912003.559626177884638 ], [ 4992277.212964634411037, 3912051.959388241637498 ], [ 4992198.670923166908324, 3912033.54516292270273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990843.044070426374674, 3905923.489056473132223 ], [ 4990854.421875117346644, 3905866.349755814764649 ], [ 4990896.152730011381209, 3905874.468793893698603 ], [ 4990884.774839889258146, 3905931.608077156357467 ], [ 4990843.044070426374674, 3905923.489056473132223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990511.036862852983177, 3908830.958441382274032 ], [ 4990513.999510985799134, 3908798.558247185312212 ], [ 4990612.732224591076374, 3908806.823877197690308 ], [ 4990610.061128562316298, 3908837.768281830009073 ], [ 4990571.777507005259395, 3908834.392283880151808 ], [ 4990571.772809606976807, 3908836.212936488445848 ], [ 4990511.036862852983177, 3908830.958441382274032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990432.764535858295858, 3908703.674394179135561 ], [ 4990429.49906362593174, 3908741.899942201096565 ], [ 4990386.321726284921169, 3908738.147476501297206 ], [ 4990389.87504933681339, 3908699.922664196696132 ], [ 4990432.764535858295858, 3908703.674394179135561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989942.123484962619841, 3908605.19205432664603 ], [ 4989974.013820498250425, 3908631.855304179247469 ], [ 4989946.57833734806627, 3908664.557103121187538 ], [ 4989914.688013650476933, 3908637.893885286059231 ], [ 4989942.123484962619841, 3908605.19205432664603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989020.676158619113266, 3907625.519831124693155 ], [ 4989009.039851069450378, 3907672.827725486364216 ], [ 4988970.769975227303803, 3907663.263795807491988 ], [ 4988981.244428935460746, 3907619.958415316417813 ], [ 4989000.236355738714337, 3907624.375887373462319 ], [ 4989001.10930731613189, 3907620.736762322019786 ], [ 4989020.676158619113266, 3907625.519831124693155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988519.922710301354527, 3908336.140881375875324 ], [ 4988524.476482323370874, 3908357.27198318624869 ], [ 4988531.101274260319769, 3908356.196172986645252 ], [ 4988536.511484824120998, 3908380.242483915295452 ], [ 4988489.555783353745937, 3908390.320652783382684 ], [ 4988483.009360896423459, 3908360.08125108294189 ], [ 4988472.062195956707001, 3908362.602789832279086 ], [ 4988468.646381934173405, 3908346.93653522990644 ], [ 4988519.922710301354527, 3908336.140881375875324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988152.052883508615196, 3906565.902316230349243 ], [ 4988161.16070594266057, 3906608.528480240143836 ], [ 4988143.875586551614106, 3906612.126767119392753 ], [ 4988142.453138674609363, 3906605.204711104277521 ], [ 4988120.558353344909847, 3906609.883934955578297 ], [ 4988112.872924929484725, 3906574.179838882759213 ], [ 4988152.052883508615196, 3906565.902316230349243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987967.158597564324737, 3908784.830774088390172 ], [ 4987970.251471458934247, 3908814.697347851470113 ], [ 4987910.927433180622756, 3908820.376223381608725 ], [ 4987908.116984628140926, 3908792.695154245011508 ], [ 4987917.044027508236468, 3908791.989037333987653 ], [ 4987915.918585193343461, 3908781.426392363850027 ], [ 4987927.437734333798289, 3908780.362577736843377 ], [ 4987928.280683230608702, 3908788.739725060760975 ], [ 4987967.158597564324737, 3908784.830774088390172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987289.630723722279072, 3908461.627684571314603 ], [ 4987323.575966509990394, 3908473.363387146033347 ], [ 4987307.625197445973754, 3908520.297292644623667 ], [ 4987273.680007137358189, 3908508.561609876342118 ], [ 4987289.630723722279072, 3908461.627684571314603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986828.497720886021852, 3905467.694050151389092 ], [ 4986854.393344932235777, 3905475.768164709210396 ], [ 4986856.424082824029028, 3905469.582877520471811 ], [ 4986905.914393989369273, 3905484.633167339023203 ], [ 4986887.918523969128728, 3905543.214467984158546 ], [ 4986834.688570134341717, 3905526.698554700240493 ], [ 4986837.30052403640002, 3905518.32989199552685 ], [ 4986814.857622716575861, 3905511.356614013202488 ], [ 4986828.497720886021852, 3905467.694050151389092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986421.034813918173313, 3905236.935444002039731 ], [ 4986466.272843421436846, 3905224.664707771502435 ], [ 4986477.120334150269628, 3905263.653160421643406 ], [ 4986499.883308539167047, 3905257.518179475795478 ], [ 4986507.304538619704545, 3905284.481969371438026 ], [ 4986439.590723163448274, 3905303.252478515263647 ], [ 4986421.034813918173313, 3905236.935444002039731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986236.66474970150739, 3910151.550011707935482 ], [ 4986263.738454226404428, 3910146.881781870964915 ], [ 4986269.98316961247474, 3910183.674337155651301 ], [ 4986217.564097410067916, 3910192.650857724249363 ], [ 4986209.046076129190624, 3910143.472292779944837 ], [ 4986234.392405455000699, 3910138.799856987316161 ], [ 4986236.66474970150739, 3910151.550011707935482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986042.960617639124393, 3909294.641368065495044 ], [ 4986102.272657155059278, 3909293.327935755718499 ], [ 4986103.309138131327927, 3909341.031848116312176 ], [ 4986043.70929891616106, 3909342.344583886209875 ], [ 4986042.960617639124393, 3909294.641368065495044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985903.075736653059721, 3909159.211095405276865 ], [ 4985921.533331567421556, 3909146.146733772475272 ], [ 4985913.212946905754507, 3909134.110323429107666 ], [ 4985928.7862313920632, 3909123.22382253035903 ], [ 4985936.533428171649575, 3909134.166459053289145 ], [ 4985951.530030645430088, 3909123.642715772148222 ], [ 4985975.057726441882551, 3909157.199607007671148 ], [ 4985925.742371439002454, 3909191.673473528120667 ], [ 4985903.075736653059721, 3909159.211095405276865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985891.347941958345473, 3911520.586224970873445 ], [ 4985773.521283892914653, 3911554.895652989391237 ], [ 4985765.525317299179733, 3911527.930578564293683 ], [ 4985717.127143666148186, 3911542.015600189100951 ], [ 4985704.850456872954965, 3911499.382536676712334 ], [ 4985722.423482414335012, 3911494.326835507992655 ], [ 4985722.995750762522221, 3911495.784742401912808 ], [ 4985748.923477326519787, 3911488.20017605368048 ], [ 4985750.066262911073864, 3911491.844253550283611 ], [ 4985767.928058387711644, 3911486.425142043735832 ], [ 4985775.353519153781235, 3911511.204045862425119 ], [ 4985848.527129645459354, 3911489.896022693254054 ], [ 4985847.099101963452995, 3911485.15885496744886 ], [ 4985862.656113776378334, 3911480.462531542405486 ], [ 4985855.804738127626479, 3911456.413251190446317 ], [ 4985872.802055685780942, 3911451.356263943947852 ], [ 4985870.231259107589722, 3911442.975012491457164 ], [ 4985883.771369921043515, 3911439.002116902731359 ], [ 4985884.628885046578944, 3911441.553113600239158 ], [ 4985914.301812132820487, 3911432.885317388921976 ], [ 4985926.295575251802802, 3911473.332994104363024 ], [ 4985881.353553937748075, 3911486.697773624677211 ], [ 4985891.347941958345473, 3911520.586224970873445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985863.322604863904417, 3910724.523398957680911 ], [ 4985872.454510360956192, 3910758.045618921983987 ], [ 4985879.657010457478464, 3910755.8781449473463 ], [ 4985884.506459983997047, 3910774.460605761501938 ], [ 4985840.718351747840643, 3910786.371693301480263 ], [ 4985826.736051162704825, 3910734.631163633428514 ], [ 4985863.322604863904417, 3910724.523398957680911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985739.33084212243557, 3909967.556849709711969 ], [ 4985690.084521571174264, 3909973.993083258159459 ], [ 4985688.387699251063168, 3909961.244357166811824 ], [ 4985682.340088171884418, 3909961.958119269926101 ], [ 4985674.134232317097485, 3909902.220624384470284 ], [ 4985669.526103033684194, 3909902.937841113656759 ], [ 4985664.719995249994099, 3909866.148882978595793 ], [ 4985666.160364936105907, 3909865.788203317672014 ], [ 4985657.954442715272307, 3909806.050716945435852 ], [ 4985662.561715316958725, 3909805.697629190981388 ], [ 4985660.867487797513604, 3909791.856513451319188 ], [ 4985714.722285374999046, 3909784.703017374966294 ], [ 4985739.33084212243557, 3909967.556849709711969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985593.619566613808274, 3910101.936721895821393 ], [ 4985597.304666062816978, 3910125.97833014279604 ], [ 4985587.800592065788805, 3910127.412101517431438 ], [ 4985590.632468490861356, 3910147.0820691161789 ], [ 4985552.328313669189811, 3910152.816495291423053 ], [ 4985545.811268639750779, 3910109.104929863475263 ], [ 4985593.619566613808274, 3910101.936721895821393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985565.229980459436774, 3909934.73167850356549 ], [ 4985532.108573482371867, 3909940.114407509565353 ], [ 4985524.442459601908922, 3909895.307704978622496 ], [ 4985557.563920212909579, 3909889.924966679885983 ], [ 4985565.229980459436774, 3909934.73167850356549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985511.927640902809799, 3904534.156247476115823 ], [ 4985540.169153403490782, 3904525.120502581354231 ], [ 4985544.457138452678919, 3904538.239506851881742 ], [ 4985551.949233325198293, 3904536.072642370592803 ], [ 4985573.099379900842905, 3904602.395251692738384 ], [ 4985543.705243571661413, 3904611.79233633633703 ], [ 4985530.556838409975171, 3904570.978116716258228 ], [ 4985524.216579199768603, 3904573.147742140572518 ], [ 4985511.927640902809799, 3904534.156247476115823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985488.844544212333858, 3911056.807309321593493 ], [ 4985507.737063387408853, 3911102.005016924347728 ], [ 4985465.663917253725231, 3911119.382817808073014 ], [ 4985450.20683320146054, 3911082.204280926845968 ], [ 4985468.074061981402338, 3911074.600184235721827 ], [ 4985464.638572851195931, 3911066.581040361896157 ], [ 4985488.844544212333858, 3911056.807309321593493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985511.061963562853634, 3900801.443184015806764 ], [ 4985530.201234398409724, 3900746.505173986777663 ], [ 4985561.279648315161467, 3900757.139320721384138 ], [ 4985542.140321374870837, 3900812.077308967709541 ], [ 4985511.061963562853634, 3900801.443184015806764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985231.578636271879077, 3901821.799979781731963 ], [ 4985243.775472456589341, 3901779.225668853148818 ], [ 4985293.851193288341165, 3901793.546069428790361 ], [ 4985296.17417049780488, 3901785.540718771051615 ], [ 4985320.348494333215058, 3901792.516831988003105 ], [ 4985305.828566128388047, 3901843.096458349842578 ], [ 4985231.578636271879077, 3901821.799979781731963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985183.798174635507166, 3915967.516781373880804 ], [ 4985157.281931282021105, 3915982.38319187425077 ], [ 4985135.208796788938344, 3915944.46070794435218 ], [ 4985123.392008875496686, 3915950.987025126349181 ], [ 4985109.632240323349833, 3915927.28557385224849 ], [ 4985146.813114739954472, 3915906.254198933951557 ], [ 4985155.69873621314764, 3915921.933115889783949 ], [ 4985167.227710242383182, 3915915.406128122936934 ], [ 4985180.126531340181828, 3915938.013156564440578 ], [ 4985170.327168561518192, 3915943.45185151649639 ], [ 4985183.798174635507166, 3915967.516781373880804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985156.05885695014149, 3907541.039050803054124 ], [ 4985105.279481409117579, 3907584.978355788160115 ], [ 4985075.130519576370716, 3907549.950005940627307 ], [ 4985123.890111226588488, 3907507.826505751349032 ], [ 4985123.315993214957416, 3907507.096876038704067 ], [ 4985144.666574555449188, 3907488.576882615685463 ], [ 4985173.955206998623908, 3907522.146732555702329 ], [ 4985166.453580033965409, 3907528.683271354530007 ], [ 4985175.929961538873613, 3907539.265656866598874 ], [ 4985163.812024098820984, 3907549.796671340242028 ], [ 4985156.05885695014149, 3907541.039050803054124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985116.866481190547347, 3904769.171842307783663 ], [ 4985161.928025693632662, 3904831.181393422186375 ], [ 4985137.409577113576233, 3904848.96555250743404 ], [ 4985121.623220579698682, 3904827.444245589897037 ], [ 4985114.989043949171901, 3904832.162192169576883 ], [ 4985085.71295971609652, 3904792.038125326391309 ], [ 4985116.866481190547347, 3904769.171842307783663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984804.047046090476215, 3906637.520013267174363 ], [ 4984832.635370558127761, 3906724.251126175746322 ], [ 4984783.07215128839016, 3906740.519844375550747 ], [ 4984754.483684525825083, 3906653.788783330470324 ], [ 4984804.047046090476215, 3906637.520013267174363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984119.937917733564973, 3916590.952786365989596 ], [ 4984087.07620158046484, 3916611.995691624470055 ], [ 4984063.560388038866222, 3916575.163103986531496 ], [ 4984075.954853585921228, 3916567.545266849920154 ], [ 4984061.903246718458831, 3916545.300199775025249 ], [ 4984082.657509734854102, 3916532.239898641128093 ], [ 4984119.937917733564973, 3916590.952786365989596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983914.915310941636562, 3904903.255639273673296 ], [ 4983897.163273670710623, 3904859.882559061050415 ], [ 4983927.427212627604604, 3904847.57264797296375 ], [ 4983933.725657230243087, 3904863.245008280035108 ], [ 4983951.018976578488946, 3904856.366848352365196 ], [ 4983968.770079492591321, 3904900.104093903675675 ], [ 4983954.646809896454215, 3904905.897243929561228 ], [ 4983962.091085636988282, 3904924.121208225842565 ], [ 4983932.692771981470287, 3904935.70483615109697 ], [ 4983929.257729971781373, 3904926.957659245003015 ], [ 4983893.517695897258818, 3904941.439593522809446 ], [ 4983883.210829723626375, 3904915.926338929217309 ], [ 4983914.915310941636562, 3904903.255639273673296 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983823.6649921676144, 3907733.806403653696179 ], [ 4983830.475898567587137, 3907776.425766093656421 ], [ 4983797.065111581236124, 3907781.445825624745339 ], [ 4983790.25330597627908, 3907739.190602025017142 ], [ 4983823.6649921676144, 3907733.806403653696179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983792.843598321080208, 3914541.20568821253255 ], [ 4983743.228486626408994, 3914586.24283693684265 ], [ 4983701.882392848841846, 3914541.358195392880589 ], [ 4983725.248146438039839, 3914519.928620662074536 ], [ 4983738.457033698447049, 3914533.796437059529126 ], [ 4983747.111150930635631, 3914525.805621454492211 ], [ 4983736.773983425460756, 3914514.857552954461426 ], [ 4983754.082234187982976, 3914498.875923687592149 ], [ 4983792.843598321080208, 3914541.20568821253255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983040.403443995863199, 3916167.14417959144339 ], [ 4983034.909512448124588, 3916178.05557336518541 ], [ 4983017.658869395032525, 3916169.640808631200343 ], [ 4983024.02131587639451, 3916156.546602523420006 ], [ 4983013.671088449656963, 3916151.424920120276511 ], [ 4983030.441556553356349, 3916118.327259499114007 ], [ 4983076.154933963902295, 3916141.00877046957612 ], [ 4983070.082804487086833, 3916153.011229198426008 ], [ 4983090.495400900952518, 3916163.253978828433901 ], [ 4983078.929322184994817, 3916186.167819315567613 ], [ 4983040.403443995863199, 3916167.14417959144339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982649.38561568967998, 3917361.701111963950098 ], [ 4982642.115234853699803, 3917394.456611592788249 ], [ 4982609.60753106418997, 3917387.463771384209394 ], [ 4982617.166525120846927, 3917354.344787953421474 ], [ 4982649.38561568967998, 3917361.701111963950098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981906.812325812876225, 3895037.624362852890044 ], [ 4981975.618759870529175, 3895055.257928607054055 ], [ 4981965.44872993696481, 3895094.196828268934041 ], [ 4981896.642389048822224, 3895076.563288143370301 ], [ 4981906.812325812876225, 3895037.624362852890044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981311.671042355708778, 3906382.969344020355493 ], [ 4981375.907804287970066, 3906371.09664426650852 ], [ 4981382.164186613634229, 3906406.06732586491853 ], [ 4981332.330833011306822, 3906415.059155798982829 ], [ 4981330.905806494876742, 3906408.501591644715518 ], [ 4981316.79122587479651, 3906411.018960870802402 ], [ 4981311.671042355708778, 3906382.969344020355493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981231.118206981569529, 3907125.619053683243692 ], [ 4981258.093238778412342, 3907166.097964393906295 ], [ 4981231.276080812327564, 3907183.880568815860897 ], [ 4981204.301026645116508, 3907143.401684585027397 ], [ 4981231.118206981569529, 3907125.619053683243692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981202.058120459318161, 3903760.611461830325425 ], [ 4981208.128128217533231, 3903750.429321934003383 ], [ 4981190.009894808754325, 3903739.829090089537203 ], [ 4981208.799924869090319, 3903707.463303497992456 ], [ 4981280.12341149058193, 3903748.7693922650069 ], [ 4981259.020663521252573, 3903785.135412126313895 ], [ 4981225.371888536028564, 3903765.761324078775942 ], [ 4981221.613720482215285, 3903772.307304156012833 ], [ 4981202.058120459318161, 3903760.611461830325425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981128.228661403991282, 3901483.534113397356123 ], [ 4981152.586810859851539, 3901537.843914602417499 ], [ 4981104.156073259189725, 3901559.583872666116804 ], [ 4981082.087976322509348, 3901511.469440140761435 ], [ 4981108.897703411057591, 3901499.512815695721656 ], [ 4981106.319589110091329, 3901493.31684656534344 ], [ 4981128.228661403991282, 3901483.534113397356123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981084.226414682343602, 3905595.208532526623458 ], [ 4981123.424269223585725, 3905578.545774219557643 ], [ 4981117.982514255680144, 3905565.424901048652828 ], [ 4981136.140117099508643, 3905557.818591069895774 ], [ 4981154.186520547606051, 3905600.098117324989289 ], [ 4981096.831121137365699, 3905624.36715553002432 ], [ 4981084.226414682343602, 3905595.208532526623458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980982.862246609292924, 3904691.57199731701985 ], [ 4981005.637394667603076, 3904679.606285947375 ], [ 4981017.107809021137655, 3904701.115565836429596 ], [ 4980994.33267401997, 3904713.08126764325425 ], [ 4980982.862246609292924, 3904691.57199731701985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980941.317393887788057, 3903949.379428550601006 ], [ 4980948.550436546094716, 3903934.101970981806517 ], [ 4980977.316782106645405, 3903947.638757725711912 ], [ 4980989.179107860662043, 3903922.540048762690276 ], [ 4980963.001982501707971, 3903910.101397367194295 ], [ 4980969.367112056352198, 3903896.642674865666777 ], [ 4980994.681167651899159, 3903908.715282006189227 ], [ 4980993.234875672496855, 3903911.625118926167488 ], [ 4981045.013955828733742, 3903936.13709498103708 ], [ 4981036.623337219469249, 3903953.960872187279165 ], [ 4981028.856444731354713, 3903950.30227827001363 ], [ 4981020.176258931867778, 3903968.853679687250406 ], [ 4981025.353914709761739, 3903971.414116999134421 ], [ 4981018.698382684960961, 3903985.964575638994575 ], [ 4980941.317393887788057, 3903949.379428550601006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980888.139813104644418, 3903257.411577508784831 ], [ 4980904.637365998700261, 3903219.942661106586456 ], [ 4980953.54463092237711, 3903241.535021724645048 ], [ 4980941.100439093075693, 3903269.181363945361227 ], [ 4980906.865147708915174, 3903254.175956611055881 ], [ 4980902.524579986929893, 3903263.633737524505705 ], [ 4980888.139813104644418, 3903257.411577508784831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980760.774690154008567, 3904334.594353004358709 ], [ 4980773.206916177645326, 3904312.045726997312158 ], [ 4980798.228674203157425, 3904325.938163465354592 ], [ 4980785.797240249812603, 3904348.122648239135742 ], [ 4980760.774690154008567, 3904334.594353004358709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980660.532579431310296, 3907214.292074905708432 ], [ 4980649.518073520623147, 3907247.40375986462459 ], [ 4980627.938807676546276, 3907240.437551438808441 ], [ 4980620.403614906594157, 3907262.632969460915774 ], [ 4980584.439245663583279, 3907250.537163278087974 ], [ 4980600.092685093171895, 3907202.870407404378057 ], [ 4980622.534967107698321, 3907210.202632411383092 ], [ 4980625.143214459531009, 3907202.561618326231837 ], [ 4980660.532579431310296, 3907214.292074905708432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980465.084997934289277, 3907841.988908026367426 ], [ 4980499.706982941366732, 3907809.657447843346745 ], [ 4980508.324547374621034, 3907818.779761742800474 ], [ 4980519.288045639172196, 3907808.608236192259938 ], [ 4980538.821704658679664, 3907829.042745555285364 ], [ 4980524.39512182213366, 3907842.847947368398309 ], [ 4980518.937473920173943, 3907837.009789780713618 ], [ 4980488.064892632886767, 3907866.436432437971234 ], [ 4980465.084997934289277, 3907841.988908026367426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980431.325508418492973, 3903560.451428517699242 ], [ 4980448.694964938797057, 3903518.9787014760077 ], [ 4980513.428195310756564, 3903546.067104117944837 ], [ 4980496.346622737124562, 3903587.540424869861454 ], [ 4980431.325508418492973, 3903560.451428517699242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980317.989803307689726, 3903504.125837075989693 ], [ 4980304.685685412958264, 3903530.314060879405588 ], [ 4980273.332446903921664, 3903514.223397480789572 ], [ 4980294.154102909378707, 3903474.214680245146155 ], [ 4980319.179290752857924, 3903487.014274623710662 ], [ 4980311.94968815613538, 3903500.835378777701408 ], [ 4980317.989803307689726, 3903504.125837075989693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980251.277385625056922, 3900836.718755200039595 ], [ 4980200.282110900618136, 3900845.710124859586358 ], [ 4980193.451662892475724, 3900808.55379880592227 ], [ 4980211.890621365047991, 3900805.317066889256239 ], [ 4980207.622595526278019, 3900781.639200185891241 ], [ 4980240.179806860163808, 3900775.520415531937033 ], [ 4980251.277385625056922, 3900836.718755200039595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980230.812837836332619, 3902550.274440440349281 ], [ 4980254.770951929502189, 3902524.83784655155614 ], [ 4980277.186848980374634, 3902546.006681663449854 ], [ 4980253.228732409887016, 3902571.443255892489105 ], [ 4980230.812837836332619, 3902550.274440440349281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979934.579474249854684, 3896965.683287867810577 ], [ 4979925.698000168427825, 3896943.816100300755352 ], [ 4979975.86112701240927, 3896923.534367475658655 ], [ 4979996.203597859479487, 3896973.100495856720954 ], [ 4979956.419432822614908, 3896989.035297004040331 ], [ 4979944.95836797170341, 3896961.33638920634985 ], [ 4979934.579474249854684, 3896965.683287867810577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979805.915255543775856, 3907366.444011249579489 ], [ 4979792.037681007757783, 3907392.631295885890722 ], [ 4979754.075076067820191, 3907372.52133700158447 ], [ 4979769.976038644090295, 3907342.69711715169251 ], [ 4979790.970070603303611, 3907354.030948854517192 ], [ 4979789.234580030664802, 3907357.668490500189364 ], [ 4979805.915255543775856, 3907366.444011249579489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979682.067431409843266, 3907384.381014463491738 ], [ 4979691.917895919643342, 3907356.364252738654613 ], [ 4979726.154965864494443, 3907368.455105389002711 ], [ 4979716.304470009170473, 3907396.471854782663286 ], [ 4979682.067431409843266, 3907384.381014463491738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979587.362289938144386, 3909230.326894463505596 ], [ 4979618.233113070949912, 3909200.535061018075794 ], [ 4979640.92628585267812, 3909224.252994059585035 ], [ 4979610.055464636534452, 3909254.044801861513406 ], [ 4979587.362289938144386, 3909230.326894463505596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979315.186949741095304, 3908478.531766920350492 ], [ 4979332.838664359413087, 3908437.422946471255273 ], [ 4979357.577273841947317, 3908447.672146170400083 ], [ 4979339.924740753136575, 3908489.145081432070583 ], [ 4979315.186949741095304, 3908478.531766920350492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979170.940440218895674, 3900462.955430432688445 ], [ 4979152.809770431369543, 3900456.726141437422484 ], [ 4979162.662190807983279, 3900428.709303813520819 ], [ 4979208.131713508628309, 3900444.829069713596255 ], [ 4979202.917087248526514, 3900459.018923323601484 ], [ 4979211.550809132866561, 3900461.950587037019432 ], [ 4979202.858985716477036, 3900485.964471866842359 ], [ 4979167.17446818575263, 3900473.142975074239075 ], [ 4979170.940440218895674, 3900462.955430432688445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979092.364199406467378, 3900172.938178688753396 ], [ 4979082.526646587997675, 3900194.036587203852832 ], [ 4979059.221118412911892, 3900183.426660319790244 ], [ 4979069.05944010335952, 3900161.964114429429173 ], [ 4979092.364199406467378, 3900172.938178688753396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979060.88052913825959, 3906239.298324233386666 ], [ 4979033.209490234963596, 3906252.711690010037273 ], [ 4979016.869039366021752, 3906219.176412686705589 ], [ 4979044.540104536339641, 3906205.763030365575105 ], [ 4979060.88052913825959, 3906239.298324233386666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978996.712199985980988, 3913318.994281784631312 ], [ 4979006.585635602474213, 3913278.960812088102102 ], [ 4979058.373507375828922, 3913291.8168805828318 ], [ 4979048.212920433841646, 3913331.485580302774906 ], [ 4978996.712199985980988, 3913318.994281784631312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978977.539482467807829, 3909648.490613782778382 ], [ 4978990.165680762380362, 3909667.816782062407583 ], [ 4979007.464034375734627, 3909656.565847351681441 ], [ 4979021.525016383267939, 3909678.079911577515304 ], [ 4978976.261133702471852, 3909707.477375865913928 ], [ 4978949.286019719205797, 3909666.636561298277229 ], [ 4978977.539482467807829, 3909648.490613782778382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978904.030617906711996, 3908484.564888844266534 ], [ 4978923.291945663280785, 3908498.079128767829388 ], [ 4978911.450744070112705, 3908515.16794195631519 ], [ 4978892.189422663301229, 3908501.653710362501442 ], [ 4978904.030617906711996, 3908484.564888844266534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978689.962657826021314, 3901143.940154735464603 ], [ 4978689.051986551843584, 3901165.786060157697648 ], [ 4978647.584945813752711, 3901163.876814728602767 ], [ 4978649.701992308720946, 3901116.544324583373964 ], [ 4978701.248084994032979, 3901118.839247460011393 ], [ 4978700.041627325117588, 3901144.325828513130546 ], [ 4978689.962657826021314, 3901143.940154735464603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978667.686755332164466, 3902538.878463273867965 ], [ 4978684.637760391458869, 3902557.485374164301902 ], [ 4978661.843964382074773, 3902577.828015911392868 ], [ 4978644.892956463620067, 3902559.221119177993387 ], [ 4978667.686755332164466, 3902538.878463273867965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978599.462076245807111, 3906844.22531013796106 ], [ 4978611.782507763244212, 3906872.653914296068251 ], [ 4978568.264474062249064, 3906891.495919122360647 ], [ 4978555.944005272351205, 3906863.067334585823119 ], [ 4978599.462076245807111, 3906844.22531013796106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978488.902564554475248, 3895617.470488166436553 ], [ 4978444.214215775020421, 3895636.310112187173218 ], [ 4978432.176456178538501, 3895607.882389750797302 ], [ 4978477.152120788581669, 3895589.407487264368683 ], [ 4978488.902564554475248, 3895617.470488166436553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978295.872825871221721, 3905131.794912316836417 ], [ 4978310.458535968326032, 3905178.798873808700591 ], [ 4978287.119163850322366, 3905186.031959375366569 ], [ 4978285.688690840266645, 3905181.659342254046351 ], [ 4978266.382938057184219, 3905187.808612267486751 ], [ 4978250.652307524345815, 3905137.52506039571017 ], [ 4978269.381419979035854, 3905131.738687355536968 ], [ 4978271.668794297613204, 3905139.390307344961911 ], [ 4978295.872825871221721, 3905131.794912316836417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978295.925659556873143, 3904157.378805811982602 ], [ 4978294.093547936528921, 3904206.532671658787876 ], [ 4978264.435215215198696, 3904205.741468094289303 ], [ 4978266.267272628843784, 3904156.587600254453719 ], [ 4978295.925659556873143, 3904157.378805811982602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977789.396371245384216, 3905801.819386526476592 ], [ 4977825.962050842121243, 3905803.352876082528383 ], [ 4977825.655708332546055, 3905812.091395903378725 ], [ 4977843.794569281861186, 3905812.857855913694948 ], [ 4977842.591417127288878, 3905837.252157354261726 ], [ 4977787.886938033625484, 3905834.952210627496243 ], [ 4977789.396371245384216, 3905801.819386526476592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977642.729399130679667, 3907771.829877735115588 ], [ 4977619.656697397120297, 3907790.352210630197078 ], [ 4977606.44667311757803, 3907773.938546644058079 ], [ 4977629.518615720793605, 3907755.780333287548274 ], [ 4977642.729399130679667, 3907771.829877735115588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977574.105808281339705, 3914135.274616975337267 ], [ 4977593.142331976443529, 3914117.107850688509643 ], [ 4977598.599332761950791, 3914122.945436826907098 ], [ 4977617.924499746412039, 3914104.415159905329347 ], [ 4977646.934294213540852, 3914134.699149209540337 ], [ 4977608.861224465072155, 3914171.032619665376842 ], [ 4977574.105808281339705, 3914135.274616975337267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977509.972345888614655, 3914382.387056487146765 ], [ 4977525.198695286177099, 3914396.620168547146022 ], [ 4977494.907269987277687, 3914428.600502744782716 ], [ 4977474.797370539978147, 3914409.623446102254093 ], [ 4977495.568362600170076, 3914387.818900376092643 ], [ 4977500.451915147714317, 3914392.562865542247891 ], [ 4977509.972345888614655, 3914382.387056487146765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977393.911915689706802, 3906005.268147557042539 ], [ 4977401.095215198583901, 3906012.56579517479986 ], [ 4977384.938591340556741, 3906027.825578259304166 ], [ 4977353.33356355689466, 3905994.987701470497996 ], [ 4977371.510338947176933, 3905977.547327430453151 ], [ 4977363.752660652622581, 3905969.520224689505994 ], [ 4977381.351295526139438, 3905953.171045889612287 ], [ 4977413.530698221176863, 3905986.738419047556818 ], [ 4977393.911915689706802, 3906005.268147557042539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977354.16058386862278, 3901460.825332221575081 ], [ 4977348.89544746465981, 3901499.776347355917096 ], [ 4977318.376971404999495, 3901495.707221898715943 ], [ 4977322.179325992241502, 3901467.677075773943216 ], [ 4977336.574232937768102, 3901469.891897928435355 ], [ 4977338.324966442771256, 3901458.971624817699194 ], [ 4977354.16058386862278, 3901460.825332221575081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977249.636863760650158, 3904216.716331426519901 ], [ 4977260.514828156679869, 3904247.690179482568055 ], [ 4977217.864964948035777, 3904262.894842268899083 ], [ 4977206.69899795204401, 3904231.920411574654281 ], [ 4977249.636863760650158, 3904216.716331426519901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977225.497792384587228, 3911517.883061197120696 ], [ 4977229.024451293982565, 3911483.297761571593583 ], [ 4977316.810983868315816, 3911491.855885178316385 ], [ 4977313.284213000908494, 3911526.441173461265862 ], [ 4977225.497792384587228, 3911517.883061197120696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977145.31393023300916, 3900655.661103878635913 ], [ 4977172.405443818308413, 3900646.2500617261976 ], [ 4977180.135927885770798, 3900668.113990462850779 ], [ 4977193.104928341694176, 3900663.771413675975055 ], [ 4977200.548908846452832, 3900684.906490775290877 ], [ 4977160.199686663225293, 3900699.023621153086424 ], [ 4977145.31393023300916, 3900655.661103878635913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977053.138319781050086, 3908151.4813407571055 ], [ 4977024.888370513916016, 3908167.808641031384468 ], [ 4977001.649405648000538, 3908128.069983100984246 ], [ 4977029.899382426403463, 3908111.742658799979836 ], [ 4977053.138319781050086, 3908151.4813407571055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976769.761119168251753, 3903583.9526138138026 ], [ 4976708.640049780718982, 3903618.783018410671502 ], [ 4976685.685373107902706, 3903578.681208874564618 ], [ 4976715.38051478844136, 3903561.992439944762737 ], [ 4976714.232404877431691, 3903560.169413654599339 ], [ 4976734.125426972284913, 3903548.922406787984073 ], [ 4976740.151681911200285, 3903559.130526900757104 ], [ 4976751.683895158581436, 3903552.59997775265947 ], [ 4976769.761119168251753, 3903583.9526138138026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976706.741285942494869, 3901747.873288080096245 ], [ 4976684.278352605178952, 3901747.826945641078055 ], [ 4976684.033177025616169, 3901727.070976698305458 ], [ 4976706.496127714402974, 3901727.117318933364004 ], [ 4976706.741285942494869, 3901747.873288080096245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976671.73272112570703, 3907969.718147054314613 ], [ 4976614.360179336741567, 3908006.741365366615355 ], [ 4976598.001287112012506, 3907981.218399862758815 ], [ 4976655.373109782114625, 3907944.559277959633619 ], [ 4976671.73272112570703, 3907969.718147054314613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976638.007355021312833, 3904496.194128730334342 ], [ 4976603.726235827431083, 3904503.041991914622486 ], [ 4976597.738390980288386, 3904474.263266861438751 ], [ 4976632.307502501644194, 3904467.415989608503878 ], [ 4976638.007355021312833, 3904496.194128730334342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976555.289116778410971, 3903692.74978247564286 ], [ 4976567.621413080953062, 3903717.17196654714644 ], [ 4976541.965537149459124, 3903730.227896573022008 ], [ 4976513.571562088094652, 3903674.457392451353371 ], [ 4976566.323996786959469, 3903647.984337558504194 ], [ 4976582.098396886140108, 3903678.967977489344776 ], [ 4976555.289116778410971, 3903692.74978247564286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976405.057583278976381, 3903510.011226794216782 ], [ 4976344.267338826321065, 3903524.087651617825031 ], [ 4976331.4192686509341, 3903470.169880280271173 ], [ 4976357.060355935245752, 3903464.396346783265471 ], [ 4976361.913992701098323, 3903484.797653343528509 ], [ 4976397.06323978677392, 3903476.494739654008299 ], [ 4976405.057583278976381, 3903510.011226794216782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976396.803988512605429, 3902901.166839222889394 ], [ 4976316.221239789389074, 3903017.159451828803867 ], [ 4976280.850552561692894, 3902992.690208374988288 ], [ 4976290.669973382726312, 3902978.87333215912804 ], [ 4976278.592250739224255, 3902970.473581078462303 ], [ 4976292.74470341578126, 3902950.111217189580202 ], [ 4976305.972832285799086, 3902959.24159367242828 ], [ 4976324.457600931636989, 3902932.69789217133075 ], [ 4976312.954323294572532, 3902925.027565519325435 ], [ 4976326.818105652928352, 3902905.028759755659848 ], [ 4976341.196647627279162, 3902914.889773387461901 ], [ 4976358.814572362229228, 3902889.800843828357756 ], [ 4976345.586427117697895, 3902880.670441719703376 ], [ 4976352.806686853058636, 3902870.489572241902351 ], [ 4976396.803988512605429, 3902901.166839222889394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976364.25482115894556, 3909222.429585931356996 ], [ 4976363.334335552528501, 3909250.101775103714317 ], [ 4976329.364421249367297, 3909248.575584531296045 ], [ 4976330.28487191349268, 3909220.903394215740263 ], [ 4976364.25482115894556, 3909222.429585931356996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976317.517993884161115, 3902384.302194762974977 ], [ 4976313.762323239818215, 3902390.120596549473703 ], [ 4976297.657104073092341, 3902379.52780236909166 ], [ 4976302.884745326824486, 3902358.054778011981398 ], [ 4976317.9052076600492, 3902335.873557100538164 ], [ 4976332.28405827563256, 3902345.734562573488802 ], [ 4976341.527780460193753, 3902331.916529882699251 ], [ 4976362.233969728462398, 3902345.795964396093041 ], [ 4976352.990241627208889, 3902359.613990093581378 ], [ 4976379.160546856932342, 3902377.145952593535185 ], [ 4976386.960648498497903, 3902365.145629232749343 ], [ 4976404.790729594416916, 3902377.198541031684726 ], [ 4976400.434421009384096, 3902395.032023326028138 ], [ 4976423.728606563992798, 3902410.737472333945334 ], [ 4976431.81744546443224, 3902398.373623441904783 ], [ 4976449.935463624075055, 3902410.427156735677272 ], [ 4976445.579130361787975, 3902428.260632074903697 ], [ 4976465.997212739661336, 3902442.139555891044438 ], [ 4976474.374040734954178, 3902429.776311247143894 ], [ 4976487.027903922833502, 3902438.177331362385303 ], [ 4976455.831184300594032, 3902484.357877062167972 ], [ 4976419.02002708427608, 3902459.88550184853375 ], [ 4976413.819967209361494, 3902467.885711412411183 ], [ 4976394.551551125943661, 3902455.101579285226762 ], [ 4976398.035690097138286, 3902441.271747550927103 ], [ 4976381.931281772442162, 3902430.314772991929203 ], [ 4976360.918521092273295, 3902425.537970636039972 ], [ 4976363.531988194212317, 3902414.983528929762542 ], [ 4976317.517993884161115, 3902384.302194762974977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976238.746869603171945, 3900910.503144489601254 ], [ 4976284.229994640685618, 3900920.427771657705307 ], [ 4976278.125434261746705, 3900948.089208788238466 ], [ 4976232.642353848554194, 3900938.164591794833541 ], [ 4976238.746869603171945, 3900910.503144489601254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976207.154696009121835, 3903543.46999390097335 ], [ 4976182.666329011321068, 3903548.881895444821566 ], [ 4976184.379244214855134, 3903556.168023311067373 ], [ 4976168.821587670594454, 3903559.777538346126676 ], [ 4976167.680137731134892, 3903554.677367206197232 ], [ 4976151.546548732556403, 3903558.285715294070542 ], [ 4976139.846260014921427, 3903506.1910366024822 ], [ 4976162.030172797851264, 3903501.138518535997719 ], [ 4976164.59732605330646, 3903513.160097468178719 ], [ 4976198.593115518800914, 3903505.582829867489636 ], [ 4976207.154696009121835, 3903543.46999390097335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976182.832327306270599, 3912199.208851410076022 ], [ 4976164.745369778946042, 3912175.139078313019127 ], [ 4976199.055325908586383, 3912149.355772154871374 ], [ 4976217.142270196229219, 3912173.425567963626236 ], [ 4976182.832327306270599, 3912199.208851410076022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976167.479310354217887, 3910133.450785854365677 ], [ 4976146.704635240137577, 3910155.984562732279301 ], [ 4976094.118485772050917, 3910107.447504520881921 ], [ 4976114.8931540613994, 3910084.913687659893185 ], [ 4976167.479310354217887, 3910133.450785854365677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976172.431667755357921, 3906020.222102660220116 ], [ 4976125.463896196335554, 3906036.512079243082553 ], [ 4976110.862200396135449, 3905995.699494933243841 ], [ 4976131.896753351204097, 3905988.459810743108392 ], [ 4976133.900439822115004, 3905994.290012956596911 ], [ 4976160.122400826774538, 3905984.876155404839665 ], [ 4976172.431667755357921, 3906020.222102660220116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976169.678846020251513, 3902858.462514054961503 ], [ 4976182.045371724292636, 3902866.498674601316452 ], [ 4976168.180933382362127, 3902886.861684235744178 ], [ 4976153.801569163799286, 3902877.364892990794033 ], [ 4976145.713001593947411, 3902889.728829155676067 ], [ 4976115.228634651750326, 3902869.63936191610992 ], [ 4976193.510127765126526, 3902752.184928358066827 ], [ 4976230.321088230237365, 3902776.656999008264393 ], [ 4976204.901822866871953, 3902814.474647473543882 ], [ 4976215.830718577839434, 3902821.415490092243999 ], [ 4976201.96623148676008, 3902841.778481740038842 ], [ 4976187.29888027254492, 3902832.281083983834833 ], [ 4976169.678846020251513, 3902858.462514054961503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976149.017118834890425, 3901413.184331755619496 ], [ 4976130.880446485243738, 3901409.870112415403128 ], [ 4976127.964857903309166, 3901427.342439595609903 ], [ 4976098.599563048221171, 3901422.548792995046824 ], [ 4976106.473394372500479, 3901374.499591926112771 ], [ 4976134.974769555963576, 3901379.291482602711767 ], [ 4976133.515484651550651, 3901388.75590438535437 ], [ 4976152.516141350381076, 3901392.071890394669026 ], [ 4976149.017118834890425, 3901413.184331755619496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976087.86947498191148, 3912181.536444415338337 ], [ 4976104.812435020692647, 3912201.962497145403177 ], [ 4976085.203536313958466, 3912218.308462264481932 ], [ 4976068.260571748018265, 3912197.882421684917063 ], [ 4976087.86947498191148, 3912181.536444415338337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976057.574657148681581, 3906851.664982585702091 ], [ 4976105.688231549225748, 3906837.562013555318117 ], [ 4976114.837364320643246, 3906869.260181765537709 ], [ 4976067.011773065663874, 3906883.363722086884081 ], [ 4976057.574657148681581, 3906851.664982585702091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976012.641695332713425, 3910955.710920034907758 ], [ 4976037.219074764288962, 3910903.325880683027208 ], [ 4976054.188881033100188, 3910911.007284259889275 ], [ 4976029.898620556108654, 3910963.757026795763522 ], [ 4976012.641695332713425, 3910955.710920034907758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975985.755281136371195, 3908043.323224110994488 ], [ 4975948.289506178349257, 3908061.089411145541817 ], [ 4975933.953599908389151, 3908031.565513174515218 ], [ 4975971.419406430795789, 3908013.799306471366435 ], [ 4975985.755281136371195, 3908043.323224110994488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975983.859929121099412, 3897521.021560738794506 ], [ 4975979.517954169772565, 3897531.572489586193115 ], [ 4975991.030315654352307, 3897535.965492377057672 ], [ 4975984.66099876537919, 3897551.974241844378412 ], [ 4975969.983263538219035, 3897546.118277624249458 ], [ 4975958.404943482019007, 3897574.132719825021923 ], [ 4975914.084447213448584, 3897556.20017981948331 ], [ 4975925.66272868681699, 3897528.185718833468854 ], [ 4975936.023715215735137, 3897532.212226061150432 ], [ 4975947.022261398844421, 3897506.017245098948479 ], [ 4975983.859929121099412, 3897521.021560738794506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975912.478153818286955, 3909954.505704068113118 ], [ 4975915.363805604167283, 3909951.234380506444722 ], [ 4975899.84765840601176, 3909936.273372447583824 ], [ 4975927.833845706656575, 3909906.835561140440404 ], [ 4975969.786247998476028, 3909946.61144082993269 ], [ 4975938.338607295416296, 3909979.319357905071229 ], [ 4975912.478153818286955, 3909954.505704068113118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975915.105843292549253, 3905690.886342201381922 ], [ 4975917.319760285317898, 3905734.950793114490807 ], [ 4975903.496986246667802, 3905735.650939081329852 ], [ 4975903.770858314819634, 3905742.570000289473683 ], [ 4975876.989150051027536, 3905743.972069362178445 ], [ 4975874.213343672454357, 3905692.987975481897593 ], [ 4975915.105843292549253, 3905690.886342201381922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975901.776267201639712, 3905449.075739549007267 ], [ 4975935.234397992491722, 3905421.46979621052742 ], [ 4975941.266462028957903, 3905428.764707051217556 ], [ 4975951.361651455052197, 3905420.410225663799793 ], [ 4975973.766640716232359, 3905447.401591977104545 ], [ 4975930.213336881250143, 3905483.361973603256047 ], [ 4975901.776267201639712, 3905449.075739549007267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975846.715543026104569, 3897257.476685198489577 ], [ 4975910.996094227768481, 3897233.574749263003469 ], [ 4975921.596351038664579, 3897261.634312271606177 ], [ 4975899.112640966661274, 3897269.963580023031682 ], [ 4975902.836356977932155, 3897280.166789257433265 ], [ 4975860.751553012058139, 3897295.738841596990824 ], [ 4975846.715543026104569, 3897257.476685198489577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975772.989291425794363, 3911586.630188514012843 ], [ 4975771.889496597461402, 3911561.138638717122376 ], [ 4975800.104069245047867, 3911560.103513907641172 ], [ 4975802.2976881172508, 3911613.999669176060706 ], [ 4975781.280925870873034, 3911614.685267572756857 ], [ 4975780.187052925117314, 3911586.280664075631648 ], [ 4975772.989291425794363, 3911586.630188514012843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975741.443032526411116, 3907694.352055024821311 ], [ 4975762.374210566282272, 3907737.362115905154496 ], [ 4975734.130521014332771, 3907750.77772311726585 ], [ 4975713.199308347888291, 3907707.767683879937977 ], [ 4975741.443032526411116, 3907694.352055024821311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975519.983971198089421, 3910852.754000437445939 ], [ 4975580.519402004778385, 3910813.914126310497522 ], [ 4975597.451828350313008, 3910840.165944817475975 ], [ 4975536.917167766019702, 3910878.64164997311309 ], [ 4975519.983971198089421, 3910852.754000437445939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975505.18224283028394, 3901071.778719593305141 ], [ 4975514.820573002099991, 3901005.162251429632306 ], [ 4975568.660049246624112, 3901012.917756914626807 ], [ 4975559.021588289178908, 3901079.534206070005894 ], [ 4975505.18224283028394, 3901071.778719593305141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975502.707101876847446, 3898302.925757443998009 ], [ 4975449.381684856489301, 3898323.209465726278722 ], [ 4975432.764431593939662, 3898279.480345236137509 ], [ 4975458.418350073508918, 3898269.70055720070377 ], [ 4975462.42864784412086, 3898280.632549681700766 ], [ 4975490.1002107411623, 3898270.128601078409702 ], [ 4975502.707101876847446, 3898302.925757443998009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975439.880242167040706, 3911601.249806032050401 ], [ 4975507.256101365201175, 3911595.559663380496204 ], [ 4975508.378943498246372, 3911609.763122407719493 ], [ 4975441.003854166716337, 3911615.089130661450326 ], [ 4975439.880242167040706, 3911601.249806032050401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975322.166019489057362, 3911157.498563683126122 ], [ 4975329.965315151028335, 3911144.405474081635475 ], [ 4975378.559296121820807, 3911173.633976106066257 ], [ 4975370.760718710720539, 3911186.36292029870674 ], [ 4975322.166019489057362, 3911157.498563683126122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975170.30354979634285, 3906065.529655097052455 ], [ 4975128.521576643921435, 3906080.739384253043681 ], [ 4975110.480624848976731, 3906031.1812854106538 ], [ 4975152.262664682231843, 3906015.971528659574687 ], [ 4975170.30354979634285, 3906065.529655097052455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974966.708039818331599, 3899736.886714946478605 ], [ 4974972.062282985076308, 3899795.886550249997526 ], [ 4974945.849259215407073, 3899798.018951476085931 ], [ 4974943.877582225948572, 3899775.80305446125567 ], [ 4974919.392585773020983, 3899777.938933697994798 ], [ 4974916.009929286316037, 3899741.155003577470779 ], [ 4974966.708039818331599, 3899736.886714946478605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974728.602561012841761, 3897671.065297308377922 ], [ 4974679.292973262257874, 3897699.369377117604017 ], [ 4974672.978754658252001, 3897688.068796893581748 ], [ 4974661.73329091258347, 3897694.236658751964569 ], [ 4974651.686249939724803, 3897677.102586487773806 ], [ 4974662.643688511103392, 3897670.934148129541427 ], [ 4974647.717486782930791, 3897645.051262881606817 ], [ 4974679.725762502290308, 3897626.544239161070436 ], [ 4974698.097445600666106, 3897657.895942705217749 ], [ 4974715.398810271173716, 3897648.098841248080134 ], [ 4974728.602561012841761, 3897671.065297308377922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974621.416041065007448, 3907551.184814802370965 ], [ 4974636.984925733879209, 3907540.65591113595292 ], [ 4974650.764763874001801, 3907561.074695349670947 ], [ 4974635.196609047241509, 3907571.239460412878543 ], [ 4974621.416041065007448, 3907551.184814802370965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974635.882388914935291, 3898963.178821109700948 ], [ 4974646.767685303464532, 3898993.059126514010131 ], [ 4974603.246212381869555, 3899008.630302788689733 ], [ 4974592.360874025151134, 3898978.750014739576727 ], [ 4974635.882388914935291, 3898963.178821109700948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974588.806151573546231, 3900769.90073915803805 ], [ 4974600.527283125557005, 3900813.619683933444321 ], [ 4974559.609413391910493, 3900824.826542313210666 ], [ 4974550.460692850872874, 3900790.944244664628059 ], [ 4974568.613868221640587, 3900786.246553073637187 ], [ 4974565.754127440974116, 3900776.045221247244626 ], [ 4974588.806151573546231, 3900769.90073915803805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974442.233249962329865, 3896976.829588181804866 ], [ 4974442.758884927257895, 3897002.31971711339429 ], [ 4974430.373286341316998, 3897002.295210211537778 ], [ 4974430.882362512871623, 3897036.160293013323098 ], [ 4974386.234496911987662, 3897037.164385985117406 ], [ 4974385.719606134109199, 3897006.212331350892782 ], [ 4974368.724695615470409, 3897006.542871545534581 ], [ 4974368.181721111759543, 3896989.791825952008367 ], [ 4974379.991970555856824, 3896989.451037131249905 ], [ 4974379.467715200036764, 3896963.232652804814279 ], [ 4974414.897779734805226, 3896962.574445207603276 ], [ 4974415.157009498216212, 3896977.140151308849454 ], [ 4974442.233249962329865, 3896976.829588181804866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974293.576392965391278, 3903266.526374591514468 ], [ 4974261.287114758975804, 3903285.033352967351675 ], [ 4974271.045042642392218, 3903301.802638983819634 ], [ 4974245.387018971145153, 3903316.317277437541634 ], [ 4974238.212192025966942, 3903303.922668239567429 ], [ 4974216.013410459272563, 3903316.623499593231827 ], [ 4974197.357807249762118, 3903284.907321985345334 ], [ 4974255.593792540952563, 3903251.522051967680454 ], [ 4974257.603119933046401, 3903254.803196035325527 ], [ 4974279.513283336535096, 3903242.465961047448218 ], [ 4974293.576392965391278, 3903266.526374591514468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974190.92687720246613, 3900555.733502255287021 ], [ 4974227.201126452535391, 3900562.723460704088211 ], [ 4974217.599562553688884, 3900612.226300139445812 ], [ 4974181.325377696193755, 3900605.236354439519346 ], [ 4974190.92687720246613, 3900555.733502255287021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973922.425734710879624, 3898541.564948600716889 ], [ 4973958.456881992518902, 3898527.070374594535679 ], [ 4973971.355681952089071, 3898558.774996245745569 ], [ 4973958.672783267684281, 3898563.847944485023618 ], [ 4973962.112604244612157, 3898572.229684052988887 ], [ 4973939.052417398430407, 3898581.651854459196329 ], [ 4973922.425734710879624, 3898541.564948600716889 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973838.097097782418132, 3896301.636707216035575 ], [ 4973820.515690175816417, 3896307.06426279200241 ], [ 4973823.378332396969199, 3896316.173103311099112 ], [ 4973781.010169433429837, 3896329.198941519018263 ], [ 4973770.991934997960925, 3896296.771824358031154 ], [ 4973804.425769626162946, 3896286.277409302070737 ], [ 4973795.837096397764981, 3896259.315023605246097 ], [ 4973822.352916282601655, 3896251.356016394682229 ], [ 4973838.097097782418132, 3896301.636707216035575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973685.366703610867262, 3896926.18497899826616 ], [ 4973698.817809213884175, 3896970.635058502200991 ], [ 4973696.224050655961037, 3896971.358257279731333 ], [ 4973706.527315393090248, 3897005.242435362655669 ], [ 4973666.755467447452247, 3897016.817004311364144 ], [ 4973643.28902558144182, 3896938.483344036154449 ], [ 4973685.366703610867262, 3896926.18497899826616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973603.026655469089746, 3899124.277544206473976 ], [ 4973578.813592763617635, 3899134.42604063404724 ], [ 4973566.770856722258031, 3899106.728696128819138 ], [ 4973590.984648857265711, 3899096.216060118284076 ], [ 4973603.026655469089746, 3899124.277544206473976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973582.081588025204837, 3900266.513832499738783 ], [ 4973546.048013159073889, 3900283.557830261532217 ], [ 4973536.870201516896486, 3900263.87692535854876 ], [ 4973527.645631121471524, 3900268.2285475442186 ], [ 4973517.033453725278378, 3900245.631815536413342 ], [ 4973562.290940244682133, 3900224.600295046344399 ], [ 4973582.081588025204837, 3900266.513832499738783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973372.995075233280659, 3901601.01056480454281 ], [ 4973388.807565811090171, 3901614.878207672853023 ], [ 4973353.020138133317232, 3901654.49906300753355 ], [ 4973312.197181133553386, 3901617.642738123890013 ], [ 4973340.191979308612645, 3901586.74586395919323 ], [ 4973365.203161761164665, 3901609.370462884195149 ], [ 4973372.995075233280659, 3901601.01056480454281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973342.846748052164912, 3909723.638303194195032 ], [ 4973370.808450806885958, 3909705.485901121515781 ], [ 4973413.292673666961491, 3909770.019826916512102 ], [ 4973385.331009115092456, 3909788.172185494564474 ], [ 4973342.846748052164912, 3909723.638303194195032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972926.832513497211039, 3907625.796547594014555 ], [ 4972890.512183252722025, 3907647.574647533707321 ], [ 4972877.884146487340331, 3907626.430716257542372 ], [ 4972914.204494978301227, 3907604.652599535882473 ], [ 4972926.832513497211039, 3907625.796547594014555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972814.898926951922476, 3904138.655868325848132 ], [ 4972816.154180785641074, 3904084.766836378257722 ], [ 4972865.969384518451989, 3904085.954866176005453 ], [ 4972865.346602828241885, 3904110.350470677018166 ], [ 4972854.116123463958502, 3904110.328902466222644 ], [ 4972853.484263024292886, 3904139.458197858184576 ], [ 4972814.898926951922476, 3904138.655868325848132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972798.084767144173384, 3903146.365950922016054 ], [ 4972818.75931110419333, 3903177.356762965675443 ], [ 4972791.078478075563908, 3903195.87434868933633 ], [ 4972770.40391656011343, 3903164.883557587396353 ], [ 4972798.084767144173384, 3903146.365950922016054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972488.813398943282664, 3900270.59757475508377 ], [ 4972461.732870541512966, 3900274.915527233388275 ], [ 4972450.343888810835779, 3900206.073165473528206 ], [ 4972477.424484682269394, 3900201.755201708059758 ], [ 4972488.813398943282664, 3900270.59757475508377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972037.488222847692668, 3907597.155052885878831 ], [ 4972098.880734177306294, 3907563.042745880782604 ], [ 4972116.671361255459487, 3907595.120045246556401 ], [ 4972055.279588903300464, 3907628.868181449826807 ], [ 4972037.488222847692668, 3907597.155052885878831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971861.574653781950474, 3899029.909394536633044 ], [ 4971889.974986026063561, 3899090.044374253600836 ], [ 4971862.877595639787614, 3899102.737892610020936 ], [ 4971834.189201033674181, 3899042.60239903209731 ], [ 4971861.574653781950474, 3899029.909394536633044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971435.770973034203053, 3912350.868409768678248 ], [ 4971470.332034599967301, 3912342.193798982072622 ], [ 4971490.622550419531763, 3912421.612771552521735 ], [ 4971465.565439381636679, 3912428.120320482645184 ], [ 4971458.42104397714138, 3912400.068711359985173 ], [ 4971448.916499169543386, 3912402.599881951697171 ], [ 4971435.770973034203053, 3912350.868409768678248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971357.860740842297673, 3899015.492800121661276 ], [ 4971318.092203741893172, 3899027.434987012762576 ], [ 4971313.797744571231306, 3899013.590040124487132 ], [ 4971277.198750295676291, 3899024.809930935502052 ], [ 4971282.638509766198695, 3899042.298305991571397 ], [ 4971239.123139552772045, 3899055.69015624653548 ], [ 4971214.789412669837475, 3898976.264527464751154 ], [ 4971254.846672805957496, 3898963.958595007192343 ], [ 4971259.141170347109437, 3898977.803532067686319 ], [ 4971296.604269355535507, 3898966.585225811228156 ], [ 4971291.16518139000982, 3898948.732719795312732 ], [ 4971333.528006298467517, 3898935.702936848625541 ], [ 4971357.860740842297673, 3899015.492800121661276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971099.278596231713891, 3893703.817353801336139 ], [ 4971097.56704037450254, 3893694.710953933186829 ], [ 4971127.825474664568901, 3893688.941011828836054 ], [ 4971138.386859461665154, 3893741.395192453172058 ], [ 4971109.280770106241107, 3893747.16725993109867 ], [ 4971106.997127935290337, 3893735.875023883767426 ], [ 4971098.927730992436409, 3893737.680705124512315 ], [ 4971092.362830398604274, 3893704.896918073296547 ], [ 4971099.278596231713891, 3893703.817353801336139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971004.903885890729725, 3904067.151177196297795 ], [ 4970961.937002596445382, 3904099.84347637463361 ], [ 4970955.903962890617549, 3904092.185559216421098 ], [ 4970942.350932967849076, 3904102.35617068130523 ], [ 4970926.838055590167642, 3904082.300267717801034 ], [ 4970943.274743972346187, 3904069.950193019583821 ], [ 4970936.954403946176171, 3904061.927617701236159 ], [ 4970976.172422492876649, 3904032.141392416786402 ], [ 4970984.502425064332783, 3904043.444877716246992 ], [ 4970985.944255460985005, 3904042.355152290314436 ], [ 4971004.903885890729725, 3904067.151177196297795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970901.366248678416014, 3898385.428803300485015 ], [ 4970898.531761492602527, 3898360.662724189460278 ], [ 4970961.91020696144551, 3898353.497266296297312 ], [ 4970967.860347638837993, 3898406.671259198337793 ], [ 4970924.360258002765477, 3898411.324522422626615 ], [ 4970921.243828594684601, 3898383.280748972669244 ], [ 4970901.366248678416014, 3898385.428803300485015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970721.002083503641188, 3898262.384411618113518 ], [ 4970676.621663002297282, 3898275.775575973559171 ], [ 4970666.888444253243506, 3898243.350108007434756 ], [ 4970655.937513149343431, 3898246.607147031929344 ], [ 4970651.070554294623435, 3898230.57648094650358 ], [ 4970696.60313316155225, 3898217.187394147273153 ], [ 4970703.187492146156728, 3898239.047308323439211 ], [ 4970712.985666173510253, 3898236.152297224849463 ], [ 4970721.002083503641188, 3898262.384411618113518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970527.511150577105582, 3898700.077449621167034 ], [ 4970483.699582824483514, 3898717.839538799133152 ], [ 4970479.111956666223705, 3898706.543102468829602 ], [ 4970459.223985227756202, 3898714.517546444665641 ], [ 4970447.755218689329922, 3898686.094403289724141 ], [ 4970511.454829447902739, 3898660.357836046256125 ], [ 4970527.511150577105582, 3898700.077449621167034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970332.313789608888328, 3897394.314372690394521 ], [ 4970337.173112144693732, 3897414.714516442734748 ], [ 4970351.581401601433754, 3897411.099534205161035 ], [ 4970357.296821312978864, 3897435.870803671423346 ], [ 4970305.716403911821544, 3897448.157033535186201 ], [ 4970295.141590193845332, 3897402.985637703444809 ], [ 4970332.313789608888328, 3897394.314372690394521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970312.559468503110111, 3891172.767564458306879 ], [ 4970331.5082364436239, 3891208.850870931986719 ], [ 4970303.247270880267024, 3891223.728562586009502 ], [ 4970284.299139691516757, 3891187.281148427166045 ], [ 4970312.559468503110111, 3891172.767564458306879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970222.44368274603039, 3912949.449007797054946 ], [ 4970200.238168169744313, 3912971.256534172222018 ], [ 4970174.665172776207328, 3912945.356485517695546 ], [ 4970217.057189025916159, 3912903.9225291647017 ], [ 4970264.179644548334181, 3912952.07405650941655 ], [ 4970244.281675121746957, 3912971.336823812220246 ], [ 4970222.44368274603039, 3912949.449007797054946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970101.148796120658517, 3898434.212467816192657 ], [ 4970121.563918562605977, 3898453.18434176966548 ], [ 4970128.778364819474518, 3898445.550729297101498 ], [ 4970147.179958272725344, 3898463.062441157177091 ], [ 4970108.221596990711987, 3898504.5024229940027 ], [ 4970069.404887633398175, 3898468.018887138925493 ], [ 4970101.148796120658517, 3898434.212467816192657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969962.77771463803947, 3891983.045869735069573 ], [ 4970002.19137195777148, 3892013.33999055204913 ], [ 4969961.764998842030764, 3892064.97298442851752 ], [ 4969922.63880317658186, 3892035.043571005109698 ], [ 4969962.77771463803947, 3891983.045869735069573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969656.390573690645397, 3903099.740690876264125 ], [ 4969675.630882945843041, 3903129.634100762195885 ], [ 4969620.852720208466053, 3903164.856161942705512 ], [ 4969607.35476893838495, 3903144.440530546940863 ], [ 4969625.22996801417321, 3903132.820507418364286 ], [ 4969619.198951362632215, 3903123.706375331152231 ], [ 4969656.390573690645397, 3903099.740690876264125 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969666.758008372969925, 3897184.096811875235289 ], [ 4969660.692873681895435, 3897193.189131931401789 ], [ 4969643.144364088773727, 3897181.141250665299594 ], [ 4969669.135751985944808, 3897143.318562078289688 ], [ 4969708.836096658371389, 3897170.335706023965031 ], [ 4969688.909817642532289, 3897199.066041691228747 ], [ 4969666.758008372969925, 3897184.096811875235289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969610.069220242090523, 3897794.276350093074143 ], [ 4969644.994118535891175, 3897753.55666070478037 ], [ 4969694.747029756195843, 3897795.885351736098528 ], [ 4969678.005940265953541, 3897815.51819873182103 ], [ 4969659.887690722942352, 3897800.192105819005519 ], [ 4969641.991893507540226, 3897821.279415213037282 ], [ 4969610.069220242090523, 3897794.276350093074143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969579.527346526272595, 3901964.606255693361163 ], [ 4969537.76770340371877, 3901965.623584166634828 ], [ 4969535.861724625341594, 3901904.446186391636729 ], [ 4969577.909447376616299, 3901903.429372843820602 ], [ 4969579.527346526272595, 3901964.606255693361163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969499.463823630474508, 3899399.891159418504685 ], [ 4969427.994549840688705, 3899423.431421908549964 ], [ 4969415.674014846794307, 3899387.724577056709677 ], [ 4969461.207282148301601, 3899372.512742901220918 ], [ 4969464.071723457425833, 3899381.257006632629782 ], [ 4969490.296471713110805, 3899372.564936629962176 ], [ 4969499.463823630474508, 3899399.891159418504685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969303.758367764763534, 3897708.884733184240758 ], [ 4969242.949012899771333, 3897728.439102494623512 ], [ 4969230.633296976797283, 3897689.455220200587064 ], [ 4969234.955694295465946, 3897688.370546602178365 ], [ 4969230.371916268020868, 3897674.5254294462502 ], [ 4969266.972537973895669, 3897662.938631925266236 ], [ 4969275.851375199854374, 3897690.992493492085487 ], [ 4969296.025176570750773, 3897684.474208414554596 ], [ 4969303.758367764763534, 3897708.884733184240758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969214.553737364709377, 3902502.866062024608254 ], [ 4969238.194610870443285, 3902487.978898299392313 ], [ 4969276.964323678053916, 3902548.129755861125886 ], [ 4969247.557426317594945, 3902566.647896558046341 ], [ 4969220.849610449746251, 3902525.089285073336214 ], [ 4969226.615670835599303, 3902521.458268904127181 ], [ 4969214.553737364709377, 3902502.866062024608254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969199.43219802249223, 3891443.49156804708764 ], [ 4969136.842566083185375, 3891484.162409870885313 ], [ 4969097.76709699537605, 3891424.739890262018889 ], [ 4969143.627700185403228, 3891394.963008123915642 ], [ 4969157.419385109096766, 3891415.74290523910895 ], [ 4969150.785368222743273, 3891420.100627144332975 ], [ 4969160.554061942733824, 3891435.047302599065006 ], [ 4969183.917171611450613, 3891419.795548249501735 ], [ 4969199.43219802249223, 3891443.49156804708764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969174.926294557750225, 3898885.886980198323727 ], [ 4969158.412619840353727, 3898940.112929116003215 ], [ 4969113.218683189712465, 3898926.195467257406563 ], [ 4969128.572423015721142, 3898876.336986305192113 ], [ 4969148.147203154861927, 3898882.197944151237607 ], [ 4969149.306409289129078, 3898878.194578652270138 ], [ 4969174.926294557750225, 3898885.886980198323727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968798.732713863253593, 3907535.880430769640952 ], [ 4968771.666541399434209, 3907536.560811764094979 ], [ 4968770.872319718822837, 3907497.233149372972548 ], [ 4968797.650607048533857, 3907496.552258090581745 ], [ 4968798.732713863253593, 3907535.880430769640952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968737.415121181868017, 3896936.287236183416098 ], [ 4968786.672175033017993, 3896934.91778180655092 ], [ 4968788.029292523860931, 3896981.892912054434419 ], [ 4968738.772324664518237, 3896983.262363981921226 ], [ 4968737.415121181868017, 3896936.287236183416098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968701.685245915316045, 3897922.651742481160909 ], [ 4968714.292862353846431, 3897959.815252573695034 ], [ 4968672.791931531392038, 3897973.943066881969571 ], [ 4968658.178992261178792, 3897930.585830776486546 ], [ 4968680.658609415404499, 3897922.978760797530413 ], [ 4968682.663876991719007, 3897929.172507611103356 ], [ 4968701.685245915316045, 3897922.651742481160909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968347.859945483505726, 3904568.505560329183936 ], [ 4968362.497827436774969, 3904595.841070576570928 ], [ 4968293.036733026616275, 3904632.132517688907683 ], [ 4968278.686118837445974, 3904605.161678852979094 ], [ 4968347.859945483505726, 3904568.505560329183936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968313.473929215222597, 3906609.402787937782705 ], [ 4968353.249066538177431, 3906586.532179876230657 ], [ 4968373.631748397834599, 3906621.160439074505121 ], [ 4968349.708325414918363, 3906635.3196348878555 ], [ 4968342.244378346949816, 3906622.561939551960677 ], [ 4968326.679988719522953, 3906631.637961595784873 ], [ 4968313.473929215222597, 3906609.402787937782705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967906.139316691085696, 3895938.20892768772319 ], [ 4967961.465524385683239, 3895926.28873941861093 ], [ 4967968.897201559506357, 3895959.437434765975922 ], [ 4967913.571058715693653, 3895971.357607976999134 ], [ 4967906.139316691085696, 3895938.20892768772319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967281.836134360171854, 3899696.773232395760715 ], [ 4967325.91201657988131, 3899690.658541297074407 ], [ 4967330.179702167399228, 3899721.252799019217491 ], [ 4967286.103869107551873, 3899727.367483246605843 ], [ 4967281.836134360171854, 3899696.773232395760715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967077.638753276318312, 3907295.1117142457515 ], [ 4967106.402855629101396, 3907311.910856882575899 ], [ 4967064.819099043495953, 3907383.573913423344493 ], [ 4967035.767121518962085, 3907366.774323937017471 ], [ 4967077.638753276318312, 3907295.1117142457515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966989.096243242733181, 3899938.05596196372062 ], [ 4966984.351838247850537, 3900018.156555554363877 ], [ 4966958.721882754936814, 3900016.656434275209904 ], [ 4966961.094663039781153, 3899976.242005414329469 ], [ 4966938.920730209909379, 3899974.74778115330264 ], [ 4966941.291627139784396, 3899935.425739288330078 ], [ 4966989.096243242733181, 3899938.05596196372062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966388.034023273736238, 3896160.284767193719745 ], [ 4966393.442692192271352, 3896198.527444090228528 ], [ 4966383.646689826622605, 3896199.967512476723641 ], [ 4966387.634695909917355, 3896226.555660451762378 ], [ 4966355.942360012792051, 3896230.872015929315239 ], [ 4966354.231194861233234, 3896220.673519285861403 ], [ 4966341.554136512801051, 3896222.472898433916271 ], [ 4966336.711718698963523, 3896190.057252798229456 ], [ 4966363.218661786988378, 3896186.096301198005676 ], [ 4966359.798774104565382, 3896164.2427939302288 ], [ 4966388.034023273736238, 3896160.284767193719745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966089.036618097685277, 3906692.62626407854259 ], [ 4966093.60769762750715, 3906714.117666861508042 ], [ 4966072.869224880822003, 3906718.452645997982472 ], [ 4966068.298736868426204, 3906696.59711592644453 ], [ 4966089.036618097685277, 3906692.62626407854259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966103.383883803151548, 3897404.403239429462701 ], [ 4966185.787459033541381, 3897388.883292087353766 ], [ 4966191.496980047784746, 3897419.479734675493091 ], [ 4966109.093495233915746, 3897434.999664803035557 ], [ 4966103.383883803151548, 3897404.403239429462701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966065.956377226859331, 3905338.746404300909489 ], [ 4966090.16161710396409, 3905328.226971511729062 ], [ 4966097.619093673303723, 3905345.717727061361074 ], [ 4966073.413866597227752, 3905356.237153240479529 ], [ 4966065.956377226859331, 3905338.746404300909489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965954.230986981652677, 3893044.799332474824041 ], [ 4965904.087599798105657, 3893055.27573297964409 ], [ 4965895.797997943125665, 3893016.300185289699584 ], [ 4965945.653374512679875, 3893005.823290610685945 ], [ 4965954.230986981652677, 3893044.799332474824041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965896.932465955615044, 3898750.247651916928589 ], [ 4965895.741078223101795, 3898773.914123993366957 ], [ 4965901.788855345919728, 3898774.288300242275 ], [ 4965900.590810472145677, 3898801.960191654041409 ], [ 4965892.814932176843286, 3898801.583145354408771 ], [ 4965891.618107210844755, 3898828.526779559440911 ], [ 4965853.026769052259624, 3898826.642061453778297 ], [ 4965856.612904950045049, 3898748.36005828762427 ], [ 4965896.932465955615044, 3898750.247651916928589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965775.341017332859337, 3897735.580051603261381 ], [ 4965769.526152202859521, 3897768.342101427260786 ], [ 4965796.016972294077277, 3897773.119677936658263 ], [ 4965791.655507498420775, 3897797.873276728671044 ], [ 4965732.05105166323483, 3897787.214808033313602 ], [ 4965742.515318630263209, 3897729.699619617313147 ], [ 4965775.341017332859337, 3897735.580051603261381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965535.478623614646494, 3893848.466931943316013 ], [ 4965519.333457567729056, 3893856.451177350711077 ], [ 4965510.720107080414891, 3893838.958805311471224 ], [ 4965526.865281055681407, 3893830.974554821383208 ], [ 4965535.478623614646494, 3893848.466931943316013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965445.110053754411638, 3908507.485529512166977 ], [ 4965462.631457424722612, 3908532.639475016854703 ], [ 4965415.936179581098258, 3908564.970441075973213 ], [ 4965398.414753424935043, 3908539.816525522153825 ], [ 4965445.110053754411638, 3908507.485529512166977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965409.796287836506963, 3900035.550559351220727 ], [ 4965435.40296296775341, 3900051.250246323179454 ], [ 4965410.857366306707263, 3900090.900106622837484 ], [ 4965385.251312676817179, 3900074.836313350591809 ], [ 4965409.796287836506963, 3900035.550559351220727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965371.870363124646246, 3899278.461588690523058 ], [ 4965356.035037653520703, 3899275.158427476417273 ], [ 4965352.262191983871162, 3899292.630482194945216 ], [ 4965325.198558149859309, 3899286.760006729513407 ], [ 4965329.551592999137938, 3899266.739989010151476 ], [ 4965321.777632649056613, 3899265.270720407366753 ], [ 4965349.924589389935136, 3899137.507223050110042 ], [ 4965400.30914737470448, 3899148.51384124904871 ], [ 4965371.870363124646246, 3899278.461588690523058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965215.115746756084263, 3907069.515082922764122 ], [ 4965240.749800432473421, 3907064.459192273207009 ], [ 4965246.461882231757045, 3907092.870827867649496 ], [ 4965220.827854556031525, 3907097.92671316023916 ], [ 4965215.115746756084263, 3907069.515082922764122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964800.403312242589891, 3900374.65392298810184 ], [ 4964824.940665362402797, 3900339.373050962109119 ], [ 4964849.969025868922472, 3900356.527766707353294 ], [ 4964825.143654589541256, 3900391.80814930703491 ], [ 4964800.403312242589891, 3900374.65392298810184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964370.966883108019829, 3900390.711500301491469 ], [ 4964401.435928131453693, 3900427.537566692568362 ], [ 4964395.956904562190175, 3900431.898334641009569 ], [ 4964401.417804825119674, 3900438.825578371062875 ], [ 4964368.253951262682676, 3900466.082129405811429 ], [ 4964339.222571856342256, 3900430.714926034677774 ], [ 4964358.832299679517746, 3900414.724636765196919 ], [ 4964351.933715919964015, 3900406.338574810884893 ], [ 4964370.966883108019829, 3900390.711500301491469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964346.003021964803338, 3903924.924279279541224 ], [ 4964340.196468491107225, 3903954.409588622394949 ], [ 4964296.15217693708837, 3903945.599854246713221 ], [ 4964301.958100594580173, 3903916.478665719740093 ], [ 4964346.003021964803338, 3903924.924279279541224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964335.40268134418875, 3900478.045747782103717 ], [ 4964301.664110395126045, 3900504.573199414182454 ], [ 4964278.382775480858982, 3900475.405488207936287 ], [ 4964291.935684654861689, 3900464.867409042548388 ], [ 4964285.89992734324187, 3900457.211006300058216 ], [ 4964306.373605079948902, 3900441.222061987966299 ], [ 4964335.40268134418875, 3900478.045747782103717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964265.648522916249931, 3903932.806420869193971 ], [ 4964248.088028895668685, 3903929.501137631013989 ], [ 4964246.055975602939725, 3903939.693557563703507 ], [ 4964223.313898839056492, 3903935.287607307545841 ], [ 4964232.026168272830546, 3903889.421020806301385 ], [ 4964272.328798996284604, 3903897.132265850901604 ], [ 4964265.648522916249931, 3903932.806420869193971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964262.6074596978724, 3901334.728094346821308 ], [ 4964219.392545936629176, 3901344.854622075334191 ], [ 4964210.811032594181597, 3901308.42784925037995 ], [ 4964227.52091767732054, 3901304.449129237327725 ], [ 4964225.233874454163015, 3901293.885686612222344 ], [ 4964251.450977032072842, 3901287.737402312923223 ], [ 4964262.6074596978724, 3901334.728094346821308 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964248.756152680143714, 3904051.850265547633171 ], [ 4964242.948567802086473, 3904082.06385861383751 ], [ 4964201.207563247531652, 3904073.622095057740808 ], [ 4964207.014520904049277, 3904043.772623331286013 ], [ 4964248.756152680143714, 3904051.850265547633171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964252.014180446974933, 3898775.603661136701703 ], [ 4964299.500437186099589, 3898798.61986445216462 ], [ 4964285.051733908243477, 3898828.455385977867991 ], [ 4964221.736178661696613, 3898798.131296148058027 ], [ 4964240.808262494392693, 3898758.835756249725819 ], [ 4964256.349601195193827, 3898766.143218095880002 ], [ 4964252.014180446974933, 3898775.603661136701703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964228.124796263873577, 3904348.220037170220166 ], [ 4964213.37429478392005, 3904388.615014820825309 ], [ 4964169.629682031460106, 3904372.887470536399633 ], [ 4964184.091585871763527, 3904332.856139464769512 ], [ 4964228.124796263873577, 3904348.220037170220166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963718.424943171441555, 3903809.223878657445312 ], [ 4963749.803255097940564, 3903815.463713124860078 ], [ 4963742.836264912039042, 3903850.773410758934915 ], [ 4963711.169453427195549, 3903844.897259466350079 ], [ 4963718.424943171441555, 3903809.223878657445312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963197.857512792572379, 3893612.039388565346599 ], [ 4963234.460476557724178, 3893600.8085328922607 ], [ 4963239.046336713247001, 3893615.744977962225676 ], [ 4963248.269238431937993, 3893612.846353902481496 ], [ 4963257.441503113135695, 3893642.355121911037713 ], [ 4963211.90377445332706, 3893656.485029745846987 ], [ 4963197.857512792572379, 3893612.039388565346599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963081.578378146514297, 3895952.480041974689811 ], [ 4963100.877055766060948, 3895952.874210244044662 ], [ 4963101.797892880626023, 3895916.462709411978722 ], [ 4963140.971963804215193, 3895916.887858149595559 ], [ 4963139.721035142429173, 3895980.244415435940027 ], [ 4963081.248398251831532, 3895979.425100460182875 ], [ 4963081.578378146514297, 3895952.480041974689811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963010.957066279835999, 3895613.365848058834672 ], [ 4963062.956290420144796, 3895702.294225745368749 ], [ 4963031.81903850287199, 3895720.08814645698294 ], [ 4962979.81918079406023, 3895631.523956466466188 ], [ 4963010.957066279835999, 3895613.365848058834672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963003.595923274755478, 3894232.576767786871642 ], [ 4963036.14181801956147, 3894236.268626527395099 ], [ 4963031.179600556381047, 3894278.135746999643743 ], [ 4962998.921822251752019, 3894274.444341535214335 ], [ 4963003.595923274755478, 3894232.576767786871642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962708.666296220384538, 3895880.168835931457579 ], [ 4962685.006411392241716, 3895905.985538132488728 ], [ 4962626.61374933924526, 3895853.096842461731285 ], [ 4962660.083583552390337, 3895816.735449907369912 ], [ 4962697.477854042313993, 3895850.657107351347804 ], [ 4962687.955941944383085, 3895861.202177726197988 ], [ 4962708.666296220384538, 3895880.168835931457579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961903.099151086062193, 3894665.660064700059593 ], [ 4961931.316023237071931, 3894674.441847844514996 ], [ 4961920.607042600400746, 3894707.925516989082098 ], [ 4961892.678263999521732, 3894699.144180434755981 ], [ 4961903.099151086062193, 3894665.660064700059593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961862.413980244658887, 3893757.46096650743857 ], [ 4961857.164883470162749, 3893799.691984785720706 ], [ 4961815.402209013700485, 3893794.531130712479353 ], [ 4961814.236186976544559, 3893803.63259280892089 ], [ 4961794.362551749683917, 3893801.41783961141482 ], [ 4961800.778117734007537, 3893749.721218515653163 ], [ 4961862.413980244658887, 3893757.46096650743857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961733.390063744038343, 3900620.744981268420815 ], [ 4961738.82034329418093, 3900648.427066897507757 ], [ 4961645.4815922556445, 3900666.493132964707911 ], [ 4961639.192697715945542, 3900635.168472375720739 ], [ 4961663.967665036208928, 3900630.472020583692938 ], [ 4961664.5381861589849, 3900634.114181823097169 ], [ 4961733.390063744038343, 3900620.744981268420815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961565.692717566154897, 3905666.254587286151946 ], [ 4961593.668693512678146, 3905636.073665039613843 ], [ 4961640.827032720670104, 3905679.112018416635692 ], [ 4961606.794383349828422, 3905715.838161683175713 ], [ 4961570.275240106508136, 3905682.647378026042134 ], [ 4961576.331903700716794, 3905676.10210060281679 ], [ 4961565.692717566154897, 3905666.254587286151946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961489.990015494637191, 3893144.072190349921584 ], [ 4961498.713597710244358, 3893089.83007146185264 ], [ 4961524.922795386984944, 3893093.874738450162113 ], [ 4961523.468763078562915, 3893102.975777866784483 ], [ 4961555.43843075633049, 3893107.757362153381109 ], [ 4961548.455217780545354, 3893153.991240246687084 ], [ 4961536.070574254728854, 3893152.152035190723836 ], [ 4961534.618723795749247, 3893159.796562696807086 ], [ 4961513.593366921879351, 3893156.852035405114293 ], [ 4961515.046847655437887, 3893148.115123072639108 ], [ 4961489.990015494637191, 3893144.072190349921584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961382.265442179515958, 3893711.587922000791878 ], [ 4961410.491645464673638, 3893714.907233224716038 ], [ 4961413.120200973935425, 3893690.878657109569758 ], [ 4961438.466240344569087, 3893693.829566066619009 ], [ 4961431.170814651995897, 3893756.448821140918881 ], [ 4961416.76939294859767, 3893754.970784535165876 ], [ 4961415.893752249889076, 3893762.616181990597397 ], [ 4961377.010568949393928, 3893758.188569303136319 ], [ 4961382.265442179515958, 3893711.587922000791878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961168.290528800338507, 3894250.908356946893036 ], [ 4961176.708817911334336, 3894207.589514640159905 ], [ 4961211.554655532352626, 3894214.55974041018635 ], [ 4961199.651916333474219, 3894276.443970110733062 ], [ 4961169.701663598418236, 3894270.573415521066636 ], [ 4961173.474647146649659, 3894251.644313225988299 ], [ 4961168.290528800338507, 3894250.908356946893036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961084.003773534670472, 3898836.993576536886394 ], [ 4961119.739550718106329, 3898822.481364074163139 ], [ 4961138.968105133622885, 3898868.754395191092044 ], [ 4961103.231839067302644, 3898883.630711626261473 ], [ 4961084.003773534670472, 3898836.993576536886394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960726.412987729534507, 3896592.69890521466732 ], [ 4960780.83999171666801, 3896601.517997823655605 ], [ 4960776.769930427893996, 3896627.00107373483479 ], [ 4960764.674876483157277, 3896625.162643873598427 ], [ 4960755.374074159190059, 3896681.953167729545385 ], [ 4960717.649308538064361, 3896676.071679853834212 ], [ 4960723.461454769596457, 3896641.123786801937968 ], [ 4960718.565826275385916, 3896640.388339212629944 ], [ 4960726.412987729534507, 3896592.69890521466732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960422.244854911230505, 3898368.478235737420619 ], [ 4960413.541573450900614, 3898411.432872127741575 ], [ 4960385.323892652988434, 3898405.565695214085281 ], [ 4960393.739108280278742, 3898362.610630372539163 ], [ 4960422.244854911230505, 3898368.478235737420619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960194.257269749417901, 3899672.460435057524592 ], [ 4960198.902343720197678, 3899646.978059468790889 ], [ 4960270.596984245814383, 3899660.5548633961007 ], [ 4960264.791353885084391, 3899691.861623847857118 ], [ 4960252.986710111610591, 3899689.295580302830786 ], [ 4960250.374028258956969, 3899703.492863028310239 ], [ 4960215.822014768607914, 3899697.252536867745221 ], [ 4960219.595159989781678, 3899677.230851823929697 ], [ 4960194.257269749417901, 3899672.460435057524592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960152.17328935675323, 3896711.296172769740224 ], [ 4960167.975966027937829, 3896738.628756792284548 ], [ 4960132.51754979044199, 3896758.968692483846098 ], [ 4960116.714849108830094, 3896731.636128971353173 ], [ 4960152.17328935675323, 3896711.296172769740224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960095.996437507681549, 3893527.998248789925128 ], [ 4960105.75465346314013, 3893553.137236246373504 ], [ 4960087.307914002798498, 3893560.029027568176389 ], [ 4960096.205061937682331, 3893582.981995407957584 ], [ 4960061.328679682686925, 3893596.404387192800641 ], [ 4960042.672722676768899, 3893548.67659034114331 ], [ 4960095.996437507681549, 3893527.998248789925128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959884.910041198134422, 3909304.011240407824516 ], [ 4959868.196352482773364, 3909314.547046578023583 ], [ 4959862.451853519305587, 3909305.071352405939251 ], [ 4959832.483029881492257, 3909323.599043814465404 ], [ 4959813.236763920634985, 3909293.348437821492553 ], [ 4959868.275906507857144, 3909259.199062756728381 ], [ 4959886.372607588768005, 3909287.991525566205382 ], [ 4959878.016018092632294, 3909293.077361099421978 ], [ 4959884.910041198134422, 3909304.011240407824516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959731.602620027028024, 3900957.537881922908127 ], [ 4959779.687310149893165, 3900964.889380633365363 ], [ 4959775.90684119425714, 3900990.373087328393012 ], [ 4959752.584507904946804, 3900986.698361973743886 ], [ 4959746.770374738611281, 3901024.559592687990516 ], [ 4959707.035528836771846, 3901018.676620501093566 ], [ 4959715.17649392131716, 3900964.796975156757981 ], [ 4959730.149091059342027, 3900967.003190367482603 ], [ 4959731.602620027028024, 3900957.537881922908127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959458.758337709121406, 3908732.442608148325235 ], [ 4959394.469297436065972, 3908792.068925305269659 ], [ 4959373.195928221568465, 3908769.462542014662176 ], [ 4959385.592643392272294, 3908757.827907334081829 ], [ 4959379.842687257565558, 3908751.993633213452995 ], [ 4959396.56428802665323, 3908735.995556566864252 ], [ 4959403.463304129429162, 3908743.652126324363053 ], [ 4959438.347157695330679, 3908710.929796466138214 ], [ 4959458.758337709121406, 3908732.442608148325235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959418.267103281803429, 3905213.052218967117369 ], [ 4959455.410996025428176, 3905214.197396988980472 ], [ 4959454.193970175459981, 3905260.076211509294808 ], [ 4959446.419355568476021, 3905260.065159317106009 ], [ 4959445.809815598651767, 3905283.732828417327255 ], [ 4959417.303954829461873, 3905282.964062426704913 ], [ 4959417.919158909469843, 3905255.290956338867545 ], [ 4959402.658392651006579, 3905254.905153434257954 ], [ 4959402.97684421390295, 3905233.421858370304108 ], [ 4959417.661724724806845, 3905233.806843455415219 ], [ 4959418.267103281803429, 3905213.052218967117369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959426.691623218357563, 3892385.860309279989451 ], [ 4959474.515559297055006, 3892384.835877001751214 ], [ 4959475.602154154330492, 3892431.081744004506618 ], [ 4959427.778300287202001, 3892432.106174378655851 ], [ 4959426.691623218357563, 3892385.860309279989451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959402.496383304707706, 3899689.167242337018251 ], [ 4959408.877027015201747, 3899657.861113459337503 ], [ 4959465.886703620664775, 3899669.230145144276321 ], [ 4959459.505478497594595, 3899700.900390056893229 ], [ 4959402.496383304707706, 3899689.167242337018251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959296.333892519585788, 3899202.539035083726048 ], [ 4959315.916238774545491, 3899204.387411420233548 ], [ 4959316.209409390576184, 3899200.746526854578406 ], [ 4959347.598764777183533, 3899203.704040651209652 ], [ 4959342.627188667654991, 3899256.859971790574491 ], [ 4959291.655068974941969, 3899252.418219985440373 ], [ 4959296.333892519585788, 3899202.539035083726048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958996.13361035939306, 3904392.432476195972413 ], [ 4958966.525555374100804, 3904355.613662407267839 ], [ 4958980.36340650357306, 3904344.345023571979254 ], [ 4958987.262649572454393, 3904352.729726602323353 ], [ 4959016.667670973576605, 3904329.102514502126724 ], [ 4959039.664423732087016, 3904357.537069629412144 ], [ 4958996.13361035939306, 3904392.432476195972413 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958955.066386575810611, 3907596.73174139810726 ], [ 4958978.404563498683274, 3907585.112282800488174 ], [ 4958968.929659270681441, 3907566.164125681389123 ], [ 4959000.624318350106478, 3907549.822704912163317 ], [ 4959008.377290987409651, 3907564.763003209140152 ], [ 4959019.326080368831754, 3907559.316413913387805 ], [ 4959034.831478648819029, 3907589.561154970899224 ], [ 4958968.561994864605367, 3907622.96817446872592 ], [ 4958955.066386575810611, 3907596.73174139810726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958918.154428203590214, 3900653.064930235035717 ], [ 4958920.803572597913444, 3900612.286051703151315 ], [ 4958951.616857385262847, 3900614.149909503757954 ], [ 4958951.026047710329294, 3900624.708858825266361 ], [ 4958995.085705703124404, 3900627.683741990476847 ], [ 4958993.025229660794139, 3900659.360183170530945 ], [ 4958961.924001509323716, 3900657.495873733889312 ], [ 4958961.335232388228178, 3900666.598304817453027 ], [ 4958937.433448147028685, 3900665.108256780542433 ], [ 4958938.024762244895101, 3900654.185177322477102 ], [ 4958918.154428203590214, 3900653.064930235035717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958416.610793770290911, 3900961.149183947127312 ], [ 4958433.395093706436455, 3900902.911545895505697 ], [ 4958442.894909971393645, 3900905.837733298540115 ], [ 4958448.393532460555434, 3900886.546435681637377 ], [ 4958488.697269734926522, 3900897.890289107803255 ], [ 4958472.779352790676057, 3900954.308440811932087 ], [ 4958457.809671010822058, 3900949.918148225639015 ], [ 4958451.732545137405396, 3900971.02929560514167 ], [ 4958416.610793770290911, 3900961.149183947127312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958319.290652919560671, 3906164.081436655018479 ], [ 4958296.811329717747867, 3906178.615694905165583 ], [ 4958289.340479357168078, 3906167.317319568712264 ], [ 4958248.992924655787647, 3906193.479201798327267 ], [ 4958228.591871433891356, 3906162.499941896647215 ], [ 4958242.71341566927731, 3906153.416091786231846 ], [ 4958234.381223733536899, 3906140.295888725668192 ], [ 4958250.231921887025237, 3906130.12202823953703 ], [ 4958256.553549474105239, 3906139.598152242135257 ], [ 4958289.407737202942371, 3906118.523792832158506 ], [ 4958319.290652919560671, 3906164.081436655018479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957928.892725535668433, 3894310.744167291093618 ], [ 4957892.290473614819348, 3894323.802892336156219 ], [ 4957880.812493369914591, 3894291.015649311244488 ], [ 4957893.781926129944623, 3894286.299649158027023 ], [ 4957887.46928071975708, 3894268.084600756876171 ], [ 4957910.81358977407217, 3894260.105590383987874 ], [ 4957928.892725535668433, 3894310.744167291093618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957600.57242726162076, 3898727.915663736406714 ], [ 4957585.476823549717665, 3898815.650546629913151 ], [ 4957553.513739223591983, 3898810.50953820021823 ], [ 4957568.609733439981937, 3898722.410508438479155 ], [ 4957600.57242726162076, 3898727.915663736406714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957440.761490890756249, 3905327.930575172882527 ], [ 4957452.580112135969102, 3905318.479081490077078 ], [ 4957457.753855119459331, 3905325.404546739067882 ], [ 4957503.009832082316279, 3905289.780697810463607 ], [ 4957528.880941129289567, 3905322.587429146282375 ], [ 4957471.806861028075218, 3905367.29858484165743 ], [ 4957440.761490890756249, 3905327.930575172882527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957276.405283747240901, 3907214.275018882006407 ], [ 4957217.310881923884153, 3907265.902555150911212 ], [ 4957194.598731107078493, 3907240.382942595053464 ], [ 4957253.693145217373967, 3907188.755357185378671 ], [ 4957276.405283747240901, 3907214.275018882006407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957255.708419711329043, 3896871.118602418806404 ], [ 4957253.089736085385084, 3896890.778084386605769 ], [ 4957235.810358646325767, 3896888.570169474929571 ], [ 4957238.1409912398085, 3896868.910300215240568 ], [ 4957255.708419711329043, 3896871.118602418806404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956677.726185255683959, 3900063.768691544886678 ], [ 4956685.555112027563155, 3900023.724699993617833 ], [ 4956717.515956594608724, 3900029.592938906513155 ], [ 4956709.974988187663257, 3900069.637301278766245 ], [ 4956677.726185255683959, 3900063.768691544886678 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956452.405852204188704, 3899260.930057160090655 ], [ 4956457.316381961107254, 3899250.012590927537531 ], [ 4956446.953632690012455, 3899245.629459534306079 ], [ 4956461.975634263828397, 3899211.056791887618601 ], [ 4956511.197759622707963, 3899232.604987396392971 ], [ 4956495.886261275038123, 3899268.269638236612082 ], [ 4956469.69187917932868, 3899256.947273241821676 ], [ 4956465.646815605461597, 3899266.773481373209506 ], [ 4956452.405852204188704, 3899260.930057160090655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956226.672968757338822, 3897215.318769806530327 ], [ 4956276.763519724830985, 3897236.503505986649543 ], [ 4956261.7387624848634, 3897272.532752028666437 ], [ 4956211.360232421196997, 3897251.347668756730855 ], [ 4956226.672968757338822, 3897215.318769806530327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956020.703863930888474, 3905247.403218511492014 ], [ 4956046.642833984456956, 3905229.230232325848192 ], [ 4956078.26012069452554, 3905273.331073730718344 ], [ 4956052.321171710267663, 3905291.504029886797071 ], [ 4956020.703863930888474, 3905247.403218511492014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956023.541178673505783, 3893704.122350268065929 ], [ 4956070.514449610374868, 3893690.710387933533639 ], [ 4956081.699745864607394, 3893728.95839514490217 ], [ 4956079.682296578772366, 3893729.684038770385087 ], [ 4956083.409778796136379, 3893743.161631724331528 ], [ 4956028.655352668836713, 3893759.112405517138541 ], [ 4956022.346500163897872, 3893736.89239127933979 ], [ 4956032.144722777418792, 3893733.992036684881896 ], [ 4956023.541178673505783, 3893704.122350268065929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954386.739019705913961, 3893914.706159206107259 ], [ 4954408.373033308424056, 3893891.428594534751028 ], [ 4954438.873443533666432, 3893919.868274219799787 ], [ 4954417.52749627456069, 3893943.146170142572373 ], [ 4954386.739019705913961, 3893914.706159206107259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954271.301655785180628, 3895491.970585274975747 ], [ 4954276.105959145352244, 3895567.351209775544703 ], [ 4954222.524164530448616, 3895570.562595553696156 ], [ 4954219.699463899247348, 3895525.042993823997676 ], [ 4954241.593279930762947, 3895523.613338705617934 ], [ 4954239.901605105958879, 3895493.75267728138715 ], [ 4954271.301655785180628, 3895491.970585274975747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954044.136424951255322, 3894457.930345939937979 ], [ 4954008.083111104555428, 3894495.027532804291695 ], [ 4953986.791203612461686, 3894474.61037926049903 ], [ 4954022.844515359960496, 3894437.513164294883609 ], [ 4954044.136424951255322, 3894457.930345939937979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953574.075752574019134, 3893209.127776253502816 ], [ 4953623.265149489976466, 3893268.904054015409201 ], [ 4953603.656181434169412, 3893285.266235299408436 ], [ 4953589.848634362220764, 3893268.499706295318902 ], [ 4953579.179707149043679, 3893276.861832057591528 ], [ 4953543.797837759368122, 3893233.852132427040488 ], [ 4953574.075752574019134, 3893209.127776253502816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953396.48837218247354, 3895486.904781037475914 ], [ 4953338.568772003985941, 3895504.31377543695271 ], [ 4953326.229842901229858, 3895464.608980755787343 ], [ 4953384.149955816566944, 3895446.83583163516596 ], [ 4953396.48837218247354, 3895486.904781037475914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952475.802406686358154, 3892815.663266389165074 ], [ 4952537.154134374111891, 3892824.109551021363586 ], [ 4952534.538091858848929, 3892844.133573673199862 ], [ 4952540.58696065004915, 3892844.868870259262621 ], [ 4952536.81223514303565, 3892870.35347184445709 ], [ 4952469.412169036455452, 3892860.807777820620686 ], [ 4952475.802406686358154, 3892815.663266389165074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952423.035667319782078, 3889129.533315073698759 ], [ 4952432.025287144817412, 3889079.658243488520384 ], [ 4952413.301150639541447, 3889076.359386352356523 ], [ 4952418.230883307754993, 3889049.055523301009089 ], [ 4952472.098355982452631, 3889058.949467395897955 ], [ 4952470.068816120736301, 3889069.870941656176001 ], [ 4952484.760086220689118, 3889072.436897797510028 ], [ 4952479.540899589657784, 3889100.832796007860452 ], [ 4952461.969271148554981, 3889097.53524353960529 ], [ 4952455.010396586731076, 3889135.396447922103107 ], [ 4952423.035667319782078, 3889129.533315073698759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952358.763048239052296, 3893878.783085301984102 ], [ 4952357.283088748343289, 3893913.009471890050918 ], [ 4952337.119011271744967, 3893912.25788959255442 ], [ 4952298.216485487297177, 3893923.500921950675547 ], [ 4952288.998660531826317, 3893923.126148859970272 ], [ 4952268.538956065662205, 3893928.92859359877184 ], [ 4952261.078115971758962, 3893903.795104639139026 ], [ 4952261.374587223865092, 3893896.512872361578047 ], [ 4952296.530957500450313, 3893886.35784639371559 ], [ 4952297.118452876806259, 3893876.527049706317484 ], [ 4952358.763048239052296, 3893878.783085301984102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952125.501903385855258, 3891805.530698142014444 ], [ 4952095.807450033724308, 3891823.703026339411736 ], [ 4952087.180123081430793, 3891810.220383545849472 ], [ 4952069.882449199445546, 3891820.760268602520227 ], [ 4952050.61611369997263, 3891789.423158736433834 ], [ 4952066.760592808015645, 3891779.610196138732135 ], [ 4952054.395951319485903, 3891759.204843799117953 ], [ 4952085.243657228536904, 3891740.305536647327244 ], [ 4952125.501903385855258, 3891805.530698142014444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952103.128272914327681, 3889963.016968657262623 ], [ 4952135.403577261604369, 3889957.227978080511093 ], [ 4952150.007769867777824, 3890035.168125543277711 ], [ 4952117.732137839309871, 3890041.321226267144084 ], [ 4952103.128272914327681, 3889963.016968657262623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952062.649230379611254, 3889333.757690775208175 ], [ 4952063.553231157362461, 3889299.166591249871999 ], [ 4952100.719421679154038, 3889300.301592821720988 ], [ 4952099.815373120829463, 3889334.892691111192107 ], [ 4952062.649230379611254, 3889333.757690775208175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951726.054699969477952, 3888633.520692731253803 ], [ 4951726.356859125196934, 3888621.140697050374001 ], [ 4951713.68009682931006, 3888620.398076549172401 ], [ 4951715.457541646435857, 3888577.433035156689584 ], [ 4951739.947136553935707, 3888578.553176478017122 ], [ 4951739.065825880505145, 3888593.481408098246902 ], [ 4951769.606077884323895, 3888594.608438030816615 ], [ 4951767.831027272157371, 3888635.388713512104005 ], [ 4951726.054699969477952, 3888633.520692731253803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951451.003241806291044, 3892639.346719592344016 ], [ 4951509.473213493824005, 3892649.243933951947838 ], [ 4951501.35073333978653, 3892699.120389454066753 ], [ 4951465.922627681866288, 3892693.618621046189219 ], [ 4951464.473207861185074, 3892701.627817855682224 ], [ 4951441.142552866600454, 3892697.960322968196124 ], [ 4951451.003241806291044, 3892639.346719592344016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951338.10288077685982, 3901105.591400729957968 ], [ 4951294.61712765134871, 3901104.450362122617662 ], [ 4951295.224865388125181, 3901076.048881729133427 ], [ 4951338.998657958582044, 3901077.190243731252849 ], [ 4951338.10288077685982, 3901105.591400729957968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951044.759875386953354, 3891379.737790622282773 ], [ 4951067.596300636418164, 3891310.578758498188108 ], [ 4951095.531313261017203, 3891320.077086099889129 ], [ 4951088.305018802173436, 3891341.55262614833191 ], [ 4951092.62486962787807, 3891343.013933365233243 ], [ 4951076.72697479929775, 3891390.332952296361327 ], [ 4951044.759875386953354, 3891379.737790622282773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950304.872794266790152, 3896758.565757581498474 ], [ 4950320.456477575935423, 3896731.272909369319677 ], [ 4950326.789814407937229, 3896734.556923091877252 ], [ 4950349.877167832106352, 3896693.799426565878093 ], [ 4950386.436206401325762, 3896714.230269170831889 ], [ 4950365.945906389504671, 3896750.620996180921793 ], [ 4950371.991193275898695, 3896753.904708601534367 ], [ 4950360.159082802012563, 3896774.647262426558882 ], [ 4950334.25088272895664, 3896760.418174823746085 ], [ 4950327.90219088178128, 3896771.335185321979225 ], [ 4950304.872794266790152, 3896758.565757581498474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950263.518598361872137, 3889970.800390780903399 ], [ 4950283.690800176933408, 3889966.81675951462239 ], [ 4950288.274252777919173, 3889991.218275540973991 ], [ 4950268.102068582549691, 3889995.201903424691409 ], [ 4950263.518598361872137, 3889970.800390780903399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949842.384419743902981, 3892056.438938679173589 ], [ 4949819.341075172647834, 3892052.773158974945545 ], [ 4949821.661662698723376, 3892037.846365420147777 ], [ 4949844.705407037399709, 3892041.14801922114566 ], [ 4949842.384419743902981, 3892056.438938679173589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949098.377632276155055, 3888592.073291439097375 ], [ 4949119.072602551430464, 3888640.523697693832219 ], [ 4949079.00526771042496, 3888657.596194219775498 ], [ 4949058.598742173053324, 3888608.781989173498005 ], [ 4949098.377632276155055, 3888592.073291439097375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948243.242662850767374, 3900326.707672731950879 ], [ 4948217.316677332855761, 3900332.507727585732937 ], [ 4948206.423019422218204, 3900282.2468541120179 ], [ 4948232.061048946343362, 3900276.446499791927636 ], [ 4948243.242662850767374, 3900326.707672731950879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948224.606322230771184, 3889334.366983002051711 ], [ 4948235.792178266681731, 3889384.991957093589008 ], [ 4948201.210257413797081, 3889392.603952982462943 ], [ 4948198.628867419436574, 3889380.949279180727899 ], [ 4948166.064147787168622, 3889388.199214400257915 ], [ 4948160.900969792157412, 3889365.254001250956208 ], [ 4948184.820319276303053, 3889359.816036417149007 ], [ 4948186.541373140178621, 3889367.464442167896777 ], [ 4948200.085885373875499, 3889364.564993103966117 ], [ 4948194.923096728511155, 3889341.255646402016282 ], [ 4948224.606322230771184, 3889334.366983002051711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947403.306266533210874, 3891275.085448715370148 ], [ 4947431.829441064968705, 3891273.65669755730778 ], [ 4947432.954175811260939, 3891302.059783962089568 ], [ 4947404.431031351909041, 3891303.488533958327025 ], [ 4947403.306266533210874, 3891275.085448715370148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947196.714657341130078, 3891300.738373664207757 ], [ 4947188.8653918588534, 3891373.920547457411885 ], [ 4947145.654977230355144, 3891369.50935627007857 ], [ 4947153.504477171227336, 3891295.963042298797518 ], [ 4947196.714657341130078, 3891300.738373664207757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944797.626272604800761, 3891734.7555913887918 ], [ 4944827.585773929953575, 3891737.330745285376906 ], [ 4944822.638058679178357, 3891794.49452783446759 ], [ 4944795.847324792295694, 3891792.286282456479967 ], [ 4944797.012453407980502, 3891777.722176349256188 ], [ 4944778.575765749439597, 3891776.249522580765188 ], [ 4944783.524665522389114, 3891717.62922105519101 ], [ 4944798.792680371552706, 3891718.734974357299507 ], [ 4944797.626272604800761, 3891734.7555913887918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944239.428774640895426, 3892932.254505537450314 ], [ 4944235.660686256363988, 3892959.196785422973335 ], [ 4944197.638411464169621, 3892954.06650597602129 ], [ 4944201.406462450511754, 3892927.124220839701593 ], [ 4944239.428774640895426, 3892932.254505537450314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944074.309103712439537, 3891972.271624463610351 ], [ 4944111.75753762666136, 3891976.308852816931903 ], [ 4944103.336350195109844, 3892054.589257094077766 ], [ 4944074.817894035018981, 3892051.652004702482373 ], [ 4944077.141475090757012, 3892029.442156710196286 ], [ 4944068.211288806982338, 3892028.706319481600076 ], [ 4944074.309103712439537, 3891972.271624463610351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943612.130858666263521, 3892760.949195338413119 ], [ 4943646.987036196514964, 3892763.162981128320098 ], [ 4943646.110654843971133, 3892777.727385410107672 ], [ 4943651.295835451222956, 3892778.095833806786686 ], [ 4943650.125605472363532, 3892799.578432167414576 ], [ 4943642.347992344759405, 3892798.843696219380945 ], [ 4943641.471614632755518, 3892813.40810094634071 ], [ 4943633.693702097050846, 3892813.03749560425058 ], [ 4943632.524700284004211, 3892833.063582682982087 ], [ 4943604.870356338098645, 3892831.219931381288916 ], [ 4943606.329236514866352, 3892809.009313988965005 ], [ 4943597.687075892463326, 3892808.638000397477299 ], [ 4943598.855447391979396, 3892789.340168309397995 ], [ 4943610.378134517930448, 3892790.078006285242736 ], [ 4943612.130858666263521, 3892760.949195338413119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943102.32652173936367, 3892989.566726631484926 ], [ 4943063.4395388700068, 3892984.801476886030287 ], [ 4943067.789997532963753, 3892948.756296090316027 ], [ 4943135.482420119456947, 3892956.822141651064157 ], [ 4943129.389463021419942, 3893009.979928476270288 ], [ 4943100.296050917357206, 3893006.679111137520522 ], [ 4943102.32652173936367, 3892989.566726631484926 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993387.755439348518848, 3910477.491721022408456 ], [ 4993391.673496094532311, 3910519.377584743313491 ], [ 4993406.647809212096035, 3910517.961264010984451 ], [ 4993408.327242055907845, 3910535.80831252085045 ], [ 4993393.065046650357544, 3910537.223859280813485 ], [ 4993397.262177064083517, 3910582.387675755657256 ], [ 4993356.65870316978544, 3910586.284137765876949 ], [ 4993346.863915687426925, 3910481.387424560729414 ], [ 4993387.755439348518848, 3910477.491721022408456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992367.064011656679213, 3904751.332220409065485 ], [ 4992396.150271988473833, 3904750.31681604962796 ], [ 4992397.500383796170354, 3904784.184675588272512 ], [ 4992368.126206281594932, 3904785.199316429439932 ], [ 4992367.064011656679213, 3904751.332220409065485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992104.222238480113447, 3913461.793137976899743 ], [ 4992165.576961617916822, 3913446.66140418080613 ], [ 4992183.807763958349824, 3913519.536348489578813 ], [ 4992122.74009601958096, 3913535.032932329457253 ], [ 4992104.222238480113447, 3913461.793137976899743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990000.840287955477834, 3900283.106646089814603 ], [ 4990014.376382914371789, 3900283.141274817287922 ], [ 4990014.042731494642794, 3900300.98284152103588 ], [ 4990000.507576962932944, 3900300.584084310103208 ], [ 4990000.840287955477834, 3900283.106646089814603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989192.869157605804503, 3905911.983328558970243 ], [ 4989207.109692231751978, 3905973.92182134045288 ], [ 4989171.095893043093383, 3905982.205808358732611 ], [ 4989182.202236431650817, 3906031.02760687796399 ], [ 4989155.69607378449291, 3906037.150858769658953 ], [ 4989130.349933847784996, 3905926.026480896398425 ], [ 4989192.869157605804503, 3905911.983328558970243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989172.498019211925566, 3909755.716313155833632 ], [ 4989118.375481605529785, 3909754.487142772879452 ], [ 4989120.590391005389392, 3909675.475856410805136 ], [ 4989174.424265769310296, 3909677.068434101063758 ], [ 4989172.498019211925566, 3909755.716313155833632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989102.676902844570577, 3908218.534797687083483 ], [ 4989108.548356643877923, 3908173.761297322344035 ], [ 4989151.72217345610261, 3908179.332360483240336 ], [ 4989147.019799405708909, 3908217.190283560659736 ], [ 4989131.476880987174809, 3908215.330347676761448 ], [ 4989130.595651314593852, 3908222.246643726713955 ], [ 4989102.676902844570577, 3908218.534797687083483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988308.867969257757068, 3905110.128561680205166 ], [ 4988344.561077544465661, 3905115.315505833830684 ], [ 4988336.944374817423522, 3905167.367371197324246 ], [ 4988301.539284009486437, 3905162.181155499536544 ], [ 4988308.867969257757068, 3905110.128561680205166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988287.304215616546571, 3908097.780821883585304 ], [ 4988298.40218348428607, 3908150.243623140733689 ], [ 4988268.443300560116768, 3908156.359136948827654 ], [ 4988262.466049897484481, 3908128.670142724644393 ], [ 4988252.671391423791647, 3908130.830512405838817 ], [ 4988247.54970177821815, 3908106.420849815942347 ], [ 4988287.304215616546571, 3908097.780821883585304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988214.01042531337589, 3905389.909567509777844 ], [ 4988213.069454722106457, 3905420.858450759202242 ], [ 4988173.047546902671456, 3905419.666351349558681 ], [ 4988173.699617253616452, 3905389.080879413057119 ], [ 4988214.01042531337589, 3905389.909567509777844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988082.17069816403091, 3904099.826001077424735 ], [ 4988106.674570772796869, 3904088.962998506147414 ], [ 4988121.281762517988682, 3904120.678810250945389 ], [ 4988144.920842581428587, 3904110.177822270896286 ], [ 4988166.973245523869991, 3904158.662257312331349 ], [ 4988124.018200257793069, 3904178.218446308746934 ], [ 4988116.00061425473541, 3904159.991904634982347 ], [ 4988108.216622043401003, 3904163.613855570089072 ], [ 4988094.756752853281796, 3904133.721562989521772 ], [ 4988097.063156264834106, 3904132.634904692415148 ], [ 4988082.17069816403091, 3904099.826001077424735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987447.120080168358982, 3912317.821606446523219 ], [ 4987415.434313334524632, 3912325.754488523118198 ], [ 4987411.154779535718262, 3912310.086202687118202 ], [ 4987403.089848231524229, 3912311.887010143138468 ], [ 4987397.954754369333386, 3912292.939417202025652 ], [ 4987403.427934224717319, 3912291.496359621640295 ], [ 4987393.733479225076735, 3912253.602592819370329 ], [ 4987428.299856912344694, 3912244.948513976298273 ], [ 4987447.120080168358982, 3912317.821606446523219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987169.067082810215652, 3904910.677102406509221 ], [ 4987117.489680868573487, 3904924.387643553316593 ], [ 4987110.643974126316607, 3904897.789232338313013 ], [ 4987115.830690455622971, 3904896.345417094882578 ], [ 4987102.992396912537515, 3904847.520272513385862 ], [ 4987148.230502341873944, 3904835.614817044232041 ], [ 4987152.510508640669286, 3904851.647118315566331 ], [ 4987144.442465418018401, 3904853.812124764081091 ], [ 4987147.865755960345268, 3904866.929269175510854 ], [ 4987156.798547371290624, 3904864.402252671774477 ], [ 4987169.067082810215652, 3904910.677102406509221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987067.622958606109023, 3908941.738227233756334 ], [ 4987014.344597864896059, 3908947.798025021329522 ], [ 4987014.346380408853292, 3908947.069763679523021 ], [ 4986907.502709660679102, 3908958.82484202971682 ], [ 4986902.709688131697476, 3908917.301985438913107 ], [ 4986934.100725380703807, 3908913.737379767931998 ], [ 4986933.536478586494923, 3908909.002273447345942 ], [ 4987013.597625421360135, 3908900.09479392785579 ], [ 4987013.599407942034304, 3908899.366532613988966 ], [ 4987031.743067554198205, 3908897.22615081211552 ], [ 4987032.024736697785556, 3908899.775770307052881 ], [ 4987062.552082759328187, 3908896.209200079087168 ], [ 4987067.622958606109023, 3908941.738227233756334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987027.518386544659734, 3896033.90959091624245 ], [ 4987050.544364244677126, 3896041.248545112088323 ], [ 4987042.997200215235353, 3896064.898522517178208 ], [ 4987019.971240761689842, 3896057.559574681799859 ], [ 4987027.518386544659734, 3896033.90959091624245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986941.277819918468595, 3908568.921163021121174 ], [ 4986995.418872586451471, 3908563.591596456710249 ], [ 4986998.788291335105896, 3908598.556587094906718 ], [ 4986944.647308402694762, 3908603.886146991513669 ], [ 4986941.277819918468595, 3908568.921163021121174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986759.250371831469238, 3898790.813193884678185 ], [ 4986779.501295044086874, 3898754.085368721280247 ], [ 4986826.961256025359035, 3898780.054390052799135 ], [ 4986806.710287266410887, 3898816.782180033158511 ], [ 4986759.250371831469238, 3898790.813193884678185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986270.311878702603281, 3896241.078004428185523 ], [ 4986251.688547055236995, 3896318.956791085656732 ], [ 4986223.187983946874738, 3896312.333546887617558 ], [ 4986241.811237474903464, 3896234.454740779474378 ], [ 4986270.311878702603281, 3896241.078004428185523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986065.141493260860443, 3910721.73233035299927 ], [ 4986037.199463636614382, 3910728.583465911913663 ], [ 4986030.928219819441438, 3910702.714885181281716 ], [ 4986039.570199565030634, 3910700.550925036426634 ], [ 4986033.297195286490023, 3910675.41060640104115 ], [ 4986075.353832520544529, 3910665.316321093589067 ], [ 4986084.476706830784678, 3910702.479922851081938 ], [ 4986061.720191253349185, 3910707.887014293577522 ], [ 4986065.141493260860443, 3910721.73233035299927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986002.747355728410184, 3904954.450245900079608 ], [ 4986022.956655367277563, 3904932.651035803835839 ], [ 4986015.199497974477708, 3904925.349700625985861 ], [ 4986037.141811931505799, 3904901.369886856526136 ], [ 4986110.120040194131434, 3904968.546205535531044 ], [ 4986092.220459679141641, 3904987.802000368945301 ], [ 4986060.615161800757051, 3904958.959333152044564 ], [ 4986036.076041401363909, 3904985.117659334558994 ], [ 4986002.747355728410184, 3904954.450245900079608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985720.299604733474553, 3901458.836733601056039 ], [ 4985703.942716401070356, 3901434.400714782997966 ], [ 4985731.34541807603091, 3901416.25988997053355 ], [ 4985758.033210918307304, 3901456.014227799139917 ], [ 4985738.418473779223859, 3901469.075875965878367 ], [ 4985728.08754940982908, 3901453.757580782286823 ], [ 4985720.299604733474553, 3901458.836733601056039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985622.629742102697492, 3906044.112415578216314 ], [ 4985614.065670284442604, 3906013.140667976811528 ], [ 4985692.149973234161735, 3905991.479887358378619 ], [ 4985707.566885855048895, 3906046.500819330103695 ], [ 4985703.245161701925099, 3906047.582849307451397 ], [ 4985706.669000352732837, 3906060.699819701258093 ], [ 4985669.500283480621874, 3906070.806387711316347 ], [ 4985659.222597271203995, 3906034.004402522463351 ], [ 4985622.629742102697492, 3906044.112415578216314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985176.157801249064505, 3907443.499360968824476 ], [ 4985189.767407957464457, 3907411.123955303337425 ], [ 4985197.534467418678105, 3907414.055498688016087 ], [ 4985206.220771772786975, 3907393.684755835682154 ], [ 4985235.561458342708647, 3907405.406847869511694 ], [ 4985213.551682849414647, 3907458.881914742756635 ], [ 4985176.157801249064505, 3907443.499360968824476 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984901.471067043021321, 3909025.367627847008407 ], [ 4984876.334224357269704, 3909062.813768277410418 ], [ 4984850.750067473389208, 3909046.003085393924266 ], [ 4984875.887752361595631, 3909008.192790679633617 ], [ 4984901.471067043021321, 3909025.367627847008407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984603.91289012786001, 3909331.992453724611551 ], [ 4984631.588712111115456, 3909316.400014351122081 ], [ 4984654.813651992939413, 3909356.873560284730047 ], [ 4984627.136999120935798, 3909372.830106981098652 ], [ 4984603.91289012786001, 3909331.992453724611551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984510.335978250019252, 3906155.444167630281299 ], [ 4984534.249501775018871, 3906149.310229748953134 ], [ 4984540.23961912561208, 3906173.357059468515217 ], [ 4984563.576397713273764, 3906167.585921371821314 ], [ 4984560.724461785517633, 3906155.926973075140268 ], [ 4984587.518246325664222, 3906149.435736778657883 ], [ 4984600.069101387634873, 3906199.715560113545507 ], [ 4984566.072610070928931, 3906208.010472011286765 ], [ 4984564.35956453345716, 3906201.816188944969326 ], [ 4984548.801444790326059, 3906205.784988433122635 ], [ 4984551.65509610529989, 3906216.715675550047308 ], [ 4984527.16660921741277, 3906222.484111936297268 ], [ 4984510.335978250019252, 3906155.444167630281299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984200.664004088379443, 3916779.399409852456301 ], [ 4984227.459072696976364, 3916767.809915225487202 ], [ 4984251.793554333969951, 3916823.579569383524358 ], [ 4984225.286355344578624, 3916835.169714968185872 ], [ 4984200.664004088379443, 3916779.399409852456301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984147.546322480775416, 3914511.082475559320301 ], [ 4984183.817926097661257, 3914510.075026341248304 ], [ 4984184.617492107674479, 3914537.386952043045312 ], [ 4984148.346777946688235, 3914538.030268168542534 ], [ 4984147.546322480775416, 3914511.082475559320301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984003.763248266652226, 3907178.196218341123313 ], [ 4983979.276605507358909, 3907183.601027118973434 ], [ 4983976.712454325519502, 3907171.942805708386004 ], [ 4983953.378373680636287, 3907176.986196342855692 ], [ 4983956.227913194335997, 3907189.737478618975729 ], [ 4983931.165434698574245, 3907195.140987408813089 ], [ 4983928.60041438229382, 3907183.846900878474116 ], [ 4983904.689648080617189, 3907189.25312093552202 ], [ 4983907.539209360256791, 3907202.004398147575557 ], [ 4983882.476752186194062, 3907207.407952393405139 ], [ 4983879.913410085253417, 3907195.385609669145197 ], [ 4983851.682048828341067, 3907201.510071250144392 ], [ 4983841.711448233574629, 3907155.606167199090123 ], [ 4983870.230783817358315, 3907149.482366333715618 ], [ 4983872.510449583642185, 3907159.683384898118675 ], [ 4983890.94720065407455, 3907155.720903716050088 ], [ 4983888.383008451201022, 3907144.062690928578377 ], [ 4983918.919565523043275, 3907137.215379603672773 ], [ 4983921.199213878251612, 3907147.416402220726013 ], [ 4983939.34805210493505, 3907143.453282713424414 ], [ 4983936.7838796954602, 3907131.795065404847264 ], [ 4983966.455827132798731, 3907125.309923345223069 ], [ 4983968.734608540311456, 3907135.875080280471593 ], [ 4983993.221292607486248, 3907130.470262051559985 ], [ 4984003.763248266652226, 3907178.196218341123313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983890.871092642657459, 3905582.669743456877768 ], [ 4983881.939698160625994, 3905584.833716709166765 ], [ 4983887.645128563046455, 3905607.787331446073949 ], [ 4983851.919593716040254, 3905616.443246698006988 ], [ 4983834.238320756703615, 3905542.847398072946817 ], [ 4983878.894509231671691, 3905532.391612542327493 ], [ 4983890.871092642657459, 3905582.669743456877768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983034.006458269432187, 3917321.435865734703839 ], [ 4983058.712844297289848, 3917341.520113485865295 ], [ 4983037.931224395520985, 3917366.961725315079093 ], [ 4983013.225683675147593, 3917346.513363629113883 ], [ 4983034.006458269432187, 3917321.435865734703839 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982903.218948582187295, 3916494.549923119135201 ], [ 4982892.280637355521321, 3916494.888953052926809 ], [ 4982892.803647731430829, 3916517.830623769201338 ], [ 4982865.746139943599701, 3916518.496811541728675 ], [ 4982864.45317161269486, 3916454.770317518152297 ], [ 4982902.448235593736172, 3916454.12923077121377 ], [ 4982903.218948582187295, 3916494.549923119135201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982673.572311712428927, 3907662.695770817343146 ], [ 4982677.269525003619492, 3907682.731506390497088 ], [ 4982695.127395748160779, 3907679.859278517309576 ], [ 4982705.64145349804312, 3907740.693441017530859 ], [ 4982631.616357259452343, 3907753.268868050538003 ], [ 4982617.4048832366243, 3907672.399006080348045 ], [ 4982673.572311712428927, 3907662.695770817343146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982068.540571005083621, 3905545.347446703352034 ], [ 4982083.156553925946355, 3905575.967613756656647 ], [ 4982052.025504409335554, 3905590.462433251086622 ], [ 4982037.698263206519186, 3905559.478804169688374 ], [ 4982068.540571005083621, 3905545.347446703352034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981508.259403147734702, 3904104.308241314254701 ], [ 4981514.388244024477899, 3904067.908825832884759 ], [ 4981547.491556858643889, 3904073.44505625590682 ], [ 4981550.703254356980324, 3904053.789157136809081 ], [ 4981577.185913724824786, 3904058.218173961155117 ], [ 4981567.557316988706589, 3904114.272825730964541 ], [ 4981508.259403147734702, 3904104.308241314254701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980985.245387149043381, 3916827.040414844173938 ], [ 4980994.677189107052982, 3916856.920418886467814 ], [ 4980974.514905699528754, 3916863.430000452324748 ], [ 4980964.796068504452705, 3916833.18523081112653 ], [ 4980985.245387149043381, 3916827.040414844173938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981002.062338679097593, 3903049.745622884947807 ], [ 4981062.466029750183225, 3903081.559420680627227 ], [ 4981046.270727932453156, 3903112.474545718170702 ], [ 4980985.867087424732745, 3903080.660783727187663 ], [ 4981002.062338679097593, 3903049.745622884947807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980933.441715770401061, 3905031.925371574237943 ], [ 4980872.601618755608797, 3905068.931755385827273 ], [ 4980820.09632655698806, 3904983.244341855403036 ], [ 4980880.936544478870928, 3904946.237841107882559 ], [ 4980933.441715770401061, 3905031.925371574237943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980917.422684826888144, 3906410.493311087600887 ], [ 4980882.554909818805754, 3906422.796399515587837 ], [ 4980869.964084159582853, 3906387.447647780179977 ], [ 4980946.903830723837018, 3906360.30856345128268 ], [ 4980956.059557104483247, 3906386.546415714081377 ], [ 4980914.276406452059746, 3906401.018890503328294 ], [ 4980917.422684826888144, 3906410.493311087600887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980871.401235676370561, 3904441.894269419368356 ], [ 4980884.292252408340573, 3904472.145800699479878 ], [ 4980856.04580011870712, 3904484.099477224051952 ], [ 4980843.154757414013147, 3904453.847959279548377 ], [ 4980871.401235676370561, 3904441.894269419368356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980837.978517843410373, 3899904.746021076105535 ], [ 4980818.662742102518678, 3899913.442339664790779 ], [ 4980822.101865284144878, 3899921.096705826930702 ], [ 4980802.497293809428811, 3899930.156526631209999 ], [ 4980786.446401732973754, 3899895.164424494840205 ], [ 4980825.366784485988319, 3899877.408264661673456 ], [ 4980837.978517843410373, 3899904.746021076105535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980768.869248863309622, 3907050.30818676110357 ], [ 4980747.150368811562657, 3907106.336451070383191 ], [ 4980714.065942923538387, 3907093.882717746309936 ], [ 4980736.074305768124759, 3907037.126803670078516 ], [ 4980730.895602411590517, 3907035.294678193051368 ], [ 4980737.845415813848376, 3907017.467584597412497 ], [ 4980782.724555799737573, 3907034.681194911710918 ], [ 4980775.4851741977036, 3907053.235900126863271 ], [ 4980768.869248863309622, 3907050.30818676110357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980529.917998664081097, 3907558.108619194012135 ], [ 4980565.117078780196607, 3907525.414388876408339 ], [ 4980592.406366609968245, 3907554.241098831873387 ], [ 4980557.206487098708749, 3907587.299424553755671 ], [ 4980529.917998664081097, 3907558.108619194012135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980399.389292704872787, 3903155.102872579824179 ], [ 4980385.508982196450233, 3903181.289783184416592 ], [ 4980346.102601327002048, 3903160.447611931711435 ], [ 4980366.923836559988558, 3903120.80308926012367 ], [ 4980376.704456583596766, 3903125.558313765097409 ], [ 4980369.473926911130548, 3903139.743528991006315 ], [ 4980399.389292704872787, 3903155.102872579824179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980384.138191333040595, 3901972.006972767412663 ], [ 4980357.894815228879452, 3901988.699271686375141 ], [ 4980337.517619220539927, 3901956.975057940930128 ], [ 4980363.473029258660972, 3901940.28210600046441 ], [ 4980384.138191333040595, 3901972.006972767412663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980224.311105626635253, 3899607.354319167789072 ], [ 4980197.499890295788646, 3899619.311812380794436 ], [ 4980179.729547235183418, 3899579.946743419859558 ], [ 4980220.378840140998363, 3899561.829370949417353 ], [ 4980233.848973324522376, 3899592.081764957867563 ], [ 4980220.298948800191283, 3899598.24225185578689 ], [ 4980224.311105626635253, 3899607.354319167789072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980045.661221761256456, 3907016.308200511615723 ], [ 4980105.811446503736079, 3907028.820380314253271 ], [ 4980097.956798038445413, 3907065.580529902596027 ], [ 4980070.615467171184719, 3907060.058680457994342 ], [ 4980072.363769059069455, 3907050.595070210285485 ], [ 4980039.842075698077679, 3907043.969515497330576 ], [ 4980045.661221761256456, 3907016.308200511615723 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980034.280048038810492, 3903400.090422603767365 ], [ 4980021.838468213565648, 3903427.008933856617659 ], [ 4979978.973361929878592, 3903407.616259343456477 ], [ 4979991.415703601203859, 3903380.33359891269356 ], [ 4980034.280048038810492, 3903400.090422603767365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980001.914463828317821, 3917012.03667149413377 ], [ 4979964.782143903896213, 3917013.412014354486018 ], [ 4979963.689753998070955, 3916986.463675029110163 ], [ 4980000.822111112065613, 3916985.088330673053861 ], [ 4980001.914463828317821, 3917012.03667149413377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979908.342417332343757, 3903047.700220029335469 ], [ 4979920.132591602392495, 3903055.372714820783585 ], [ 4979924.756048891693354, 3903048.100182631984353 ], [ 4979967.604265613481402, 3903075.503617259673774 ], [ 4979947.955355258658528, 3903106.047724371775985 ], [ 4979893.316999100148678, 3903070.971832258626819 ], [ 4979908.342417332343757, 3903047.700220029335469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979713.017531546764076, 3899774.101500106044114 ], [ 4979754.753251746296883, 3899785.844494193326682 ], [ 4979746.627230758778751, 3899814.228993728756905 ], [ 4979704.89155116211623, 3899802.486012056935579 ], [ 4979713.017531546764076, 3899774.101500106044114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979577.455533688887954, 3902253.902236073743552 ], [ 4979602.256678503006697, 3902237.934304728638381 ], [ 4979630.671884056180716, 3902281.691752363927662 ], [ 4979605.870762566104531, 3902297.659657897427678 ], [ 4979577.455533688887954, 3902253.902236073743552 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979153.915215014480054, 3909298.210336983203888 ], [ 4979132.560792738571763, 3909321.104683165438473 ], [ 4979077.967747474089265, 3909270.372682728804648 ], [ 4979099.322163271717727, 3909247.478293869644403 ], [ 4979153.915215014480054, 3909298.210336983203888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979002.417574760504067, 3901018.620482004713267 ], [ 4979036.716279474087059, 3901005.949626963119954 ], [ 4979054.184469113126397, 3901052.231808591634035 ], [ 4979001.439355479553342, 3901071.78148363949731 ], [ 4978993.136046496219933, 3901049.187529981136322 ], [ 4979011.294525567442179, 3901042.308063494507223 ], [ 4979002.417574760504067, 3901018.620482004713267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978825.143683616071939, 3907543.113503079861403 ], [ 4978836.716841611079872, 3907516.920779890846461 ], [ 4978864.619752840138972, 3907528.996961013413966 ], [ 4978853.046572771854699, 3907555.189672386739403 ], [ 4978825.143683616071939, 3907543.113503079861403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978813.462964938953519, 3905468.992312526330352 ], [ 4978835.075335421599448, 3905461.391850287094712 ], [ 4978839.941552174277604, 3905474.875156226102263 ], [ 4978863.859058639034629, 3905466.55139383347705 ], [ 4978876.452177195809782, 3905502.263315770309418 ], [ 4978830.922362595796585, 3905518.187515561934561 ], [ 4978813.462964938953519, 3905468.992312526330352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978556.034672751091421, 3902094.400191055610776 ], [ 4978572.693394226953387, 3902115.191188750322908 ], [ 4978530.577340648509562, 3902148.237318313680589 ], [ 4978503.292741290293634, 3902113.586726680397987 ], [ 4978536.754585159942508, 3902087.44059647526592 ], [ 4978547.380444269627333, 3902101.300229109358042 ], [ 4978556.034672751091421, 3902094.400191055610776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978532.187214521691203, 3908957.506004351191223 ], [ 4978569.302626057527959, 3908969.237402220722288 ], [ 4978553.359685808420181, 3909019.817826809361577 ], [ 4978515.955652699805796, 3909008.449967899359763 ], [ 4978532.187214521691203, 3908957.506004351191223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978510.903657445684075, 3904623.560300898738205 ], [ 4978552.384780082851648, 3904616.366090076975524 ], [ 4978557.502751734107733, 3904646.964060602709651 ], [ 4978516.309630089439452, 3904654.158877313137054 ], [ 4978510.903657445684075, 3904623.560300898738205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978388.845032814890146, 3907315.327770186122507 ], [ 4978414.791743893176317, 3907299.725273227784783 ], [ 4978427.416358074173331, 3907320.507671305444092 ], [ 4978376.099618092179298, 3907351.349760136567056 ], [ 4978353.145221579819918, 3907313.795349009335041 ], [ 4978378.515285445377231, 3907298.555723812896758 ], [ 4978388.845032814890146, 3907315.327770186122507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977997.179976709187031, 3908308.943113387096673 ], [ 4977976.416197571903467, 3908324.921095156110823 ], [ 4977960.048801344819367, 3908304.130995948333293 ], [ 4977980.813355562277138, 3908287.788870925549418 ], [ 4977997.179976709187031, 3908308.943113387096673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977995.774860824458301, 3907883.633520248811692 ], [ 4978034.70339342020452, 3907855.677572849206626 ], [ 4978052.21576120890677, 3907879.74732283083722 ], [ 4978013.286475848406553, 3907908.067375996615738 ], [ 4977995.774860824458301, 3907883.633520248811692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977901.098193228244781, 3909089.076345507986844 ], [ 4977876.289018771611154, 3909112.328533802181482 ], [ 4977859.052934153936803, 3909094.085582566447556 ], [ 4977883.862110430374742, 3909070.833378619048744 ], [ 4977901.098193228244781, 3909089.076345507986844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977829.258519033901393, 3906836.038116659037769 ], [ 4977851.469920376315713, 3906816.785894149914384 ], [ 4977881.343477578833699, 3906850.71312369313091 ], [ 4977859.132082728669047, 3906869.965321925468743 ], [ 4977829.258519033901393, 3906836.038116659037769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977756.226463166996837, 3906924.004405588842928 ], [ 4977791.129692936316133, 3906893.854862180072814 ], [ 4977810.087162582203746, 3906915.742686513345689 ], [ 4977775.183939816430211, 3906945.892205700278282 ], [ 4977756.226463166996837, 3906924.004405588842928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977661.05465095397085, 3911385.521364635787904 ], [ 4977690.916459431871772, 3911422.725662149023265 ], [ 4977665.539965875446796, 3911443.063817105256021 ], [ 4977635.678145044483244, 3911405.859547317959368 ], [ 4977661.05465095397085, 3911385.521364635787904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977616.114664726890624, 3913732.266721761319786 ], [ 4977659.630909170024097, 3913708.689377536997199 ], [ 4977685.152367958799005, 3913755.352089688181877 ], [ 4977648.840256411582232, 3913775.303180413320661 ], [ 4977635.650022562593222, 3913750.878535603173077 ], [ 4977628.44517363794148, 3913754.868883990682662 ], [ 4977616.114664726890624, 3913732.266721761319786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977556.759894344955683, 3904416.902168976608664 ], [ 4977531.697658143937588, 3904421.58337748516351 ], [ 4977523.148904229514301, 3904378.597952119074762 ], [ 4977548.499137172475457, 3904373.917339040432125 ], [ 4977556.759894344955683, 3904416.902168976608664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977535.678990532644093, 3905545.302066257689148 ], [ 4977478.955224642530084, 3905544.455047765746713 ], [ 4977479.595120036974549, 3905513.8693159641698 ], [ 4977536.31818775460124, 3905515.080465991981328 ], [ 4977535.678990532644093, 3905545.302066257689148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977492.914806148037314, 3916342.484814854338765 ], [ 4977464.641172989271581, 3916374.105308920145035 ], [ 4977443.094327219761908, 3916354.76110813068226 ], [ 4977471.079362942837179, 3916323.504121995996684 ], [ 4977492.914806148037314, 3916342.484814854338765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977492.846548743546009, 3913488.038828231394291 ], [ 4977481.099146007560194, 3913461.796617168001831 ], [ 4977517.115304671227932, 3913445.850152611732483 ], [ 4977539.179121736437082, 3913494.326143343001604 ], [ 4977495.959646044299006, 3913513.53469812264666 ], [ 4977485.931035806424916, 3913491.301552862860262 ], [ 4977492.846548743546009, 3913488.038828231394291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977443.798802865669131, 3909274.551921117585152 ], [ 4977459.87885990832001, 3909294.976984954904765 ], [ 4977440.269304850138724, 3909310.229538074228913 ], [ 4977424.189242098480463, 3909289.804485769476742 ], [ 4977443.798802865669131, 3909274.551921117585152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977258.741493687033653, 3909242.485974129289389 ], [ 4977286.831733261235058, 3909302.262297156266868 ], [ 4977260.895199247635901, 3909314.224592144601047 ], [ 4977232.804914645850658, 3909254.448295793030411 ], [ 4977258.741493687033653, 3909242.485974129289389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977234.277224102057517, 3913521.363144340459257 ], [ 4977240.684524344280362, 3913485.691405919380486 ], [ 4977267.733544623479247, 3913490.481533355079591 ], [ 4977269.482728320173919, 3913479.925306820776314 ], [ 4977293.36680253315717, 3913483.980593103915453 ], [ 4977285.210243864916265, 3913530.208544584922493 ], [ 4977234.277224102057517, 3913521.363144340459257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976921.419375971890986, 3902937.569216148927808 ], [ 4976983.822798102162778, 3902979.573650341015309 ], [ 4976957.825961449183524, 3903017.753526472020894 ], [ 4976943.446945631876588, 3903008.256311979610473 ], [ 4976923.226237752474844, 3903038.437306050676852 ], [ 4976930.703714841976762, 3903043.186503658536822 ], [ 4976906.728098018094897, 3903078.821699626743793 ], [ 4976844.899225329980254, 3903037.546892739832401 ], [ 4976870.60790937859565, 3902999.366310893092304 ], [ 4976884.986955627799034, 3903008.863486360292882 ], [ 4976905.495615745894611, 3902978.683060435112566 ], [ 4976897.443677835166454, 3902973.204418129753321 ], [ 4976921.419375971890986, 3902937.569216148927808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976742.154299647547305, 3911512.146612822078168 ], [ 4976755.64336194563657, 3911532.201800479087979 ], [ 4976743.53504033293575, 3911540.551848761271685 ], [ 4976730.045973226428032, 3911520.496667069848627 ], [ 4976742.154299647547305, 3911512.146612822078168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976692.032219518907368, 3911805.898586852476001 ], [ 4976657.72060071118176, 3911832.04538946878165 ], [ 4976638.196679024025798, 3911806.879939638543874 ], [ 4976672.508310813456774, 3911780.73311250237748 ], [ 4976692.032219518907368, 3911805.898586852476001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976631.535686959512532, 3909032.901984114199877 ], [ 4976641.91314628534019, 3909026.733123084995896 ], [ 4976635.313022524118423, 3909016.159672796260566 ], [ 4976655.203483995981514, 3909004.184307690709829 ], [ 4976660.654972897842526, 3909013.298863702919334 ], [ 4976672.474242519587278, 3909006.04059037566185 ], [ 4976689.977307022549212, 3909034.843172757420689 ], [ 4976648.178056967444718, 3909060.246235341764987 ], [ 4976631.535686959512532, 3909032.901984114199877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976594.438496483489871, 3908732.416211817413568 ], [ 4976655.550818043760955, 3908696.128914076834917 ], [ 4976669.61118230689317, 3908719.098258359357715 ], [ 4976656.062816513702273, 3908727.081231215503067 ], [ 4976658.070688152685761, 3908730.726696684490889 ], [ 4976610.506769755855203, 3908759.030986623372883 ], [ 4976594.438496483489871, 3908732.416211817413568 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976549.803786321543157, 3902160.110306550282985 ], [ 4976739.475598197430372, 3902212.936127320863307 ], [ 4976723.520123923197389, 3902269.343500329647213 ], [ 4976707.402219428680837, 3902264.940662857145071 ], [ 4976710.302316058427095, 3902255.115109155885875 ], [ 4976695.624305551871657, 3902250.715250287670642 ], [ 4976693.01369705889374, 3902259.813140654936433 ], [ 4976677.759724539704621, 3902255.412103316746652 ], [ 4976680.371830350719392, 3902245.585952498950064 ], [ 4976664.829866647720337, 3902241.184328568633646 ], [ 4976662.219267672859132, 3902250.28222188167274 ], [ 4976646.389322756789625, 3902245.880014826077968 ], [ 4976649.00066739320755, 3902236.417990512214601 ], [ 4976633.458693286404014, 3902232.016384748741984 ], [ 4976631.136085099540651, 3902241.114874490071088 ], [ 4976616.457303901202977, 3902237.079188389703631 ], [ 4976619.069389039650559, 3902227.253031722269952 ], [ 4976602.664211029186845, 3902222.485534375533462 ], [ 4976600.053631324321032, 3902231.583433612715453 ], [ 4976583.648452614434063, 3902226.81594785861671 ], [ 4976586.54775826819241, 3902217.35451051639393 ], [ 4976571.580976091325283, 3902213.318256020080298 ], [ 4976568.970406040549278, 3902222.416158236097544 ], [ 4976552.564466951414943, 3902218.012820967007428 ], [ 4976555.465261263772845, 3902207.82312134001404 ], [ 4976537.908134393393993, 3902203.053293070290238 ], [ 4976549.803786321543157, 3902160.110306550282985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976494.122644945979118, 3909351.963375899940729 ], [ 4976535.345485939644277, 3909326.558884175028652 ], [ 4976550.841397643089294, 3909351.351792844478041 ], [ 4976538.445753649808466, 3909358.973067415412515 ], [ 4976549.350160817615688, 3909376.473875053226948 ], [ 4976520.522249474190176, 3909394.62118839751929 ], [ 4976494.122644945979118, 3909351.963375899940729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976331.507228616625071, 3912977.666257784701884 ], [ 4976343.549060081131756, 3913001.3596250442788 ], [ 4976319.342959131114185, 3913013.690530904568732 ], [ 4976307.301111912354827, 3912989.997174304444343 ], [ 4976331.507228616625071, 3912977.666257784701884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976285.315405546687543, 3905733.88130757259205 ], [ 4976254.189917270094156, 3905747.290454289875925 ], [ 4976236.422365133650601, 3905705.743065167218447 ], [ 4976267.835091059096158, 3905692.698618033435196 ], [ 4976285.315405546687543, 3905733.88130757259205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976262.026487001217902, 3900793.300690346863121 ], [ 4976267.840086851269007, 3900767.095179310999811 ], [ 4976313.611440880224109, 3900777.020444905385375 ], [ 4976307.509056103415787, 3900803.589485404081643 ], [ 4976262.026487001217902, 3900793.300690346863121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976125.606733476743102, 3900325.478036653250456 ], [ 4976112.311834719963372, 3900348.391123597510159 ], [ 4976091.600258589722216, 3900336.332543751224875 ], [ 4976104.607143898494542, 3900313.418858923949301 ], [ 4976125.606733476743102, 3900325.478036653250456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975952.548335556872189, 3905120.368124201893806 ], [ 4975987.421460378915071, 3905105.145607347134501 ], [ 4976003.472485855221748, 3905141.59147401759401 ], [ 4975968.599399112164974, 3905156.813970386516303 ], [ 4975952.548335556872189, 3905120.368124201893806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975926.395484304055572, 3902689.373727366328239 ], [ 4975954.588989405892789, 3902703.268085048999637 ], [ 4975940.130162841640413, 3902732.733278520405293 ], [ 4975911.935940633527935, 3902719.203065379522741 ], [ 4975926.395484304055572, 3902689.373727366328239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975799.315174140967429, 3910814.357478638645262 ], [ 4975860.28920569922775, 3910843.247852185741067 ], [ 4975854.506265669129789, 3910855.616618232335895 ], [ 4975793.24436700437218, 3910826.725673124659806 ], [ 4975799.315174140967429, 3910814.357478638645262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975755.692871497012675, 3905353.376520427409559 ], [ 4975785.841654981486499, 3905395.676968952640891 ], [ 4975751.815876080654562, 3905419.276497344952077 ], [ 4975730.569074031896889, 3905389.010479714721441 ], [ 4975738.642674023285508, 3905383.564873875118792 ], [ 4975730.028615024872124, 3905371.531061697285622 ], [ 4975755.692871497012675, 3905353.376520427409559 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975647.107324739918113, 3910771.809446844737977 ], [ 4975666.319226610474288, 3910809.71817743871361 ], [ 4975622.227222761139274, 3910831.84101652726531 ], [ 4975603.015274688601494, 3910793.932316938880831 ], [ 4975647.107324739918113, 3910771.809446844737977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975638.833364948630333, 3901061.124933543149382 ], [ 4975681.583655836060643, 3901140.591988185886294 ], [ 4975637.184863308444619, 3901164.170604914892465 ], [ 4975616.526739062741399, 3901125.895076907705516 ], [ 4975606.147944753989577, 3901131.336045543197542 ], [ 4975584.054937238804996, 3901090.508726072963327 ], [ 4975638.833364948630333, 3901061.124933543149382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975605.870551695115864, 3903831.367357156705111 ], [ 4975636.43747746758163, 3903810.30958234379068 ], [ 4975659.121036949567497, 3903842.76319081382826 ], [ 4975664.599723727442324, 3903839.132970133330673 ], [ 4975681.25369078759104, 3903862.83523650560528 ], [ 4975639.151301640085876, 3903892.244633411988616 ], [ 4975622.784542685374618, 3903868.907105226069689 ], [ 4975629.128583795391023, 3903864.55036542005837 ], [ 4975605.870551695115864, 3903831.367357156705111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975569.606640902347863, 3898691.951921259053051 ], [ 4975593.21095304377377, 3898698.553978824522346 ], [ 4975586.541613184846938, 3898720.752440236508846 ], [ 4975589.420328504405916, 3898721.486520412843674 ], [ 4975580.429920559749007, 3898752.055287033319473 ], [ 4975539.842857699841261, 3898740.321109193842858 ], [ 4975549.413674740120769, 3898707.568720369134098 ], [ 4975563.80579025298357, 3898711.967361926101148 ], [ 4975569.606640902347863, 3898691.951921259053051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975479.868604427203536, 3910188.494653309229761 ], [ 4975520.802042382769287, 3910162.723879311233759 ], [ 4975549.498930555768311, 3910208.66259344946593 ], [ 4975526.437852860428393, 3910223.181307425256819 ], [ 4975523.854884716682136, 3910219.170628674793988 ], [ 4975505.983300414867699, 3910230.05851608235389 ], [ 4975479.868604427203536, 3910188.494653309229761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975415.626219864934683, 3911494.145764428656548 ], [ 4975368.401854105293751, 3911499.876722866669297 ], [ 4975366.702435705810785, 3911486.03624246828258 ], [ 4975413.926825412549078, 3911480.305281098466367 ], [ 4975415.626219864934683, 3911494.145764428656548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975385.947840443812311, 3905219.721021573059261 ], [ 4975419.952996062114835, 3905206.316677997820079 ], [ 4975433.132582900114357, 3905239.115099829621613 ], [ 4975399.127462108619511, 3905252.51942698424682 ], [ 4975385.947840443812311, 3905219.721021573059261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975317.438616856001318, 3904922.08754551038146 ], [ 4975345.85793262347579, 3904965.840533671434969 ], [ 4975337.207650829106569, 3904971.649227103218436 ], [ 4975345.246111099608243, 3904983.681751090101898 ], [ 4975306.61004772502929, 3905008.729083596263081 ], [ 4975270.15294989477843, 3904952.579501867759973 ], [ 4975317.438616856001318, 3904922.08754551038146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975221.686329913325608, 3904997.634434402454644 ], [ 4975274.078861992806196, 3905005.022346473298967 ], [ 4975265.026475535705686, 3905067.634788413066417 ], [ 4975219.543420442380011, 3905060.989032781682909 ], [ 4975224.797479699365795, 3905025.678817838896066 ], [ 4975217.888844756409526, 3905024.572547282557935 ], [ 4975221.686329913325608, 3904997.634434402454644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975146.186128227971494, 3909906.348585540894419 ], [ 4975205.572277809493244, 3909867.141448192298412 ], [ 4975223.941508162766695, 3909895.21656294260174 ], [ 4975164.556124282069504, 3909934.059529115911573 ], [ 4975146.186128227971494, 3909906.348585540894419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975062.313516240566969, 3896722.444660729262978 ], [ 4975021.122314313426614, 3896723.090490428265184 ], [ 4975020.336859477683902, 3896683.762901580892503 ], [ 4975004.493898858316243, 3896684.095344497822225 ], [ 4975003.972429938614368, 3896656.784567785449326 ], [ 4975082.898547451943159, 3896655.48599653551355 ], [ 4975083.15304347127676, 3896672.236476371064782 ], [ 4975070.19048230163753, 3896672.574649287387729 ], [ 4975070.693656861782074, 3896708.988635910209268 ], [ 4975062.339758639223874, 3896709.336040579713881 ], [ 4975062.313516240566969, 3896722.444660729262978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975057.84493603464216, 3898810.721401780843735 ], [ 4975014.609489732421935, 3898827.020744430832565 ], [ 4975002.863392984494567, 3898795.682049875613302 ], [ 4975046.098882466554642, 3898779.382688640616834 ], [ 4975057.84493603464216, 3898810.721401780843735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975026.482144302688539, 3910018.989868004340678 ], [ 4975033.480618447065353, 3909974.579683464020491 ], [ 4975077.228008831851184, 3909981.221683210227638 ], [ 4975070.517361666075885, 3910025.632433252409101 ], [ 4975026.482144302688539, 3910018.989868004340678 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975028.986317246221006, 3897975.34906102064997 ], [ 4975011.090787330642343, 3897994.248025712557137 ], [ 4974996.429101128131151, 3897980.381762097589672 ], [ 4974991.811209541745484, 3897985.106219632085413 ], [ 4974962.774363799020648, 3897958.102554483804852 ], [ 4974993.947526371106505, 3897925.029030696023256 ], [ 4975023.558973792009056, 3897952.762138627003878 ], [ 4975014.611928462050855, 3897961.847492532338947 ], [ 4975028.986317246221006, 3897975.34906102064997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975010.361358146183193, 3904549.693139411043376 ], [ 4974969.72457957174629, 3904567.090185974258929 ], [ 4974947.079366935417056, 3904515.338252511341125 ], [ 4974988.004893920384347, 3904497.57761805690825 ], [ 4974995.171771955676377, 3904513.613736843224615 ], [ 4975006.123595407232642, 3904508.901933209039271 ], [ 4975013.002503024414182, 3904524.937480839435011 ], [ 4975001.762000016868114, 3904530.012835768517107 ], [ 4975010.361358146183193, 3904549.693139411043376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974942.299358969554305, 3910941.534119057003409 ], [ 4974968.985555090010166, 3910985.283419087063521 ], [ 4974931.51436351519078, 3911008.148897588253021 ], [ 4974904.540241755545139, 3910964.399059205316007 ], [ 4974942.299358969554305, 3910941.534119057003409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974919.821019526571035, 3902303.550556027796119 ], [ 4974866.479996274225414, 3902335.851745333988219 ], [ 4974844.090169626288116, 3902299.393984643276781 ], [ 4974897.43123806361109, 3902267.092751618940383 ], [ 4974919.821019526571035, 3902303.550556027796119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974836.323837483301759, 3898105.686975338961929 ], [ 4974817.298199334181845, 3898113.659914303105325 ], [ 4974807.551049375906587, 3898090.700295251328498 ], [ 4974826.576700848527253, 3898082.72734950389713 ], [ 4974836.323837483301759, 3898105.686975338961929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974819.048918773420155, 3900125.483371939975768 ], [ 4974776.677564763464034, 3900142.877219565212727 ], [ 4974765.499079410918057, 3900115.909300222527236 ], [ 4974807.870468596927822, 3900098.515435260720551 ], [ 4974819.048918773420155, 3900125.483371939975768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974666.31899175979197, 3907702.753034190740436 ], [ 4974649.303340601734817, 3907716.920368520542979 ], [ 4974632.644355940632522, 3907696.495862661860883 ], [ 4974649.947210250422359, 3907682.693220932036638 ], [ 4974666.31899175979197, 3907702.753034190740436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974588.900165937840939, 3904785.174641857389361 ], [ 4974602.347962897270918, 3904828.53299299068749 ], [ 4974555.094727165997028, 3904843.004480118397623 ], [ 4974541.646861342713237, 3904799.646152254194021 ], [ 4974588.900165937840939, 3904785.174641857389361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974430.897706455551088, 3909106.74454986024648 ], [ 4974468.490972282364964, 3909168.721515081357211 ], [ 4974443.701429458335042, 3909183.601858547888696 ], [ 4974406.108127474784851, 3909121.624927441123873 ], [ 4974430.897706455551088, 3909106.74454986024648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974437.847973649390042, 3899629.508861808571965 ], [ 4974440.122500964440405, 3899644.442709926050156 ], [ 4974455.679304531775415, 3899642.288718661293387 ], [ 4974459.944651263765991, 3899669.971074330620468 ], [ 4974416.153660037554801, 3899676.802893783897161 ], [ 4974409.325717755593359, 3899634.186129546258599 ], [ 4974437.847973649390042, 3899629.508861808571965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974366.120720859616995, 3908959.871015779208392 ], [ 4974382.771919821389019, 3908983.936682957690209 ], [ 4974333.472611621022224, 3909017.703558269888163 ], [ 4974317.109298292547464, 3908993.638489786535501 ], [ 4974366.120720859616995, 3908959.871015779208392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974089.946494872681797, 3904016.235666437074542 ], [ 4974097.110457460395992, 3904034.09219084167853 ], [ 4974110.367445338517427, 3904028.656294031068683 ], [ 4974115.812216852791607, 3904042.139865429140627 ], [ 4974109.472044845111668, 3904044.676313139032573 ], [ 4974118.354443166404963, 3904067.269931707531214 ], [ 4974075.991180378012359, 3904083.936665651388466 ], [ 4974054.787939479574561, 3904030.003549892455339 ], [ 4974089.946494872681797, 3904016.235666437074542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974091.205928057432175, 3896637.132407755125314 ], [ 4974135.593628136441112, 3896622.290381221566349 ], [ 4974154.495418692007661, 3896677.675299230962992 ], [ 4974104.631450119428337, 3896694.327175227925181 ], [ 4974096.038914616219699, 3896669.549457249697298 ], [ 4974101.803309175185859, 3896667.740141673013568 ], [ 4974091.205928057432175, 3896637.132407755125314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974038.997218530625105, 3898874.244513590354472 ], [ 4974034.986431795172393, 3898863.312729602213949 ], [ 4974052.855661083012819, 3898857.15761417336762 ], [ 4974071.185723543167114, 3898909.628384752199054 ], [ 4974054.468591558746994, 3898915.785751510877162 ], [ 4974057.618889819830656, 3898924.895196905359626 ], [ 4974033.985083715058863, 3898933.22376959444955 ], [ 4974015.940122652798891, 3898882.210104397963732 ], [ 4974038.997218530625105, 3898874.244513590354472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974018.315901362337172, 3894737.325368486344814 ], [ 4974020.741192599758506, 3894675.792271196376532 ], [ 4974049.545257670804858, 3894676.941217615734786 ], [ 4974049.245037563145161, 3894683.130826618522406 ], [ 4974072.864692833274603, 3894683.905486612580717 ], [ 4974072.253509815782309, 3894701.746623145416379 ], [ 4974081.758834531530738, 3894702.129431546665728 ], [ 4974080.839547372423112, 3894730.165584180504084 ], [ 4974069.030455779284239, 3894729.414120142813772 ], [ 4974068.723077299073339, 3894739.245008512865752 ], [ 4974018.315901362337172, 3894737.325368486344814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973964.588999412022531, 3903476.711009623017162 ], [ 4973997.155090181156993, 3903463.666185390669852 ], [ 4974017.500715804286301, 3903514.6845019957982 ], [ 4973984.934676837176085, 3903527.729301973246038 ], [ 4973964.588999412022531, 3903476.711009623017162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973927.023679935373366, 3900457.263837220612913 ], [ 4973958.93885285127908, 3900484.272071660961956 ], [ 4973937.28818189445883, 3900510.082892017439008 ], [ 4973905.373018022626638, 3900483.07468286762014 ], [ 4973927.023679935373366, 3900457.263837220612913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973838.996668110601604, 3901730.092436542734504 ], [ 4973832.601120380684733, 3901760.666914837434888 ], [ 4973733.575114787556231, 3901739.353759365156293 ], [ 4973740.258541533723474, 3901708.779820366296917 ], [ 4973838.996668110601604, 3901730.092436542734504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973840.070434174500406, 3901181.349428462795913 ], [ 4973872.317026939243078, 3901185.782115952577442 ], [ 4973868.522510153241456, 3901211.627969201188534 ], [ 4973836.276660266332328, 3901206.831156857311726 ], [ 4973840.070434174500406, 3901181.349428462795913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973827.505072035826743, 3899360.308033364824951 ], [ 4973783.694523313082755, 3899376.972363564185798 ], [ 4973772.518990167416632, 3899347.820095907431096 ], [ 4973816.329579372890294, 3899331.155747787561268 ], [ 4973827.505072035826743, 3899360.308033364824951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973672.371481173671782, 3910229.331280808895826 ], [ 4973650.859575416892767, 3910188.142315418459475 ], [ 4973677.948789711110294, 3910174.358119450509548 ], [ 4973699.172769514843822, 3910215.546544146724045 ], [ 4973672.371481173671782, 3910229.331280808895826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973627.703021835535765, 3900206.521164771635085 ], [ 4973686.216616592369974, 3900181.510254288092256 ], [ 4973696.251250590197742, 3900204.834186493419111 ], [ 4973676.938722501508892, 3900213.171509818639606 ], [ 4973681.526166817173362, 3900223.740243733394891 ], [ 4973642.325153986923397, 3900240.413802809547633 ], [ 4973627.703021835535765, 3900206.521164771635085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973141.096779885701835, 3910284.012224704492837 ], [ 4973177.382088242098689, 3910278.62034015962854 ], [ 4973181.645612319000065, 3910307.030935546383262 ], [ 4973145.359638094902039, 3910312.786945818923414 ], [ 4973141.096779885701835, 3910284.012224704492837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972821.236913994885981, 3901736.131060127168894 ], [ 4972840.19019768666476, 3901764.205510625150055 ], [ 4972800.973792398348451, 3901790.347679401747882 ], [ 4972782.020486335270107, 3901762.273256117478013 ], [ 4972821.236913994885981, 3901736.131060127168894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972808.064336166717112, 3898394.116378726437688 ], [ 4972831.182283631525934, 3898354.470552371814847 ], [ 4972866.569915810599923, 3898374.929771086201072 ], [ 4972855.588708464987576, 3898393.843450755346566 ], [ 4972878.604611158370972, 3898407.360463711898774 ], [ 4972866.467824552208185, 3898428.092570211272687 ], [ 4972808.064336166717112, 3898394.116378726437688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972551.71740554086864, 3904733.871157855261117 ], [ 4972580.208190926350653, 3904742.664720128290355 ], [ 4972564.561315742321312, 3904793.613246067427099 ], [ 4972535.782625573687255, 3904784.819150539580733 ], [ 4972551.71740554086864, 3904733.871157855261117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972470.996868788264692, 3904027.302248230203986 ], [ 4972493.201874874532223, 3904010.594539904501289 ], [ 4972497.510195586830378, 3904016.428856822662055 ], [ 4972520.003189354203641, 3903999.72171990852803 ], [ 4972545.852366113103926, 3904035.091787651646882 ], [ 4972501.15508927218616, 3904068.142457104288042 ], [ 4972470.996868788264692, 3904027.302248230203986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972425.68302546441555, 3906954.470270360354334 ], [ 4972450.481131087988615, 3906935.582648343872279 ], [ 4972467.713248319923878, 3906958.555803952738643 ], [ 4972443.203775727190077, 3906977.079828231595457 ], [ 4972425.68302546441555, 3906954.470270360354334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972322.371008017100394, 3897984.635212216991931 ], [ 4972356.958437918685377, 3897971.956403289921582 ], [ 4972372.146984777413309, 3898012.403716812841594 ], [ 4972346.782668414525688, 3898021.82286779070273 ], [ 4972351.080909774638712, 3898033.48319935426116 ], [ 4972325.428594671189785, 3898042.901823014952242 ], [ 4972302.787962224334478, 3897983.141490049194545 ], [ 4972319.50527002196759, 3897976.983037273865193 ], [ 4972322.371008017100394, 3897984.635212216991931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972275.882344998419285, 3907752.727002688217908 ], [ 4972253.116464144550264, 3907763.243611562531441 ], [ 4972259.42378543689847, 3907777.45673898095265 ], [ 4972242.998426672071218, 3907784.70820485567674 ], [ 4972236.689025511033833, 3907771.58747377153486 ], [ 4972208.159908657893538, 3907784.642110331915319 ], [ 4972193.822509643621743, 3907753.663689713459462 ], [ 4972261.831546518020332, 3907722.477354829199612 ], [ 4972275.882344998419285, 3907752.727002688217908 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971831.06359732709825, 3892131.05500975670293 ], [ 4971858.822307860478759, 3892076.852068461943418 ], [ 4971895.662839238531888, 3892095.492007994558662 ], [ 4971867.904073463752866, 3892149.694911829195917 ], [ 4971831.06359732709825, 3892131.05500975670293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971779.366271435283124, 3906447.467879089061171 ], [ 4971803.295099173672497, 3906431.491085808724165 ], [ 4971808.750812826678157, 3906439.512251153588295 ], [ 4971823.165433908812702, 3906430.071948962751776 ], [ 4971834.076846682466567, 3906446.114288855809718 ], [ 4971820.526037977077067, 3906455.556210955604911 ], [ 4971830.00119049847126, 3906469.775187172461301 ], [ 4971805.783760191872716, 3906486.115545882377774 ], [ 4971779.366271435283124, 3906447.467879089061171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971530.790107469074428, 3898797.701764914672822 ], [ 4971549.40020131599158, 3898857.089801557827741 ], [ 4971542.483698106370866, 3898859.261640052311122 ], [ 4971548.496627513319254, 3898878.207660608459264 ], [ 4971517.660413607023656, 3898887.981487695127726 ], [ 4971514.510612629354, 3898878.14408240839839 ], [ 4971480.216165970079601, 3898889.003875996451825 ], [ 4971487.08773812931031, 3898910.864529175683856 ], [ 4971442.707323167473078, 3898924.618562723975629 ], [ 4971424.097041035071015, 3898865.230597551446408 ], [ 4971431.590247392654419, 3898862.695675130933523 ], [ 4971425.865249563008547, 3898843.750218565575778 ], [ 4971456.700800404883921, 3898834.340415310580283 ], [ 4971459.850627722218633, 3898844.177813571877778 ], [ 4971494.145123230293393, 3898833.31799428910017 ], [ 4971487.273536748252809, 3898811.45734032522887 ], [ 4971530.790107469074428, 3898797.701764914672822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971344.052740174345672, 3904259.678456057794392 ], [ 4971373.16584497038275, 3904244.075093964580446 ], [ 4971398.13338881265372, 3904289.638094237539917 ], [ 4971369.020318734459579, 3904305.241429701913148 ], [ 4971344.052740174345672, 3904259.678456057794392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971280.394246006384492, 3904734.023081700783223 ], [ 4971286.208251191303134, 3904704.539259132463485 ], [ 4971322.765599116683006, 3904711.525851113256067 ], [ 4971316.951555293053389, 3904741.009665894322097 ], [ 4971280.394246006384492, 3904734.023081700783223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971073.603830650448799, 3906307.779894015751779 ], [ 4971101.742662506178021, 3906350.435504883062094 ], [ 4971066.860429956577718, 3906372.946984885726124 ], [ 4971039.009503724984825, 3906330.291943469550461 ], [ 4971073.603830650448799, 3906307.779894015751779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970467.069846558384597, 3896946.317018964327872 ], [ 4970477.962600014172494, 3896975.103214481379837 ], [ 4970457.785978897474706, 3896982.712995240930468 ], [ 4970446.605169267393649, 3896953.926280599087477 ], [ 4970467.069846558384597, 3896946.317018964327872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970268.644205975346267, 3898349.675108978059143 ], [ 4970243.825798536650836, 3898376.211351400241256 ], [ 4970207.01994108967483, 3898342.644325203727931 ], [ 4970214.811813663691282, 3898334.283527917228639 ], [ 4970200.721901272423565, 3898321.513313371222466 ], [ 4970218.037779101170599, 3898302.610093104187399 ], [ 4970268.644205975346267, 3898349.675108978059143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970132.141330752521753, 3898180.106062974780798 ], [ 4970100.712903308682144, 3898198.619554856792092 ], [ 4970076.592940110713243, 3898157.793170711025596 ], [ 4970079.187809221446514, 3898156.34136458626017 ], [ 4970070.574181153438985, 3898141.396388991270214 ], [ 4970099.407119209878147, 3898124.698795162606984 ], [ 4970132.141330752521753, 3898180.106062974780798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969789.673093111254275, 3914441.974822187796235 ], [ 4969726.057519729249179, 3914442.224080448038876 ], [ 4969725.872835047543049, 3914385.054770711343735 ], [ 4969789.487885843031108, 3914385.169644440989941 ], [ 4969789.673093111254275, 3914441.974822187796235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969519.967375352047384, 3890546.124414417892694 ], [ 4969516.284091764129698, 3890511.525609817821532 ], [ 4969556.62688445020467, 3890507.228522699791938 ], [ 4969558.608302487060428, 3890526.895012960303575 ], [ 4969576.762943003326654, 3890524.742868525441736 ], [ 4969587.128233811818063, 3890528.402784831821918 ], [ 4969590.315082129091024, 3890518.577049227897078 ], [ 4969640.128042278811336, 3890535.05243122484535 ], [ 4969642.398158779367805, 3890554.355319335125387 ], [ 4969647.005237319506705, 3890555.820125290658325 ], [ 4969642.949466452002525, 3890568.193188883829862 ], [ 4969623.066213286481798, 3890570.342178526334465 ], [ 4969614.428270353004336, 3890567.413612101227045 ], [ 4969611.24141894467175, 3890577.239345121663064 ], [ 4969589.358454330824316, 3890569.917425752151757 ], [ 4969587.945418946444988, 3890554.621494695544243 ], [ 4969577.579483867622912, 3890551.325705190654844 ], [ 4969576.158586931414902, 3890540.399300899822265 ], [ 4969519.967375352047384, 3890546.124414417892694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969395.96487121284008, 3903154.620784592814744 ], [ 4969415.778109032660723, 3903186.335690764244646 ], [ 4969386.372464734129608, 3903204.489556835033 ], [ 4969366.559205710887909, 3903172.774672003928572 ], [ 4969395.96487121284008, 3903154.620784592814744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969258.963064153678715, 3902307.771201268304139 ], [ 4969233.297057941555977, 3902327.752561787609011 ], [ 4969202.552055800333619, 3902289.099814006127417 ], [ 4969228.21872597374022, 3902268.754294904880226 ], [ 4969258.963064153678715, 3902307.771201268304139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969203.017084436491132, 3890241.145994011312723 ], [ 4969239.310448421165347, 3890245.9444157066755 ], [ 4969234.934216693975031, 3890276.523380247876048 ], [ 4969198.929651910439134, 3890271.361351058352739 ], [ 4969203.017084436491132, 3890241.145994011312723 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969063.034771512262523, 3896697.995397651568055 ], [ 4969048.28125533927232, 3896733.653864375315607 ], [ 4969004.819551905617118, 3896715.370134180411696 ], [ 4969006.266222351230681, 3896711.73140789475292 ], [ 4968989.860213034786284, 3896704.78380241477862 ], [ 4969003.166347994469106, 3896673.12815902242437 ], [ 4969063.034771512262523, 3896697.995397651568055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969011.519915165379643, 3898131.846949917729944 ], [ 4969039.133420358411968, 3898152.651438206899911 ], [ 4969031.627297223545611, 3898162.469602631870657 ], [ 4969048.022691967897117, 3898174.879171715117991 ], [ 4969032.143794600851834, 3898195.970477228052914 ], [ 4968988.134267326444387, 3898163.120581857394427 ], [ 4969011.519915165379643, 3898131.846949917729944 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968975.380846875719726, 3903884.681755932513624 ], [ 4968929.832878726534545, 3903912.639007112476975 ], [ 4968914.326787513680756, 3903887.850577389355749 ], [ 4968959.87542787566781, 3903859.52917029010132 ], [ 4968975.380846875719726, 3903884.681755932513624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968789.049241804517806, 3901941.712648190092295 ], [ 4968809.233914186246693, 3901927.183129100129008 ], [ 4968848.017007756978273, 3901980.779013870283961 ], [ 4968819.758499316871166, 3902001.120304750278592 ], [ 4968794.764478217810392, 3901966.847782223019749 ], [ 4968802.838338261470199, 3901961.035974372178316 ], [ 4968789.049241804517806, 3901941.712648190092295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968390.030604667030275, 3909254.592564995866269 ], [ 4968385.983951784670353, 3909263.688775376416743 ], [ 4968392.888579386286438, 3909266.613948713522404 ], [ 4968383.926450992934406, 3909287.717904469929636 ], [ 4968392.845133297145367, 3909291.374875979498029 ], [ 4968383.883651920594275, 3909312.11470077233389 ], [ 4968351.086070071905851, 3909298.584285154007375 ], [ 4968373.05693029705435, 3909247.280141825322062 ], [ 4968390.030604667030275, 3909254.592564995866269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968368.124619113281369, 3913372.532722369302064 ], [ 4968374.39817288890481, 3913406.408127374015749 ], [ 4968347.330902497284114, 3913411.094392945524305 ], [ 4968341.345177421346307, 3913377.219498767983168 ], [ 4968368.124619113281369, 3913372.532722369302064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968311.438179261051118, 3913359.688689225353301 ], [ 4968265.652842721901834, 3913368.347718793898821 ], [ 4968260.232533884234726, 3913340.299966588616371 ], [ 4968306.017916431650519, 3913331.640927931759506 ], [ 4968311.438179261051118, 3913359.688689225353301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968107.626776965335011, 3905768.627065931912512 ], [ 4968077.941971678286791, 3905783.868846226017922 ], [ 4968058.999890375882387, 3905748.150945493020117 ], [ 4968088.685358970426023, 3905732.545014115981758 ], [ 4968107.626776965335011, 3905768.627065931912512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967777.173637306317687, 3896224.555298259016126 ], [ 4967807.144244960509241, 3896216.596340857911855 ], [ 4967820.018610152415931, 3896267.232644607312977 ], [ 4967779.097934283316135, 3896277.721538292709738 ], [ 4967772.231489858590066, 3896250.764069407247007 ], [ 4967783.182251293212175, 3896247.869987824931741 ], [ 4967777.173637306317687, 3896224.555298259016126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967452.55815696157515, 3902248.892942975275218 ], [ 4967461.454886521212757, 3902266.750649465247989 ], [ 4967439.837554232217371, 3902277.637411552015692 ], [ 4967430.940813945606351, 3902259.779712100978941 ], [ 4967452.55815696157515, 3902248.892942975275218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967175.782885659486055, 3906644.211523627396673 ], [ 4967211.796417316421866, 3906631.528488118667156 ], [ 4967226.41064709611237, 3906672.700381520669907 ], [ 4967190.39716362208128, 3906685.383397770579904 ], [ 4967175.782885659486055, 3906644.211523627396673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966918.519864246249199, 3898251.649403912480921 ], [ 4966923.083077131770551, 3898278.238642392214388 ], [ 4966886.205558553338051, 3898284.366213435307145 ], [ 4966881.642310259863734, 3898257.776981125585735 ], [ 4966918.519864246249199, 3898251.649403912480921 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966695.450859426520765, 3899355.313613370526582 ], [ 4966746.251910282298923, 3899289.856128673069179 ], [ 4966772.714538837783039, 3899310.292223737575114 ], [ 4966721.913461906835437, 3899375.749659205786884 ], [ 4966695.450859426520765, 3899355.313613370526582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966095.705548459663987, 3894582.751535139512271 ], [ 4966066.594784670509398, 3894592.534474222920835 ], [ 4966040.506637348793447, 3894517.11626831209287 ], [ 4966069.33001634478569, 3894506.968693050555885 ], [ 4966095.705548459663987, 3894582.751535139512271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965990.0263278670609, 3901653.249455339275301 ], [ 4965991.228590901941061, 3901623.028613144997507 ], [ 4966041.335409743711352, 3901624.932728970423341 ], [ 4966040.133090441115201, 3901655.153568953275681 ], [ 4965990.0263278670609, 3901653.249455339275301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965951.728361886925995, 3898014.068000049330294 ], [ 4965926.099465092644095, 3898010.748220982961357 ], [ 4965924.351335256360471, 3898022.761600646656007 ], [ 4965896.70625947508961, 3898019.438498667441308 ], [ 4965898.458611108362675, 3898004.876215289346874 ], [ 4965870.526091764681041, 3898001.188532985746861 ], [ 4965874.611660622060299, 3897969.151889006607234 ], [ 4965933.356419235467911, 3897976.896207791753113 ], [ 4965932.480838156305254, 3897983.813219357281923 ], [ 4965955.518125875853002, 3897986.76456405967474 ], [ 4965951.728361886925995, 3898014.068000049330294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965231.340791553258896, 3894864.615951385814697 ], [ 4965223.804173851385713, 3894893.369825901463628 ], [ 4965198.465628969483078, 3894886.774064152967185 ], [ 4965206.002221379429102, 3894858.020182648673654 ], [ 4965231.340791553258896, 3894864.615951385814697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965187.440911270678043, 3898106.753304671961814 ], [ 4965226.897999998182058, 3898108.274351186584681 ], [ 4965225.101934755221009, 3898149.782217155676335 ], [ 4965185.932931764051318, 3898148.261644036974758 ], [ 4965187.440911270678043, 3898106.753304671961814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965182.057502349838614, 3900695.34566644532606 ], [ 4965201.352746281772852, 3900695.741343736182898 ], [ 4965201.36406014021486, 3900688.822884225752205 ], [ 4965225.267271193675697, 3900689.2261145520024 ], [ 4965224.626335590146482, 3900728.915282262023538 ], [ 4965181.42793941590935, 3900728.116375658195466 ], [ 4965182.057502349838614, 3900695.34566644532606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965142.650941092520952, 3901017.90086576435715 ], [ 4965160.585702545940876, 3900969.500807174481452 ], [ 4965196.851000116206706, 3900983.032910306472331 ], [ 4965178.628188261762261, 3901031.432474359404296 ], [ 4965142.650941092520952, 3901017.90086576435715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965078.466157389804721, 3895342.103793226648122 ], [ 4965005.010362706147134, 3895343.076517735607922 ], [ 4965004.775649153627455, 3895310.304502768442035 ], [ 4965077.943478059954941, 3895309.331307981163263 ], [ 4965078.466157389804721, 3895342.103793226648122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964934.778555002063513, 3895664.488458402920514 ], [ 4964950.331560778431594, 3895665.606125943362713 ], [ 4964949.159228918142617, 3895677.98461728496477 ], [ 4964994.952878131531179, 3895682.064522342756391 ], [ 4964990.850244252942502, 3895725.025107890367508 ], [ 4964929.504877013154328, 3895719.099288429133594 ], [ 4964934.778555002063513, 3895664.488458402920514 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964742.080400188453496, 3895302.959748361259699 ], [ 4964753.249739883467555, 3895343.032038918696344 ], [ 4964723.855178965255618, 3895350.995328763965517 ], [ 4964712.685210093855858, 3895311.287178519647568 ], [ 4964742.080400188453496, 3895302.959748361259699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964657.279277936555445, 3902506.406899685505778 ], [ 4964671.497284963726997, 3902440.158062246628106 ], [ 4964710.648872467689216, 3902448.596356485970318 ], [ 4964696.142795187421143, 3902514.844707988668233 ], [ 4964657.279277936555445, 3902506.406899685505778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964540.483968327753246, 3894024.177061116322875 ], [ 4964534.676856186240911, 3894052.56976999854669 ], [ 4964479.097732189111412, 3894041.192340810783207 ], [ 4964485.196370935067534, 3894010.615315280854702 ], [ 4964499.883215359412134, 3894013.551971374079585 ], [ 4964502.49751462507993, 3894000.083405846264213 ], [ 4964532.446760353632271, 3894006.32180055603385 ], [ 4964529.252791129983962, 3894021.974203817080706 ], [ 4964540.483968327753246, 3894024.177061116322875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964353.956235046498477, 3897349.10627317102626 ], [ 4964366.990167559124529, 3897303.975098090711981 ], [ 4964392.900949277915061, 3897311.663396254181862 ], [ 4964388.26669495459646, 3897327.677664030343294 ], [ 4964407.556182603351772, 3897333.170572988688946 ], [ 4964399.156445370987058, 3897362.287462012842298 ], [ 4964353.956235046498477, 3897349.10627317102626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964343.691517875529826, 3901774.727740943897516 ], [ 4964354.664772213436663, 3901756.174675862304866 ], [ 4964405.013833174481988, 3901786.478319833986461 ], [ 4964386.822210965678096, 3901816.671958521474153 ], [ 4964349.419705405831337, 3901794.399981225375086 ], [ 4964356.350638611242175, 3901782.394785892218351 ], [ 4964343.691517875529826, 3901774.727740943897516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964247.871571394614875, 3898664.537392663303763 ], [ 4964260.012084751389921, 3898637.24707008106634 ], [ 4964291.38406981062144, 3898651.134227116592228 ], [ 4964279.2435308014974, 3898678.424535750877112 ], [ 4964247.871571394614875, 3898664.537392663303763 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964047.201423125341535, 3897890.805281112901866 ], [ 4964079.161469040438533, 3897897.774653046857566 ], [ 4964076.548915003426373, 3897910.515032996423542 ], [ 4964079.140581801533699, 3897910.883292214013636 ], [ 4964072.467801426537335, 3897941.09543365240097 ], [ 4964042.811443152837455, 3897934.493866687640548 ], [ 4964046.871072687208652, 3897917.38622977072373 ], [ 4964041.688319096341729, 3897916.285588934551924 ], [ 4964047.201423125341535, 3897890.805281112901866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964027.273615880869329, 3901905.673401724081486 ], [ 4964045.4004125026986, 3901915.897918877191842 ], [ 4964050.887775924056768, 3901906.075129454489797 ], [ 4964081.098887147381902, 3901923.237401352263987 ], [ 4964062.039128446020186, 3901956.342923502903432 ], [ 4964013.989240708760917, 3901928.956622785888612 ], [ 4964027.273615880869329, 3901905.673401724081486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964000.624406242743134, 3900373.369879320729524 ], [ 4963989.915094944648445, 3900406.852837316226214 ], [ 4963951.342093133367598, 3900394.775224400218576 ], [ 4963962.051361117511988, 3900361.292251270730048 ], [ 4964000.624406242743134, 3900373.369879320729524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963874.74592372123152, 3893847.967232458293438 ], [ 4963875.957098263315856, 3893810.8280039858073 ], [ 4963889.207803976722062, 3893811.21314639877528 ], [ 4963887.99661114346236, 3893848.352374276611954 ], [ 4963874.74592372123152, 3893847.967232458293438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963516.958262498490512, 3900993.447206398937851 ], [ 4963527.316323735751212, 3900999.653715802356601 ], [ 4963557.345690271817148, 3900950.179229174740613 ], [ 4963590.721544645726681, 3900970.258963363710791 ], [ 4963579.460504571907222, 3900988.811877979431301 ], [ 4963570.828698162920773, 3900983.700458086561412 ], [ 4963534.158868726342916, 3901043.724265728611499 ], [ 4963499.056816330179572, 3901022.549495818093419 ], [ 4963516.958262498490512, 3900993.447206398937851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963429.651368346065283, 3894230.328847921919078 ], [ 4963375.779438159428537, 3894232.429149846546352 ], [ 4963373.016874349676073, 3894157.050122598186135 ], [ 4963412.484428781084716, 3894155.655477627646178 ], [ 4963413.037720272317529, 3894170.221504279412329 ], [ 4963427.154171515256166, 3894169.51539021730423 ], [ 4963429.651368346065283, 3894230.328847921919078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963285.410931019112468, 3899519.812923560850322 ], [ 4963304.115641360171139, 3899530.037827007938176 ], [ 4963297.182892042212188, 3899543.135665164794773 ], [ 4963325.09648625832051, 3899558.108683060854673 ], [ 4963311.521277147345245, 3899582.848284603562206 ], [ 4963241.592989407479763, 3899545.597668798174709 ], [ 4963254.302415048703551, 3899521.949069873895496 ], [ 4963277.612449887208641, 3899534.001803105697036 ], [ 4963285.410931019112468, 3899519.812923560850322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962992.008957803249359, 3895572.553940276615322 ], [ 4962954.786914536729455, 3895613.278645180631429 ], [ 4962935.514530095271766, 3895595.770547294989228 ], [ 4962946.190536991693079, 3895584.134968290571123 ], [ 4962919.151431173086166, 3895559.69638059893623 ], [ 4962945.697457217611372, 3895530.60720216203481 ], [ 4962992.008957803249359, 3895572.553940276615322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962679.550762551836669, 3896455.448377447668463 ], [ 4962652.136198522523046, 3896488.177789556328207 ], [ 4962626.2454256080091, 3896466.654286783654243 ], [ 4962616.145431932061911, 3896478.65501404274255 ], [ 4962595.432114466093481, 3896461.873191941063851 ], [ 4962633.523859366774559, 3896416.415627859998494 ], [ 4962644.16800965834409, 3896425.171123487874866 ], [ 4962651.959762124344707, 3896415.715757876168936 ], [ 4962673.823569753207266, 3896433.591784321703017 ], [ 4962665.454606372863054, 3896443.774513267911971 ], [ 4962679.550762551836669, 3896455.448377447668463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962575.050432750023901, 3899414.205997893121094 ], [ 4962591.508524522185326, 3899387.285681386943907 ], [ 4962615.39107281062752, 3899401.887629906646907 ], [ 4962598.93296599201858, 3899428.807932019233704 ], [ 4962575.050432750023901, 3899414.205997893121094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962424.262042174115777, 3910793.078995752613991 ], [ 4962411.663528180681169, 3910748.271379475481808 ], [ 4962450.833862587809563, 3910737.043309752829373 ], [ 4962456.560945552773774, 3910757.079386512748897 ], [ 4962496.594955706037581, 3910745.852708113379776 ], [ 4962505.185243344865739, 3910776.088904482778162 ], [ 4962485.888258023187518, 3910781.521268696524203 ], [ 4962489.325046338140965, 3910793.178787633776665 ], [ 4962461.963823587633669, 3910800.783587518148124 ], [ 4962458.81435530539602, 3910789.490645368117839 ], [ 4962440.093726059421897, 3910794.559793923981488 ], [ 4962438.662652888335288, 3910789.095610657706857 ], [ 4962424.262042174115777, 3910793.078995752613991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961611.576660877093673, 3892940.706515341531485 ], [ 4961650.459894438274205, 3892945.862720920238644 ], [ 4961653.372440587729216, 3892924.747634828556329 ], [ 4961669.501684574410319, 3892926.956651837099344 ], [ 4961660.764022383838892, 3892990.301906717475504 ], [ 4961633.401876113377512, 3892986.619504431262612 ], [ 4961631.94616053905338, 3892996.812921010889113 ], [ 4961604.584016999229789, 3892993.130548048298806 ], [ 4961611.576660877093673, 3892940.706515341531485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961507.473184112459421, 3892434.41164433490485 ], [ 4961458.189218051731586, 3892448.538905031979084 ], [ 4961444.431862794794142, 3892401.181620231363922 ], [ 4961494.0039949612692, 3892387.054765933658928 ], [ 4961507.473184112459421, 3892434.41164433490485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961419.907940190285444, 3904374.462544990703464 ], [ 4961430.805705424398184, 3904404.337592368945479 ], [ 4961385.571848461404443, 3904420.655897764489055 ], [ 4961374.674039643257856, 3904390.780868436675519 ], [ 4961419.907940190285444, 3904374.462544990703464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961377.427404229529202, 3893092.925922719761729 ], [ 4961331.310323791578412, 3893109.242918916512281 ], [ 4961318.975031579844654, 3893074.268175764009356 ], [ 4961325.604111540131271, 3893072.093284629285336 ], [ 4961320.440936220809817, 3893057.156311949249357 ], [ 4961354.45223671104759, 3893045.190780178643763 ], [ 4961352.156833781860769, 3893038.997168343048543 ], [ 4961376.080487950704992, 3893030.293776642531157 ], [ 4961385.260987052693963, 3893055.796489113476127 ], [ 4961366.526041396893561, 3893062.322842681314796 ], [ 4961377.427404229529202, 3893092.925922719761729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961301.657780558802187, 3893676.14721303852275 ], [ 4961330.747163477353752, 3893680.195984050165862 ], [ 4961329.873173487372696, 3893686.748999913688749 ], [ 4961353.778319207951427, 3893690.061809656210244 ], [ 4961347.373375024646521, 3893735.204231124836951 ], [ 4961294.378940635360777, 3893727.84266373468563 ], [ 4961301.657780558802187, 3893676.14721303852275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961214.658165290951729, 3893677.110125814564526 ], [ 4961236.262542674317956, 3893677.870509035419673 ], [ 4961236.855478189885616, 3893666.583397461101413 ], [ 4961273.438570671714842, 3893668.09435197012499 ], [ 4961271.049423797987401, 3893724.894892453216016 ], [ 4961231.873757685534656, 3893723.380085153039545 ], [ 4961232.471564381383359, 3893708.815820942167193 ], [ 4961213.459864052943885, 3893708.059294740203768 ], [ 4961214.658165290951729, 3893677.110125814564526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961047.766629409976304, 3909495.421465803869069 ], [ 4961067.856182626448572, 3909538.418842499144375 ], [ 4961047.112615020945668, 3909548.219680679496378 ], [ 4961053.139152482151985, 3909561.337371170055121 ], [ 4961028.650179946795106, 3909572.953336861450225 ], [ 4961002.246120647527277, 3909516.837882349733263 ], [ 4961047.766629409976304, 3909495.421465803869069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960868.509858324192464, 3897702.774865289218724 ], [ 4960875.374258716590703, 3897735.556655497290194 ], [ 4960827.834944871254265, 3897745.31811695639044 ], [ 4960820.970489042811096, 3897712.536338703706861 ], [ 4960868.509858324192464, 3897702.774865289218724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960762.836467247456312, 3893172.4880430563353 ], [ 4960781.524606329388916, 3893197.640397604554892 ], [ 4960794.214497278444469, 3893187.827585267368704 ], [ 4960808.590002411976457, 3893207.147556234616786 ], [ 4960760.139945239759982, 3893243.125050621107221 ], [ 4960727.075735704042017, 3893199.016903022304177 ], [ 4960762.836467247456312, 3893172.4880430563353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960472.165545666590333, 3893172.062398625537753 ], [ 4960518.837408482097089, 3893169.945758633781224 ], [ 4960518.276676145382226, 3893159.385207268875092 ], [ 4960537.867068590596318, 3893158.685571910813451 ], [ 4960540.94812165107578, 3893218.771311258897185 ], [ 4960497.44519645255059, 3893220.892538913991302 ], [ 4960496.323716758750379, 3893199.771436514798552 ], [ 4960473.563967044465244, 3893200.830606549978256 ], [ 4960472.165545666590333, 3893172.062398625537753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960385.860033606179059, 3892893.014060763642192 ], [ 4960361.362006266601384, 3892900.625111105851829 ], [ 4960347.595539810135961, 3892858.366165167186409 ], [ 4960390.539840348996222, 3892844.591765139717609 ], [ 4960402.010611115023494, 3892880.657202587928623 ], [ 4960383.853005872108042, 3892886.456823647487909 ], [ 4960385.860033606179059, 3892893.014060763642192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960258.024487663060427, 3899393.265145643614233 ], [ 4960251.047748816199601, 3899437.678886092267931 ], [ 4960223.40449311491102, 3899433.633357824757695 ], [ 4960225.149984573945403, 3899421.619597470853478 ], [ 4960217.375792439095676, 3899420.151805118191987 ], [ 4960219.409293457865715, 3899408.138462054077536 ], [ 4960227.18348896317184, 3899409.60625498695299 ], [ 4960230.381715395487845, 3899388.855481036938727 ], [ 4960258.024487663060427, 3899393.265145643614233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960230.038035275414586, 3906574.612673695664853 ], [ 4960226.257384636439383, 3906600.460534842219204 ], [ 4960202.076179758645594, 3906596.784154071472585 ], [ 4960196.550010090693831, 3906635.009964937344193 ], [ 4960157.110966755077243, 3906629.490855671465397 ], [ 4960165.251694769598544, 3906575.24703192897141 ], [ 4960180.79699757322669, 3906577.454339659772813 ], [ 4960182.250915185548365, 3906567.624892432242632 ], [ 4960230.038035275414586, 3906574.612673695664853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960119.765546177513897, 3907963.251521986443549 ], [ 4960144.242939373478293, 3907960.373887495137751 ], [ 4960143.10707276687026, 3907949.448285417165607 ], [ 4960166.720193961635232, 3907946.933552313130349 ], [ 4960167.287595227360725, 3907952.760484996717423 ], [ 4960199.251975333318114, 3907949.165481964126229 ], [ 4960203.234287153929472, 3907982.671392840798944 ], [ 4960123.179491586051881, 3907991.658751805312932 ], [ 4960119.765546177513897, 3907963.251521986443549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959752.631410552188754, 3900752.926745090633631 ], [ 4959760.186637685634196, 3900705.964758573099971 ], [ 4959766.521016950719059, 3900707.066226559691131 ], [ 4959770.59055760409683, 3900680.854676546994597 ], [ 4959796.792608920484781, 3900684.897676791064441 ], [ 4959790.980438068509102, 3900721.302372795064002 ], [ 4959804.22518094535917, 3900723.506151052191854 ], [ 4959800.157180682756007, 3900748.625307926908135 ], [ 4959786.624452807940543, 3900746.421118690166622 ], [ 4959784.87976379878819, 3900758.07078749127686 ], [ 4959752.631410552188754, 3900752.926745090633631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959368.973457150161266, 3900784.787459243088961 ], [ 4959363.456079885363579, 3900816.82310317736119 ], [ 4959330.920236810110509, 3900811.315028596203774 ], [ 4959336.437576394528151, 3900779.279378081671894 ], [ 4959368.973457150161266, 3900784.787459243088961 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959237.973130400292575, 3905035.828936344012618 ], [ 4959284.672746193595231, 3904999.481868760660291 ], [ 4959303.35556005500257, 3905023.540981684811413 ], [ 4959270.781522802077234, 3905048.619930464308709 ], [ 4959275.667929475195706, 3905054.81707608141005 ], [ 4959261.254932838492095, 3905065.720622572116554 ], [ 4959237.973130400292575, 3905035.828936344012618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959209.415996680036187, 3897118.865720120258629 ], [ 4959212.042260618880391, 3897094.836880666203797 ], [ 4959233.353336510248482, 3897097.415892924647778 ], [ 4959230.72756826505065, 3897121.080601531546563 ], [ 4959209.415996680036187, 3897118.865720120258629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959108.260946485213935, 3898793.355561580043286 ], [ 4959106.477963090874255, 3898832.314948309678584 ], [ 4959054.061838744208217, 3898830.056394969113171 ], [ 4959056.739018948748708, 3898769.614599754568189 ], [ 4959082.947141036391258, 3898770.743866216856986 ], [ 4959082.052847476676106, 3898792.226270417682827 ], [ 4959108.260946485213935, 3898793.355561580043286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959076.888011098839343, 3900415.510807399637997 ], [ 4959073.944461794570088, 3900460.658814703114331 ], [ 4959043.995521746575832, 3900458.431902249343693 ], [ 4959044.87846808321774, 3900444.960324835032225 ], [ 4959002.258517476730049, 3900441.987383016850799 ], [ 4959005.199902256950736, 3900398.295886415056884 ], [ 4959032.557417505420744, 3900400.154982148203999 ], [ 4959031.676011549308896, 3900412.534171057399362 ], [ 4959076.888011098839343, 3900415.510807399637997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958852.909920582547784, 3898912.431715387851 ], [ 4958853.701121769845486, 3898964.503399511333555 ], [ 4958801.280656193383038, 3898965.522501777391881 ], [ 4958800.201845499686897, 3898913.086287595331669 ], [ 4958852.909920582547784, 3898912.431715387851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958845.704922038130462, 3898503.867933133151382 ], [ 4958860.15692744590342, 3898467.475170151796192 ], [ 4958869.656539756804705, 3898471.129762336611748 ], [ 4958875.726398248225451, 3898455.844806546345353 ], [ 4958903.073657623492181, 3898466.442866613622755 ], [ 4958896.136661989614367, 3898483.911380692385137 ], [ 4958932.407436637207866, 3898498.163268749136478 ], [ 4958918.533942761830986, 3898532.736155288759619 ], [ 4958845.704922038130462, 3898503.867933133151382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958822.478813830763102, 3899047.84548898646608 ], [ 4958870.889331333339214, 3899030.799098208546638 ], [ 4958890.109876482747495, 3899085.445498433895409 ], [ 4958841.699954340234399, 3899102.127725917380303 ], [ 4958822.478813830763102, 3899047.84548898646608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958334.179617678746581, 3898711.803710090462118 ], [ 4958345.463612459599972, 3898674.678036537952721 ], [ 4958382.314482880756259, 3898686.016945692244917 ], [ 4958370.742423160001636, 3898723.142206248361617 ], [ 4958334.179617678746581, 3898711.803710090462118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958099.952942060306668, 3898340.433293972630054 ], [ 4958085.510381935164332, 3898370.636268428526819 ], [ 4958036.578947369009256, 3898346.900820631999522 ], [ 4958051.02096660900861, 3898317.061949392315 ], [ 4958099.952942060306668, 3898340.433293972630054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957801.447062512859702, 3907740.062135206535459 ], [ 4957782.134497275575995, 3907756.057671401649714 ], [ 4957756.551496672444046, 3907725.071694243233651 ], [ 4957775.864068875089288, 3907709.076139960438013 ], [ 4957801.447062512859702, 3907740.062135206535459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957615.847702036611736, 3896165.556579907424748 ], [ 4957625.182449815794826, 3896078.90644162800163 ], [ 4957667.807496545836329, 3896083.333706581499428 ], [ 4957658.472119652666152, 3896170.34795889351517 ], [ 4957615.847702036611736, 3896165.556579907424748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957612.637014052830637, 3898325.932685278821737 ], [ 4957608.784845086745918, 3898405.671892363578081 ], [ 4957575.66426756978035, 3898404.170591488480568 ], [ 4957579.516338476911187, 3898324.431379729416221 ], [ 4957612.637014052830637, 3898325.932685278821737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956825.684107067994773, 3896204.553441239520907 ], [ 4956857.343090533278883, 3896224.258340577129275 ], [ 4956853.590299976058304, 3896230.443567650392652 ], [ 4956873.161466162651777, 3896242.485763289965689 ], [ 4956857.86274713370949, 3896266.862156089395285 ], [ 4956806.632630533538759, 3896235.115094162523746 ], [ 4956825.684107067994773, 3896204.553441239520907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956720.348562341183424, 3898974.347952637355775 ], [ 4956731.899487470276654, 3898951.423016301356256 ], [ 4956754.637863514013588, 3898962.741069085430354 ], [ 4956743.086923812516034, 3898985.665995808783919 ], [ 4956720.348562341183424, 3898974.347952637355775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956577.909391227178276, 3892958.381378966849297 ], [ 4956623.156237218528986, 3892944.603988876566291 ], [ 4956625.451299732550979, 3892951.889580393210053 ], [ 4956643.608046345412731, 3892946.087420717347413 ], [ 4956655.081879458390176, 3892983.607773189432919 ], [ 4956591.390776598826051, 3893002.822785844095051 ], [ 4956577.909391227178276, 3892958.381378966849297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956366.132391126826406, 3898720.084334208630025 ], [ 4956388.277466375380754, 3898744.874103354290128 ], [ 4956332.913275515660644, 3898794.323438974563032 ], [ 4956310.767715150490403, 3898769.897843921091408 ], [ 4956366.132391126826406, 3898720.084334208630025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955501.838488893583417, 3901391.319807743653655 ], [ 4955503.641612364910543, 3901332.33298420207575 ], [ 4955535.319204302504659, 3901333.465767667628825 ], [ 4955535.316417186520994, 3901335.650546355638653 ], [ 4955576.785688725300133, 3901336.795871715061367 ], [ 4955575.273650520481169, 3901393.234149762429297 ], [ 4955501.838488893583417, 3901391.319807743653655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955189.58131942898035, 3895976.677798307035118 ], [ 4955217.605273376218975, 3895910.805810480378568 ], [ 4955248.410383887588978, 3895923.589275870937854 ], [ 4955220.386367659084499, 3895989.461232082452625 ], [ 4955189.58131942898035, 3895976.677798307035118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954745.743890171870589, 3900562.69870211975649 ], [ 4954750.385461011901498, 3900535.758853207342327 ], [ 4954782.634569448418915, 3900541.261022401507944 ], [ 4954777.992967216297984, 3900568.200865840073675 ], [ 4954745.743890171870589, 3900562.69870211975649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954686.173280533403158, 3900757.798320366069674 ], [ 4954680.68140983954072, 3900773.813219000585377 ], [ 4954693.635826865211129, 3900778.19889860926196 ], [ 4954680.918225006200373, 3900814.960230915341526 ], [ 4954621.040308954194188, 3900794.494522921275347 ], [ 4954626.531687702052295, 3900778.8437415715307 ], [ 4954615.016339774243534, 3900775.188141248654574 ], [ 4954634.959580352529883, 3900717.680330288596451 ], [ 4954667.777244394645095, 3900729.00915238680318 ], [ 4954660.552417179569602, 3900749.027332711964846 ], [ 4954686.173280533403158, 3900757.798320366069674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954692.019132415764034, 3894669.559135371353477 ], [ 4954716.825117996893823, 3894643.372723903506994 ], [ 4954792.497401001863182, 3894714.108047839254141 ], [ 4954767.691406711935997, 3894740.294390562456101 ], [ 4954692.019132415764034, 3894669.559135371353477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953602.607104612514377, 3892960.098160575609654 ], [ 4953541.221904882229865, 3892980.051428598351777 ], [ 4953531.463028406724334, 3892950.181168888229877 ], [ 4953592.560208212584257, 3892930.227532367687672 ], [ 4953602.607104612514377, 3892960.098160575609654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953180.749411656521261, 3892322.733126115053892 ], [ 4953208.707300106063485, 3892311.478365804068744 ], [ 4953216.175493096932769, 3892330.057792525738478 ], [ 4953227.416525891050696, 3892325.337491421028972 ], [ 4953217.650133959949017, 3892301.293402985669672 ], [ 4953242.149274913594127, 3892291.491078640334308 ], [ 4953250.767199703492224, 3892312.25665329862386 ], [ 4953285.93078844062984, 3892298.097524050157517 ], [ 4953299.718622859567404, 3892331.97789772041142 ], [ 4953280.407668739557266, 3892339.601580110378563 ], [ 4953284.428740190342069, 3892349.801966275088489 ], [ 4953255.029991734772921, 3892361.419061179738492 ], [ 4953252.732665068469942, 3892355.226143598090857 ], [ 4953233.133220925927162, 3892363.213645010255277 ], [ 4953235.718205023556948, 3892369.771031573880464 ], [ 4953204.878200434148312, 3892382.114723539911211 ], [ 4953180.749411656521261, 3892322.733126115053892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953036.791448407806456, 3894930.087922232691199 ], [ 4953069.920432320795953, 3894928.306471264455467 ], [ 4953069.074787140823901, 3894912.647925708908588 ], [ 4953088.952191162854433, 3894911.579074110370129 ], [ 4953089.799118645489216, 3894926.145234980154783 ], [ 4953119.183338248170912, 3894924.359409604221582 ], [ 4953121.444211017340422, 3894961.139113905839622 ], [ 4953039.053294580429792, 3894966.139362849760801 ], [ 4953036.791448407806456, 3894930.087922232691199 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952711.911148580722511, 3895132.525562761817127 ], [ 4952710.428247854113579, 3895168.936726035084575 ], [ 4952697.466542797163129, 3895168.193301843479276 ], [ 4952696.870408861897886, 3895185.306667147669941 ], [ 4952633.212865559384227, 3895182.683371970430017 ], [ 4952634.992645653896034, 3895138.62584219314158 ], [ 4952664.37319805379957, 3895139.752547345589846 ], [ 4952664.671893348917365, 3895130.649671813007444 ], [ 4952711.911148580722511, 3895132.525562761817127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952700.271131529472768, 3891293.140252415090799 ], [ 4952727.38051345013082, 3891269.139518996234983 ], [ 4952750.110440181568265, 3891294.655111959669739 ], [ 4952762.223373925313354, 3891283.745461494196206 ], [ 4952776.896753804758191, 3891300.51255957223475 ], [ 4952737.674875285476446, 3891335.058772148098797 ], [ 4952700.271131529472768, 3891293.140252415090799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952181.310910984873772, 3889121.243344199843705 ], [ 4952179.260551080107689, 3889150.37120207818225 ], [ 4952169.464845094829798, 3889149.995808123145252 ], [ 4952166.243175474926829, 3889195.508067788090557 ], [ 4952130.230998898856342, 3889192.917790346313268 ], [ 4952132.283393651247025, 3889161.969291876070201 ], [ 4952120.183557813055813, 3889160.863014131784439 ], [ 4952123.403481079265475, 3889116.807258733548224 ], [ 4952181.310910984873772, 3889121.243344199843705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952151.184729246422648, 3889261.762003443669528 ], [ 4952149.201782900840044, 3889232.265378559473902 ], [ 4952185.507890577428043, 3889229.758231545332819 ], [ 4952188.909610586240888, 3889278.191133769229054 ], [ 4952180.265174486674368, 3889278.909443767741323 ], [ 4952182.82055226713419, 3889311.683880005963147 ], [ 4952156.599158588796854, 3889313.838493059854954 ], [ 4952154.045004603452981, 3889279.971677501220256 ], [ 4952133.586816882714629, 3889281.404682199470699 ], [ 4952132.167128352448344, 3889263.196664877701551 ], [ 4952151.184729246422648, 3889261.762003443669528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951935.914092207327485, 3891067.954064377583563 ], [ 4951906.799722066149116, 3891082.121847184374928 ], [ 4951887.54220883268863, 3891042.409932104870677 ], [ 4951916.944712954573333, 3891028.242457375396043 ], [ 4951935.914092207327485, 3891067.954064377583563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951704.233186477795243, 3895687.390115732327104 ], [ 4951662.198299308307469, 3895669.136072563938797 ], [ 4951659.021906880661845, 3895676.050931746605784 ], [ 4951623.003140591084957, 3895686.934082963503897 ], [ 4951610.047002114355564, 3895681.457510801032186 ], [ 4951600.864305140450597, 3895650.496169450692832 ], [ 4951614.983772355131805, 3895646.142566018737853 ], [ 4951610.105810781940818, 3895629.387118901591748 ], [ 4951673.787119891494513, 3895610.160275604110211 ], [ 4951684.404646271839738, 3895645.856943644117564 ], [ 4951716.075065173208714, 3895659.3655946245417 ], [ 4951704.233186477795243, 3895687.390115732327104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951594.310965821146965, 3900944.569753113668412 ], [ 4951646.449991459958255, 3900934.068894326686859 ], [ 4951653.325211845338345, 3900966.484261273872107 ], [ 4951601.186246360652149, 3900976.985106929671019 ], [ 4951594.310965821146965, 3900944.569753113668412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951357.778648645617068, 3891507.895491181407124 ], [ 4951424.30227317661047, 3891531.638402597047389 ], [ 4951415.053792431950569, 3891557.845254854764789 ], [ 4951348.530224656686187, 3891534.102365959901363 ], [ 4951357.778648645617068, 3891507.895491181407124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950961.508327093906701, 3894499.862690391484648 ], [ 4951023.450150933116674, 3894492.648645435459912 ], [ 4951028.016421161592007, 3894531.251358645036817 ], [ 4950991.139439072459936, 3894535.580080966930836 ], [ 4950992.564448133111, 3894549.418553146068007 ], [ 4950967.499706814996898, 3894552.303864113986492 ], [ 4950961.508327093906701, 3894499.862690391484648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950714.177829201333225, 3893079.124541251920164 ], [ 4950761.420422255061567, 3893081.361130529548973 ], [ 4950759.946851575747132, 3893111.582180130761117 ], [ 4950744.391391674056649, 3893110.836852696724236 ], [ 4950743.216705899685621, 3893131.226761370897293 ], [ 4950711.817728389985859, 3893129.735819154419005 ], [ 4950714.177829201333225, 3893079.124541251920164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949485.928888310678303, 3889945.211855455301702 ], [ 4949458.259745202958584, 3889955.014264120254666 ], [ 4949449.928919102065265, 3889931.70134378829971 ], [ 4949477.598083137534559, 3889921.898926681373268 ], [ 4949485.928888310678303, 3889945.211855455301702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948366.26050263363868, 3894004.453436214476824 ], [ 4948406.002663460560143, 3894015.781541593372822 ], [ 4948397.040896352380514, 3894047.087557312566787 ], [ 4948357.010709099471569, 3894035.759174505248666 ], [ 4948366.26050263363868, 3894004.453436214476824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947257.669255957007408, 3898870.672932438086718 ], [ 4947232.322338277474046, 3898872.104937273543328 ], [ 4947231.754399643279612, 3898863.729404891375452 ], [ 4947194.886085259728134, 3898865.878569792024791 ], [ 4947193.187856266275048, 3898834.925905437208712 ], [ 4947215.366262024268508, 3898833.854932316578925 ], [ 4947214.514520640484989, 3898821.109569909982383 ], [ 4947254.551092830486596, 3898818.96349701937288 ], [ 4947257.669255957007408, 3898870.672932438086718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947155.521968096494675, 3888902.916838681325316 ], [ 4947127.563780532218516, 3888913.44961681868881 ], [ 4947119.51663189008832, 3888892.322473347187042 ], [ 4947147.186714051291347, 3888881.789409450255334 ], [ 4947155.521968096494675, 3888902.916838681325316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944049.49681020155549, 3890316.560465679503977 ], [ 4944044.577659485861659, 3890341.681116284802556 ], [ 4944019.804333075881004, 3890336.926462825387716 ], [ 4944024.723461504094303, 3890311.805807759519666 ], [ 4944049.49681020155549, 3890316.560465679503977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943612.456195811741054, 3892716.161678669508547 ], [ 4943618.281782536767423, 3892639.335445468779653 ], [ 4943666.100678535178304, 3892643.016557389404625 ], [ 4943664.061626344919205, 3892669.960354111623019 ], [ 4943646.201353140175343, 3892668.853084571193904 ], [ 4943642.415019007399678, 3892718.37138523068279 ], [ 4943612.456195811741054, 3892716.161678669508547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943319.334607933647931, 3890431.015616070479155 ], [ 4943381.266950036399066, 3890444.175126323010772 ], [ 4943363.913416956551373, 3890525.725491242483258 ], [ 4943301.693446237593889, 3890512.201656414661556 ], [ 4943319.334607933647931, 3890431.015616070479155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4941965.408729337155819, 3890196.532430704683065 ], [ 4941977.845466160215437, 3890134.276163361500949 ], [ 4942017.310454363003373, 3890142.317428192589432 ], [ 4942004.87391092069447, 3890204.209549991413951 ], [ 4941965.408729337155819, 3890196.532430704683065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993892.805241318419576, 3910766.517982521094382 ], [ 4993898.636882800608873, 3910739.223738883156329 ], [ 4993933.739757615141571, 3910746.601352556142956 ], [ 4993928.195971613749862, 3910773.896367489825934 ], [ 4993892.805241318419576, 3910766.517982521094382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993415.837868352420628, 3910526.361016504932195 ], [ 4993425.628161540254951, 3910525.659048988949507 ], [ 4993425.904315136373043, 3910530.02939199982211 ], [ 4993436.558283940888941, 3910529.329748701304197 ], [ 4993439.630192670971155, 3910564.658945657778531 ], [ 4993419.184980832971632, 3910566.424684876576066 ], [ 4993415.837868352420628, 3910526.361016504932195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993169.582783754914999, 3911856.244747481774539 ], [ 4993186.37721052300185, 3911819.876340472605079 ], [ 4993222.318112035281956, 3911836.358619732782245 ], [ 4993205.523646729998291, 3911872.727004648651928 ], [ 4993169.582783754914999, 3911856.244747481774539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992570.906124637462199, 3912138.673041465226561 ], [ 4992545.254328256472945, 3912150.257233953103423 ], [ 4992536.668326473794878, 3912131.299493718892336 ], [ 4992562.319170613773167, 3912120.079424360767007 ], [ 4992570.906124637462199, 3912138.673041465226561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989039.377164808101952, 3907288.744367090985179 ], [ 4989072.48416854813695, 3907290.648575342725962 ], [ 4989070.654588686302304, 3907331.062670432962477 ], [ 4989037.546715996228158, 3907329.522594617214054 ], [ 4989039.377164808101952, 3907288.744367090985179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988732.484399049542844, 3908075.590727219358087 ], [ 4988732.796095360070467, 3908066.124059601221234 ], [ 4988747.766948885284364, 3908066.525796476285905 ], [ 4988745.916866043582559, 3908115.314932737499475 ], [ 4988722.885247339494526, 3908114.528820829465985 ], [ 4988722.578126963227987, 3908122.174836723133922 ], [ 4988698.682759421877563, 3908121.386576535180211 ], [ 4988700.528185659088194, 3908074.418088912498206 ], [ 4988732.484399049542844, 3908075.590727219358087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988478.057466058991849, 3905851.196040402166545 ], [ 4988476.544875686988235, 3905880.322832722216845 ], [ 4988434.798741898499429, 3905878.033631165977567 ], [ 4988436.311287134885788, 3905848.906836540438235 ], [ 4988478.057466058991849, 3905851.196040402166545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988426.96183312125504, 3905672.643485599197447 ], [ 4988401.62455740571022, 3905671.851891517173499 ], [ 4988402.273243388161063, 3905642.722939942032099 ], [ 4988427.898491136729717, 3905643.515254478901625 ], [ 4988426.96183312125504, 3905672.643485599197447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987922.030492241494358, 3913279.216741242446005 ], [ 4987955.449697444215417, 3913268.375687600579113 ], [ 4987967.731940844096243, 3913307.004378652200103 ], [ 4987934.600640965625644, 3913317.846131850033998 ], [ 4987922.030492241494358, 3913279.216741242446005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987893.378514057956636, 3905680.418159787543118 ], [ 4987896.137989880517125, 3905612.696425836998969 ], [ 4987924.641825507394969, 3905613.859532051254064 ], [ 4987921.882277951575816, 3905681.581263125874102 ], [ 4987893.378514057956636, 3905680.418159787543118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987087.094114910811186, 3896995.35892881732434 ], [ 4987097.46791590936482, 3896993.563688179012388 ], [ 4987102.003363518975675, 3897023.433476741425693 ], [ 4987053.018362631089985, 3897030.960250297561288 ], [ 4987041.678700420074165, 3896956.64992966549471 ], [ 4987080.290015724487603, 3896950.918379005044699 ], [ 4987087.094114910811186, 3896995.35892881732434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986709.70992786437273, 3902220.442053152713925 ], [ 4986733.611485242843628, 3902220.864412682596594 ], [ 4986732.651720656082034, 3902260.188259467482567 ], [ 4986708.75108515098691, 3902259.401771594304591 ], [ 4986709.70992786437273, 3902220.442053152713925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986701.382649871520698, 3905639.254475694149733 ], [ 4986690.026888496242464, 3905690.933577310293913 ], [ 4986668.44260723143816, 3905686.147304272744805 ], [ 4986666.985157513059676, 3905693.426398327108473 ], [ 4986643.386151645332575, 3905688.271108641289175 ], [ 4986645.135084055364132, 3905679.536194296553731 ], [ 4986631.032906264998019, 3905676.588821639772505 ], [ 4986636.563211334869266, 3905652.205427223350853 ], [ 4986627.641361827962101, 3905650.363058574963361 ], [ 4986631.138336384668946, 3905633.257358339615166 ], [ 4986674.882878644391894, 3905642.831263654399663 ], [ 4986676.631824182346463, 3905634.096351600252092 ], [ 4986701.382649871520698, 3905639.254475694149733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986627.510293283499777, 3906059.283137189690024 ], [ 4986644.041625157929957, 3906010.529650464188308 ], [ 4986658.427134978584945, 3906015.298381546977907 ], [ 4986660.746614609844983, 3906008.749648383352906 ], [ 4986710.520432294346392, 3906025.256804298609495 ], [ 4986689.347365071065724, 3906088.200102022383362 ], [ 4986660.864369336515665, 3906078.663314949255437 ], [ 4986663.474443417973816, 3906071.022892589680851 ], [ 4986627.510293283499777, 3906059.283137189690024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986530.469491822645068, 3903453.319362316280603 ], [ 4986524.430122814141214, 3903450.027507917489856 ], [ 4986515.46243311651051, 3903466.75578138558194 ], [ 4986490.729016905650496, 3903453.586987154558301 ], [ 4986527.176620185375214, 3903386.311149292625487 ], [ 4986557.950342648662627, 3903402.407707549631596 ], [ 4986530.469491822645068, 3903453.319362316280603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986510.316450756043196, 3908905.057915310375392 ], [ 4986552.678992003202438, 3908888.774866290390491 ], [ 4986571.847666321322322, 3908938.707659806124866 ], [ 4986583.086752978153527, 3908934.365392615552992 ], [ 4986596.819609988480806, 3908970.083807349205017 ], [ 4986591.056118092499673, 3908972.254587444942445 ], [ 4986596.206596655771136, 3908985.375895873643458 ], [ 4986563.930718591436744, 3908997.677933504804969 ], [ 4986560.497942993417382, 3908988.56626779679209 ], [ 4986549.835584995336831, 3908992.545813337899745 ], [ 4986534.384955192916095, 3908952.817787121981382 ], [ 4986523.434677852317691, 3908956.796643496956676 ], [ 4986509.414691464044154, 3908920.713436577003449 ], [ 4986515.46609724406153, 3908918.543338398449123 ], [ 4986510.316450756043196, 3908905.057915310375392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986459.077761642634869, 3905104.483691863249987 ], [ 4986452.075066531077027, 3905142.336425040382892 ], [ 4986457.255514865741134, 3905143.441391314845532 ], [ 4986452.293217739090323, 3905171.103380983229727 ], [ 4986389.547558496706188, 3905159.663116060663015 ], [ 4986401.224459198303521, 3905094.147668921388686 ], [ 4986459.077761642634869, 3905104.483691863249987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986426.715411790646613, 3894223.813477640040219 ], [ 4986421.552275350317359, 3894214.697720346972346 ], [ 4986398.763210819102824, 3894227.751148434821516 ], [ 4986383.273764844983816, 3894200.403895746916533 ], [ 4986446.447906678542495, 3894164.508202279917896 ], [ 4986462.798861303366721, 3894192.949969525914639 ], [ 4986442.028877324424684, 3894204.915870068594813 ], [ 4986446.331339889205992, 3894212.573025539983064 ], [ 4986426.715411790646613, 3894223.813477640040219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986188.006880995817482, 3909319.02431732788682 ], [ 4986172.923185894265771, 3909365.596877881325781 ], [ 4986128.908059467561543, 3909351.289372485596687 ], [ 4986140.219895157031715, 3909316.724063700530678 ], [ 4986161.796071730554104, 3909323.694707734975964 ], [ 4986165.56699160579592, 3909312.051565421745181 ], [ 4986188.006880995817482, 3909319.02431732788682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985825.486167429946363, 3901070.197248067706823 ], [ 4985810.098301015794277, 3901121.866890938952565 ], [ 4985816.716892069205642, 3901124.067577032372355 ], [ 4985804.232612018473446, 3901165.912661380600184 ], [ 4985776.892552078701556, 3901157.836122499313205 ], [ 4985783.861207538284361, 3901134.184334715362638 ], [ 4985770.335156892426312, 3901130.146417926065624 ], [ 4985775.560992643237114, 3901112.680672632995993 ], [ 4985763.186028562486172, 3901109.009654209483415 ], [ 4985773.926573342643678, 3901073.714724943973124 ], [ 4985788.603751516900957, 3901078.119538625702262 ], [ 4985793.82873463537544, 3901061.017926397267729 ], [ 4985825.486167429946363, 3901070.197248067706823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985805.095856368541718, 3900806.517398026771843 ], [ 4985780.220628635026515, 3900851.245774465613067 ], [ 4985721.546324718743563, 3900819.061432265676558 ], [ 4985741.214825126342475, 3900783.787914026528597 ], [ 4985780.331662029027939, 3900805.00140343233943 ], [ 4985785.537456462159753, 3900795.910628147423267 ], [ 4985805.095856368541718, 3900806.517398026771843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985512.73974288161844, 3906843.483784453943372 ], [ 4985422.23961025942117, 3906880.773127201478928 ], [ 4985413.937425163574517, 3906860.726022694259882 ], [ 4985423.736663536168635, 3906856.743968654423952 ], [ 4985414.862956088967621, 3906834.874837588984519 ], [ 4985407.080972319468856, 3906838.133446633350104 ], [ 4985395.630634478293359, 3906810.067920811474323 ], [ 4985451.544269179925323, 3906787.261121931951493 ], [ 4985468.721869803965092, 3906828.449122210033238 ], [ 4985501.001585572957993, 3906815.41752502322197 ], [ 4985512.73974288161844, 3906843.483784453943372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985406.21206468809396, 3916002.275717628654093 ], [ 4985423.126390541903675, 3916030.718606413342059 ], [ 4985380.755782120861113, 3916055.37855387525633 ], [ 4985364.130129580385983, 3916026.57224600110203 ], [ 4985406.21206468809396, 3916002.275717628654093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985237.789705252274871, 3905986.024498203769326 ], [ 4985246.82169755641371, 3906062.513756330590695 ], [ 4985211.683472242206335, 3906066.435546664521098 ], [ 4985202.651381318457425, 3905989.946300158742815 ], [ 4985237.789705252274871, 3905986.024498203769326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985051.916607049293816, 3906413.073691869620234 ], [ 4984981.340250411070883, 3906426.379099586978555 ], [ 4984975.365265483036637, 3906396.141955018509179 ], [ 4985046.229635134339333, 3906382.837215474806726 ], [ 4985051.916607049293816, 3906413.073691869620234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984128.320867232978344, 3909442.299875998403877 ], [ 4984102.39844483602792, 3909446.972949590999633 ], [ 4984097.277502276003361, 3909420.743404016364366 ], [ 4984123.488705318421125, 3909415.706868409644812 ], [ 4984128.320867232978344, 3909442.299875998403877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983891.492438440211117, 3905316.126592413056642 ], [ 4983909.666282079182565, 3905301.96781859267503 ], [ 4983923.73498088400811, 3905319.478960657957941 ], [ 4983871.231699359603226, 3905360.867598474957049 ], [ 4983849.124201157130301, 3905333.142061160411686 ], [ 4983883.452807500958443, 3905306.276289967354387 ], [ 4983891.492438440211117, 3905316.126592413056642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983540.911894613876939, 3905379.034720003139228 ], [ 4983574.216672874055803, 3905420.987117719370872 ], [ 4983566.716540818102658, 3905426.795834708027542 ], [ 4983581.072499031201005, 3905444.671596461441368 ], [ 4983541.839997752569616, 3905475.531838386319578 ], [ 4983528.920387229882181, 3905459.115954007487744 ], [ 4983521.131485280580819, 3905465.288146503269672 ], [ 4983497.875299802981317, 3905436.103707330301404 ], [ 4983485.182027186267078, 3905446.270001154392958 ], [ 4983459.628953997045755, 3905414.16722044441849 ], [ 4983496.265706134028733, 3905385.121506377588958 ], [ 4983510.6217335248366, 3905402.997230043634772 ], [ 4983540.911894613876939, 3905379.034720003139228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983458.596027721650898, 3917422.552915567997843 ], [ 4983497.606780252419412, 3917355.642514837905765 ], [ 4983532.961242567747831, 3917376.116013903170824 ], [ 4983505.221758040599525, 3917423.025078719481826 ], [ 4983492.861601284705102, 3917416.077874271664768 ], [ 4983481.015488140285015, 3917435.713698376435786 ], [ 4983458.596027721650898, 3917422.552915567997843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983414.999770179390907, 3917481.077664092648774 ], [ 4983432.448747618123889, 3917527.727296062279493 ], [ 4983385.206287843175232, 3917545.096432691905648 ], [ 4983372.905952306464314, 3917512.295857292599976 ], [ 4983391.630932178348303, 3917505.056478408630937 ], [ 4983386.769203207455575, 3917491.572247066069394 ], [ 4983414.999770179390907, 3917481.077664092648774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983432.695889792405069, 3909586.334056734573096 ], [ 4983434.220521382987499, 3909549.560164785943925 ], [ 4983496.115388952195644, 3909551.524154538754374 ], [ 4983494.877731449902058, 3909588.662840927485377 ], [ 4983432.695889792405069, 3909586.334056734573096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982401.034502789378166, 3904950.018158722668886 ], [ 4982373.939681145362556, 3904961.972864326555282 ], [ 4982363.051336707547307, 3904938.279532114509493 ], [ 4982390.146177327260375, 3904926.32481570309028 ], [ 4982401.034502789378166, 3904950.018158722668886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982292.087831540964544, 3905120.912415120285004 ], [ 4982309.841455196961761, 3905164.648571907542646 ], [ 4982280.154517051763833, 3905176.961615099571645 ], [ 4982262.112903302535415, 3905133.224823815748096 ], [ 4982292.087831540964544, 3905120.912415120285004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981898.263783525675535, 3895890.032753425650299 ], [ 4981885.742968897335231, 3895949.721797717735171 ], [ 4981825.855968195013702, 3895937.570493264123797 ], [ 4981838.377476040273905, 3895877.517293536569923 ], [ 4981898.263783525675535, 3895890.032753425650299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981757.648022771812975, 3904993.714093945454806 ], [ 4981726.520574009977281, 3905006.388635584618896 ], [ 4981705.900303842499852, 3904956.456180894747376 ], [ 4981737.027800556272268, 3904943.781615754123777 ], [ 4981757.648022771812975, 3904993.714093945454806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981703.208668132312596, 3901544.538795170839876 ], [ 4981742.936328709125519, 3901551.182545678224415 ], [ 4981740.600457984022796, 3901565.378398621454835 ], [ 4981753.267023852095008, 3901567.591697378549725 ], [ 4981750.056528646498919, 3901586.519284273032099 ], [ 4981738.25393568072468, 3901584.307931505143642 ], [ 4981733.586304602213204, 3901610.878993069753051 ], [ 4981674.283742038533092, 3901600.549927998799831 ], [ 4981678.659234357997775, 3901575.798854767344892 ], [ 4981697.371094429865479, 3901579.118113635107875 ], [ 4981703.208668132312596, 3901544.538795170839876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981617.779391038231552, 3903677.791867550462484 ], [ 4981629.885401994921267, 3903672.721223883330822 ], [ 4981623.87166253849864, 3903657.778321190271527 ], [ 4981654.135086979717016, 3903645.829988611862063 ], [ 4981663.583937432616949, 3903669.883907733485103 ], [ 4981670.789630177430809, 3903666.987055649515241 ], [ 4981680.524786066263914, 3903691.769887828268111 ], [ 4981654.584974323399365, 3903701.907251421362162 ], [ 4981651.434542079456151, 3903694.253408543765545 ], [ 4981628.088068228214979, 3903703.668363667093217 ], [ 4981617.779391038231552, 3903677.791867550462484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981430.159398125484586, 3903489.115083820186555 ], [ 4981457.624827080406249, 3903440.747120281681418 ], [ 4981478.907541954889894, 3903452.811148224864155 ], [ 4981470.234229703433812, 3903468.085232030134648 ], [ 4981496.980957745574415, 3903483.438702356535941 ], [ 4981478.188792584463954, 3903516.532542288303375 ], [ 4981430.159398125484586, 3903489.115083820186555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981091.096383981406689, 3901863.240089872851968 ], [ 4981082.167224920354784, 3901863.948471624869853 ], [ 4981083.861897419206798, 3901878.881619169376791 ], [ 4981032.010841901414096, 3901884.956458637490869 ], [ 4981026.360481580719352, 3901835.786193942185491 ], [ 4981087.140800940804183, 3901829.002960697282106 ], [ 4981091.096383981406689, 3901863.240089872851968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981074.485979052260518, 3901562.794990323018283 ], [ 4981026.917694237083197, 3901585.265269542112947 ], [ 4981007.713983114808798, 3901544.075758007355034 ], [ 4981054.993525519035757, 3901521.968933721072972 ], [ 4981074.485979052260518, 3901562.794990323018283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980760.997484502382576, 3904624.079512776806951 ], [ 4980779.909783089533448, 3904665.996546795126051 ], [ 4980740.41963473893702, 3904684.115679045207798 ], [ 4980716.634609364904463, 3904631.992201746441424 ], [ 4980733.064188533462584, 3904624.745930370874703 ], [ 4980737.649712439626455, 3904634.587636562995613 ], [ 4980760.997484502382576, 3904624.079512776806951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980742.789694064296782, 3904914.252177083399147 ], [ 4980719.138111796230078, 3904932.04228073079139 ], [ 4980702.486831617541611, 3904909.429267308209091 ], [ 4980725.849664106965065, 3904892.002641892060637 ], [ 4980742.789694064296782, 3904914.252177083399147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980508.623169418424368, 3907161.157448878046125 ], [ 4980564.453129734843969, 3907174.025262392126024 ], [ 4980557.768895428627729, 3907202.04869159637019 ], [ 4980501.938990227878094, 3907189.180891742929816 ], [ 4980508.623169418424368, 3907161.157448878046125 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980506.806836773641407, 3903414.601057941559702 ], [ 4980521.267902254126966, 3903386.230698723345995 ], [ 4980570.168740279972553, 3903410.735400936566293 ], [ 4980555.995604388415813, 3903439.106369760353118 ], [ 4980506.806836773641407, 3903414.601057941559702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980493.032857596874237, 3902086.219833943527192 ], [ 4980484.709449292160571, 3902073.456898070406169 ], [ 4980509.512103928253055, 3902057.125676424708217 ], [ 4980517.261145832948387, 3902069.159090980887413 ], [ 4980526.489448235370219, 3902063.353345817886293 ], [ 4980546.579964487813413, 3902094.348810765426606 ], [ 4980531.006413866765797, 3902104.510125473607332 ], [ 4980527.848244202323258, 3902100.133585874922574 ], [ 4980504.488741201348603, 3902115.01144830789417 ], [ 4980509.081204300746322, 3902121.940065658651292 ], [ 4980491.777382598258555, 3902133.189981400500983 ], [ 4980470.538111871108413, 3902100.735500915441662 ], [ 4980493.032857596874237, 3902086.219833943527192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980455.387146808207035, 3895773.571763235609978 ], [ 4980529.473899679258466, 3895747.517697854433209 ], [ 4980540.352360116317868, 3895778.128588148858398 ], [ 4980466.552928746677935, 3895804.547386539634317 ], [ 4980455.387146808207035, 3895773.571763235609978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980412.082083064131439, 3902360.232262024655938 ], [ 4980439.931912770494819, 3902398.52735923230648 ], [ 4980420.894810271449387, 3902412.322422966361046 ], [ 4980421.756342704407871, 3902413.416713417973369 ], [ 4980399.546682016924024, 3902429.389594460837543 ], [ 4980392.655218839645386, 3902420.27114787325263 ], [ 4980371.599099040031433, 3902435.518328242469579 ], [ 4980349.778360069729388, 3902405.611576173454523 ], [ 4980412.082083064131439, 3902360.232262024655938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980271.819987431168556, 3899744.371704411227256 ], [ 4980284.428347336128354, 3899773.529843155294657 ], [ 4980228.214152655564249, 3899797.43905084580183 ], [ 4980215.893750692717731, 3899768.281569899525493 ], [ 4980271.819987431168556, 3899744.371704411227256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980256.60075547453016, 3903527.659517172258347 ], [ 4980242.144041799008846, 3903554.209372849203646 ], [ 4980221.14722344186157, 3903542.875214884057641 ], [ 4980218.544333501718938, 3903547.967343307100236 ], [ 4980199.272907041944563, 3903537.729382873978466 ], [ 4980216.044512178748846, 3903506.086743768304586 ], [ 4980256.60075547453016, 3903527.659517172258347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980192.552536442875862, 3900824.573583488352597 ], [ 4980197.682160529308021, 3900849.345730644185096 ], [ 4980161.377909186296165, 3900856.91287660645321 ], [ 4980156.248253133147955, 3900832.140736266504973 ], [ 4980192.552536442875862, 3900824.573583488352597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980105.129654504358768, 3899713.783335368148983 ], [ 4980130.789499199017882, 3899701.459096688777208 ], [ 4980140.537898793816566, 3899721.507636809255928 ], [ 4980115.166076615452766, 3899733.832497108727694 ], [ 4980105.129654504358768, 3899713.783335368148983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980004.40876351762563, 3901652.195330421440303 ], [ 4980071.025490615516901, 3901610.46598308486864 ], [ 4980085.949040996842086, 3901634.167164982296526 ], [ 4980019.332349237054586, 3901675.89647592836991 ], [ 4980004.40876351762563, 3901652.195330421440303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979968.671945611014962, 3909043.629198146983981 ], [ 4979969.730469090864062, 3909086.235032718162984 ], [ 4979925.390299229882658, 3909087.230562323704362 ], [ 4979924.331705489195883, 3909044.624729466624558 ], [ 4979968.671945611014962, 3909043.629198146983981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979963.146679698489606, 3907487.679038870614022 ], [ 4979946.965617533773184, 3907513.861212363932282 ], [ 4979905.847255920059979, 3907488.646291075274348 ], [ 4979922.028293036855757, 3907462.464093234855682 ], [ 4979963.146679698489606, 3907487.679038870614022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979941.535675062797964, 3904463.15172101650387 ], [ 4979978.134095307439566, 3904450.487072260119021 ], [ 4979981.280139131471515, 3904460.325501835439354 ], [ 4980002.028983811847866, 3904453.088224767707288 ], [ 4980010.899925597012043, 3904478.596835057716817 ], [ 4979953.553515750914812, 3904498.134608149528503 ], [ 4979941.535675062797964, 3904463.15172101650387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979723.11326539516449, 3902149.713125262409449 ], [ 4979754.113068224862218, 3902196.753504952881485 ], [ 4979722.966698376461864, 3902217.077063151169568 ], [ 4979688.234978023916483, 3902164.566637052688748 ], [ 4979704.096156191080809, 3902154.405459971167147 ], [ 4979707.828041070140898, 3902159.875543913803995 ], [ 4979723.11326539516449, 3902149.713125262409449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979565.264018094167113, 3908401.87727553024888 ], [ 4979549.083100689575076, 3908428.423834225628525 ], [ 4979520.617447044700384, 3908410.883725041523576 ], [ 4979503.571256338618696, 3908438.156699674669653 ], [ 4979483.444064542651176, 3908425.732564606703818 ], [ 4979516.671129870228469, 3908371.912989929784089 ], [ 4979565.264018094167113, 3908401.87727553024888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979546.981284406036139, 3904221.237772884313017 ], [ 4979565.749244478531182, 3904197.974074034485966 ], [ 4979610.592726956121624, 3904234.120449270587415 ], [ 4979591.536793665029109, 3904257.383492134977132 ], [ 4979546.981284406036139, 3904221.237772884313017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979540.928372345864773, 3904622.133542343042791 ], [ 4979550.367705600336194, 3904651.28455195389688 ], [ 4979493.889022601768374, 3904669.368662435561419 ], [ 4979484.16167922411114, 3904640.217048334889114 ], [ 4979540.928372345864773, 3904622.133542343042791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979526.768800954334438, 3900528.17576140910387 ], [ 4979497.936506111174822, 3900543.042620191816241 ], [ 4979487.611929451115429, 3900522.993055145721883 ], [ 4979516.156240415759385, 3900508.125561115331948 ], [ 4979526.768800954334438, 3900528.17576140910387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979346.211925493553281, 3901851.400644088629633 ], [ 4979363.711309223435819, 3901882.753747458104044 ], [ 4979320.460862227715552, 3901907.057039331644773 ], [ 4979292.919718637131155, 3901858.203984752297401 ], [ 4979314.544565704651177, 3901846.234372938517481 ], [ 4979324.298296480439603, 3901863.733737487345934 ], [ 4979346.211925493553281, 3901851.400644088629633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979195.950375870801508, 3901820.125106438528746 ], [ 4979175.992256457917392, 3901860.500625942833722 ], [ 4979134.278333256021142, 3901840.019411942921579 ], [ 4979143.823422349058092, 3901820.741027737502009 ], [ 4979139.507560874335468, 3901818.911075891926885 ], [ 4979149.920540850609541, 3901797.813908453565091 ], [ 4979195.950375870801508, 3901820.125106438528746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979088.925144767388701, 3901904.737091398797929 ], [ 4979101.069880342110991, 3901881.822975946124643 ], [ 4979110.851175215095282, 3901886.577736208215356 ], [ 4979120.39466293156147, 3901868.027601831126958 ], [ 4979157.216734099201858, 3901886.677598748356104 ], [ 4979135.527678350917995, 3901928.505944320932031 ], [ 4979088.925144767388701, 3901904.737091398797929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978876.948144836351275, 3901913.749131841119379 ], [ 4978895.179427492432296, 3901872.64142395881936 ], [ 4978937.760562096722424, 3901891.667604316491634 ], [ 4978929.07959967572242, 3901910.947916724253446 ], [ 4978933.68344515375793, 3901912.778453001286834 ], [ 4978924.133069404400885, 3901934.605818445794284 ], [ 4978876.948144836351275, 3901913.749131841119379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978789.971221216022968, 3908371.075182969216257 ], [ 4978805.908746803179383, 3908323.407965440768749 ], [ 4978837.269723732955754, 3908333.670871383044869 ], [ 4978821.332148481160402, 3908381.338070614729077 ], [ 4978789.971221216022968, 3908371.075182969216257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978699.569512196816504, 3907830.509247462265193 ], [ 4978660.04495729599148, 3907867.566267970018089 ], [ 4978636.775482761673629, 3907843.119692013133317 ], [ 4978676.587962713092566, 3907806.063253195025027 ], [ 4978699.569512196816504, 3907830.509247462265193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978611.237860298715532, 3895523.42167705623433 ], [ 4978624.210349567234516, 3895518.715676257852465 ], [ 4978622.493688326328993, 3895513.250067828223109 ], [ 4978658.238716159947217, 3895500.945973455905914 ], [ 4978670.263062772341073, 3895535.563970995601267 ], [ 4978621.545598324388266, 3895552.574045539833605 ], [ 4978611.237860298715532, 3895523.42167705623433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978561.480858762748539, 3914119.884591692592949 ], [ 4978578.870528646744788, 3914199.302862203679979 ], [ 4978548.631993629038334, 3914205.792754509951919 ], [ 4978531.241462214849889, 3914126.738635374698788 ], [ 4978561.480858762748539, 3914119.884591692592949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978505.249197925440967, 3906466.419433138798922 ], [ 4978524.846681097522378, 3906458.086161351297051 ], [ 4978533.442062212154269, 3906478.131745723076165 ], [ 4978514.132526502944529, 3906486.465624964796007 ], [ 4978505.249197925440967, 3906466.419433138798922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978444.86802083812654, 3908455.18121801270172 ], [ 4978468.461497045122087, 3908462.514101070351899 ], [ 4978461.212465111166239, 3908486.53140865964815 ], [ 4978437.618233038112521, 3908479.562662699725479 ], [ 4978444.86802083812654, 3908455.18121801270172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978431.63447682838887, 3908856.062959323637187 ], [ 4978469.90016146749258, 3908868.524931972380728 ], [ 4978453.959675300866365, 3908918.013019588775933 ], [ 4978415.69327915366739, 3908905.915200197603554 ], [ 4978431.63447682838887, 3908856.062959323637187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978399.951850038021803, 3904529.742285908665508 ], [ 4978391.383613996207714, 3904496.588090052828193 ], [ 4978436.329682117328048, 3904485.03148923208937 ], [ 4978443.755339795723557, 3904513.813688314985484 ], [ 4978430.789540789090097, 3904517.42741187941283 ], [ 4978431.93284425418824, 3904521.435292255599052 ], [ 4978399.951850038021803, 3904529.742285908665508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978168.96865751594305, 3911752.546497210394591 ], [ 4978197.200107565149665, 3911743.502994921524078 ], [ 4978252.973422703333199, 3911914.763899070676416 ], [ 4978224.45348396897316, 3911924.170864833053201 ], [ 4978168.96865751594305, 3911752.546497210394591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978071.444753024727106, 3902461.87192438961938 ], [ 4978087.645488660782576, 3902426.949594421312213 ], [ 4978110.949449353851378, 3902437.558693108148873 ], [ 4978095.036668308079243, 3902472.481618394609541 ], [ 4978071.444753024727106, 3902461.87192438961938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978040.512522019445896, 3907695.47163217747584 ], [ 4978071.92688627820462, 3907680.972755393479019 ], [ 4978089.411605175584555, 3907718.151231216266751 ], [ 4978057.997274819761515, 3907732.650087894871831 ], [ 4978040.512522019445896, 3907695.47163217747584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977974.330098924227059, 3906176.172612133435905 ], [ 4977938.011391658335924, 3906194.302565834484994 ], [ 4977926.82786518894136, 3906172.431057662237436 ], [ 4977963.146594375371933, 3906154.301089092623442 ], [ 4977974.330098924227059, 3906176.172612133435905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977906.326529621146619, 3904014.543308262713253 ], [ 4977873.739249920472503, 3904037.05077572632581 ], [ 4977856.513699429109693, 3904012.253545539919287 ], [ 4977888.81303234025836, 3903989.745450605638325 ], [ 4977906.326529621146619, 3904014.543308262713253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977889.203564614057541, 3905853.736300469376147 ], [ 4977884.693953725509346, 3905807.482047513592988 ], [ 4977939.125901871360838, 3905802.498978838324547 ], [ 4977942.790030565112829, 3905840.012292094994336 ], [ 4977931.270027320832014, 3905841.080385365989059 ], [ 4977932.67824740614742, 3905856.012762896250933 ], [ 4977912.806389290839434, 3905857.791511568706483 ], [ 4977912.243557766079903, 3905851.600082787219435 ], [ 4977889.203564614057541, 3905853.736300469376147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977859.412227581255138, 3909606.785130576696247 ], [ 4977881.352654262445867, 3909578.429015601985157 ], [ 4977948.614239211194217, 3909629.549455172847956 ], [ 4977917.434052637778223, 3909670.630672337021679 ], [ 4977896.451028225943446, 3909654.564583794679493 ], [ 4977905.977887952700257, 3909642.204158699605614 ], [ 4977859.412227581255138, 3909606.785130576696247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977710.418976726941764, 3914060.185088668018579 ], [ 4977730.799217977561057, 3914087.537961727939546 ], [ 4977695.626693826168776, 3914113.317528537008911 ], [ 4977675.534290606155992, 3914085.965286344755441 ], [ 4977710.418976726941764, 3914060.185088668018579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977691.12484263535589, 3901864.987961353734136 ], [ 4977707.834096189588308, 3901862.110010027885437 ], [ 4977712.67399737238884, 3901888.701740293763578 ], [ 4977695.964759811758995, 3901891.579688664060086 ], [ 4977691.12484263535589, 3901864.987961353734136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977597.836708289571106, 3905014.528253622818738 ], [ 4977604.386280052363873, 3905049.498630220536143 ], [ 4977550.806042700074613, 3905059.582005814183503 ], [ 4977544.256403751671314, 3905024.611642063595355 ], [ 4977597.836708289571106, 3905014.528253622818738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977545.548546829260886, 3907431.526560644153506 ], [ 4977605.484388345852494, 3907546.353855931665748 ], [ 4977574.64291471708566, 3907562.311006569303572 ], [ 4977514.706977427005768, 3907447.483778938651085 ], [ 4977545.548546829260886, 3907431.526560644153506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977349.285639557056129, 3909036.939954913686961 ], [ 4977380.848282153718174, 3909088.348569414578378 ], [ 4977348.560807953588665, 3909108.308428557123989 ], [ 4977335.648298603482544, 3909087.525913427583873 ], [ 4977342.566445008851588, 3909083.534897125791758 ], [ 4977323.628370709717274, 3909052.908229456283152 ], [ 4977349.285639557056129, 3909036.939954913686961 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977215.965391328558326, 3913053.413385486230254 ], [ 4977224.093141246587038, 3913021.022439050488174 ], [ 4977266.963844424113631, 3913031.307536432519555 ], [ 4977258.835286668501794, 3913064.062602011952549 ], [ 4977215.965391328558326, 3913053.413385486230254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977210.423475169576705, 3905347.263328926637769 ], [ 4977163.750935704447329, 3905359.18252150574699 ], [ 4977152.326204746030271, 3905314.370547330472618 ], [ 4977177.391331410035491, 3905307.868331628385931 ], [ 4977177.391331410035491, 3905307.868331628385931 ], [ 4977198.998816846869886, 3905302.451335241086781 ], [ 4977210.423475169576705, 3905347.263328926637769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977193.262710254639387, 3908610.579583100508898 ], [ 4977233.616781521588564, 3908588.45155413588509 ], [ 4977252.260544531047344, 3908622.354727572761476 ], [ 4977242.748044234700501, 3908627.796889481600374 ], [ 4977262.539621663279831, 3908663.523125432897359 ], [ 4977235.444764861837029, 3908678.396086721681058 ], [ 4977222.536511484533548, 3908655.428846036083996 ], [ 4977240.983386921696365, 3908645.635703857056797 ], [ 4977234.672834341414273, 3908634.334447007160634 ], [ 4977213.054366183467209, 3908646.305782223585993 ], [ 4977193.262710254639387, 3908610.579583100508898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977207.637406382709742, 3900738.448464663233608 ], [ 4977213.356405884958804, 3900758.123431964311749 ], [ 4977180.216299299150705, 3900767.885976062621921 ], [ 4977164.486318081617355, 3900715.054290574043989 ], [ 4977195.897741029970348, 3900705.652259498368949 ], [ 4977201.617514248937368, 3900724.963094771839678 ], [ 4977216.890469464473426, 3900720.625325865577906 ], [ 4977221.181613477878273, 3900734.471229645889252 ], [ 4977207.637406382709742, 3900738.448464663233608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977105.414445837959647, 3912366.063561588991433 ], [ 4977101.106198948808014, 3912361.320871241856366 ], [ 4977091.300365403294563, 3912370.039686819072813 ], [ 4977083.258098059333861, 3912361.283771405462176 ], [ 4977094.79495298396796, 3912350.747884595766664 ], [ 4977078.711160436272621, 3912332.871922573074698 ], [ 4977104.090913304127753, 3912310.348411479964852 ], [ 4977132.524456399492919, 3912342.087141103111207 ], [ 4977105.414445837959647, 3912366.063561588991433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977018.60574162658304, 3901066.501503221224993 ], [ 4977014.226151045411825, 3901095.258748889435083 ], [ 4976965.570377485826612, 3901087.875222455244511 ], [ 4976969.94991715811193, 3901059.117968985810876 ], [ 4977018.60574162658304, 3901066.501503221224993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976973.727091878652573, 3906459.194297494832426 ], [ 4976989.759346887469292, 3906503.651652931701392 ], [ 4976963.250418789684772, 3906512.69997644983232 ], [ 4976955.806375356391072, 3906492.293151158373803 ], [ 4976951.772259245626628, 3906493.741316257510334 ], [ 4976943.183251452632248, 3906470.054933371488005 ], [ 4976973.727091878652573, 3906459.194297494832426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976960.810940644703805, 3903661.543843277264386 ], [ 4976952.762992956675589, 3903654.244533134158701 ], [ 4976927.943607144989073, 3903680.410557780880481 ], [ 4976904.66363880969584, 3903658.514453057665378 ], [ 4976949.107737484388053, 3903611.633587791584432 ], [ 4976972.387710457667708, 3903633.529730401001871 ], [ 4976963.44113321788609, 3903642.97859644703567 ], [ 4976971.200360446237028, 3903650.641442454885691 ], [ 4976960.810940644703805, 3903661.543843277264386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976926.722217144444585, 3900377.739811676554382 ], [ 4976932.709132098592818, 3900407.246796915307641 ], [ 4976884.305418750271201, 3900416.613955261185765 ], [ 4976878.606453718617558, 3900387.107576732989401 ], [ 4976926.722217144444585, 3900377.739811676554382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976899.75044403038919, 3904362.370354799088091 ], [ 4976943.844288881868124, 3904344.983390422537923 ], [ 4976956.449547082185745, 3904376.324828602839261 ], [ 4976912.355745366774499, 3904393.71177262859419 ], [ 4976899.75044403038919, 3904362.370354799088091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976849.380095040425658, 3909917.466005921363831 ], [ 4976816.844520210288465, 3909918.855226989835501 ], [ 4976814.112379128113389, 3909847.843689150642604 ], [ 4976846.648039787076414, 3909846.454464834649116 ], [ 4976849.380095040425658, 3909917.466005921363831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976828.729754968546331, 3912384.424654022790492 ], [ 4976856.392633631825447, 3912371.373098603915423 ], [ 4976879.324410419911146, 3912418.757906937971711 ], [ 4976845.033734983764589, 3912435.072922380641103 ], [ 4976831.561016201972961, 3912407.370911268983036 ], [ 4976838.188855660147965, 3912404.107424749992788 ], [ 4976828.729754968546331, 3912384.424654022790492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976836.252440738491714, 3900813.416983366943896 ], [ 4976793.0642777280882, 3900807.865734110586345 ], [ 4976796.872199136763811, 3900776.922491895500571 ], [ 4976831.99801045563072, 3900781.728810916189104 ], [ 4976830.241415626369417, 3900795.562145951204002 ], [ 4976838.591055571101606, 3900796.671806519385427 ], [ 4976836.252440738491714, 3900813.416983366943896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976729.60590417124331, 3911036.562907850369811 ], [ 4976687.802208919078112, 3911065.607255238108337 ], [ 4976661.968279898166656, 3911028.776524968445301 ], [ 4976703.772004282101989, 3910999.732138053979725 ], [ 4976729.60590417124331, 3911036.562907850369811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976638.32233454938978, 3912164.823162948247045 ], [ 4976672.057760803028941, 3912138.67514231055975 ], [ 4976691.007913358509541, 3912162.747038634959608 ], [ 4976657.272498742677271, 3912188.89503586338833 ], [ 4976638.32233454938978, 3912164.823162948247045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976653.115857952274382, 3903592.815165263134986 ], [ 4976675.21343163587153, 3903629.637997338082641 ], [ 4976645.516137772239745, 3903647.419200758915395 ], [ 4976653.837873143143952, 3903661.637478925753385 ], [ 4976630.772092552855611, 3903675.426926659885794 ], [ 4976600.064013341441751, 3903624.749402816407382 ], [ 4976653.115857952274382, 3903592.815165263134986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976653.242897877469659, 3901575.529025013558567 ], [ 4976687.221746535040438, 3901577.419747600797564 ], [ 4976683.929951683618128, 3901637.494557050522417 ], [ 4976653.118290930055082, 3901635.974498211406171 ], [ 4976654.013781051151454, 3901620.682846077252179 ], [ 4976643.359737629070878, 3901619.932622973341495 ], [ 4976643.966484314762056, 3901605.004506430588663 ], [ 4976651.741405789740384, 3901605.384663617704064 ], [ 4976653.242897877469659, 3901575.529025013558567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976637.12875379063189, 3908135.327006713487208 ], [ 4976672.005122403614223, 3908116.828172727487981 ], [ 4976695.8106510033831, 3908161.301434109453112 ], [ 4976680.53374052233994, 3908169.644957902375609 ], [ 4976670.494931931607425, 3908151.053499244619161 ], [ 4976651.18267201539129, 3908161.573510732036084 ], [ 4976637.12875379063189, 3908135.327006713487208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976607.059099660255015, 3906100.130583412479609 ], [ 4976611.419456270523369, 3906080.112312262877822 ], [ 4976656.318559730425477, 3906089.672283176332712 ], [ 4976645.265748798847198, 3906143.541016932576895 ], [ 4976607.273524572141469, 3906135.815951602067798 ], [ 4976614.542530542239547, 3906101.602528708986938 ], [ 4976607.059099660255015, 3906100.130583412479609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976509.006393952295184, 3908274.525900208391249 ], [ 4976489.689794341102242, 3908287.23081365833059 ], [ 4976483.662266471423209, 3908278.115112688858062 ], [ 4976473.859639337286353, 3908284.649346325546503 ], [ 4976458.072876280173659, 3908260.948299365118146 ], [ 4976487.192120978608727, 3908241.709131188690662 ], [ 4976509.006393952295184, 3908274.525900208391249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976483.552010188810527, 3905390.183520443271846 ], [ 4976520.472175911068916, 3905359.67236785357818 ], [ 4976540.003915023989975, 3905383.381111065857112 ], [ 4976503.084508250467479, 3905413.528107062913477 ], [ 4976483.552010188810527, 3905390.183520443271846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976451.737318072468042, 3908121.472587095573545 ], [ 4976410.229279652237892, 3908144.691812085919082 ], [ 4976394.44985103327781, 3908117.349496439564973 ], [ 4976435.957917904481292, 3908094.130247463937849 ], [ 4976451.737318072468042, 3908121.472587095573545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976436.471193512901664, 3912329.360135178547353 ], [ 4976454.846424504183233, 3912353.066553314682096 ], [ 4976423.418196982704103, 3912377.398921005893499 ], [ 4976401.310328202322125, 3912348.951127951499075 ], [ 4976420.33983991201967, 3912334.424868695437908 ], [ 4976423.785340432077646, 3912338.801544346380979 ], [ 4976436.471193512901664, 3912329.360135178547353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976291.113224083557725, 3901356.306424791924655 ], [ 4976301.888959384523332, 3901297.703431356698275 ], [ 4976333.844035882502794, 3901303.594999820925295 ], [ 4976323.06823318824172, 3901362.197980649769306 ], [ 4976291.113224083557725, 3901356.306424791924655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976033.242100088857114, 3910877.100197554100305 ], [ 4976026.283034530468285, 3910901.482916618697345 ], [ 4976012.184675290249288, 3910897.44871318154037 ], [ 4976003.486432274803519, 3910927.65402095625177 ], [ 4975991.977591495960951, 3910924.35337157221511 ], [ 4976007.634866800159216, 3910869.765334538184106 ], [ 4976033.242100088857114, 3910877.100197554100305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976041.404351872391999, 3903626.153482715133578 ], [ 4975992.392241769470274, 3903654.455842345952988 ], [ 4975962.834801846183836, 3903603.781393701676279 ], [ 4975983.592859041877091, 3903591.8073301743716 ], [ 4975992.201444467529655, 3903606.754249124322087 ], [ 4976020.743514491245151, 3903590.426495782099664 ], [ 4976041.404351872391999, 3903626.153482715133578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975630.540751148946583, 3909284.657732449006289 ], [ 4975648.929107297211885, 3909303.265718962065876 ], [ 4975592.674878000281751, 3909358.86416786769405 ], [ 4975550.151074232533574, 3909316.174678933806717 ], [ 4975571.210119025781751, 3909295.461690133903176 ], [ 4975582.702773550525308, 3909307.137171295005828 ], [ 4975590.780324788764119, 3909299.142590135801584 ], [ 4975603.423117109574378, 3909311.548671599011868 ], [ 4975630.540751148946583, 3909284.657732449006289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975543.925874962471426, 3911541.742046870291233 ], [ 4975565.234986295923591, 3911538.872055192478001 ], [ 4975563.244109498336911, 3911526.851638036314398 ], [ 4975586.8570237448439, 3911523.622188037261367 ], [ 4975588.560008785687387, 3911535.64202464139089 ], [ 4975610.44562952965498, 3911532.409101774450392 ], [ 4975612.432800689712167, 3911546.250180510338396 ], [ 4975546.199489054270089, 3911556.311965818051249 ], [ 4975543.925874962471426, 3911541.742046870291233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975373.944344409741461, 3902601.228102441411465 ], [ 4975398.970479268580675, 3902615.11549699306488 ], [ 4975388.566629179753363, 3902633.301091140136123 ], [ 4975363.828482925891876, 3902619.414285986684263 ], [ 4975373.944344409741461, 3902601.228102441411465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975270.528650448657572, 3910780.517070669215173 ], [ 4975298.776254499331117, 3910763.459636397659779 ], [ 4975291.889607365243137, 3910752.15766265289858 ], [ 4975309.471402841620147, 3910741.997312856372446 ], [ 4975343.903090276755393, 3910799.235485081095248 ], [ 4975326.032696953974664, 3910809.759364701807499 ], [ 4975322.302595832385123, 3910803.561597342137247 ], [ 4975294.344372938387096, 3910819.891323525458574 ], [ 4975270.528650448657572, 3910780.517070669215173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975011.697410541586578, 3899562.922321471851319 ], [ 4975070.207135588862002, 3899541.191594371106476 ], [ 4975081.666273526847363, 3899571.80149755300954 ], [ 4975023.1566056990996, 3899593.53220010176301 ], [ 4975011.697410541586578, 3899562.922321471851319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974995.746358657255769, 3904946.203166933264583 ], [ 4975048.122285523451865, 3904961.965631532017142 ], [ 4975037.977643900550902, 3904995.081299962475896 ], [ 4975045.747232462279499, 3904997.645774197299033 ], [ 4975038.790477898903191, 3905020.572139856405556 ], [ 4975028.142839933745563, 3905017.27364445803687 ], [ 4975024.953515385277569, 3905028.191210421267897 ], [ 4974975.167082325555384, 3905013.52636198932305 ], [ 4974995.746358657255769, 3904946.203166933264583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974852.585842180997133, 3905114.510156042873859 ], [ 4974897.25593207962811, 3905095.664453588426113 ], [ 4974903.27453731559217, 3905109.877603379078209 ], [ 4974915.090680235996842, 3905104.803355550859123 ], [ 4974925.981879851780832, 3905130.314322573598474 ], [ 4974869.207760346122086, 3905154.233665926847607 ], [ 4974852.585842180997133, 3905114.510156042873859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974697.218817342072725, 3903892.539534900337458 ], [ 4974708.978230607695878, 3903916.231463703792542 ], [ 4974698.890107494778931, 3903920.945104936137795 ], [ 4974713.804782037623227, 3903950.833545339293778 ], [ 4974689.592742312699556, 3903962.437590491957963 ], [ 4974685.003441862761974, 3903953.325180403888226 ], [ 4974674.338687689043581, 3903958.401815705932677 ], [ 4974664.01328691560775, 3903937.625802646856755 ], [ 4974678.137946019880474, 3903930.371253739576787 ], [ 4974666.952990618534386, 3903907.408742850646377 ], [ 4974697.218817342072725, 3903892.539534900337458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974625.104223523288965, 3896848.654258910100907 ], [ 4974574.954406877048314, 3896864.212307043839246 ], [ 4974566.368137462064624, 3896836.521409223787487 ], [ 4974553.398441862314939, 3896840.501115159131587 ], [ 4974544.810698688030243, 3896813.538481357973069 ], [ 4974617.730160782113671, 3896790.742978152818978 ], [ 4974625.743206014856696, 3896816.976234221365303 ], [ 4974615.944091198034585, 3896819.869816509541124 ], [ 4974625.104223523288965, 3896848.654258910100907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974462.063560610637069, 3898163.204264200758189 ], [ 4974433.24091365840286, 3898173.342862248420715 ], [ 4974436.104588151909411, 3898181.723520739469677 ], [ 4974408.723533306270838, 3898191.136737490072846 ], [ 4974392.971460217610002, 3898145.953457497060299 ], [ 4974449.175236949697137, 3898126.4016133104451 ], [ 4974462.063560610637069, 3898163.204264200758189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974340.256813980638981, 3904563.654426795896143 ], [ 4974349.668707922101021, 3904609.553591975476593 ], [ 4974315.388322356157005, 3904616.404374843463302 ], [ 4974306.264328417368233, 3904570.505790006369352 ], [ 4974340.256813980638981, 3904563.654426795896143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974252.204717708751559, 3897960.333310175687075 ], [ 4974282.0222979625687, 3898029.940963218919933 ], [ 4974250.024110108613968, 3898043.714792573358864 ], [ 4974220.206462487578392, 3897974.107174452394247 ], [ 4974252.204717708751559, 3897960.333310175687075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974146.53257860057056, 3901747.810125116724521 ], [ 4974138.387988285161555, 3901788.940884578507394 ], [ 4974123.994425103068352, 3901785.999516069423407 ], [ 4974112.649093832820654, 3901843.874008058104664 ], [ 4974053.059030953794718, 3901832.104674251750112 ], [ 4974072.548720132559538, 3901733.099375984165817 ], [ 4974146.53257860057056, 3901747.810125116724521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974133.600074950605631, 3898660.321913611609489 ], [ 4974199.033561969175935, 3898633.50510017760098 ], [ 4974211.932744299992919, 3898664.845710501540452 ], [ 4974146.499320521019399, 3898691.662493036128581 ], [ 4974133.600074950605631, 3898660.321913611609489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974108.190879864618182, 3908648.029112218879163 ], [ 4974103.526262106373906, 3908677.51466088462621 ], [ 4974030.418770661577582, 3908666.082844134420156 ], [ 4974035.083310099318624, 3908636.597282979171723 ], [ 4974108.190879864618182, 3908648.029112218879163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973997.677473687566817, 3897767.936101236846298 ], [ 4974012.304052296094596, 3897800.00824823230505 ], [ 4973977.420445204712451, 3897816.325646780896932 ], [ 4973962.505805164575577, 3897784.252953603863716 ], [ 4973997.677473687566817, 3897767.936101236846298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973905.123018843121827, 3897229.206458546221256 ], [ 4973920.894292498938739, 3897265.286215881817043 ], [ 4973888.318600334227085, 3897279.423469238448888 ], [ 4973896.921827763319016, 3897298.739202338270843 ], [ 4973871.841484401375055, 3897309.613988288678229 ], [ 4973847.46690630633384, 3897254.218539053108543 ], [ 4973905.123018843121827, 3897229.206458546221256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973903.505845062434673, 3896584.329401851631701 ], [ 4973922.683338275179267, 3896646.269030204042792 ], [ 4973883.198193987831473, 3896658.207969198469073 ], [ 4973864.019905756227672, 3896596.632496919017285 ], [ 4973903.505845062434673, 3896584.329401851631701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973875.824934014119208, 3902629.932118563912809 ], [ 4973851.607793523930013, 3902643.721687356010079 ], [ 4973842.423179676756263, 3902628.046076401602477 ], [ 4973829.161281975917518, 3902635.666878714691848 ], [ 4973817.680671241134405, 3902615.981342811137438 ], [ 4973828.635908924043179, 3902609.812546134926379 ], [ 4973811.129128327593207, 3902579.191292824223638 ], [ 4973837.940954183228314, 3902563.950241009704769 ], [ 4973875.824934014119208, 3902629.932118563912809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973837.008292011916637, 3895091.26796896615997 ], [ 4973799.274162840098143, 3895090.465920491144061 ], [ 4973799.587845523841679, 3895077.357874824199826 ], [ 4973787.490129412151873, 3895076.97009922657162 ], [ 4973788.113925581797957, 3895052.574648001696914 ], [ 4973783.505708063952625, 3895052.201512722298503 ], [ 4973784.139463435858488, 3895022.708269630558789 ], [ 4973801.422254940494895, 3895023.106179395224899 ], [ 4973801.722414491698146, 3895016.91656639194116 ], [ 4973838.592471521347761, 3895017.716927701141685 ], [ 4973837.008292011916637, 3895091.26796896615997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973786.240199936553836, 3904704.212755945976824 ], [ 4973804.694221933372319, 3904691.504237512592226 ], [ 4973819.626555035822093, 3904712.653072747401893 ], [ 4973771.184714993461967, 3904746.05845065228641 ], [ 4973763.144056206569076, 3904734.754659520927817 ], [ 4973752.186852204613388, 3904742.380011402070522 ], [ 4973740.413446642458439, 3904725.606961746234447 ], [ 4973749.352127088233829, 3904719.434187611099333 ], [ 4973738.727683337405324, 3904704.119909677654505 ], [ 4973770.734061159193516, 3904681.97042344044894 ], [ 4973786.240199936553836, 3904704.212755945976824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973775.77356306836009, 3898419.294363935943693 ], [ 4973780.073255631141365, 3898429.862540498841554 ], [ 4973804.285604413598776, 3898420.442487135529518 ], [ 4973816.896616104058921, 3898452.146469514351338 ], [ 4973771.353621093556285, 3898470.263946074061096 ], [ 4973754.443576062098145, 3898427.627682778052986 ], [ 4973775.77356306836009, 3898419.294363935943693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973477.361883238889277, 3902579.26884589670226 ], [ 4973488.283083532936871, 3902590.578134241513908 ], [ 4973514.53646304924041, 3902566.232398732099682 ], [ 4973536.665394264273345, 3902589.579829572234303 ], [ 4973476.657846600748599, 3902645.175196081865579 ], [ 4973455.966672057285905, 3902622.922999937552959 ], [ 4973472.122391579672694, 3902608.025015980005264 ], [ 4973460.052112331613898, 3902595.256977546028793 ], [ 4973477.361883238889277, 3902579.26884589670226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973350.942115913145244, 3903914.656621510628611 ], [ 4973392.175242288969457, 3903886.698482845909894 ], [ 4973418.306396888568997, 3903924.618855759967119 ], [ 4973398.410098787397146, 3903938.417229415848851 ], [ 4973403.004077660851181, 3903945.344639920629561 ], [ 4973381.955245831981301, 3903959.50492052314803 ], [ 4973350.942115913145244, 3903914.656621510628611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973212.727664260193706, 3899143.911446911748499 ], [ 4973226.786845534108579, 3899171.612532095052302 ], [ 4973199.399482006207108, 3899185.032404490280896 ], [ 4973185.628293689340353, 3899157.331889928784221 ], [ 4973212.727664260193706, 3899143.911446911748499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973072.412908936850727, 3903800.509093049447984 ], [ 4973084.473697884008288, 3903818.010655934922397 ], [ 4973063.424232840538025, 3903832.535314876586199 ], [ 4973030.974110483191907, 3903785.863962852396071 ], [ 4973069.035976767539978, 3903759.71987688401714 ], [ 4973089.42528172954917, 3903788.889703729189932 ], [ 4973072.412908936850727, 3903800.509093049447984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972822.845124321989715, 3904199.481055484618992 ], [ 4972870.096453009173274, 3904186.098918105009943 ], [ 4972876.95992832724005, 3904210.873036596924067 ], [ 4972872.061811544932425, 3904212.32015251647681 ], [ 4972878.069094536826015, 3904233.08718175906688 ], [ 4972836.003912278451025, 3904245.022734825499356 ], [ 4972822.845124321989715, 3904199.481055484618992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972809.33313534129411, 3907339.362986654043198 ], [ 4972773.300440528430045, 3907361.14179365709424 ], [ 4972756.366542099975049, 3907333.07115803938359 ], [ 4972792.399260697886348, 3907311.29232869669795 ], [ 4972809.33313534129411, 3907339.362986654043198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972746.597033319063485, 3899357.851193768903613 ], [ 4972775.99170202575624, 3899348.804271080996841 ], [ 4972786.583912981674075, 3899382.32456763740629 ], [ 4972721.454225020483136, 3899402.591061463113874 ], [ 4972712.577462346293032, 3899375.628420413471758 ], [ 4972731.598094187676907, 3899369.474630527663976 ], [ 4972727.591035175137222, 3899356.358264563139528 ], [ 4972744.306192705407739, 3899350.928328869398683 ], [ 4972746.597033319063485, 3899357.851193768903613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972672.240419117733836, 3911120.616269385907799 ], [ 4972653.777403179556131, 3911140.60824804706499 ], [ 4972637.109286257997155, 3911125.282778379973024 ], [ 4972655.572300255298615, 3911105.290788451675326 ], [ 4972672.240419117733836, 3911120.616269385907799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972628.151613174937665, 3910540.468272891361266 ], [ 4972588.947492156177759, 3910566.975023701786995 ], [ 4972565.11993352510035, 3910531.608621410559863 ], [ 4972604.324082438834012, 3910505.101836412213743 ], [ 4972628.151613174937665, 3910540.468272891361266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972605.863728107884526, 3908343.978152654133737 ], [ 4972610.448800904676318, 3908355.275017997715622 ], [ 4972590.279407292604446, 3908363.247381702531129 ], [ 4972570.221305966377258, 3908312.958805962000042 ], [ 4972602.780865109525621, 3908299.912253136746585 ], [ 4972618.541762604378164, 3908338.904535804875195 ], [ 4972605.863728107884526, 3908343.978152654133737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972426.212594543583691, 3908188.150894082151353 ], [ 4972437.452468931674957, 3908182.346188507974148 ], [ 4972430.568115331232548, 3908168.860180747229606 ], [ 4972460.540685817599297, 3908153.623735395725816 ], [ 4972481.194386830553412, 3908193.717656040098518 ], [ 4972439.981982961297035, 3908214.758778635412455 ], [ 4972426.212594543583691, 3908188.150894082151353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972232.941865105181932, 3899729.013163690920919 ], [ 4972243.266628212295473, 3899751.972964347805828 ], [ 4972221.936102992855012, 3899761.399893210269511 ], [ 4972203.294993326067924, 3899719.489553936757147 ], [ 4972258.3501419974491, 3899695.561377613805234 ], [ 4972266.667133846320212, 3899714.147811997216195 ], [ 4972232.941865105181932, 3899729.013163690920919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971725.198620786890388, 3892510.27822441700846 ], [ 4971764.40764247532934, 3892494.694328229408711 ], [ 4971779.318281093612313, 3892531.863487446680665 ], [ 4971740.109304849989712, 3892547.447362227831036 ], [ 4971725.198620786890388, 3892510.27822441700846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971633.868893128819764, 3907723.477290492504835 ], [ 4971651.348139625974, 3907768.298325159121305 ], [ 4971614.754767880775034, 3907782.794994118157774 ], [ 4971596.987547767348588, 3907737.97344335122034 ], [ 4971633.868893128819764, 3907723.477290492504835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971616.698859470896423, 3910892.490153062157333 ], [ 4971637.933619757182896, 3910929.307388916611671 ], [ 4971601.044382159598172, 3910950.357933643739671 ], [ 4971579.809588123112917, 3910913.54072646657005 ], [ 4971616.698859470896423, 3910892.490153062157333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971603.406112737953663, 3901392.267096275929362 ], [ 4971640.53362750634551, 3901404.717127524781972 ], [ 4971619.975098479539156, 3901464.031898884568363 ], [ 4971651.346136056818068, 3901474.650503974873573 ], [ 4971613.412788450717926, 3901584.911011007148772 ], [ 4971533.97849571891129, 3901557.816595896147192 ], [ 4971572.782341750338674, 3901443.91630164720118 ], [ 4971584.295105382800102, 3901447.579168325755745 ], [ 4971603.406112737953663, 3901392.267096275929362 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971369.348978272639215, 3903820.219140342902392 ], [ 4971347.515295254066586, 3903792.504453767091036 ], [ 4971384.428406219929457, 3903763.806924601085484 ], [ 4971405.974110226146877, 3903791.521103226114064 ], [ 4971369.348978272639215, 3903820.219140342902392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971282.05253354087472, 3898273.982662543654442 ], [ 4971242.852885974571109, 3898289.203186703845859 ], [ 4971230.812102415598929, 3898258.958001398481429 ], [ 4971221.012526656500995, 3898262.581081329379231 ], [ 4971214.133124978281558, 3898244.725921075325459 ], [ 4971232.003469529561698, 3898237.84067504061386 ], [ 4971221.970696718432009, 3898211.968788950704038 ], [ 4971253.099665773101151, 3898200.010389843955636 ], [ 4971282.05253354087472, 3898273.982662543654442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971194.080592280253768, 3912439.26649333210662 ], [ 4971169.546536575071514, 3912474.177679867018014 ], [ 4971122.397144035436213, 3912440.953988161403686 ], [ 4971152.414266609586775, 3912398.770280222408473 ], [ 4971176.563725009560585, 3912415.929409422446042 ], [ 4971171.368495844304562, 3912423.202418575529009 ], [ 4971194.080592280253768, 3912439.26649333210662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970886.472550380043685, 3902550.690142508130521 ], [ 4970810.439045015722513, 3902554.555258981883526 ], [ 4970808.769597982987761, 3902522.87278706766665 ], [ 4970885.090498259291053, 3902519.372327523306012 ], [ 4970886.472550380043685, 3902550.690142508130521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970772.003151826560497, 3903565.312259393744171 ], [ 4970805.738247156143188, 3903542.070051344577223 ], [ 4970872.370452061295509, 3903637.595378074795008 ], [ 4970838.635418557561934, 3903660.83750383136794 ], [ 4970772.003151826560497, 3903565.312259393744171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970601.633099428378046, 3903507.101988388691097 ], [ 4970573.953468948602676, 3903525.985991453751922 ], [ 4970548.105884032323956, 3903488.068921882193536 ], [ 4970575.784866904839873, 3903469.549022557679564 ], [ 4970601.633099428378046, 3903507.101988388691097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970485.862416432239115, 3912310.148441144265234 ], [ 4970534.304597682319582, 3912266.90542259812355 ], [ 4970560.448294946923852, 3912295.719914663117379 ], [ 4970534.496945187449455, 3912318.976814595982432 ], [ 4970525.590913815423846, 3912309.128882674034685 ], [ 4970503.099422774277627, 3912329.479094197042286 ], [ 4970485.862416432239115, 3912310.148441144265234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970448.086835545487702, 3892838.903901086654514 ], [ 4970499.688162490725517, 3892820.063680740073323 ], [ 4970515.741348968818784, 3892863.42442696262151 ], [ 4970491.814575500786304, 3892872.119683999568224 ], [ 4970490.094756884500384, 3892867.382858843542635 ], [ 4970462.132189620286226, 3892877.527266223914921 ], [ 4970448.086835545487702, 3892838.903901086654514 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970311.257195264101028, 3898988.801178429275751 ], [ 4970322.137978087179363, 3899023.777538093272597 ], [ 4970274.58885170519352, 3899038.255975226406008 ], [ 4970261.131806750781834, 3898994.535812731366605 ], [ 4970283.897678550332785, 3898987.658861853182316 ], [ 4970286.761893844231963, 3898996.403211236465722 ], [ 4970311.257195264101028, 3898988.801178429275751 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970252.586332940496504, 3894676.306112438440323 ], [ 4970241.692397684790194, 3894647.520047249272466 ], [ 4970290.408822145313025, 3894629.038283582311124 ], [ 4970301.590775134041905, 3894657.824893825221807 ], [ 4970252.586332940496504, 3894676.306112438440323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970086.794016361236572, 3898408.697279528249055 ], [ 4970064.003237726166844, 3898429.047161964233965 ], [ 4970049.055848463438451, 3898412.634168632794172 ], [ 4970041.843399054370821, 3898419.175415841396898 ], [ 4970017.697119208052754, 3898392.914232396055013 ], [ 4970047.412332230247557, 3898366.02254085149616 ], [ 4970086.794016361236572, 3898408.697279528249055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969846.581043875776231, 3903028.714256037492305 ], [ 4969779.109974432736635, 3903075.929368149954826 ], [ 4969758.141906995326281, 3903046.032766328658909 ], [ 4969825.324383281171322, 3902999.181211751420051 ], [ 4969846.581043875776231, 3903028.714256037492305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969686.945281749591231, 3893013.760152228176594 ], [ 4969731.279382941313088, 3893030.589993462432176 ], [ 4969717.676614692434669, 3893065.521838508546352 ], [ 4969673.342562709935009, 3893048.692019363865256 ], [ 4969686.945281749591231, 3893013.760152228176594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993600.460238709114492, 3911244.200588038191199 ], [ 4993567.063668733462691, 3911244.838938091881573 ], [ 4993566.590815830044448, 3911206.603638131637126 ], [ 4993599.698567734099925, 3911206.328643178101629 ], [ 4993600.460238709114492, 3911244.200588038191199 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969558.283435136079788, 3897440.61314283311367 ], [ 4969564.319027280434966, 3897447.906587008852512 ], [ 4969592.012049545533955, 3897424.652069508098066 ], [ 4969617.017162878066301, 3897454.555696694180369 ], [ 4969591.343648529611528, 3897475.993171589449048 ], [ 4969596.80381462816149, 3897482.921458561439067 ], [ 4969578.34161336440593, 3897498.545840481296182 ], [ 4969541.552692158147693, 3897454.420012393966317 ], [ 4969558.283435136079788, 3897440.61314283311367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969475.259124078787863, 3901011.488926893100142 ], [ 4969523.35612007509917, 3901010.482881315983832 ], [ 4969524.705832422710955, 3901060.735327828675508 ], [ 4969476.608926299028099, 3901061.741371026728302 ], [ 4969475.259124078787863, 3901011.488926893100142 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969002.012654824182391, 3898295.324413659051061 ], [ 4968984.933918492868543, 3898343.359236282296479 ], [ 4968935.425003678537905, 3898325.793117553927004 ], [ 4968952.503662530332804, 3898277.758263975381851 ], [ 4969002.012654824182391, 3898295.324413659051061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968932.586905057542026, 3894567.242506544105709 ], [ 4968932.841382975690067, 3894586.177675453014672 ], [ 4968925.351097464561462, 3894586.528519781306386 ], [ 4968925.888476873748004, 3894608.377224070485681 ], [ 4968913.213712398894131, 3894608.354748446960002 ], [ 4968913.190470550209284, 3894621.463358114939183 ], [ 4968871.707508193328977, 3894622.482227507513016 ], [ 4968870.914918857626617, 3894582.062483669724315 ], [ 4968891.079981913790107, 3894581.734083383344114 ], [ 4968890.815794995985925, 3894568.26083546038717 ], [ 4968932.586905057542026, 3894567.242506544105709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968812.155673136934638, 3910362.663542507681996 ], [ 4968776.125120505690575, 3910387.360802780371159 ], [ 4968746.547381217591465, 3910344.704976114910096 ], [ 4968805.060802227817476, 3910304.753891574218869 ], [ 4968824.012844515964389, 3910332.461525381077081 ], [ 4968822.283544228412211, 3910333.550861251074821 ], [ 4968843.245646194554865, 3910364.175129714887589 ], [ 4968822.78067137952894, 3910377.975925831589848 ], [ 4968812.155673136934638, 3910362.663542507681996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968702.242490130476654, 3902174.602949634660035 ], [ 4968685.234856478869915, 3902184.040326632093638 ], [ 4968674.900287730619311, 3902165.451415600720793 ], [ 4968691.907929479144514, 3902156.014032168313861 ], [ 4968702.242490130476654, 3902174.602949634660035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968620.105012852698565, 3894365.326639975421131 ], [ 4968621.316947704181075, 3894331.464766727760434 ], [ 4968656.459048431366682, 3894332.619102554395795 ], [ 4968655.553755989298224, 3894355.921770267188549 ], [ 4968646.336300885304809, 3894355.541388472542167 ], [ 4968646.029617864638567, 3894366.100592547561973 ], [ 4968620.105012852698565, 3894365.326639975421131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968312.939679889939725, 3904119.470491401385516 ], [ 4968260.181681836023927, 3904154.334747455082834 ], [ 4968215.376932264305651, 3904087.25625651050359 ], [ 4968268.135003423318267, 3904052.391913916915655 ], [ 4968312.939679889939725, 3904119.470491401385516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968126.286579112522304, 3900683.205426859203726 ], [ 4968093.706025362014771, 3900704.268189718015492 ], [ 4968064.120294916443527, 3900659.428590582683682 ], [ 4968096.700879646465182, 3900638.365792439784855 ], [ 4968126.286579112522304, 3900683.205426859203726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968111.986317451111972, 3899304.583042534068227 ], [ 4968161.507308887317777, 3899314.500944101251662 ], [ 4968151.04736525285989, 3899366.917437493335456 ], [ 4968101.238454691134393, 3899356.999052861705422 ], [ 4968111.986317451111972, 3899304.583042534068227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967915.77423769235611, 3913440.564322283957154 ], [ 4967868.849098267965019, 3913442.667648017872125 ], [ 4967867.461608319543302, 3913412.80630655772984 ], [ 4967914.386799786239862, 3913410.702978431247175 ], [ 4967915.77423769235611, 3913440.564322283957154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967888.940577208995819, 3906345.03117813821882 ], [ 4967887.428844589740038, 3906386.539572368375957 ], [ 4967861.803748831152916, 3906385.766845571808517 ], [ 4967863.315441895276308, 3906344.258449915330857 ], [ 4967888.940577208995819, 3906345.03117813821882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967628.196029216982424, 3905437.163864469155669 ], [ 4967639.094633429311216, 3905462.307752119842917 ], [ 4967591.25846111215651, 3905483.708974373992532 ], [ 4967584.375376153737307, 3905467.675317673012614 ], [ 4967607.716628850437701, 3905457.51989200618118 ], [ 4967603.701708112843335, 3905448.045546247623861 ], [ 4967628.196029216982424, 3905437.163864469155669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967552.702471380122006, 3905634.028840453829616 ], [ 4967537.480918924324214, 3905611.062327736057341 ], [ 4967584.181365761905909, 3905580.19162975018844 ], [ 4967587.339972894638777, 3905585.294918060302734 ], [ 4967613.284569447860122, 3905568.225486487615854 ], [ 4967631.665307519026101, 3905595.931204627733678 ], [ 4967608.891889131627977, 3905610.821300088893622 ], [ 4967615.497030397877097, 3905621.02837993344292 ], [ 4967589.264538660645485, 3905638.097313363105059 ], [ 4967576.340928968973458, 3905618.411925425287336 ], [ 4967552.702471380122006, 3905634.028840453829616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967466.444769590161741, 3913259.905678926501423 ], [ 4967499.563429343514144, 3913251.587610923219472 ], [ 4967506.709218863397837, 3913281.094710928853601 ], [ 4967473.591219769790769, 3913289.048638057429343 ], [ 4967466.444769590161741, 3913259.905678926501423 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967450.842132558114827, 3902074.471342359203845 ], [ 4967469.514675211161375, 3902101.44912643218413 ], [ 4967408.678438358008862, 3902143.219609563238919 ], [ 4967386.846809254027903, 3902111.138612713199109 ], [ 4967415.390846762806177, 3902091.524567900691181 ], [ 4967418.550523823127151, 3902096.263695848640054 ], [ 4967450.842132558114827, 3902074.471342359203845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967413.23888073861599, 3902338.401557380333543 ], [ 4967366.98594827670604, 3902273.142730141989887 ], [ 4967398.702591747045517, 3902250.621063844300807 ], [ 4967408.757533572614193, 3902264.839433550368994 ], [ 4967417.118984702974558, 3902259.027702988591045 ], [ 4967432.057696655392647, 3902280.172957145608962 ], [ 4967422.83105596806854, 3902286.711458302568644 ], [ 4967444.378899868577719, 3902316.243084511719644 ], [ 4967413.23888073861599, 3902338.401557380333543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967373.801593351177871, 3898972.675979788415134 ], [ 4967418.742106528952718, 3898966.927055359818041 ], [ 4967422.435649202205241, 3898996.427937974687666 ], [ 4967406.879669018089771, 3898998.221870187204331 ], [ 4967409.722931483760476, 3899019.71042910264805 ], [ 4967380.339094994589686, 3899023.301283149048686 ], [ 4967373.801593351177871, 3898972.675979788415134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967213.246064993552864, 3901911.661625802982599 ], [ 4967234.215980379842222, 3901942.648610480129719 ], [ 4967206.249131057411432, 3901961.535571487154812 ], [ 4967184.991213906556368, 3901930.548116048797965 ], [ 4967213.246064993552864, 3901911.661625802982599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967009.508913857862353, 3901650.596375086344779 ], [ 4967037.655990861356258, 3901695.068257157225162 ], [ 4966991.528508793562651, 3901724.120164028834552 ], [ 4966963.382005496881902, 3901679.284199860878289 ], [ 4967009.508913857862353, 3901650.596375086344779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966989.842050614766777, 3895437.412802766542882 ], [ 4967008.278742742724717, 3895436.715920959133655 ], [ 4967009.37827221211046, 3895467.6687853471376 ], [ 4966977.977949838154018, 3895469.071869638748467 ], [ 4966976.864138114266098, 3895446.493956710211933 ], [ 4966990.403908123262227, 3895445.788733226247132 ], [ 4966989.842050614766777, 3895437.412802766542882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966958.180240349844098, 3899149.66146316472441 ], [ 4966922.74274159129709, 3899156.519694454036653 ], [ 4966907.326059672050178, 3899076.384876406285912 ], [ 4966942.763660050928593, 3899069.526625136844814 ], [ 4966958.180240349844098, 3899149.66146316472441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966843.685151466168463, 3899579.504727104213089 ], [ 4966842.2006313232705, 3899605.719584558624774 ], [ 4966816.858284050598741, 3899604.220087459776551 ], [ 4966818.05415262747556, 3899578.368869503960013 ], [ 4966843.685151466168463, 3899579.504727104213089 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989277.781135372817516, 3908198.95026196166873 ], [ 4989276.710594238713384, 3908166.903869231231511 ], [ 4989313.855646550655365, 3908165.541407727636397 ], [ 4989315.195612098090351, 3908204.87113971170038 ], [ 4989298.494573920965195, 3908205.557102757971734 ], [ 4989298.225100750103593, 3908198.273765111807734 ], [ 4989277.781135372817516, 3908198.95026196166873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988657.091682776808739, 3897495.923912539146841 ], [ 4988626.532920936122537, 3897506.771207621321082 ], [ 4988613.375626666471362, 3897469.961063235532492 ], [ 4988643.934424933046103, 3897459.113753432873636 ], [ 4988657.091682776808739, 3897495.923912539146841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965321.864746190607548, 3892535.795672021340579 ], [ 4965294.786542251706123, 3892534.658910334575921 ], [ 4965295.689573786221445, 3892510.99202666990459 ], [ 4965322.767801531590521, 3892512.128789244219661 ], [ 4965321.864746190607548, 3892535.795672021340579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988465.103879118338227, 3908266.818467121571302 ], [ 4988503.410440988838673, 3908261.452331025153399 ], [ 4988506.238564078696072, 3908281.850843913387507 ], [ 4988515.455532325431705, 3908280.417385808192194 ], [ 4988519.133717873133719, 3908306.280019775032997 ], [ 4988471.611171995289624, 3908312.715473128482699 ], [ 4988465.103879118338227, 3908266.818467121571302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988363.53221701271832, 3908471.935446546413004 ], [ 4988376.355540732853115, 3908525.130868215113878 ], [ 4988346.970156731083989, 3908532.340126098133624 ], [ 4988333.858864185400307, 3908479.143999362830073 ], [ 4988363.53221701271832, 3908471.935446546413004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988310.045295069925487, 3907407.442114174365997 ], [ 4988318.87646553479135, 3907445.333941371180117 ], [ 4988269.324255195446312, 3907456.862542349845171 ], [ 4988260.205093210563064, 3907418.970013116020709 ], [ 4988310.045295069925487, 3907407.442114174365997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988305.444731223396957, 3908212.527893164660782 ], [ 4988307.714442947879434, 3908226.006468665320426 ], [ 4988316.643502654507756, 3908224.572223843075335 ], [ 4988319.198397700674832, 3908239.143910463899374 ], [ 4988311.709835277870297, 3908240.217616993468255 ], [ 4988315.395493607968092, 3908263.167178655043244 ], [ 4988285.151541516184807, 3908268.189564206171781 ], [ 4988282.311439537443221, 3908252.524770855437964 ], [ 4988269.637658550404012, 3908254.677951733581722 ], [ 4988265.377942661754787, 3908230.998699291609228 ], [ 4988277.187983831390738, 3908228.84336170880124 ], [ 4988275.200724062509835, 3908217.550289755687118 ], [ 4988305.444731223396957, 3908212.527893164660782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988156.911615556105971, 3913170.196416109800339 ], [ 4988136.458770714700222, 3913175.971625904552639 ], [ 4988131.894650714471936, 3913159.210105417761952 ], [ 4988152.347507305443287, 3913153.434892199467868 ], [ 4988156.911615556105971, 3913170.196416109800339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965169.628933067433536, 3899841.439734017942101 ], [ 4965155.445223029702902, 3899885.112189136445522 ], [ 4965128.098892829380929, 3899876.328405430540442 ], [ 4965142.282562998123467, 3899832.655936107970774 ], [ 4965169.628933067433536, 3899841.439734017942101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988090.388386903330684, 3908552.092043896671385 ], [ 4988092.667235651053488, 3908561.929298592731357 ], [ 4988105.919402265921235, 3908558.685074987821281 ], [ 4988111.049287336878479, 3908579.817542468663305 ], [ 4988066.682596218772233, 3908590.995291530620307 ], [ 4988058.986811093054712, 3908559.660733811557293 ], [ 4988090.388386903330684, 3908552.092043896671385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964609.32756123598665, 3901883.665928681846708 ], [ 4964596.56284626852721, 3901941.542115177027881 ], [ 4964575.835024532862008, 3901937.139123359695077 ], [ 4964578.445668935775757, 3901925.491150384768844 ], [ 4964549.657200064510107, 3901919.254531192127615 ], [ 4964557.781203375197947, 3901881.762162029743195 ], [ 4964581.387745029293001, 3901886.898042301181704 ], [ 4964583.418316887691617, 3901877.798049573320895 ], [ 4964609.32756123598665, 3901883.665928681846708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987367.970928431488574, 3908333.64562505017966 ], [ 4987396.201015096157789, 3908327.888984208460897 ], [ 4987401.036415468901396, 3908351.933648488484323 ], [ 4987372.806352995336056, 3908357.690284348558635 ], [ 4987367.970928431488574, 3908333.64562505017966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987211.98717702832073, 3906546.828103953506798 ], [ 4987156.088509199209511, 3906562.712763628922403 ], [ 4987144.097939568571746, 3906520.808140564244241 ], [ 4987199.996687302365899, 3906504.923456360585988 ], [ 4987211.98717702832073, 3906546.828103953506798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964600.248291063122451, 3892869.256672750692815 ], [ 4964623.574665175750852, 3892874.392098285723478 ], [ 4964620.963722174055874, 3892885.67587651591748 ], [ 4964630.17938563786447, 3892887.511388901155442 ], [ 4964624.955736326053739, 3892911.171327923424542 ], [ 4964565.920248676091433, 3892897.967510590329766 ], [ 4964572.594230755232275, 3892868.119709205348045 ], [ 4964599.08833247423172, 3892873.988475755322725 ], [ 4964600.248291063122451, 3892869.256672750692815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964409.015100860968232, 3900012.077062796801329 ], [ 4964435.779081069864333, 3900024.86461256025359 ], [ 4964422.776167652569711, 3900051.425231867935508 ], [ 4964396.012207766994834, 3900038.63769484963268 ], [ 4964409.015100860968232, 3900012.077062796801329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964406.775130495429039, 3900151.535359730944037 ], [ 4964434.100352777168155, 3900173.427067572250962 ], [ 4964412.168252643197775, 3900200.701609475072473 ], [ 4964385.130459072999656, 3900179.174515146762133 ], [ 4964406.775130495429039, 3900151.535359730944037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964323.72451701015234, 3900217.309714954346418 ], [ 4964359.760484910570085, 3900195.155543376691639 ], [ 4964377.57109359651804, 3900223.586280249524862 ], [ 4964341.247146602720022, 3900245.739966569468379 ], [ 4964323.72451701015234, 3900217.309714954346418 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987175.890599408186972, 3906119.97649928368628 ], [ 4987139.002203398384154, 3906132.99478165525943 ], [ 4987116.124146056361496, 3906068.851423401851207 ], [ 4987153.300558973103762, 3906055.833816330879927 ], [ 4987175.890599408186972, 3906119.97649928368628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986817.112592678517103, 3909307.079280384350568 ], [ 4986834.966278098523617, 3909305.666324072517455 ], [ 4986834.12656079325825, 3909295.832685343455523 ], [ 4986879.338388766162097, 3909291.573490114416927 ], [ 4986884.381032299250364, 3909348.754678273573518 ], [ 4986857.023844939656556, 3909351.236792708747089 ], [ 4986857.581871414557099, 3909358.52081409888342 ], [ 4986821.873681570403278, 3909361.710839389357716 ], [ 4986817.112592678517103, 3909307.079280384350568 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964153.261797351762652, 3904163.850032176356763 ], [ 4964143.99882232490927, 3904194.058132090605795 ], [ 4964083.843598478473723, 3904176.119753592181951 ], [ 4964093.106511970050633, 3904145.911633275449276 ], [ 4964153.261797351762652, 3904163.850032176356763 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964128.952296894975007, 3893948.871076398994774 ], [ 4964131.596619299612939, 3893916.467818772885948 ], [ 4964168.176308257505298, 3893919.803352698218077 ], [ 4964165.243872210383415, 3893952.206146908923984 ], [ 4964128.952296894975007, 3893948.871076398994774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963894.147522567771375, 3894692.413164239842445 ], [ 4963904.167291833087802, 3894731.755003463476896 ], [ 4963862.670273218303919, 3894741.884807171300054 ], [ 4963852.938508892431855, 3894702.54343970771879 ], [ 4963894.147522567771375, 3894692.413164239842445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986330.729377382434905, 3908519.733971426729113 ], [ 4986338.698341927491128, 3908557.987212288659066 ], [ 4986284.543309574015439, 3908569.144191887229681 ], [ 4986276.574271357618272, 3908530.890966814011335 ], [ 4986330.729377382434905, 3908519.733971426729113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986296.650525466538966, 3898569.390716654248536 ], [ 4986340.752034203149378, 3898555.296388914808631 ], [ 4986352.759818683378398, 3898592.102654109708965 ], [ 4986308.658363894559443, 3898606.196962459478527 ], [ 4986296.650525466538966, 3898569.390716654248536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986002.651394351385534, 3909653.943399666342884 ], [ 4985944.211752132512629, 3909651.981954146642238 ], [ 4985945.472959623672068, 3909606.468369747046381 ], [ 4985978.866973111405969, 3909607.641200420912355 ], [ 4985978.880132020451128, 3909602.179237630683929 ], [ 4986004.501669079996645, 3909602.969242944382131 ], [ 4986002.651394351385534, 3909653.943399666342884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985932.290745262987912, 3905035.846113931387663 ], [ 4985946.426648828200996, 3905024.956185282673687 ], [ 4985941.260182444006205, 3905018.025240355636925 ], [ 4985956.837609609588981, 3905006.410523751750588 ], [ 4985968.893858863040805, 3905022.097230612765998 ], [ 4985998.607233718968928, 3904999.592628980521113 ], [ 4986024.730067232623696, 3905033.155723202042282 ], [ 4985987.803899714723229, 3905061.46903008967638 ], [ 4986000.43425256293267, 3905077.88539871852845 ], [ 4985977.93287889752537, 3905094.945390855893493 ], [ 4985932.290745262987912, 3905035.846113931387663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985776.447500217705965, 3910336.512780293356627 ], [ 4985781.830904835835099, 3910372.574890102725476 ], [ 4985747.847185769118369, 3910377.591149110347033 ], [ 4985742.463736590929329, 3910341.529045992065221 ], [ 4985776.447500217705965, 3910336.512780293356627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985739.448094953782856, 3911238.017812526784837 ], [ 4985780.642710668966174, 3911226.828595487866551 ], [ 4985785.209505639970303, 3911243.225564965046942 ], [ 4985782.905554376542568, 3911243.58416401129216 ], [ 4985791.467735578306019, 3911274.556065632030368 ], [ 4985822.2923538768664, 3911265.890935136005282 ], [ 4985813.159686451777816, 3911232.732852821238339 ], [ 4985808.262146743014455, 3911234.177616984117776 ], [ 4985803.123969228006899, 3911215.958604092244059 ], [ 4985846.911361417733133, 3911204.047452050261199 ], [ 4985863.464192178100348, 3911264.169256951194257 ], [ 4985841.858858459629118, 3911269.943437299225479 ], [ 4985851.276734781451523, 3911304.19461611751467 ], [ 4985790.492987795732915, 3911320.79865868575871 ], [ 4985782.501340688206255, 3911292.01292693708092 ], [ 4985756.286405828781426, 3911299.23263746034354 ], [ 4985739.448094953782856, 3911238.017812526784837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985747.910272384062409, 3906393.251475896686316 ], [ 4985751.911665353924036, 3906405.641576828900725 ], [ 4985764.590484303422272, 3906401.666560159996152 ], [ 4985772.879436080344021, 3906427.175719507504255 ], [ 4985765.962847799062729, 3906429.708037722855806 ], [ 4985775.68185047712177, 3906459.226086737122387 ], [ 4985724.388206648640335, 3906476.217177716083825 ], [ 4985706.952531638555229, 3906422.647907216567546 ], [ 4985717.038162193261087, 3906419.394912201911211 ], [ 4985712.178187276236713, 3906404.817963224370033 ], [ 4985747.910272384062409, 3906393.251475896686316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985705.034458553418517, 3906862.150980498641729 ], [ 4985728.11965898424387, 3906841.086690525524318 ], [ 4985739.320157676003873, 3906853.129936813376844 ], [ 4985764.714093127287924, 3906829.886425439268351 ], [ 4985800.611977838911116, 3906868.9347995496355 ], [ 4985765.117724863812327, 3906901.621465950272977 ], [ 4985743.86588460020721, 3906878.630110983736813 ], [ 4985730.881012140773237, 3906890.251182878389955 ], [ 4985705.034458553418517, 3906862.150980498641729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985493.303351312875748, 3910877.664407315663993 ], [ 4985514.205980448052287, 3910925.051720346324146 ], [ 4985493.168389455415308, 3910934.104737671557814 ], [ 4985489.160596363246441, 3910924.627689891029149 ], [ 4985469.275435498915613, 3910933.319348220247775 ], [ 4985452.668435307219625, 3910895.409799341112375 ], [ 4985493.303351312875748, 3910877.664407315663993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985473.057784261181951, 3909591.86205310607329 ], [ 4985481.901795761659741, 3909625.747559398878366 ], [ 4985435.52088182605803, 3909637.653104316443205 ], [ 4985426.676815854385495, 3909603.767613040748984 ], [ 4985473.057784261181951, 3909591.86205310607329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985466.734044190496206, 3901876.252260318491608 ], [ 4985428.998450715094805, 3901880.167563282418996 ], [ 4985426.183815276250243, 3901852.851000368595123 ], [ 4985463.919446663931012, 3901848.935693506151438 ], [ 4985466.734044190496206, 3901876.252260318491608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985456.688594424165785, 3905116.271078780293465 ], [ 4985445.783890835940838, 3905100.587352388072759 ], [ 4985471.742068332619965, 3905082.806912778876722 ], [ 4985509.618320667184889, 3905138.609647538047284 ], [ 4985488.564023040235043, 3905152.760454081464559 ], [ 4985495.164234814234078, 3905162.243663745932281 ], [ 4985474.97555261105299, 3905175.668286695145071 ], [ 4985470.097813899628818, 3905168.373990058898926 ], [ 4985454.811250925064087, 3905178.897288333624601 ], [ 4985426.116301530972123, 3905136.953568838071078 ], [ 4985456.688594424165785, 3905116.271078780293465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963270.608269731514156, 3897750.482437437865883 ], [ 4963351.513085814192891, 3897586.750662308651954 ], [ 4963355.542666648514569, 3897588.577622697688639 ], [ 4963378.370156858116388, 3897542.00478876195848 ], [ 4963467.015769426710904, 3897585.47530415141955 ], [ 4963454.591561640612781, 3897610.216613870114088 ], [ 4963479.055289747193456, 3897622.271317136939615 ], [ 4963501.016010788269341, 3897577.517872945405543 ], [ 4963458.70804382674396, 3897556.696010590530932 ], [ 4963464.486968271434307, 3897545.052935380954295 ], [ 4963533.561796776950359, 3897578.661439426243305 ], [ 4963526.626144393347204, 3897593.215718388091773 ], [ 4963511.660563112236559, 3897585.545460461638868 ], [ 4963482.187582775950432, 3897645.216410627122968 ], [ 4963516.436848567798734, 3897662.020211209077388 ], [ 4963540.420115602202713, 3897613.264551633037627 ], [ 4963669.933908883482218, 3897676.827204533852637 ], [ 4963641.038457767106593, 3897735.40650634560734 ], [ 4963552.393620953895152, 3897691.93541319295764 ], [ 4963532.45598582457751, 3897732.322443867102265 ], [ 4963615.632763859815896, 3897772.871815450489521 ], [ 4963587.026709120720625, 3897830.723374938126653 ], [ 4963498.670128827914596, 3897787.252910167444497 ], [ 4963478.443472277373075, 3897828.36778819700703 ], [ 4963561.908061753958464, 3897868.917448346503079 ], [ 4963535.324143525213003, 3897923.130951217375696 ], [ 4963405.523193574510515, 3897859.568485905881971 ], [ 4963433.262455240823328, 3897803.171891618985683 ], [ 4963386.637213506735861, 3897780.522715686820447 ], [ 4963378.256983438506722, 3897797.987807976081967 ], [ 4963352.066338461823761, 3897785.202230524271727 ], [ 4963350.043863410130143, 3897789.204489976167679 ], [ 4963270.608269731514156, 3897750.482437437865883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985271.134099491871893, 3901295.724667803384364 ], [ 4985289.190778980962932, 3901332.180796476546675 ], [ 4985261.511575269512832, 3901345.587707802653313 ], [ 4985243.743725426495075, 3901308.768154132645577 ], [ 4985271.134099491871893, 3901295.724667803384364 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985029.803792037069798, 3907722.80530990101397 ], [ 4984969.885730223730206, 3907735.407787072006613 ], [ 4984960.777555758133531, 3907690.962023025378585 ], [ 4985020.695712260901928, 3907678.359525879379362 ], [ 4985029.803792037069798, 3907722.80530990101397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985002.222525856457651, 3916068.314580005127937 ], [ 4984953.812197710387409, 3916091.140194296371192 ], [ 4984928.607232556678355, 3916038.645074361469597 ], [ 4984968.949659571051598, 3916019.441619637887925 ], [ 4984981.550396332517266, 3916046.417459757067263 ], [ 4984989.907061167992651, 3916042.431809905450791 ], [ 4985002.222525856457651, 3916068.314580005127937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984957.199891727417707, 3907256.907656300347298 ], [ 4984970.89864475466311, 3907308.282808811869472 ], [ 4984962.543588780798018, 3907310.447790828999132 ], [ 4984969.106321714818478, 3907335.588489862158895 ], [ 4984940.295551475137472, 3907343.166964119765908 ], [ 4984920.033974503166974, 3907266.651138139422983 ], [ 4984957.199891727417707, 3907256.907656300347298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984905.374558008275926, 3905554.466740068048239 ], [ 4984887.118436605669558, 3905603.217191303148866 ], [ 4984872.734118072316051, 3905597.721149711869657 ], [ 4984867.227817075327039, 3905612.637526490725577 ], [ 4984838.746259495615959, 3905602.010283635929227 ], [ 4984841.644667520187795, 3905594.006237932946533 ], [ 4984810.57415696978569, 3905582.280502407345921 ], [ 4984820.715986233204603, 3905555.35872366791591 ], [ 4984852.650359772145748, 3905567.086515355389565 ], [ 4984863.083630602806807, 3905538.708914509508759 ], [ 4984905.374558008275926, 3905554.466740068048239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984869.767451731488109, 3909161.114079438149929 ], [ 4984868.505462710745633, 3909207.720094189513475 ], [ 4984837.701202757656574, 3909206.918906988576055 ], [ 4984838.963138372637331, 3909160.312890820205212 ], [ 4984869.767451731488109, 3909161.114079438149929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984835.472021452151239, 3905647.154908017721027 ], [ 4984824.468101810663939, 3905673.346378942020237 ], [ 4984812.38650137744844, 3905668.219949446618557 ], [ 4984801.95936204213649, 3905694.048662139102817 ], [ 4984738.384812022559345, 3905668.045005719177425 ], [ 4984752.285305952653289, 3905634.577704101800919 ], [ 4984802.627397496253252, 3905655.088113239500672 ], [ 4984810.157879248261452, 3905636.535190366208553 ], [ 4984835.472021452151239, 3905647.154908017721027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984804.306192410178483, 3907258.366248958744109 ], [ 4984773.405863085761666, 3907297.255346327554435 ], [ 4984743.803604621440172, 3907274.245037894230336 ], [ 4984769.795376680791378, 3907241.170421191025525 ], [ 4984782.728005155920982, 3907251.396703880280256 ], [ 4984787.637407781556249, 3907245.218061687424779 ], [ 4984804.306192410178483, 3907258.366248958744109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962649.368687964044511, 3894544.451612663455307 ], [ 4962658.872540362179279, 3894545.922766517382115 ], [ 4962660.620553306303918, 3894533.18094286089763 ], [ 4962709.003450920805335, 3894540.902226528152823 ], [ 4962704.640945898368955, 3894567.841047927737236 ], [ 4962692.833158852532506, 3894566.002196905203164 ], [ 4962685.270551175810397, 3894613.327315490227193 ], [ 4962639.767284545116127, 3894606.338765606284142 ], [ 4962649.368687964044511, 3894544.451612663455307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962525.205571302212775, 3900364.145070885773748 ], [ 4962572.090416206978261, 3900402.814925554208457 ], [ 4962542.948075599037111, 3900438.090775555931032 ], [ 4962495.775808566249907, 3900399.056399479974061 ], [ 4962525.205571302212775, 3900364.145070885773748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984198.377558071166277, 3907558.077404676936567 ], [ 4984269.815179065801203, 3907544.40782652888447 ], [ 4984276.359710885211825, 3907577.559229915495962 ], [ 4984204.922174582257867, 3907591.228790946304798 ], [ 4984198.377558071166277, 3907558.077404676936567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962361.642046715132892, 3895642.223564575891942 ], [ 4962380.935385365970433, 3895646.258500065654516 ], [ 4962378.613143961876631, 3895657.907083556987345 ], [ 4962404.52942434605211, 3895663.40868705837056 ], [ 4962395.533502814359963, 3895706.726300052367151 ], [ 4962336.788896236568689, 3895694.984310869127512 ], [ 4962346.075561984442174, 3895649.846476790029556 ], [ 4962359.610092398710549, 3895652.416076535824686 ], [ 4962361.642046715132892, 3895642.223564575891942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962303.718549704179168, 3896412.996871349867433 ], [ 4962316.384118963032961, 3896418.478159408550709 ], [ 4962318.407655115239322, 3896413.747568286024034 ], [ 4962336.54326328355819, 3896421.057870720513165 ], [ 4962340.301742887124419, 3896411.960379926487803 ], [ 4962370.526814785785973, 3896424.751129718963057 ], [ 4962361.27657007612288, 3896446.220617608632892 ], [ 4962381.426774581894279, 3896454.626420049462467 ], [ 4962366.394510243088007, 3896489.923978824634105 ], [ 4962311.989488694816828, 3896466.900661217048764 ], [ 4962308.52018148638308, 3896475.270339042879641 ], [ 4962291.248731049709022, 3896467.961374606005847 ], [ 4962297.03127421066165, 3896453.769155788235366 ], [ 4962288.107498597353697, 3896450.114236169494689 ], [ 4962303.718549704179168, 3896412.996871349867433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962248.534119402058423, 3896900.846154130995274 ], [ 4962248.763286867178977, 3896939.444234867580235 ], [ 4962217.078568385913968, 3896939.760056173428893 ], [ 4962217.055260248482227, 3896955.053461539093405 ], [ 4962184.794485232792795, 3896955.368442934937775 ], [ 4962184.54637261480093, 3896929.15073799341917 ], [ 4962190.019093859940767, 3896929.159072709735483 ], [ 4962189.773204357363284, 3896901.484853363595903 ], [ 4962204.463710232637823, 3896901.143102167639881 ], [ 4962204.480908535420895, 3896889.855112838093191 ], [ 4962236.741762441582978, 3896889.540155083406717 ], [ 4962237.01203362736851, 3896901.192712274380028 ], [ 4962248.534119402058423, 3896900.846154130995274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984169.465035480447114, 3906379.677514736074954 ], [ 4984136.620652203448117, 3906387.975667802616954 ], [ 4984126.066687126643956, 3906345.347505084704608 ], [ 4984110.79665273334831, 3906349.317232291214168 ], [ 4984104.521661001257598, 3906323.813301463611424 ], [ 4984119.790856976062059, 3906320.207700928673148 ], [ 4984115.797218158841133, 3906304.176541960798204 ], [ 4984155.555609170347452, 3906294.438020065426826 ], [ 4984170.388530748896301, 3906354.190424565691501 ], [ 4984163.473780829459429, 3906355.994894792791456 ], [ 4984169.465035480447114, 3906379.677514736074954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983870.47716055251658, 3909514.524255978874862 ], [ 4983843.977350456640124, 3909519.924498894251883 ], [ 4983839.42010095808655, 3909498.794175302609801 ], [ 4983866.207834271714091, 3909493.394598934799433 ], [ 4983870.47716055251658, 3909514.524255978874862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962039.916529204696417, 3899419.214625434018672 ], [ 4962080.782600376754999, 3899440.032089987769723 ], [ 4962066.916596675291657, 3899467.320785608142614 ], [ 4962026.05110877007246, 3899446.139212560839951 ], [ 4962039.916529204696417, 3899419.214625434018672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961928.214782593771815, 3896723.756688938941807 ], [ 4961920.947114756330848, 3896767.805360651109368 ], [ 4961888.9824163261801, 3896762.659202862065285 ], [ 4961896.250033143907785, 3896718.610522638075054 ], [ 4961928.214782593771815, 3896723.756688938941807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961635.54926726128906, 3897692.992486299946904 ], [ 4961600.993893577717245, 3897687.478644612245262 ], [ 4961609.135271788574755, 3897636.51271139876917 ], [ 4961643.403226249851286, 3897641.662001677323133 ], [ 4961635.54926726128906, 3897692.992486299946904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961565.17617354169488, 3898907.623939008451998 ], [ 4961558.557248819619417, 3898903.97271239105612 ], [ 4961550.182377188466489, 3898918.889482335653156 ], [ 4961524.570720907300711, 3898904.285895070061088 ], [ 4961549.406771298497915, 3898859.899267212022096 ], [ 4961581.925949712283909, 3898877.790411427617073 ], [ 4961565.17617354169488, 3898907.623939008451998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983040.248997604474425, 3916359.406787397805601 ], [ 4983070.801692507229745, 3916340.906232546083629 ], [ 4983064.205904822796583, 3916330.331154853571206 ], [ 4983086.399835835210979, 3916316.909265178721398 ], [ 4983113.925866257399321, 3916362.853584085591137 ], [ 4983094.038787756115198, 3916374.460090404376388 ], [ 4983092.031525769270957, 3916371.17825912265107 ], [ 4983059.173701383173466, 3916390.765889000147581 ], [ 4983040.248997604474425, 3916359.406787397805601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982910.22152694966644, 3917330.983050802722573 ], [ 4982935.604822126217186, 3917307.008447234053165 ], [ 4982979.249631299637258, 3917352.261412529274821 ], [ 4982954.153321990743279, 3917376.600769477896392 ], [ 4982910.22152694966644, 3917330.983050802722573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961506.117189770564437, 3909106.118659253697842 ], [ 4961498.885137734003365, 3909129.048154251184314 ], [ 4961475.863462587818503, 3909121.731032665353268 ], [ 4961483.095496915280819, 3909098.801531577017158 ], [ 4961506.117189770564437, 3909106.118659253697842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961402.733639199286699, 3893894.411170091014355 ], [ 4961351.179343399591744, 3893887.41576945502311 ], [ 4961356.712440042756498, 3893847.369848288595676 ], [ 4961408.266811242327094, 3893854.365259360522032 ], [ 4961402.733639199286699, 3893894.411170091014355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961247.030234240926802, 3898057.269540254026651 ], [ 4961253.988919352181256, 3898026.32886616513133 ], [ 4961327.41116935852915, 3898042.824079759884626 ], [ 4961319.002504804171622, 3898080.316909591667354 ], [ 4961303.742572746239603, 3898076.652867963537574 ], [ 4961301.422632748261094, 3898087.209174388553947 ], [ 4961265.143339135684073, 3898079.144285441376269 ], [ 4961268.913152737542987, 3898062.035798755008727 ], [ 4961247.030234240926802, 3898057.269540254026651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982130.344739068299532, 3915374.166504800319672 ], [ 4982096.356487395241857, 3915384.285250768996775 ], [ 4982099.214267885312438, 3915393.39507849374786 ], [ 4982059.465130790136755, 3915405.321492642629892 ], [ 4982048.608804947696626, 3915369.247635787818581 ], [ 4982122.058432597666979, 3915347.20179764740169 ], [ 4982130.344739068299532, 3915374.166504800319672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982083.173914476297796, 3914214.656882289331406 ], [ 4982105.084543362259865, 3914199.777019899338484 ], [ 4982124.595002185553312, 3914227.859536071307957 ], [ 4982102.396532854996622, 3914242.738730739336461 ], [ 4982083.173914476297796, 3914214.656882289331406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960800.165659396909177, 3899715.220163774676621 ], [ 4960799.302170886658132, 3899714.854763043113053 ], [ 4960786.586427661590278, 3899744.330594892147928 ], [ 4960758.955343007110059, 3899732.273669755551964 ], [ 4960784.675887716934085, 3899672.594151865690947 ], [ 4960813.458520045503974, 3899685.016928107012063 ], [ 4960800.165659396909177, 3899715.220163774676621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960795.104015369899571, 3896499.582737844437361 ], [ 4960831.675233472138643, 3896506.555023114662617 ], [ 4960826.739374884404242, 3896533.129203526768833 ], [ 4960790.167656068690121, 3896526.521053503733128 ], [ 4960795.104015369899571, 3896499.582737844437361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960598.006122355349362, 3907566.679718455765396 ], [ 4960589.076747391372919, 3907569.21556663280353 ], [ 4960585.927175420336425, 3907557.194604536052793 ], [ 4960581.606715265661478, 3907558.280675451271236 ], [ 4960579.316647358238697, 3907549.174027158413082 ], [ 4960592.853881380520761, 3907545.916658573783934 ], [ 4960598.006122355349362, 3907566.679718455765396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960351.711411396972835, 3899336.232863254379481 ], [ 4960346.170854012481868, 3899383.197577386628836 ], [ 4960304.12802925426513, 3899378.402764539700001 ], [ 4960309.66851413063705, 3899331.438041882123798 ], [ 4960351.711411396972835, 3899336.232863254379481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960351.350909942761064, 3898594.135511131025851 ], [ 4960381.012211121618748, 3898597.455845913849771 ], [ 4960376.340283248573542, 3898641.144629119429737 ], [ 4960346.391010080464184, 3898637.823880461975932 ], [ 4960347.850706058554351, 3898624.353198449127376 ], [ 4960347.850706058554351, 3898624.353198449127376 ], [ 4960351.350909942761064, 3898594.135511131025851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981556.962730204686522, 3901777.618238359224051 ], [ 4981531.896513166837394, 3901782.65983776235953 ], [ 4981533.60482631623745, 3901791.402815607376397 ], [ 4981517.758255076594651, 3901794.644454818684608 ], [ 4981515.767666790634394, 3901783.351927403826267 ], [ 4981499.345121164806187, 3901786.592285886406898 ], [ 4981492.511816003359854, 3901751.620384222827852 ], [ 4981523.915387221612036, 3901745.864698159042746 ], [ 4981519.930123780854046, 3901725.100289510563016 ], [ 4981545.860352053306997, 3901720.060617450624704 ], [ 4981556.962730204686522, 3901777.618238359224051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981495.762103524059057, 3895803.921287615783513 ], [ 4981541.014540342614055, 3895791.278202121611685 ], [ 4981554.730669462122023, 3895840.466490218881518 ], [ 4981509.766358331777155, 3895853.110198705457151 ], [ 4981495.762103524059057, 3895803.921287615783513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981007.60749975591898, 3906383.383814681321383 ], [ 4981001.071594400331378, 3906344.407147442456335 ], [ 4981032.468886813148856, 3906339.015001118183136 ], [ 4981039.292684704065323, 3906377.992316556163132 ], [ 4981007.60749975591898, 3906383.383814681321383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980887.589060928672552, 3909732.771674967836589 ], [ 4980914.06703610252589, 3909736.835922527592629 ], [ 4980912.024238845333457, 3909749.211902782786638 ], [ 4980918.067725099623203, 3909750.317722250707448 ], [ 4980916.312827437184751, 3909762.694341653957963 ], [ 4980883.79139257222414, 3909757.524278692435473 ], [ 4980887.589060928672552, 3909732.771674967836589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959939.178698597475886, 3897003.384736504871398 ], [ 4959948.17966893222183, 3896953.511950914282352 ], [ 4959978.991833153180778, 3896959.018270070198923 ], [ 4959969.990807453170419, 3897008.891045503783971 ], [ 4959939.178698597475886, 3897003.384736504871398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959799.645349250175059, 3899298.294126922264695 ], [ 4959847.15905742533505, 3899304.188395911827683 ], [ 4959841.62460361700505, 3899347.511920477263629 ], [ 4959809.373000693507493, 3899343.460202103946358 ], [ 4959810.828210946172476, 3899332.902519359253347 ], [ 4959795.566697402857244, 3899330.695848312228918 ], [ 4959799.645349250175059, 3899298.294126922264695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959761.78651424497366, 3907828.007235998287797 ], [ 4959720.301362038590014, 3907845.062006297521293 ], [ 4959708.536732979118824, 3907817.007008955813944 ], [ 4959695.284538499079645, 3907822.450022442732006 ], [ 4959684.955314081162214, 3907797.310144803021103 ], [ 4959736.812478449195623, 3907775.536460466682911 ], [ 4959742.263690539635718, 3907789.017148850485682 ], [ 4959751.482399112544954, 3907785.389038076158613 ], [ 4959762.673764253035188, 3907811.622572577092797 ], [ 4959756.047920424491167, 3907814.161999573931098 ], [ 4959761.78651424497366, 3907828.007235998287797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980685.814163956791162, 3907630.187084554694593 ], [ 4980722.867612071335316, 3907670.323633078020066 ], [ 4980703.248572315089405, 3907688.486833839677274 ], [ 4980708.418287953361869, 3907694.32439118809998 ], [ 4980686.491868779994547, 3907714.303160441573709 ], [ 4980666.098496197722852, 3907692.04598216759041 ], [ 4980681.389000959694386, 3907678.242768255062401 ], [ 4980659.272084093652666, 3907654.161121739540249 ], [ 4980685.814163956791162, 3907630.187084554694593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980596.444676212966442, 3901552.99598538223654 ], [ 4980581.546449849382043, 3901518.006515270099044 ], [ 4980606.624796319752932, 3901507.502092016395181 ], [ 4980624.961964692920446, 3901550.145924228709191 ], [ 4980605.649046706967056, 3901558.114146084990352 ], [ 4980613.098942149430513, 3901575.244757892563939 ], [ 4980589.749388579279184, 3901585.388861424289644 ], [ 4980579.148490899242461, 3901560.604548683390021 ], [ 4980596.444676212966442, 3901552.99598538223654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980530.266444325447083, 3904137.089679095428437 ], [ 4980545.015913692303002, 3904108.35582562116906 ], [ 4980580.106963088735938, 3904126.639855170156807 ], [ 4980565.070309305563569, 3904155.008924301248044 ], [ 4980530.266444325447083, 3904137.089679095428437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980365.591270473785698, 3902810.196151396725327 ], [ 4980340.247874351218343, 3902810.868677789345384 ], [ 4980341.874040247872472, 3902857.116925862617791 ], [ 4980308.754579157568514, 3902858.136516036000103 ], [ 4980307.945069383829832, 3902833.373809972312301 ], [ 4980299.880977894179523, 3902833.720221084076911 ], [ 4980298.261138672940433, 3902784.558940135408193 ], [ 4980364.500243930146098, 3902782.519774840213358 ], [ 4980365.591270473785698, 3902810.196151396725327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980264.28871170245111, 3903567.36672518402338 ], [ 4980286.839716812595725, 3903526.633535949978977 ], [ 4980326.819137890823185, 3903548.569280037190765 ], [ 4980304.556056960485876, 3903589.30306906811893 ], [ 4980264.28871170245111, 3903567.36672518402338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980253.303522817790508, 3902275.04063465539366 ], [ 4980280.704077024012804, 3902255.801855128724128 ], [ 4980300.225971087813377, 3902283.518709835130721 ], [ 4980312.05078028421849, 3902275.533808873500675 ], [ 4980323.533989384770393, 3902291.944949752651155 ], [ 4980286.32771332655102, 3902317.716504748445004 ], [ 4980279.150602059438825, 3902307.505067056510597 ], [ 4980271.939898127689958, 3902312.587066322099417 ], [ 4980261.317409593611956, 3902297.634361908771098 ], [ 4980266.509053605608642, 3902294.004450577776879 ], [ 4980253.303522817790508, 3902275.04063465539366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980082.360311339609325, 3904457.269422336481512 ], [ 4980063.916699709370732, 3904463.783419347368181 ], [ 4980067.636233829893172, 3904474.715509235858917 ], [ 4980048.615926943719387, 3904481.592386185657233 ], [ 4980044.895589371211827, 3904471.024428766220808 ], [ 4980033.657295418903232, 3904474.641159051097929 ], [ 4980019.920563197694719, 3904435.649029281921685 ], [ 4980068.623640743084252, 3904418.277268081437796 ], [ 4980082.360311339609325, 3904457.269422336481512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979850.557648353278637, 3907228.171077223494649 ], [ 4979861.257831930182874, 3907206.710613219533116 ], [ 4979883.117304312996566, 3907217.31813912698999 ], [ 4979872.128385532647371, 3907239.142096912488341 ], [ 4979850.557648353278637, 3907228.171077223494649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979739.14807793404907, 3905896.661412124056369 ], [ 4979769.793706489726901, 3905972.103448214009404 ], [ 4979730.022179410792887, 3905988.402801582589746 ], [ 4979709.974055260419846, 3905938.837232025805861 ], [ 4979710.550730288028717, 3905938.474354675039649 ], [ 4979699.953925574198365, 3905912.233802312985063 ], [ 4979739.14807793404907, 3905896.661412124056369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979640.476993192918599, 3906516.199498374946415 ], [ 4979629.192141351290047, 3906541.664224036037922 ], [ 4979592.946333545260131, 3906525.927821072284132 ], [ 4979604.231157552450895, 3906500.4630804406479 ], [ 4979640.476993192918599, 3906516.199498374946415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979616.902940829284489, 3916702.411281221546233 ], [ 4979599.519469792023301, 3916754.808867388404906 ], [ 4979561.552588199265301, 3916742.709982108324766 ], [ 4979578.936783585697412, 3916689.948239093180746 ], [ 4979616.902940829284489, 3916702.411281221546233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979507.127761964686215, 3895903.314934775233269 ], [ 4979482.035162170417607, 3895918.189885191619396 ], [ 4979485.7655971320346, 3895924.752302068751305 ], [ 4979462.980571846477687, 3895938.175750649068505 ], [ 4979459.823864995501935, 3895932.706968507263809 ], [ 4979443.672645910643041, 3895942.139372202567756 ], [ 4979426.739250342361629, 3895913.700598885305226 ], [ 4979450.389213489368558, 3895899.914862695150077 ], [ 4979444.362256857566535, 3895889.706181653309613 ], [ 4979456.18725046236068, 3895882.813318787608296 ], [ 4979461.641260136850178, 3895891.564242749940604 ], [ 4979490.194408813491464, 3895874.876122135668993 ], [ 4979507.127761964686215, 3895903.314934775233269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959243.056226894259453, 3907143.065080435015261 ], [ 4959265.538863855414093, 3907125.982688177842647 ], [ 4959285.081419077701867, 3907151.863696848973632 ], [ 4959262.598791277967393, 3907168.946073038503528 ], [ 4959243.056226894259453, 3907143.065080435015261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979340.879121639765799, 3908846.725310923531651 ], [ 4979369.356244126334786, 3908858.803271020296961 ], [ 4979361.831202862784266, 3908876.993624357972294 ], [ 4979333.065399089828134, 3908865.279180583544075 ], [ 4979340.879121639765799, 3908846.725310923531651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979320.518357383087277, 3909741.719456538092345 ], [ 4979357.294827650301158, 3909776.391585529316217 ], [ 4979327.573404767550528, 3909807.642743235919625 ], [ 4979290.79693918209523, 3909772.970654249191284 ], [ 4979320.518357383087277, 3909741.719456538092345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958825.145686382427812, 3904761.7859624219127 ], [ 4958847.570947704836726, 3904786.942381028551608 ], [ 4958793.07951804343611, 3904835.659777151420712 ], [ 4958770.366293044760823, 3904810.503001207020134 ], [ 4958825.145686382427812, 3904761.7859624219127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958818.893740128725767, 3907173.784007386304438 ], [ 4958791.225162347778678, 3907193.408449519425631 ], [ 4958767.948246761225164, 3907160.968214438296854 ], [ 4958816.368058385327458, 3907126.807483797892928 ], [ 4958849.415146517567337, 3907173.098435595165938 ], [ 4958828.663946744054556, 3907187.634675417095423 ], [ 4958818.893740128725767, 3907173.784007386304438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958792.400377782993019, 3905527.872397908009589 ], [ 4958818.34350092895329, 3905507.881430976092815 ], [ 4958838.176122795790434, 3905533.398360867518932 ], [ 4958812.233009450137615, 3905553.389308952726424 ], [ 4958792.400377782993019, 3905527.872397908009589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958718.067158818244934, 3907830.172860025893897 ], [ 4958756.288495141081512, 3907881.932912406511605 ], [ 4958716.514833373948932, 3907911.007973585743457 ], [ 4958678.293969255872071, 3907858.883845681324601 ], [ 4958718.067158818244934, 3907830.172860025893897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958691.313813139684498, 3904920.360366311855614 ], [ 4958671.713278524577618, 3904934.534181552007794 ], [ 4958682.059775232337415, 3904948.749709792900831 ], [ 4958663.612594585865736, 3904961.832744068466127 ], [ 4958655.565147714689374, 3904950.89760402450338 ], [ 4958634.523375230841339, 3904966.161834148690104 ], [ 4958612.967996504157782, 3904936.63722541090101 ], [ 4958671.770071725361049, 3904893.751563834492117 ], [ 4958691.313813139684498, 3904920.360366311855614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978843.972583910450339, 3906146.707144912797958 ], [ 4978819.464207326062024, 3906162.312300755642354 ], [ 4978794.496949947439134, 3906123.296700668055564 ], [ 4978819.005347464233637, 3906107.691522429231554 ], [ 4978843.972583910450339, 3906146.707144912797958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958424.126766113564372, 3901149.050846930593252 ], [ 4958450.321001298725605, 3901158.554480973165482 ], [ 4958439.624460496939719, 3901188.034239143598825 ], [ 4958413.430250304751098, 3901178.530615355353802 ], [ 4958424.126766113564372, 3901149.050846930593252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978413.590751325711608, 3905292.627173091284931 ], [ 4978435.489548273384571, 3905285.755263087339699 ], [ 4978447.217152178287506, 3905322.557531990576535 ], [ 4978402.554230843670666, 3905337.027774036861956 ], [ 4978387.392097817733884, 3905290.386663616169244 ], [ 4978410.444232716225088, 3905282.788922049570829 ], [ 4978413.590751325711608, 3905292.627173091284931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978366.193167380988598, 3905780.827160506509244 ], [ 4978382.23978787381202, 3905817.638593093492091 ], [ 4978322.004850518889725, 3905843.363956244196743 ], [ 4978310.543598205782473, 3905816.757988402619958 ], [ 4978345.993048704229295, 3905801.539748872630298 ], [ 4978341.407624427229166, 3905791.334313553292304 ], [ 4978366.193167380988598, 3905780.827160506509244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978168.148058538325131, 3907791.144368113018572 ], [ 4978191.203390442766249, 3907780.997511931229383 ], [ 4978200.947191491723061, 3907802.501969689037651 ], [ 4978177.891874309629202, 3907812.648817645851523 ], [ 4978168.148058538325131, 3907791.144368113018572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958180.714477508328855, 3905172.72500608721748 ], [ 4958238.323949795216322, 3905158.603122415021062 ], [ 4958247.487206095829606, 3905195.757126663345844 ], [ 4958189.877808568067849, 3905209.878991020377725 ], [ 4958180.714477508328855, 3905172.72500608721748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978045.758804526180029, 3909708.407307919114828 ], [ 4978019.202665437944233, 3909741.12313101766631 ], [ 4977976.665634193457663, 3909706.804807631764561 ], [ 4978003.221755134873092, 3909674.088943190407008 ], [ 4978045.758804526180029, 3909708.407307919114828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978029.434561183676124, 3910757.439599571283907 ], [ 4978062.164675996638834, 3910799.748218765947968 ], [ 4977982.000726627185941, 3910861.481432075612247 ], [ 4977949.270561400800943, 3910819.172908921726048 ], [ 4978029.434561183676124, 3910757.439599571283907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978002.19930879957974, 3907568.30851564463228 ], [ 4978024.39253518357873, 3907557.431432059034705 ], [ 4978032.419781464152038, 3907573.834346552845091 ], [ 4978010.514489118009806, 3907584.712031840346754 ], [ 4978002.19930879957974, 3907568.30851564463228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977896.553599921986461, 3904142.696988337207586 ], [ 4977917.943313469178975, 3904104.508278112858534 ], [ 4977941.528467120602727, 3904117.666756995022297 ], [ 4977920.13873041048646, 3904155.855448763351887 ], [ 4977896.553599921986461, 3904142.696988337207586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958055.048744808882475, 3905259.944101065862924 ], [ 4957987.061989412643015, 3905282.427208751440048 ], [ 4957975.304375154897571, 3905247.090402407106012 ], [ 4958008.433433387428522, 3905236.211761313956231 ], [ 4958007.286120367236435, 3905232.933010375127196 ], [ 4958042.143900729715824, 3905221.328513070009649 ], [ 4958055.048744808882475, 3905259.944101065862924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977666.130067452788353, 3903208.215245528146625 ], [ 4977711.745718946680427, 3903152.96309022186324 ], [ 4977745.955356660299003, 3903181.073094392195344 ], [ 4977735.562379771843553, 3903193.431711254641414 ], [ 4977764.59766033384949, 3903217.161289152689278 ], [ 4977772.969485442154109, 3903207.347351234871894 ], [ 4977794.818481889553368, 3903224.871616363059729 ], [ 4977791.064906013198197, 3903229.597425600979477 ], [ 4977803.426179504022002, 3903239.819112119264901 ], [ 4977757.521750460378826, 3903295.434638909064233 ], [ 4977722.161921080201864, 3903266.593938122037798 ], [ 4977732.844364465214312, 3903253.507661390118301 ], [ 4977704.383506367914379, 3903230.507586529478431 ], [ 4977696.588419021107256, 3903239.958625974133611 ], [ 4977675.602518022060394, 3903222.800384123809636 ], [ 4977679.066574753262103, 3903218.80221347277984 ], [ 4977666.130067452788353, 3903208.215245528146625 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977602.819911047816277, 3912522.587285231798887 ], [ 4977590.366625260561705, 3912558.246236781589687 ], [ 4977540.313020869158208, 3912541.02704184083268 ], [ 4977548.711634378880262, 3912517.011838106438518 ], [ 4977564.820956587791443, 3912522.507603078149259 ], [ 4977568.875576430000365, 3912510.863834837451577 ], [ 4977602.819911047816277, 3912522.587285231798887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977617.676145365461707, 3903243.798436463344842 ], [ 4977632.27935894485563, 3903283.519381873309612 ], [ 4977620.751398547552526, 3903287.864773854147643 ], [ 4977633.637462672777474, 3903322.484280930832028 ], [ 4977651.217355096712708, 3903315.966807350981981 ], [ 4977667.539120787754655, 3903360.060956543311477 ], [ 4977593.474580755457282, 3903386.851288366597146 ], [ 4977579.159335845150054, 3903347.130965139251202 ], [ 4977589.8225930146873, 3903343.147873712237924 ], [ 4977577.223688901402056, 3903308.893120493274182 ], [ 4977562.237824680283666, 3903314.323683992028236 ], [ 4977552.502550400793552, 3903287.721701039001346 ], [ 4977555.672507224604487, 3903286.635948608163744 ], [ 4977549.086579698137939, 3903268.779717090539634 ], [ 4977617.676145365461707, 3903243.798436463344842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977587.18825177103281, 3907071.851236306596547 ], [ 4977557.772156068123877, 3907094.365769948810339 ], [ 4977540.256542711518705, 3907071.388745477423072 ], [ 4977569.960578296333551, 3907048.874796484597027 ], [ 4977587.18825177103281, 3907071.851236306596547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977480.220777610316873, 3908929.794552382547408 ], [ 4977532.106247148476541, 3908900.408452363684773 ], [ 4977545.301264135167003, 3908923.740579450968653 ], [ 4977524.258707975037396, 3908935.712872907519341 ], [ 4977543.76406283583492, 3908970.346326884813607 ], [ 4977513.497786891646683, 3908987.397161189001054 ], [ 4977480.220777610316873, 3908929.794552382547408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977445.780417280271649, 3906537.373364301864058 ], [ 4977422.130164426751435, 3906556.258778799790889 ], [ 4977377.903817017562687, 3906500.818294798955321 ], [ 4977401.842022939585149, 3906481.933443725574762 ], [ 4977445.780417280271649, 3906537.373364301864058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977402.481003722175956, 3907140.649711203295738 ], [ 4977419.717134104110301, 3907159.620608697645366 ], [ 4977399.812032998539507, 3907177.785613815765828 ], [ 4977382.575900295749307, 3907158.814728884957731 ], [ 4977402.481003722175956, 3907140.649711203295738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977375.742004808969796, 3911394.755390582140535 ], [ 4977369.513150077313185, 3911482.498461462091655 ], [ 4977334.396105515770614, 3911480.240329673048109 ], [ 4977340.625606275163591, 3911392.133119247388095 ], [ 4977375.742004808969796, 3911394.755390582140535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977302.168806665576994, 3904433.848240076564252 ], [ 4977319.646844765171409, 3904475.759830681607127 ], [ 4977291.97942291200161, 3904486.990195167716593 ], [ 4977274.501349077560008, 3904445.078622265718877 ], [ 4977302.168806665576994, 3904433.848240076564252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957557.205268654972315, 3897356.908756749238819 ], [ 4957559.545934069901705, 3897329.966332410927862 ], [ 4957595.546203340403736, 3897332.928022495936602 ], [ 4957593.205009755678475, 3897360.234572617802769 ], [ 4957557.205268654972315, 3897356.908756749238819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957479.571094008162618, 3907083.460774635896087 ], [ 4957499.690273928456008, 3907110.069522605743259 ], [ 4957434.552151754498482, 3907159.13950397213921 ], [ 4957414.43294427357614, 3907132.530803962145001 ], [ 4957479.571094008162618, 3907083.460774635896087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977213.768544330261648, 3909132.788345724809915 ], [ 4977229.554126247763634, 3909156.489849447272718 ], [ 4977207.066292178817093, 3909171.372442016843706 ], [ 4977191.28069925121963, 3909147.670951290056109 ], [ 4977213.768544330261648, 3909132.788345724809915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977221.031371651217341, 3901498.053230180870742 ], [ 4977215.504227589815855, 3901524.623275541234761 ], [ 4977189.884600462391973, 3901519.107974093873054 ], [ 4977195.41096230968833, 3901492.902052867226303 ], [ 4977221.031371651217341, 3901498.053230180870742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977161.641494817100465, 3901805.620244920253754 ], [ 4977155.226276707835495, 3901843.840650817845017 ], [ 4977123.558492409065366, 3901838.676961351651698 ], [ 4977129.973666667938232, 3901800.456548010464758 ], [ 4977161.641494817100465, 3901805.620244920253754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977130.817644327878952, 3908041.310677175410092 ], [ 4977165.129246447235346, 3908017.713456009048969 ], [ 4977176.038341409526765, 3908033.029718822333962 ], [ 4977166.52261733263731, 3908039.92842881847173 ], [ 4977182.023242335766554, 3908062.536897091660649 ], [ 4977157.226627665571868, 3908079.599511263892055 ], [ 4977130.817644327878952, 3908041.310677175410092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977108.50239690952003, 3905479.595231784973294 ], [ 4977149.726444385945797, 3905456.740654923021793 ], [ 4977165.217217446304858, 3905484.811030643060803 ], [ 4977124.281902879476547, 3905507.302052650600672 ], [ 4977108.50239690952003, 3905479.595231784973294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977058.333946728147566, 3903569.985091089271009 ], [ 4977034.340486706234515, 3903614.359299496281892 ], [ 4977006.438728226348758, 3903599.372009547892958 ], [ 4977002.680055191740394, 3903606.646838492713869 ], [ 4976985.709672557190061, 3903597.144221299793571 ], [ 4976991.201428793370724, 3903587.324065295048058 ], [ 4976978.545244849286973, 3903580.379321092739701 ], [ 4976995.022793893702328, 3903549.826463202480227 ], [ 4977031.841001144610345, 3903569.930086142383516 ], [ 4977037.911737237125635, 3903558.654616218991578 ], [ 4977058.333946728147566, 3903569.985091089271009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957387.955881117843091, 3892128.880916467867792 ], [ 4957401.493634667247534, 3892130.719759038649499 ], [ 4957399.166397952474654, 3892147.466537314932793 ], [ 4957383.324428318999708, 3892145.260470497887582 ], [ 4957380.123150140978396, 3892169.288644450251013 ], [ 4957302.640890595503151, 3892158.989033179357648 ], [ 4957308.170257081277668, 3892117.485808386001736 ], [ 4957335.533874100074172, 3892121.163806640077382 ], [ 4957339.317651781253517, 3892092.402740626130253 ], [ 4957391.740692826919258, 3892099.391602186951786 ], [ 4957387.955881117843091, 3892128.880916467867792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957246.661255001090467, 3892871.87762970244512 ], [ 4957260.449169519357383, 3892901.754638227168471 ], [ 4957225.281833803281188, 3892917.729213534854352 ], [ 4957211.493888467550278, 3892887.852222760207951 ], [ 4957246.661255001090467, 3892871.87762970244512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976923.401657463982701, 3907957.129668327514082 ], [ 4976941.493055980652571, 3907980.107496767770499 ], [ 4976904.291850870475173, 3908008.796869914513081 ], [ 4976886.489113481715322, 3907985.455531526822597 ], [ 4976923.401657463982701, 3907957.129668327514082 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976761.751001415774226, 3909272.76994832418859 ], [ 4976774.088806035928428, 3909293.186869016848505 ], [ 4976748.145723246969283, 3909308.426838545128703 ], [ 4976736.095059523358941, 3909288.374655206222087 ], [ 4976761.751001415774226, 3909272.76994832418859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976706.745108583010733, 3905513.7197444322519 ], [ 4976683.989865112118423, 3905517.314110171049833 ], [ 4976676.596403706818819, 3905472.146520145237446 ], [ 4976700.504221615381539, 3905468.190394755918533 ], [ 4976698.514142912812531, 3905455.805808432865888 ], [ 4976722.709925248287618, 3905451.850297011435032 ], [ 4976730.389757444150746, 3905497.746754101011902 ], [ 4976704.75428475998342, 3905501.699287521187216 ], [ 4976706.745108583010733, 3905513.7197444322519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976627.067592404782772, 3909524.471803046762943 ], [ 4976602.575582984834909, 3909534.252915502525866 ], [ 4976590.25801007822156, 3909504.004530278965831 ], [ 4976614.750792865641415, 3909493.859275661874563 ], [ 4976627.067592404782772, 3909524.471803046762943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957074.536553113721311, 3897732.042858337052166 ], [ 4957086.954342298209667, 3897707.662727368529886 ], [ 4957119.767852324061096, 3897724.092328659724444 ], [ 4957107.350040910765529, 3897748.472444699145854 ], [ 4957074.536553113721311, 3897732.042858337052166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976522.745675896294415, 3908033.862672260496765 ], [ 4976547.248014244250953, 3908019.711926743388176 ], [ 4976540.936272798106074, 3908008.774967970792204 ], [ 4976559.673509820364416, 3907997.889562098309398 ], [ 4976564.838067061267793, 3908006.63936954503879 ], [ 4976576.945671744644642, 3907999.381651469040662 ], [ 4976593.872160688042641, 3908028.911229165270925 ], [ 4976538.525772769935429, 3908060.840931049082428 ], [ 4976522.745675896294415, 3908033.862672260496765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976516.599258851259947, 3909622.196032640524209 ], [ 4976468.792568220756948, 3909629.380390167236328 ], [ 4976464.24974472541362, 3909598.419775777030736 ], [ 4976471.161642760038376, 3909597.341582974418998 ], [ 4976467.466808626428246, 3909574.029497743584216 ], [ 4976492.80971226003021, 3909570.440267067868263 ], [ 4976496.503027422353625, 3909594.480618012603372 ], [ 4976511.767088988795877, 3909591.963080432731658 ], [ 4976516.599258851259947, 3909622.196032640524209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976319.291051870211959, 3908965.988064345903695 ], [ 4976300.351729254238307, 3908935.362120146397501 ], [ 4976360.601703372783959, 3908897.979984285775572 ], [ 4976378.393829179927707, 3908926.418821323197335 ], [ 4976351.007338368333876, 3908943.476872192695737 ], [ 4976357.894754092209041, 3908954.41497370088473 ], [ 4976337.139168777503073, 3908967.117049643304199 ], [ 4976331.687560830265284, 3908958.0025595263578 ], [ 4976319.291051870211959, 3908965.988064345903695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976287.160005955956876, 3907504.294898705556989 ], [ 4976315.120783985592425, 3907488.694500771351159 ], [ 4976338.932689337991178, 3907530.618513986933976 ], [ 4976310.971940957009792, 3907546.21888754144311 ], [ 4976287.160005955956876, 3907504.294898705556989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956845.547271635383368, 3892950.359451391734183 ], [ 4956821.626946302130818, 3892957.610362428240478 ], [ 4956819.331937422044575, 3892950.324754143133759 ], [ 4956789.648083345033228, 3892959.024583091493696 ], [ 4956778.747701902873814, 3892923.68970282189548 ], [ 4956806.990704958327115, 3892915.352084835991263 ], [ 4956803.548661311157048, 3892904.059546710457653 ], [ 4956828.91039899084717, 3892896.08227015286684 ], [ 4956845.547271635383368, 3892950.359451391734183 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976124.34116552490741, 3901227.42721571912989 ], [ 4976154.000612002797425, 3901229.308443915098906 ], [ 4976151.023995102383196, 3901276.639368895441294 ], [ 4976121.364600669592619, 3901274.75814393023029 ], [ 4976124.34116552490741, 3901227.42721571912989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976076.848037212155759, 3906013.836665213573724 ], [ 4976076.561582514084876, 3906013.1078170100227 ], [ 4976094.429508084431291, 3906005.497510735411197 ], [ 4976113.916542907245457, 3906051.053774874191731 ], [ 4976098.642332983203232, 3906057.576966842636466 ], [ 4976096.92212444730103, 3906053.932136892341077 ], [ 4976070.697281485423446, 3906064.802577958907932 ], [ 4976053.216113086789846, 3906023.984150032047182 ], [ 4976076.848037212155759, 3906013.836665213573724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975964.858886114321649, 3901195.058552372734994 ], [ 4975994.223711549304426, 3901200.216181479394436 ], [ 4975986.062039515003562, 3901248.264823863748461 ], [ 4975956.696523867547512, 3901243.471332821063697 ], [ 4975964.858886114321649, 3901195.058552372734994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975902.685177948325872, 3910381.249417583458126 ], [ 4975962.354091487824917, 3910344.593446364626288 ], [ 4975980.432826157659292, 3910373.396763019729406 ], [ 4975920.763951674103737, 3910410.05269475793466 ], [ 4975902.685177948325872, 3910381.249417583458126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975902.244637520983815, 3909607.102282509207726 ], [ 4975921.21061095315963, 3909624.619236862286925 ], [ 4975890.049074728041887, 3909658.056052084080875 ], [ 4975851.829208022914827, 3909623.021615122910589 ], [ 4975886.453709866851568, 3909585.586338918656111 ], [ 4975905.706870225258172, 3909603.467998723033816 ], [ 4975902.244637520983815, 3909607.102282509207726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975804.137155975215137, 3909148.459936682600528 ], [ 4975820.205960606224835, 3909175.074245726224035 ], [ 4975789.075075475499034, 3909193.217663690447807 ], [ 4975789.36224287096411, 3909193.582379187457263 ], [ 4975777.543294902890921, 3909200.841041838284582 ], [ 4975752.005302700214088, 3909158.549847596790642 ], [ 4975777.083502623252571, 3909143.671295789070427 ], [ 4975786.265486373566091, 3909158.983499314635992 ], [ 4975804.137155975215137, 3909148.459936682600528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975777.185390027239919, 3906397.750200210139155 ], [ 4975745.510898221284151, 3906398.414207480382174 ], [ 4975744.455891137011349, 3906350.710784210357815 ], [ 4975776.130439141765237, 3906350.046775714494288 ], [ 4975777.185390027239919, 3906397.750200210139155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975753.131891317665577, 3915981.682661811355501 ], [ 4975681.13064422737807, 3916002.656441781669855 ], [ 4975668.26665738131851, 3915958.934282745234668 ], [ 4975702.539577197283506, 3915948.807983248494565 ], [ 4975685.673217916861176, 3915891.604742289986461 ], [ 4975712.170258778147399, 3915883.647502832580358 ], [ 4975725.320568199269474, 3915928.098529755137861 ], [ 4975744.905125465244055, 3915922.312109256628901 ], [ 4975752.909814962185919, 3915949.274274471215904 ], [ 4975744.269619412720203, 3915951.80568319093436 ], [ 4975753.131891317665577, 3915981.682661811355501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975660.937036802060902, 3905221.368815720081329 ], [ 4975668.701338911429048, 3905226.48238171916455 ], [ 4975661.191069862805307, 3905238.119387317914516 ], [ 4975615.754074831493199, 3905208.896889003925025 ], [ 4975628.46363175008446, 3905189.25949507439509 ], [ 4975620.986523968167603, 3905184.510653623379767 ], [ 4975634.274206409230828, 3905163.782037471421063 ], [ 4975679.423308434896171, 3905193.003983038943261 ], [ 4975660.937036802060902, 3905221.368815720081329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975563.062131914310157, 3911189.664059633389115 ], [ 4975509.800437410362065, 3911191.012968735769391 ], [ 4975509.538291822187603, 3911178.267783749382943 ], [ 4975562.800011576153338, 3911176.918874135240912 ], [ 4975563.062131914310157, 3911189.664059633389115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975503.474863500334322, 3904485.140498468652368 ], [ 4975489.907076480798423, 3904501.863159166183323 ], [ 4975494.507035237737, 3904505.513759294059128 ], [ 4975478.34030660521239, 3904525.872495120856911 ], [ 4975436.366199184209108, 3904492.287725769914687 ], [ 4975466.388652144931257, 3904455.206866812426597 ], [ 4975503.474863500334322, 3904485.140498468652368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956195.985578455030918, 3895119.350815024692565 ], [ 4956127.080817525275052, 3895164.777458869852126 ], [ 4956110.405156679451466, 3895140.359182787593454 ], [ 4956179.310424985364079, 3895094.568368428386748 ], [ 4956195.985578455030918, 3895119.350815024692565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955983.981295792385936, 3904474.669401677325368 ], [ 4956001.810620618984103, 3904493.263137725181878 ], [ 4955952.509800361469388, 3904539.808205626439303 ], [ 4955934.680472426116467, 3904521.214501755312085 ], [ 4955983.981295792385936, 3904474.669401677325368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975449.869449387304485, 3904793.087611353490502 ], [ 4975464.024726826697588, 3904770.540007893461734 ], [ 4975468.051673864014447, 3904772.732921855058521 ], [ 4975479.317882946692407, 3904754.913208187092096 ], [ 4975533.097628711722791, 3904788.521896184887737 ], [ 4975523.85442709736526, 3904802.704357697162777 ], [ 4975510.625472758896649, 3904794.30261617526412 ], [ 4975493.870502364821732, 3904820.850395056884736 ], [ 4975449.869449387304485, 3904793.087611353490502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975266.700818866491318, 3910536.540338288992643 ], [ 4975289.667005457915366, 3910568.994347999803722 ], [ 4975240.080831367522478, 3910603.123145465739071 ], [ 4975217.402506086975336, 3910570.669755754526705 ], [ 4975266.700818866491318, 3910536.540338288992643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955787.844312332570553, 3901142.9847919838503 ], [ 4955786.350069832988083, 3901185.221991438418627 ], [ 4955706.868381601758301, 3901181.842799467034638 ], [ 4955707.759436218999326, 3901160.724382055923343 ], [ 4955691.056331096217036, 3901160.338841765187681 ], [ 4955692.242366436868906, 3901133.758847115095705 ], [ 4955721.90423452667892, 3901134.889266956597567 ], [ 4955721.607367875054479, 3901141.807362559717149 ], [ 4955736.294534399174154, 3901142.190334951970726 ], [ 4955736.887808154337108, 3901128.718273849226534 ], [ 4955755.318890043534338, 3901129.106061031110585 ], [ 4955754.726542034186423, 3901141.849862263537943 ], [ 4955787.844312332570553, 3901142.9847919838503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975018.057938107289374, 3902717.763931930996478 ], [ 4975017.481257728300989, 3902718.126909269019961 ], [ 4975000.831818861886859, 3902691.51203353330493 ], [ 4975031.107213413342834, 3902672.637786640319973 ], [ 4975050.054611509665847, 3902702.170329870190471 ], [ 4975062.164919135160744, 3902694.547823190689087 ], [ 4975082.546311759389937, 3902726.996310105081648 ], [ 4975073.31941678840667, 3902732.803926859050989 ], [ 4975079.635191122069955, 3902742.648116663098335 ], [ 4975055.991296087391675, 3902757.530143684707582 ], [ 4975048.240012152120471, 3902745.498298971448094 ], [ 4975039.301835334859788, 3902750.942374303471297 ], [ 4975018.057938107289374, 3902717.763931930996478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955650.673962126486003, 3905709.009578663855791 ], [ 4955674.879907391034067, 3905694.475324214901775 ], [ 4955687.809389168396592, 3905716.339771937578917 ], [ 4955663.60392289608717, 3905730.509884173981845 ], [ 4955650.673962126486003, 3905709.009578663855791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955562.563467317260802, 3905483.135507071390748 ], [ 4955592.749895460903645, 3905520.679592966567725 ], [ 4955589.291287428699434, 3905523.224092085845768 ], [ 4955602.228369550779462, 3905539.262404948007315 ], [ 4955576.863564550876617, 3905559.257212816737592 ], [ 4955534.027980047278106, 3905505.675225315149873 ], [ 4955562.563467317260802, 3905483.135507071390748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974770.457266492769122, 3910783.157551825977862 ], [ 4974763.004051928408444, 3910767.120857566595078 ], [ 4974809.397844812832773, 3910745.365331969223917 ], [ 4974831.185975441709161, 3910791.289522302336991 ], [ 4974793.43690225481987, 3910809.05677594570443 ], [ 4974779.389821762219071, 3910779.169885935261846 ], [ 4974770.457266492769122, 3910783.157551825977862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974686.095441929064691, 3899203.604599908925593 ], [ 4974699.82885573990643, 3899249.5123286168091 ], [ 4974668.129322999157012, 3899258.552567354403436 ], [ 4974654.683873247355223, 3899212.645426855422556 ], [ 4974686.095441929064691, 3899203.604599908925593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974652.881777313537896, 3898815.01157667953521 ], [ 4974668.075798182748258, 3898850.726533060427755 ], [ 4974618.783616582863033, 3898871.384038695599884 ], [ 4974602.7305489750579, 3898833.118492939975113 ], [ 4974627.521029517054558, 3898822.607935885433108 ], [ 4974628.668038229458034, 3898825.159125446341932 ], [ 4974652.881777313537896, 3898815.01157667953521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974630.448619692586362, 3904598.457667999435216 ], [ 4974618.00649950094521, 3904628.655871043913066 ], [ 4974573.98399746697396, 3904611.090166886802763 ], [ 4974587.874528956599534, 3904576.525240636896342 ], [ 4974600.24651678930968, 3904581.647641093004495 ], [ 4974604.0087412558496, 3904572.187691394705325 ], [ 4974618.682929759845138, 3904578.042934342287481 ], [ 4974613.185011595487595, 3904591.504881833214313 ], [ 4974630.448619692586362, 3904598.457667999435216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955361.705931761302054, 3900843.853703185915947 ], [ 4955416.415915930643678, 3900851.205802882555872 ], [ 4955414.961586974561214, 3900862.491992413066328 ], [ 4955439.149529508315027, 3900865.435793079901487 ], [ 4955434.785130436532199, 3900900.386747819371521 ], [ 4955355.59933178499341, 3900890.090497501660138 ], [ 4955361.705931761302054, 3900843.853703185915947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974280.888844674453139, 3902253.48863024590537 ], [ 4974260.975785285234451, 3902274.933072174433619 ], [ 4974238.841478390619159, 3902254.498085921630263 ], [ 4974258.75453516561538, 3902233.053627851419151 ], [ 4974280.888844674453139, 3902253.48863024590537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974268.965199656784534, 3900852.653807522263378 ], [ 4974356.199182251468301, 3900867.39126344025135 ], [ 4974346.874691831879318, 3900922.356573871802539 ], [ 4974259.352887378074229, 3900907.618579712696373 ], [ 4974268.965199656784534, 3900852.653807522263378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974075.546096388250589, 3896251.124133565928787 ], [ 4974127.430767117068172, 3896232.655532936565578 ], [ 4974149.77649112418294, 3896294.601543374825269 ], [ 4974113.745116677135229, 3896307.639328517019749 ], [ 4974101.141313842497766, 3896271.92983622988686 ], [ 4974084.99934240244329, 3896277.724178693722934 ], [ 4974075.546096388250589, 3896251.124133565928787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974054.334834484383464, 3899716.872222635895014 ], [ 4974002.775669152848423, 3899719.684020275250077 ], [ 4974001.382796701043844, 3899695.648678939789534 ], [ 4974009.736467403359711, 3899694.936814883723855 ], [ 4974008.62374600674957, 3899674.907457958441228 ], [ 4974051.83003403339535, 3899672.443390966858715 ], [ 4974054.334834484383464, 3899716.872222635895014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954943.588719869963825, 3900571.32099541509524 ], [ 4954954.255182926543057, 3900562.959374960046262 ], [ 4954939.590054533444345, 3900544.734478602185845 ], [ 4954947.373794569633901, 3900538.554023352917284 ], [ 4954937.021794339641929, 3900525.796489573549479 ], [ 4954964.40960218757391, 3900503.618890023324639 ], [ 4955007.543234274722636, 3900556.471909645013511 ], [ 4954961.416793067939579, 3900593.555293618701398 ], [ 4954943.588719869963825, 3900571.32099541509524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973998.643757620826364, 3895220.486468366347253 ], [ 4974061.156260121613741, 3895218.424428826663643 ], [ 4974061.97321493178606, 3895242.458577570971102 ], [ 4974051.026370408944786, 3895242.801203120499849 ], [ 4974052.399418383836746, 3895277.032069050241262 ], [ 4974020.999206560663879, 3895278.062798126135021 ], [ 4974021.270821481011808, 3895286.43830893561244 ], [ 4974000.817447415553033, 3895287.126423914916813 ], [ 4973998.643757620826364, 3895220.486468366347253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973830.265031991526484, 3909723.495376801583916 ], [ 4973850.159419674426317, 3909708.604879936669022 ], [ 4973859.92309873085469, 3909721.368639089632779 ], [ 4973840.02871504239738, 3909736.259128850419074 ], [ 4973830.265031991526484, 3909723.495376801583916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973805.285711141303182, 3898645.476879475172609 ], [ 4973740.72808347363025, 3898666.470278321299702 ], [ 4973729.848756450228393, 3898632.949057768564671 ], [ 4973794.405744146555662, 3898612.319761993829161 ], [ 4973805.285711141303182, 3898645.476879475172609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973731.689028894528747, 3899903.039188530296087 ], [ 4973765.116945317015052, 3899893.272960060741752 ], [ 4973776.846208645030856, 3899933.714361003600061 ], [ 4973743.418338168412447, 3899943.480575125198811 ], [ 4973731.689028894528747, 3899903.039188530296087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954858.10424121003598, 3895231.981404701713473 ], [ 4954888.603107473812997, 3895260.057488494087011 ], [ 4954869.565919529646635, 3895280.424899726174772 ], [ 4954839.355567483231425, 3895251.985068651847541 ], [ 4954858.10424121003598, 3895231.981404701713473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954743.386335623450577, 3893670.817757537122816 ], [ 4954773.380877584218979, 3893642.817233685404062 ], [ 4954811.931314736604691, 3893684.011876872740686 ], [ 4954782.225305042229593, 3893711.648589555174112 ], [ 4954743.386335623450577, 3893670.817757537122816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973495.258027747273445, 3904187.307061483152211 ], [ 4973500.714403212070465, 3904194.964429308660328 ], [ 4973513.689604074694216, 3904186.250507595017552 ], [ 4973538.383329609408975, 3904222.711683927569538 ], [ 4973495.420684048905969, 3904251.758634949102998 ], [ 4973465.270547294989228, 3904207.640135600697249 ], [ 4973495.258027747273445, 3904187.307061483152211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973272.344012841582298, 3899442.977751531638205 ], [ 4973344.692651762627065, 3899413.259193652775139 ], [ 4973357.591745724901557, 3899444.963537540752441 ], [ 4973285.24388263374567, 3899474.317932279780507 ], [ 4973272.344012841582298, 3899442.977751531638205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973084.855834109708667, 3898393.55634843185544 ], [ 4973122.616265607066453, 3898378.335730465129018 ], [ 4973133.509105449542403, 3898405.302382562309504 ], [ 4973095.748705579899251, 3898420.522985470015556 ], [ 4973084.855834109708667, 3898393.55634843185544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973043.963865760713816, 3903620.209267221856862 ], [ 4973070.666086073033512, 3903661.043445250019431 ], [ 4973025.398626291193068, 3903690.450825449544936 ], [ 4973007.022833677940071, 3903662.377320845611393 ], [ 4973031.530799174681306, 3903646.402757869102061 ], [ 4973023.20433881226927, 3903633.642121206503361 ], [ 4973043.963865760713816, 3903620.209267221856862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954306.440747923217714, 3895026.292735271155834 ], [ 4954292.88410225789994, 3895040.841227816417813 ], [ 4954274.757013332098722, 3895024.069019041024148 ], [ 4954286.29456296376884, 3895011.702809978742152 ], [ 4954298.667201371863484, 3895023.006016506813467 ], [ 4954300.398237773217261, 3895020.82337077986449 ], [ 4954306.440747923217714, 3895026.292735271155834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972663.160273830406368, 3910750.639880665112287 ], [ 4972693.72610233630985, 3910724.844959146343172 ], [ 4972711.535534000955522, 3910745.634638452436775 ], [ 4972680.969711927697062, 3910771.429540033917874 ], [ 4972663.160273830406368, 3910750.639880665112287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953998.06509280949831, 3893259.890653836075217 ], [ 4954008.415908489376307, 3893276.289051793515682 ], [ 4954028.020246198400855, 3893263.932574540842324 ], [ 4954065.973546992987394, 3893323.695968315936625 ], [ 4954030.513041946105659, 3893345.864552310202271 ], [ 4953981.920351737178862, 3893270.06659320415929 ], [ 4953998.06509280949831, 3893259.890653836075217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972369.801391053944826, 3902576.775127266068012 ], [ 4972333.183266723528504, 3902600.374013833701611 ], [ 4972301.599848496727645, 3902550.7921820897609 ], [ 4972330.720895613543689, 3902532.276836212724447 ], [ 4972336.175863784737885, 3902541.026348955463618 ], [ 4972363.566999562084675, 3902523.600143343675882 ], [ 4972384.814324158243835, 3902556.776483411900699 ], [ 4972364.92031848244369, 3902569.119092019274831 ], [ 4972369.801391053944826, 3902576.775127266068012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972230.997597073204815, 3903942.003277082461864 ], [ 4972241.372549509629607, 3903937.653385761659592 ], [ 4972264.313495485112071, 3903988.311177505645901 ], [ 4972231.74612154904753, 3904002.814625829458237 ], [ 4972199.34101770631969, 3903931.74756365455687 ], [ 4972221.821464317850769, 3903921.594517798628658 ], [ 4972230.997597073204815, 3903942.003277082461864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972143.563516618683934, 3906926.260409203357995 ], [ 4972170.842420049011707, 3906965.638343661557883 ], [ 4972147.489708101376891, 3906981.615905677899718 ], [ 4972120.210097432136536, 3906942.602125210687518 ], [ 4972143.563516618683934, 3906926.260409203357995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972110.429613834246993, 3898416.455701546743512 ], [ 4972088.522722169756889, 3898425.517509963363409 ], [ 4972082.787074631080031, 3898412.39797896053642 ], [ 4972067.798223771154881, 3898418.559847790747881 ], [ 4972048.01347915455699, 3898371.549668760038912 ], [ 4972075.973695450462401, 3898359.950362813659012 ], [ 4972072.246613625437021, 3898350.840063542593271 ], [ 4972094.153560546226799, 3898341.778242264874279 ], [ 4972115.944755656644702, 3898393.890072676353157 ], [ 4972103.261442273855209, 3898399.328024685382843 ], [ 4972110.429613834246993, 3898416.455701546743512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953687.877598968334496, 3894393.775557759683579 ], [ 4953743.768395647406578, 3894388.745252445805818 ], [ 4953748.885337783955038, 3894445.191409237217158 ], [ 4953712.009114515036345, 3894448.424013903364539 ], [ 4953709.453465610742569, 3894417.834104554262012 ], [ 4953690.150922238826752, 3894419.631448882166296 ], [ 4953687.877598968334496, 3894393.775557759683579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953687.887716853059828, 3892952.918352616485208 ], [ 4953712.385117495432496, 3892944.208837072364986 ], [ 4953722.147753536701202, 3892970.802010268438607 ], [ 4953697.362293652258813, 3892979.511169367469847 ], [ 4953687.887716853059828, 3892952.918352616485208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953119.156180109828711, 3891788.119647205807269 ], [ 4953145.69011577963829, 3891763.390390172600746 ], [ 4953186.834689271636307, 3891807.862884 ], [ 4953160.301191692240536, 3891832.227973287925124 ], [ 4953119.156180109828711, 3891788.119647205807269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953064.337104219011962, 3895751.59560866933316 ], [ 4953034.092654532752931, 3895750.831572815775871 ], [ 4953035.919557138346136, 3895667.448166182730347 ], [ 4953066.164531573653221, 3895667.848075454588979 ], [ 4953064.337104219011962, 3895751.59560866933316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971033.273465017788112, 3903364.794588945806026 ], [ 4971041.889596398919821, 3903377.191010609269142 ], [ 4971052.558615388348699, 3903369.564026297535747 ], [ 4971062.323236898519099, 3903383.783238724805415 ], [ 4971053.0960887754336, 3903390.320497852750123 ], [ 4971072.91327413264662, 3903418.759461008943617 ], [ 4971052.441198780201375, 3903432.922629443928599 ], [ 4971041.527414951473475, 3903417.244766337797046 ], [ 4971029.993838416412473, 3903425.234284862410277 ], [ 4971002.997620224021375, 3903385.858126840088516 ], [ 4971033.273465017788112, 3903364.794588945806026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952883.594055098481476, 3893418.408637541346252 ], [ 4952888.540620937943459, 3893376.539667678996921 ], [ 4952879.611549273133278, 3893375.436774998437613 ], [ 4952881.646932763978839, 3893359.417510947678238 ], [ 4952947.031646408140659, 3893366.777094931807369 ], [ 4952944.991931546479464, 3893386.437635185196996 ], [ 4952929.149472111836076, 3893384.962447655852884 ], [ 4952926.821266900748014, 3893404.986778151243925 ], [ 4952912.995776452124119, 3893403.149848153349012 ], [ 4952910.957804520614445, 3893421.353878936730325 ], [ 4952883.594055098481476, 3893418.408637541346252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970833.542779109440744, 3905484.398198736365885 ], [ 4970860.060727476142347, 3905469.881878409534693 ], [ 4970880.151070741936564, 3905505.603874531574547 ], [ 4970853.633146672509611, 3905520.120175352785736 ], [ 4970833.542779109440744, 3905484.398198736365885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970683.43962196726352, 3900206.406603489536792 ], [ 4970692.122577225789428, 3900183.118226911406964 ], [ 4970920.642926811240613, 3900266.925452676601708 ], [ 4970911.959800214506686, 3900290.213756593875587 ], [ 4970683.43962196726352, 3900206.406603489536792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970212.335370732471347, 3897954.491445490159094 ], [ 4970264.79545561876148, 3897933.103390180971473 ], [ 4970283.147494117729366, 3897977.924844808876514 ], [ 4970230.687481917440891, 3897999.312864870764315 ], [ 4970212.335370732471347, 3897954.491445490159094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970159.738033595494926, 3913080.422757551074028 ], [ 4970137.579063651151955, 3913076.74109002109617 ], [ 4970132.049335258081555, 3913109.867159099318087 ], [ 4970094.062466582283378, 3913103.607798164710402 ], [ 4970101.919569636695087, 3913057.013021331746131 ], [ 4970112.279403124935925, 3913058.852529092691839 ], [ 4970114.89867006149143, 3913043.199561259709299 ], [ 4970164.684778356924653, 3913051.301099550444633 ], [ 4970159.738033595494926, 3913080.422757551074028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969967.307467253878713, 3898226.051309098023921 ], [ 4969977.918809350579977, 3898251.195513774175197 ], [ 4969927.764421606436372, 3898272.224177047610283 ], [ 4969905.968887967988849, 3898220.114124470856041 ], [ 4969938.540678485296667, 3898206.33616584027186 ], [ 4969950.012828635983169, 3898233.302568406797945 ], [ 4969967.307467253878713, 3898226.051309098023921 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969569.32267337385565, 3910841.028503713663667 ], [ 4969542.197628770023584, 3910876.300613238010556 ], [ 4969557.434768123552203, 3910887.980255878996104 ], [ 4969540.697971347719431, 3910909.798135011456907 ], [ 4969486.936764559708536, 3910868.554549662396312 ], [ 4969531.086456056684256, 3910811.465007197577506 ], [ 4969569.32267337385565, 3910841.028503713663667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969506.457728506065905, 3897910.611704980954528 ], [ 4969537.829170413315296, 3897923.776721753645688 ], [ 4969541.299890363588929, 3897915.772098873276263 ], [ 4969562.886236715130508, 3897924.550007741898298 ], [ 4969540.901304471306503, 3897977.309339750092477 ], [ 4969521.905926938168705, 3897969.264361009001732 ], [ 4969525.666625168174505, 3897960.167866913136095 ], [ 4969491.416909890249372, 3897945.9053082796745 ], [ 4969506.457728506065905, 3897910.611704980954528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969347.698363675735891, 3903252.485613569617271 ], [ 4969375.088788675144315, 3903233.963964826893061 ], [ 4969390.311430647969246, 3903256.203225316945463 ], [ 4969362.921017739921808, 3903274.724858795758337 ], [ 4969347.698363675735891, 3903252.485613569617271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969274.438144882209599, 3910566.67194146104157 ], [ 4969216.569937499240041, 3910567.6609613513574 ], [ 4969215.785573821514845, 3910523.235370270907879 ], [ 4969273.653876847587526, 3910522.246348721440881 ], [ 4969274.438144882209599, 3910566.67194146104157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951829.717994961887598, 3892234.864045003429055 ], [ 4951835.510828894563019, 3892207.561008322052658 ], [ 4951867.480779533274472, 3892214.515836481470615 ], [ 4951861.687914604321122, 3892241.818866393528879 ], [ 4951829.717994961887598, 3892234.864045003429055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951677.623026415705681, 3891966.328903834801167 ], [ 4951706.135799399577081, 3891973.643754595890641 ], [ 4951694.270874876528978, 3892020.602867113891989 ], [ 4951647.613378786481917, 3892008.897967582568526 ], [ 4951652.822070297785103, 3891988.512672479730099 ], [ 4951670.966852932237089, 3891992.902737084776163 ], [ 4951677.623026415705681, 3891966.328903834801167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968869.482187994755805, 3898805.235473991371691 ], [ 4968914.720363343134522, 3898794.391756455413997 ], [ 4968925.870391437783837, 3898841.020184168592095 ], [ 4968890.140735142864287, 3898849.69595411978662 ], [ 4968884.709705625660717, 3898826.382002028636634 ], [ 4968875.20125266071409, 3898828.549933039583266 ], [ 4968869.482187994755805, 3898805.235473991371691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951646.315416410565376, 3890099.044610952958465 ], [ 4951637.686074186116457, 3890086.654508129693568 ], [ 4951653.8334821453318, 3890075.020670114085078 ], [ 4951661.887833727523685, 3890086.317743956577033 ], [ 4951676.593871195800602, 3890075.410545093938708 ], [ 4951694.141042531467974, 3890099.826977184507996 ], [ 4951639.066954921931028, 3890139.45461472356692 ], [ 4951622.094336207956076, 3890116.495378671679646 ], [ 4951646.315416410565376, 3890099.044610952958465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968666.794861930422485, 3898434.556883849203587 ], [ 4968692.142068262211978, 3898433.873350948560983 ], [ 4968692.682762712240219, 3898453.901455895975232 ], [ 4968702.764162315055728, 3898453.555122147779912 ], [ 4968703.828819126822054, 3898503.078684266190976 ], [ 4968668.400939670391381, 3898503.744420137722045 ], [ 4968666.794861930422485, 3898434.556883849203587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968409.156350487843156, 3902621.23976079467684 ], [ 4968414.039178120903671, 3902628.530947978142649 ], [ 4968433.357283720746636, 3902615.092013752087951 ], [ 4968449.155091486871243, 3902638.424133400898427 ], [ 4968393.797756367363036, 3902675.832452540285885 ], [ 4968373.116451195441186, 3902645.57331397337839 ], [ 4968409.156350487843156, 3902621.23976079467684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968269.014283807948232, 3899269.900785193312913 ], [ 4968315.393283750861883, 3899264.884136309381574 ], [ 4968319.080061349086463, 3899297.662308983504772 ], [ 4968272.701117249205709, 3899302.678951604291797 ], [ 4968269.014283807948232, 3899269.900785193312913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968165.426794979721308, 3903833.369553978554904 ], [ 4968203.179341644980013, 3903816.68545479234308 ], [ 4968211.49721332360059, 3903835.634810463525355 ], [ 4968173.744688048958778, 3903852.318898160010576 ], [ 4968165.426794979721308, 3903833.369553978554904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968153.935379412025213, 3905467.571043940261006 ], [ 4968165.422086809761822, 3905485.433541955891997 ], [ 4968137.460165494121611, 3905503.227183362003416 ], [ 4968111.614869012497365, 3905463.12762906216085 ], [ 4968145.054156793281436, 3905441.702204051427543 ], [ 4968159.412718833424151, 3905463.939289673231542 ], [ 4968153.935379412025213, 3905467.571043940261006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967887.963215644471347, 3905415.037301574833691 ], [ 4967860.579825576394796, 3905431.375708110630512 ], [ 4967835.59852001350373, 3905390.913789015263319 ], [ 4967862.982567636296153, 3905374.21122700534761 ], [ 4967887.963215644471347, 3905415.037301574833691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967795.249135096557438, 3897430.21982877748087 ], [ 4967806.385911591351032, 3897485.95097150746733 ], [ 4967781.030271351337433, 3897491.004883582238108 ], [ 4967778.460674869827926, 3897477.891763363964856 ], [ 4967765.206788296811283, 3897480.417732681147754 ], [ 4967755.783630102872849, 3897433.064556800760329 ], [ 4967761.834204107522964, 3897431.982636558357626 ], [ 4967757.837659462355077, 3897411.220324595458806 ], [ 4967784.345501904375851, 3897406.168385440018028 ], [ 4967789.486591913737357, 3897431.30224019754678 ], [ 4967795.249135096557438, 3897430.21982877748087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950862.637923375703394, 3895081.267423093318939 ], [ 4950910.510955159552395, 3895031.070407859049737 ], [ 4950942.739699799567461, 3895061.692817844916135 ], [ 4950894.579006298445165, 3895111.525330414995551 ], [ 4950862.637923375703394, 3895081.267423093318939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950732.631259150803089, 3899629.829402564559132 ], [ 4950743.034745549783111, 3899597.797383261844516 ], [ 4950777.583468207158148, 3899609.12334380345419 ], [ 4950767.179944968782365, 3899641.155349946580827 ], [ 4950732.631259150803089, 3899629.829402564559132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967652.653082735836506, 3895606.048268554266542 ], [ 4967654.305966017767787, 3895649.74664724431932 ], [ 4967632.700205898843706, 3895650.801746957469732 ], [ 4967632.429746164008975, 3895640.605657585896552 ], [ 4967606.503203237429261, 3895641.653323430102319 ], [ 4967605.121340302750468, 3895607.78690842539072 ], [ 4967652.653082735836506, 3895606.048268554266542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967607.174571113660932, 3913280.539623205084354 ], [ 4967686.651754257269204, 3913265.019157744944096 ], [ 4967692.645884362049401, 3913294.524317086208612 ], [ 4967593.87509223818779, 3913314.016940143890679 ], [ 4967585.027981532737613, 3913269.577416487038136 ], [ 4967604.32107650488615, 3913265.969367424957454 ], [ 4967607.174571113660932, 3913280.539623205084354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967055.777038903906941, 3905424.893937658518553 ], [ 4967063.820307614281774, 3905436.195726327132434 ], [ 4967068.433044305071235, 3905432.926407443825155 ], [ 4967086.2435123603791, 3905457.717724608723074 ], [ 4967050.206746996380389, 3905483.145485382992774 ], [ 4967032.109556866809726, 3905457.625440208707005 ], [ 4967050.848426915705204, 3905444.548638294450939 ], [ 4967043.092481569387019, 3905433.611474615521729 ], [ 4967055.777038903906941, 3905424.893937658518553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967038.395507305860519, 3902106.173108536284417 ], [ 4967052.450796945020556, 3902138.968828894197941 ], [ 4967064.842719149775803, 3902133.892120146658272 ], [ 4967077.177521883510053, 3902162.315351689700037 ], [ 4967046.052520167082548, 3902175.735134400427341 ], [ 4967043.757352717220783, 3902170.633392404299229 ], [ 4967026.754022195935249, 3902177.887040557805449 ], [ 4967002.371660799719393, 3902121.405249343719333 ], [ 4967038.395507305860519, 3902106.173108536284417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950436.690543211065233, 3892609.824395753443241 ], [ 4950466.358867564238608, 3892613.862033604178578 ], [ 4950458.520066386088729, 3892669.565164127852768 ], [ 4950428.851802358403802, 3892665.527534807566553 ], [ 4950436.690543211065233, 3892609.824395753443241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950227.177930429577827, 3892412.24017195077613 ], [ 4950226.01145666372031, 3892425.34753597388044 ], [ 4950199.509876843541861, 3892423.134215685538948 ], [ 4950202.428384102880955, 3892388.181035437621176 ], [ 4950225.473351438529789, 3892390.026504510547966 ], [ 4950225.766539879143238, 3892385.293151804246008 ], [ 4950239.593521199189126, 3892386.400442876387388 ], [ 4950237.548254237510264, 3892412.979608154855669 ], [ 4950227.177930429577827, 3892412.24017195077613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966657.738569919019938, 3897810.610440345015377 ], [ 4966690.007612636312842, 3897804.83889527246356 ], [ 4966694.000612884759903, 3897828.149954861961305 ], [ 4966706.966198180802166, 3897825.622969721443951 ], [ 4966710.959180579520762, 3897848.934032094664872 ], [ 4966700.299062176607549, 3897850.736653902567923 ], [ 4966706.289767695590854, 3897884.974989250767976 ], [ 4966671.715981016866863, 3897891.106749977916479 ], [ 4966657.738569919019938, 3897810.610440345015377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966589.334944183006883, 3891232.866566224489361 ], [ 4966618.856835412792861, 3891152.44398818956688 ], [ 4966663.197151796892285, 3891168.540496980771422 ], [ 4966651.330339319072664, 3891200.927883796859533 ], [ 4966640.389326483011246, 3891196.903997738379985 ], [ 4966623.022248340770602, 3891244.939634280279279 ], [ 4966589.334944183006883, 3891232.866566224489361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950016.486583761870861, 3890620.867416930384934 ], [ 4950021.653390496969223, 3890638.715216904878616 ], [ 4950027.993657279759645, 3890636.901362545322627 ], [ 4950032.299256120808423, 3890651.835219017695636 ], [ 4950026.823697913438082, 3890653.285869884304702 ], [ 4950033.425559136085212, 3890676.233000420033932 ], [ 4950002.300488024950027, 3890685.302897236309946 ], [ 4949995.123170865699649, 3890661.62690301053226 ], [ 4949989.64722743909806, 3890663.441689042374492 ], [ 4949985.053501529619098, 3890648.507531371433288 ], [ 4949992.258079364895821, 3890646.694592318497598 ], [ 4949987.090476288460195, 3890629.575053049717098 ], [ 4950016.486583761870861, 3890620.867416930384934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966328.505678289569914, 3897132.774949345737696 ], [ 4966410.044885478913784, 3897117.982500185258687 ], [ 4966416.610362682491541, 3897153.314109896775335 ], [ 4966394.136250587180257, 3897157.645911966450512 ], [ 4966395.277384552173316, 3897164.202162740752101 ], [ 4966365.600566667504609, 3897169.614281620830297 ], [ 4966363.885799333453178, 3897161.600550623144954 ], [ 4966334.785666522569954, 3897166.649541705381125 ], [ 4966328.505678289569914, 3897132.774949345737696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966297.726669580675662, 3896248.980867292732 ], [ 4966268.047642063349485, 3896255.121347844600677 ], [ 4966263.760500964708626, 3896235.087047005537897 ], [ 4966293.439549595117569, 3896228.946561797522008 ], [ 4966297.726669580675662, 3896248.980867292732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966215.840589732863009, 3898019.242222470231354 ], [ 4966281.224385104142129, 3898018.259292592760175 ], [ 4966281.751634269952774, 3898047.390565211419016 ], [ 4966216.65532654337585, 3898048.738104527350515 ], [ 4966215.840589732863009, 3898019.242222470231354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966099.153492067940533, 3898040.895062244962901 ], [ 4966103.244796209968626, 3898005.581292685121298 ], [ 4966127.434760289266706, 3898008.170578475110233 ], [ 4966128.018108592368662, 3898003.801994160283357 ], [ 4966157.679357120767236, 3898007.12870243890211 ], [ 4966156.803719261661172, 3898014.045706816483289 ], [ 4966178.690068828873336, 3898016.267060361802578 ], [ 4966174.89034463185817, 3898049.396526951808482 ], [ 4966099.153492067940533, 3898040.895062244962901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966086.909734645858407, 3898646.786838012281805 ], [ 4966094.739724582992494, 3898614.756461372599006 ], [ 4966152.032568824477494, 3898628.689050967805088 ], [ 4966144.202514592558146, 3898660.719411182682961 ], [ 4966086.909734645858407, 3898646.786838012281805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965990.11391403991729, 3897794.197446818929166 ], [ 4965984.873644148930907, 3897827.688667645677924 ], [ 4965902.806740979664028, 3897814.807666409760714 ], [ 4965908.047516021877527, 3897780.952301027718931 ], [ 4965990.11391403991729, 3897794.197446818929166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949466.23970930185169, 3890861.701190966647118 ], [ 4949528.179168401286006, 3890864.315162020735443 ], [ 4949526.993821730837226, 3890895.628926189150661 ], [ 4949465.054434660822153, 3890893.014957820530981 ], [ 4949466.23970930185169, 3890861.701190966647118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965688.011891073547304, 3895852.885577200446278 ], [ 4965686.516867988742888, 3895886.01887992862612 ], [ 4965645.040798882953823, 3895884.129702112171799 ], [ 4965646.535169551149011, 3895851.360525501891971 ], [ 4965688.011891073547304, 3895852.885577200446278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965623.464377198368311, 3908774.32425826555118 ], [ 4965658.246844473294914, 3908807.517757717054337 ], [ 4965609.506977096199989, 3908857.68749317759648 ], [ 4965574.724514864385128, 3908824.494055788964033 ], [ 4965623.464377198368311, 3908774.32425826555118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965425.783431293442845, 3900296.658264743164182 ], [ 4965390.063424534164369, 3900301.333272039424628 ], [ 4965383.232697895728052, 3900251.800329222809523 ], [ 4965418.665365250781178, 3900246.760710346046835 ], [ 4965425.783431293442845, 3900296.658264743164182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965395.648253636434674, 3901810.663390256464481 ], [ 4965451.503695736639202, 3901819.130202612839639 ], [ 4965438.11267161089927, 3901906.499545906670392 ], [ 4965382.257407013326883, 3901898.032760949805379 ], [ 4965395.648253636434674, 3901810.663390256464481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965379.271666740067303, 3908450.208566697780043 ], [ 4965405.479665950872004, 3908445.51790577871725 ], [ 4965410.613052794709802, 3908475.385178859345615 ], [ 4965384.405081794597208, 3908480.075834849383682 ], [ 4965379.271666740067303, 3908450.208566697780043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949107.808805918321013, 3899230.102266131900251 ], [ 4949160.474025506526232, 3899269.84705357439816 ], [ 4949141.150712590664625, 3899295.316082734148949 ], [ 4949088.485514455474913, 3899255.571332554798573 ], [ 4949107.808805918321013, 3899230.102266131900251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965100.537716094404459, 3895232.172755114734173 ], [ 4965109.25306816957891, 3895187.034948528278619 ], [ 4965140.641728291288018, 3895192.912246784660965 ], [ 4965131.926325366832316, 3895238.050043358001858 ], [ 4965100.537716094404459, 3895232.172755114734173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965029.365298972465098, 3903910.007094093598425 ], [ 4965056.138749605044723, 3903914.420297867618501 ], [ 4965057.883742495439947, 3903903.863339769188315 ], [ 4965081.778750710189342, 3903907.543614613823593 ], [ 4965073.630866903811693, 3903959.601078139152378 ], [ 4965048.296684041619301, 3903955.554333583917469 ], [ 4965049.169474209658802, 3903950.093789038714021 ], [ 4965023.547315966337919, 3903946.046598505694419 ], [ 4965029.365298972465098, 3903910.007094093598425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964903.578634599223733, 3903877.030667326413095 ], [ 4964929.775619775056839, 3903881.806939735077322 ], [ 4964920.190575269982219, 3903932.405588062014431 ], [ 4964877.009142983704805, 3903924.324566005263478 ], [ 4964884.561218057759106, 3903884.282403985504061 ], [ 4964901.545737240463495, 3903887.58716752147302 ], [ 4964903.578634599223733, 3903877.030667326413095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964887.080760069191456, 3904106.042360830120742 ], [ 4964895.370716697536409, 3904143.561334209050983 ], [ 4964853.313690559007227, 3904152.596340080723166 ], [ 4964845.023678058758378, 3904115.077379466034472 ], [ 4964887.080760069191456, 3904106.042360830120742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964897.494792826473713, 3897160.63595212250948 ], [ 4964932.917831050232053, 3897163.970662056468427 ], [ 4964931.162990672513843, 3897180.353644567076117 ], [ 4964944.410837296396494, 3897181.467565180268139 ], [ 4964942.655991021543741, 3897197.85054710926488 ], [ 4964934.016122123226523, 3897197.108245273586363 ], [ 4964932.552276815287769, 3897211.671052632853389 ], [ 4964893.097403079271317, 3897207.965666790492833 ], [ 4964897.494792826473713, 3897160.63595212250948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964659.441177476197481, 3900098.050975484307855 ], [ 4964670.13438569009304, 3900075.128040889743716 ], [ 4964688.264529349282384, 3900083.896463111974299 ], [ 4964691.442580303177238, 3900077.711384910158813 ], [ 4964722.52406654227525, 3900091.962720907758921 ], [ 4964708.652768980711699, 3900121.070710811298341 ], [ 4964659.441177476197481, 3900098.050975484307855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964447.613575709052384, 3902337.840646975673735 ], [ 4964444.092268361710012, 3902378.617633527610451 ], [ 4964413.282548576593399, 3902376.01921716099605 ], [ 4964416.803809496574104, 3902335.24222663603723 ], [ 4964447.613575709052384, 3902337.840646975673735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964428.361262624152005, 3901235.950376441236585 ], [ 4964476.165560437366366, 3901237.483742759563029 ], [ 4964474.960300245322287, 3901270.617682432755828 ], [ 4964427.15606130566448, 3901269.08431821456179 ], [ 4964428.361262624152005, 3901235.950376441236585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947836.822231802158058, 3891640.002908888272941 ], [ 4947843.482985068112612, 3891605.053192452061921 ], [ 4947900.227234943769872, 3891615.669097091071308 ], [ 4947893.566410502418876, 3891650.618799676652998 ], [ 4947836.822231802158058, 3891640.002908888272941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963069.319411055184901, 3898092.450501663610339 ], [ 4963060.35663646273315, 3898114.284347276203334 ], [ 4963077.914844522252679, 3898121.594261195976287 ], [ 4963066.929100022651255, 3898147.794514852575958 ], [ 4963019.436112920753658, 3898127.693529529031366 ], [ 4963039.384007623419166, 3898080.023530269507319 ], [ 4963069.319411055184901, 3898092.450501663610339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947331.198877549730241, 3899376.520430107135326 ], [ 4947287.103098983876407, 3899407.428712537046522 ], [ 4947252.876594779081643, 3899358.966311582829803 ], [ 4947272.474802174605429, 3899345.14834594912827 ], [ 4947288.293947901576757, 3899367.375585334841162 ], [ 4947312.503536874428391, 3899350.28494819952175 ], [ 4947331.198877549730241, 3899376.520430107135326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962916.998501758091152, 3896205.294345326256007 ], [ 4962904.039265722036362, 3896203.453613842371851 ], [ 4962899.956976586021483, 3896235.490675706416368 ], [ 4962863.382539641112089, 3896230.700348850805312 ], [ 4962869.506476391106844, 3896182.280619815457612 ], [ 4962893.985870398581028, 3896185.231567378621548 ], [ 4962894.862982974387705, 3896176.857950161676854 ], [ 4962919.917906692251563, 3896180.173942365217954 ], [ 4962916.998501758091152, 3896205.294345326256007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962835.036087055690587, 3899285.704941627569497 ], [ 4962820.933038494549692, 3899279.492914162576199 ], [ 4962828.736984667368233, 3899261.662612400949001 ], [ 4962842.840040799230337, 3899267.874643885530531 ], [ 4962835.036087055690587, 3899285.704941627569497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962506.929030725732446, 3896885.219808719586581 ], [ 4962508.99951383844018, 3896849.902421919163316 ], [ 4962511.303824312984943, 3896849.905958949588239 ], [ 4962514.257997564040124, 3896801.84539652382955 ], [ 4962573.877099553123116, 3896805.214150355663151 ], [ 4962572.992829808034003, 3896818.321453775744885 ], [ 4962581.057366062887013, 3896818.697982106823474 ], [ 4962580.164695164188743, 3896837.267215406522155 ], [ 4962568.644256794825196, 3896836.52124538179487 ], [ 4962567.17103994358331, 3896858.002623175736517 ], [ 4962576.387719242833555, 3896858.38092110818252 ], [ 4962575.494492989964783, 3896877.314283662009984 ], [ 4962562.245840521529317, 3896876.56565944571048 ], [ 4962561.65185555908829, 3896888.216891766525805 ], [ 4962506.929030725732446, 3896885.219808719586581 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961896.782723334617913, 3891793.767123008612543 ], [ 4961905.988483759574592, 3891802.520124922972172 ], [ 4961871.940155166201293, 3891837.789117452688515 ], [ 4961835.692168092355132, 3891803.506299881730229 ], [ 4961870.030236045829952, 3891767.14531461847946 ], [ 4961881.825000781565905, 3891778.451118893455714 ], [ 4961890.192361887544394, 3891770.08881184225902 ], [ 4961905.439278684556484, 3891784.677000972442329 ], [ 4961896.782723334617913, 3891793.767123008612543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946364.918445478193462, 3891977.22685938840732 ], [ 4946368.977915771305561, 3891949.192778931930661 ], [ 4946363.792952219955623, 3891948.459678647574037 ], [ 4946367.271139601245522, 3891925.886978590395302 ], [ 4946373.320041843689978, 3891926.985015048179775 ], [ 4946377.380549347028136, 3891897.858553013764322 ], [ 4946407.626107321120799, 3891902.256376560311764 ], [ 4946403.56658972799778, 3891930.29045041417703 ], [ 4946416.529004151932895, 3891932.123222156893462 ], [ 4946413.339208275079727, 3891954.332057662773877 ], [ 4946398.072414643131196, 3891952.133003613445908 ], [ 4946394.011892805807292, 3891981.259463449940085 ], [ 4946364.918445478193462, 3891977.22685938840732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961706.865373257547617, 3893941.839767718221992 ], [ 4961708.907619499601424, 3893924.728783474769443 ], [ 4961689.610205616801977, 3893922.514974653255194 ], [ 4961692.820061893202364, 3893895.210137163754553 ], [ 4961747.832196639850736, 3893901.48314417200163 ], [ 4961742.58001652918756, 3893945.898956778459251 ], [ 4961706.865373257547617, 3893941.839767718221992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961621.218655943870544, 3896686.880914856679738 ], [ 4961625.884733664803207, 3896648.654328541830182 ], [ 4961613.789200196973979, 3896647.179645235650241 ], [ 4961616.703512623906136, 3896624.607994678430259 ], [ 4961631.10283874720335, 3896626.450269488152117 ], [ 4961633.730767602100968, 3896602.785802429541945 ], [ 4961671.16958639677614, 3896607.211628007236868 ], [ 4961664.458134654909372, 3896664.733992298599333 ], [ 4961652.938692132942379, 3896663.260157503653318 ], [ 4961649.72974562086165, 3896690.200915598776191 ], [ 4961621.218655943870544, 3896686.880914856679738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961452.657748925499618, 3898265.494419724680483 ], [ 4961458.176497762091458, 3898234.551640715450048 ], [ 4961497.049374608322978, 3898241.52828529663384 ], [ 4961491.818605985492468, 3898272.471487659960985 ], [ 4961452.657748925499618, 3898265.494419724680483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961384.053940850310028, 3899459.009849079884589 ], [ 4961368.173667914234102, 3899485.567636609543115 ], [ 4961308.609207882545888, 3899449.429917998146266 ], [ 4961324.776911478489637, 3899423.23665452376008 ], [ 4961384.053940850310028, 3899459.009849079884589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961104.796870444901288, 3909478.391784872859716 ], [ 4961125.534568318165839, 3909472.596438030246645 ], [ 4961124.675721390172839, 3909469.317972771357745 ], [ 4961161.830970336683095, 3909458.813304777257144 ], [ 4961176.151481720618904, 3909509.084838387556374 ], [ 4961144.756520268507302, 3909518.141510249581188 ], [ 4961146.189006391912699, 3909522.877357268705964 ], [ 4961119.691122457385063, 3909530.12066915910691 ], [ 4961104.796870444901288, 3909478.391784872859716 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961057.803672461770475, 3893773.371544922236353 ], [ 4961058.902039287611842, 3893809.78605584660545 ], [ 4961039.312646068632603, 3893810.121183751150966 ], [ 4961039.855374227277935, 3893832.69797579292208 ], [ 4961011.047183017246425, 3893833.383609984535724 ], [ 4961010.501199401915073, 3893812.991586828138679 ], [ 4961000.706235019490123, 3893813.341230656486005 ], [ 4960999.610481524839997, 3893775.106081797275692 ], [ 4961057.803672461770475, 3893773.371544922236353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960847.339694913476706, 3907572.872111717239022 ], [ 4960821.417426839470863, 3907579.024164404720068 ], [ 4960824.563673063181341, 3907593.229940693825483 ], [ 4960766.671197313815355, 3907606.617615376133472 ], [ 4960755.799166077747941, 3907559.628618512302637 ], [ 4960787.481527424417436, 3907552.392582173924893 ], [ 4960785.19152875803411, 3907543.285916354507208 ], [ 4960811.689135387539864, 3907537.498807767406106 ], [ 4960813.405957978218794, 3907544.78397259907797 ], [ 4960839.328257215209305, 3907538.631912305485457 ], [ 4960847.339694913476706, 3907572.872111717239022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960520.95276768412441, 3900397.190719438716769 ], [ 4960550.878760376013815, 3900415.076845435425639 ], [ 4960529.514563228003681, 3900450.730380055960268 ], [ 4960485.776802320033312, 3900424.449114691931754 ], [ 4960501.654587055556476, 3900398.619049813132733 ], [ 4960515.178920479491353, 3900406.649670375045389 ], [ 4960520.95276768412441, 3900397.190719438716769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944943.598281626589596, 3891838.660364927258343 ], [ 4944962.373110138811171, 3891783.329435502644628 ], [ 4945003.270105531439185, 3891797.20240740198642 ], [ 4944997.205037079751492, 3891814.311073566321284 ], [ 4945008.437437283806503, 3891817.96227899659425 ], [ 4945002.660784447565675, 3891834.707070836797357 ], [ 4944991.14061941858381, 3891830.691485492512584 ], [ 4944983.631246828474104, 3891852.168417839799076 ], [ 4944943.598281626589596, 3891838.660364927258343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959554.405334216542542, 3897780.250347715336829 ], [ 4959562.267230211757123, 3897720.544287220109254 ], [ 4959586.745061942376196, 3897723.856354577001184 ], [ 4959578.883112513460219, 3897783.562408027704805 ], [ 4959554.405334216542542, 3897780.250347715336829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944429.595769693143666, 3890554.296843798365444 ], [ 4944436.822292109020054, 3890526.629354792647064 ], [ 4944504.512533261440694, 3890543.801826831419021 ], [ 4944496.706900078803301, 3890574.745948395226151 ], [ 4944441.114681161008775, 3890560.496951334644109 ], [ 4944441.981512513943017, 3890557.584675830323249 ], [ 4944429.595769693143666, 3890554.296843798365444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944365.361669615842402, 3892548.935325347818434 ], [ 4944368.556905621662736, 3892518.351294171996415 ], [ 4944376.334267013706267, 3892519.450368142686784 ], [ 4944379.819797403179109, 3892486.317690381780267 ], [ 4944421.012267643585801, 3892490.72270104335621 ], [ 4944417.236091637983918, 3892526.768149668816477 ], [ 4944419.540458906441927, 3892527.134263820480555 ], [ 4944416.347989833913743, 3892554.441136626992375 ], [ 4944365.361669615842402, 3892548.935325347818434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959498.004781634546816, 3908466.682042474858463 ], [ 4959473.217730743810534, 3908485.217502800282091 ], [ 4959423.501706982031465, 3908419.603057852014899 ], [ 4959448.57669893745333, 3908401.06796174030751 ], [ 4959498.004781634546816, 3908466.682042474858463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959392.255695493891835, 3904266.274175310507417 ], [ 4959365.434675882570446, 3904295.002476361580193 ], [ 4959341.853004362434149, 3904273.121173648629338 ], [ 4959368.674020499922335, 3904244.39284943882376 ], [ 4959392.255695493891835, 3904266.274175310507417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959242.080461981706321, 3906814.981045113876462 ], [ 4959265.427684037946165, 3906797.535746628418565 ], [ 4959297.32783498801291, 3906840.184301157481968 ], [ 4959244.293299549259245, 3906879.071346770972013 ], [ 4959222.164267149753869, 3906849.545400533825159 ], [ 4959251.564194713719189, 3906827.739063943270594 ], [ 4959242.080461981706321, 3906814.981045113876462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959094.329420880414546, 3907457.829172733705491 ], [ 4959123.145544146187603, 3907441.119711401872337 ], [ 4959129.464501121081412, 3907452.052572684828192 ], [ 4959154.821952177211642, 3907437.887192271649837 ], [ 4959176.363928684033453, 3907475.059033530764282 ], [ 4959145.530794500373304, 3907492.857988788746297 ], [ 4959157.306941914372146, 3907513.265981181059033 ], [ 4959133.966571504250169, 3907526.341808221768588 ], [ 4959094.329420880414546, 3907457.829172733705491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958688.032264411449432, 3906862.268762189429253 ], [ 4958668.716512735933065, 3906879.720176271162927 ], [ 4958650.892139235511422, 3906860.03225092869252 ], [ 4958669.919961701147258, 3906842.580423260107636 ], [ 4958688.032264411449432, 3906862.268762189429253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958208.930085876956582, 3898892.967869509011507 ], [ 4958216.735088350251317, 3898872.223199389409274 ], [ 4958213.568902859464288, 3898870.762325460556895 ], [ 4958232.937698170542717, 3898818.718396210577339 ], [ 4958262.58847984764725, 3898829.68310657190159 ], [ 4958235.126096880063415, 3898902.835410205181688 ], [ 4958208.930085876956582, 3898892.967869509011507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958171.24321027379483, 3906826.597056706435978 ], [ 4958211.198126100935042, 3906875.809758838731796 ], [ 4958178.625849113799632, 3906901.982452976051718 ], [ 4958138.670912748202682, 3906852.769798473920673 ], [ 4958171.24321027379483, 3906826.597056706435978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943228.807261554524302, 3889448.888900052756071 ], [ 4943213.813816551119089, 3889462.713499023579061 ], [ 4943218.131718504242599, 3889467.450686102733016 ], [ 4943198.812955874018371, 3889485.641291907988489 ], [ 4943164.844742938876152, 3889449.200818795710802 ], [ 4943199.156956111080945, 3889417.185573711059988 ], [ 4943228.807261554524302, 3889448.888900052756071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956547.962713668122888, 3892070.232657697517425 ], [ 4956551.173299942165613, 3892038.557703041471541 ], [ 4956594.093020100146532, 3892042.983633335214108 ], [ 4956590.882383763790131, 3892074.658582949545234 ], [ 4956547.962713668122888, 3892070.232657697517425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956360.3120978474617, 3899206.918368333019316 ], [ 4956371.299435459077358, 3899174.161030371207744 ], [ 4956415.346506509929895, 3899188.783819440752268 ], [ 4956402.913339310325682, 3899225.908807883504778 ], [ 4956386.791255999356508, 3899220.789908033795655 ], [ 4956383.611209196038544, 3899229.8889992358163 ], [ 4956365.761995911598206, 3899224.039594557601959 ], [ 4956370.388290029019117, 3899210.208701973315328 ], [ 4956360.3120978474617, 3899206.918368333019316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956211.838637630455196, 3898655.068088959902525 ], [ 4956236.025163285434246, 3898660.56150725344196 ], [ 4956230.522465533576906, 3898683.858652833849192 ], [ 4956206.336433298885822, 3898678.001110230572522 ], [ 4956211.838637630455196, 3898655.068088959902525 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956151.629844680428505, 3905095.730224186554551 ], [ 4956176.706617477349937, 3905076.463851472362876 ], [ 4956222.988952819257975, 3905136.241566603071988 ], [ 4956200.506118745543063, 3905153.690614283084869 ], [ 4956185.844820910133421, 3905135.100856684148312 ], [ 4956178.927393926307559, 3905140.189701497554779 ], [ 4956161.392248887568712, 3905117.226647410076112 ], [ 4956166.003710594959557, 3905113.955457911361009 ], [ 4956151.629844680428505, 3905095.730224186554551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955769.587886530905962, 3905042.0735839381814 ], [ 4955736.732496161013842, 3905064.607532692141831 ], [ 4955714.601383002474904, 3905032.535593929700553 ], [ 4955747.456793930381536, 3905010.001618557143956 ], [ 4955769.587886530905962, 3905042.0735839381814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955557.438445548526943, 3901151.792947060894221 ], [ 4955556.825275484472513, 3901180.922591412905604 ], [ 4955535.802759331651032, 3901180.167503922712058 ], [ 4955535.789752681739628, 3901190.363136908970773 ], [ 4955500.079635692760348, 3901189.589344270993024 ], [ 4955501.586421700194478, 3901137.156496050767601 ], [ 4955536.144636880606413, 3901137.928821048699319 ], [ 4955535.839921184815466, 3901151.037124307826161 ], [ 4955557.438445548526943, 3901151.792947060894221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955096.27540778554976, 3900762.68121001124382 ], [ 4955123.038466182537377, 3900779.100787971168756 ], [ 4955130.830443257465959, 3900766.366050998214632 ], [ 4955151.550140025094151, 3900779.136737243738025 ], [ 4955121.826362377032638, 3900826.800323267001659 ], [ 4955074.343651387840509, 3900797.610103118699044 ], [ 4955096.27540778554976, 3900762.68121001124382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955041.57973756082356, 3897307.384101393632591 ], [ 4955025.118796287104487, 3897341.591585105285048 ], [ 4954975.031112821772695, 3897317.496148701291531 ], [ 4954991.492004993371665, 3897283.28863480547443 ], [ 4955041.57973756082356, 3897307.384101393632591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954851.848325201310217, 3892862.223441080655903 ], [ 4954875.192493947222829, 3892854.60592923918739 ], [ 4954894.420140650123358, 3892913.618808319792151 ], [ 4954870.787936721928418, 3892921.235943456646055 ], [ 4954851.848325201310217, 3892862.223441080655903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954297.283949188888073, 3894273.627028148155659 ], [ 4954320.070759710855782, 3894249.622547490987927 ], [ 4954371.575923237018287, 3894297.386832507327199 ], [ 4954348.788658731617033, 3894321.755398457869887 ], [ 4954297.283949188888073, 3894273.627028148155659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953800.683681218884885, 3900673.325473583769053 ], [ 4953776.48172711301595, 3900681.671167541760951 ], [ 4953769.020220255479217, 3900659.814326473511755 ], [ 4953793.510189772583544, 3900651.468974636867642 ], [ 4953800.683681218884885, 3900673.325473583769053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953809.063440172933042, 3892327.127994177397341 ], [ 4953786.856482654809952, 3892347.128171680029482 ], [ 4953734.204745464026928, 3892290.62460015155375 ], [ 4953756.124062720686197, 3892270.259903630241752 ], [ 4953809.063440172933042, 3892327.127994177397341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953385.949552747420967, 3894664.324809012468904 ], [ 4953441.833625171333551, 3894664.391672382131219 ], [ 4953441.49934252537787, 3894702.988935409579426 ], [ 4953393.681081178598106, 3894702.931715845596045 ], [ 4953393.662794632837176, 3894718.225107965059578 ], [ 4953363.416321176104248, 3894718.188958803657442 ], [ 4953363.760061309672892, 3894671.580870170146227 ], [ 4953385.940846975892782, 3894671.60737651027739 ], [ 4953385.949552747420967, 3894664.324809012468904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953060.452185935340822, 3895139.854196116793901 ], [ 4953060.448738836683333, 3895142.767223973758519 ], [ 4953084.357909541577101, 3895142.431398265063763 ], [ 4953085.181545904837549, 3895176.660499235149473 ], [ 4953001.642510785721242, 3895178.746471049729735 ], [ 4953000.822638849727809, 3895141.240216253791004 ], [ 4953060.452185935340822, 3895139.854196116793901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953007.976502740755677, 3901032.137761657126248 ], [ 4952968.810178975574672, 3901031.363248940557241 ], [ 4952969.415389953181148, 3901006.60310527915135 ], [ 4953008.581319502554834, 3901007.741748624946922 ], [ 4953007.976502740755677, 3901032.137761657126248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952129.241597763262689, 3888549.138969046995044 ], [ 4952170.146527362056077, 3888557.196782907471061 ], [ 4952165.221144224517047, 3888580.859412656165659 ], [ 4952124.60437667183578, 3888572.801937012467533 ], [ 4952129.241597763262689, 3888549.138969046995044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951895.174171581864357, 3891929.434914773330092 ], [ 4951893.403289366513491, 3891966.57398220570758 ], [ 4951859.410193393938243, 3891965.07874549087137 ], [ 4951861.181028742343187, 3891927.939675856381655 ], [ 4951895.174171581864357, 3891929.434914773330092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951546.630715379491448, 3894443.34752907184884 ], [ 4951620.960843050852418, 3894435.056438754778355 ], [ 4951626.664121486246586, 3894486.405046812258661 ], [ 4951596.701751883141696, 3894489.648366247769445 ], [ 4951596.13014514837414, 3894485.642303875647485 ], [ 4951551.76293118391186, 3894490.325931810308248 ], [ 4951546.630715379491448, 3894443.34752907184884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951513.573662754148245, 3889262.129163797479123 ], [ 4951487.055555871687829, 3889271.930777957197279 ], [ 4951466.085811673663557, 3889215.831535776611418 ], [ 4951492.603966176509857, 3889206.029901256319135 ], [ 4951513.573662754148245, 3889262.129163797479123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951287.175755154341459, 3889719.948025641031563 ], [ 4951309.060298795811832, 3889730.896317327395082 ], [ 4951288.847493345849216, 3889770.927788112312555 ], [ 4951266.962974114343524, 3889759.979512631893158 ], [ 4951287.175755154341459, 3889719.948025641031563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951130.080942505039275, 3900928.0278973383829 ], [ 4951143.617117671296, 3900927.678819628898054 ], [ 4951143.336817706935108, 3900920.760033772792667 ], [ 4951173.577528645284474, 3900919.701295738108456 ], [ 4951173.570636549033225, 3900925.891501722391695 ], [ 4951187.683209264650941, 3900925.178957755677402 ], [ 4951188.798278020694852, 3900958.316049841698259 ], [ 4951169.501816676929593, 3900959.022821818944067 ], [ 4951169.778055825270712, 3900969.582905836869031 ], [ 4951146.161278182640672, 3900970.649015556555241 ], [ 4951145.885434812866151, 3900959.724802006036043 ], [ 4951131.196891844272614, 3900960.436727542430162 ], [ 4951130.080942505039275, 3900928.0278973383829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951081.889556952752173, 3890372.600763573776931 ], [ 4951082.733276288956404, 3890391.172225216403604 ], [ 4951088.783948791213334, 3890390.81481160223484 ], [ 4951091.319936851970851, 3890442.159668266773224 ], [ 4951067.117697700858116, 3890443.225201134104282 ], [ 4951066.558442687615752, 3890427.931206532754004 ], [ 4951053.592792294919491, 3890428.64508702699095 ], [ 4951051.90248937997967, 3890394.051057526376098 ], [ 4951058.529376802034676, 3890393.694275805260986 ], [ 4951057.687255576252937, 3890373.666304878424853 ], [ 4951081.889556952752173, 3890372.600763573776931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950777.522531675174832, 3889961.164378498215228 ], [ 4950727.365385332144797, 3889984.413525572512299 ], [ 4950714.143340103328228, 3889955.99705998506397 ], [ 4950764.300527941435575, 3889932.74788863863796 ], [ 4950777.522531675174832, 3889961.164378498215228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949664.424077967181802, 3896886.782900805585086 ], [ 4949688.272325245663524, 3896942.519907091744244 ], [ 4949647.640528089366853, 3896959.955158563796431 ], [ 4949623.504173916764557, 3896904.217883706092834 ], [ 4949664.424077967181802, 3896886.782900805585086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949255.185708194039762, 3892123.912851268891245 ], [ 4949286.59581234306097, 3892115.934766072779894 ], [ 4949297.209160964004695, 3892160.005359930917621 ], [ 4949265.799484550952911, 3892167.619305019266903 ], [ 4949255.185708194039762, 3892123.912851268891245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947970.958278740756214, 3898711.88377284584567 ], [ 4947938.699082038365304, 3898712.944111004471779 ], [ 4947937.579184079542756, 3898680.535457158926874 ], [ 4947970.126438837498426, 3898679.475403993856162 ], [ 4947970.958278740756214, 3898711.88377284584567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947548.862942357547581, 3891501.350992312189192 ], [ 4947569.023967657238245, 3891507.196771143935621 ], [ 4947557.462713910266757, 3891545.41891100956127 ], [ 4947537.302070806734264, 3891539.209012927953154 ], [ 4947548.862942357547581, 3891501.350992312189192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947455.375613328069448, 3890762.44387723505497 ], [ 4947468.000349853187799, 3890815.618871190119535 ], [ 4947440.912238808348775, 3890822.146773868706077 ], [ 4947428.28745181299746, 3890768.971792431548238 ], [ 4947455.375613328069448, 3890762.44387723505497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947396.266036508604884, 3890219.471597084775567 ], [ 4947348.437325764447451, 3890221.974023413378745 ], [ 4947346.170969740487635, 3890182.281886730808765 ], [ 4947393.999750877730548, 3890179.779456434305757 ], [ 4947396.266036508604884, 3890219.471597084775567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946192.414687457494438, 3892219.93980765203014 ], [ 4946184.881160565651953, 3892266.541238958947361 ], [ 4946153.196211050264537, 3892261.414074832573533 ], [ 4946160.729347038082778, 3892215.176762743853033 ], [ 4946192.414687457494438, 3892219.93980765203014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945021.136747000738978, 3891465.861596945673227 ], [ 4945056.569392574951053, 3891469.534229349344969 ], [ 4945055.116658794693649, 3891483.369810871314257 ], [ 4945066.927640018053353, 3891484.472655488643795 ], [ 4945064.894838912412524, 3891502.677260035648942 ], [ 4945053.083865605294704, 3891501.574416310060769 ], [ 4945050.180018217302859, 3891527.424941312521696 ], [ 4944994.871083321049809, 3891521.185858617071062 ], [ 4944997.774878188036382, 3891495.335327731911093 ], [ 4945017.363487529568374, 3891497.53740593418479 ], [ 4945021.136747000738978, 3891465.861596945673227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944645.642119927331805, 3891586.058625901583582 ], [ 4944648.546205881983042, 3891559.479800642002374 ], [ 4944656.900341344997287, 3891560.215328796301037 ], [ 4944660.094439296983182, 3891531.451989016495645 ], [ 4944706.761511218734086, 3891536.590457532089204 ], [ 4944700.663224209100008, 3891591.932611252646893 ], [ 4944645.642119927331805, 3891586.058625901583582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944548.259289853274822, 3892590.967960696667433 ], [ 4944550.873194446787238, 3892566.573628027457744 ], [ 4944581.407329452224076, 3892569.877264310605824 ], [ 4944575.017971958965063, 3892629.224638476036489 ], [ 4944537.570516683161259, 3892625.186763342004269 ], [ 4944541.34589405823499, 3892590.233713732101023 ], [ 4944548.259289853274822, 3892590.967960696667433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944455.929723638109863, 3890419.592242153827101 ], [ 4944451.589568900875747, 3890441.072041071020067 ], [ 4944430.273382249288261, 3890436.684120402671397 ], [ 4944434.901628416031599, 3890415.204566541127861 ], [ 4944455.929723638109863, 3890419.592242153827101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943370.436753638088703, 3889600.482156889978796 ], [ 4943362.075086805038154, 3889608.12196046859026 ], [ 4943346.530565952882171, 3889591.359307650011033 ], [ 4943380.266280941665173, 3889559.707944951020181 ], [ 4943399.553017252124846, 3889580.479104003403336 ], [ 4943407.049752837046981, 3889573.566854779142886 ], [ 4943421.44298093020916, 3889588.872082308866084 ], [ 4943388.284385942853987, 3889619.431485984474421 ], [ 4943370.436753638088703, 3889600.482156889978796 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942870.23197194095701, 3890001.344041181728244 ], [ 4942907.964403747580945, 3890014.118880637455732 ], [ 4942888.616059256717563, 3890069.814851751551032 ], [ 4942850.883989022113383, 3890056.675911496859044 ], [ 4942870.23197194095701, 3890001.344041181728244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992457.893629666417837, 3912418.028006989508867 ], [ 4992385.044661331921816, 3912424.389419991057366 ], [ 4992381.12918593827635, 3912381.047128088772297 ], [ 4992453.978270792402327, 3912374.685704647097737 ], [ 4992457.893629666417837, 3912418.028006989508867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990975.384899305179715, 3912956.334631557576358 ], [ 4990995.267521073110402, 3912948.739432106725872 ], [ 4991002.699098695069551, 3912969.150225424207747 ], [ 4990982.817435078322887, 3912976.381288029719144 ], [ 4990975.384899305179715, 3912956.334631557576358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990336.266846926882863, 3911968.609189996961504 ], [ 4990347.95459908619523, 3912013.427688123192638 ], [ 4990305.896576207131147, 3912024.243556011933833 ], [ 4990290.505664496682584, 3911964.121945874765515 ], [ 4990313.550790008157492, 3911958.35504095768556 ], [ 4990311.272112251259387, 3911948.88170840125531 ], [ 4990336.62214473541826, 3911942.392481233924627 ], [ 4990342.891759349033237, 3911967.169692832045257 ], [ 4990336.266846926882863, 3911968.609189996961504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991982.135098094120622, 3911178.352568435948342 ], [ 4991999.132794884964824, 3911173.663589249365032 ], [ 4991996.852725367993116, 3911164.918380414135754 ], [ 4992018.459478192031384, 3911159.149150470737368 ], [ 4992033.288495161570609, 3911212.715844865888357 ], [ 4992003.614293789491057, 3911221.012750174384564 ], [ 4991998.483188880607486, 3911201.700160200241953 ], [ 4991988.976271783001721, 3911204.224061132408679 ], [ 4991982.135098094120622, 3911178.352568435948342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990217.394984408281744, 3899619.122463077306747 ], [ 4990247.365694843232632, 3899612.280897563323379 ], [ 4990255.061545317992568, 3899643.61591134686023 ], [ 4990225.089933344163001, 3899650.821596919093281 ], [ 4990217.394984408281744, 3899619.122463077306747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990034.794520687311888, 3909744.43717103311792 ], [ 4990038.624863757751882, 3909710.21846356568858 ], [ 4990076.041733372025192, 3909714.319752537179738 ], [ 4990072.211343187838793, 3909748.538454759400338 ], [ 4990034.794520687311888, 3909744.43717103311792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989555.897833711467683, 3899933.862957624718547 ], [ 4989556.812748672440648, 3899913.838081568945199 ], [ 4989576.106372128240764, 3899914.979514945298433 ], [ 4989575.191442822106183, 3899935.00439034961164 ], [ 4989555.897833711467683, 3899933.862957624718547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989188.337894193828106, 3908728.901331535540521 ], [ 4989156.094564946368337, 3908727.727422962896526 ], [ 4989155.494814545847476, 3908737.193361888173968 ], [ 4989140.236428842879832, 3908736.790670193266124 ], [ 4989142.094551488757133, 3908685.088498068973422 ], [ 4989165.988485190086067, 3908686.241283381357789 ], [ 4989166.29572612978518, 3908678.595269894227386 ], [ 4989190.190585373900831, 3908679.383946188725531 ], [ 4989188.337894193828106, 3908728.901331535540521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988981.55349896568805, 3908296.881870711222291 ], [ 4988965.033073737286031, 3908340.17203071853146 ], [ 4988921.023243066854775, 3908323.675177615601569 ], [ 4988935.226517505943775, 3908285.841145376674831 ], [ 4988957.662881769239902, 3908294.272727852221578 ], [ 4988959.692059193737805, 3908288.815849822480232 ], [ 4988981.55349896568805, 3908296.881870711222291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990636.174917393364012, 3906864.236336165573448 ], [ 4990666.4096061848104, 3906863.586162312421948 ], [ 4990666.665554028004408, 3906875.967328728176653 ], [ 4990681.063063602894545, 3906875.640394688118249 ], [ 4990681.835590175352991, 3906910.963244494516402 ], [ 4990622.805974831804633, 3906912.267308386508375 ], [ 4990622.028670260682702, 3906878.765110644046217 ], [ 4990636.426177731715143, 3906878.438152693677694 ], [ 4990636.174917393364012, 3906864.236336165573448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988604.817654633894563, 3897091.972339338157326 ], [ 4988611.931871097534895, 3897126.582544235512614 ], [ 4988607.89754434581846, 3897127.300694991834462 ], [ 4988613.583432936109602, 3897157.173627999145538 ], [ 4988564.592774320393801, 3897166.882415596395731 ], [ 4988560.043475543148816, 3897143.202553999610245 ], [ 4988570.994302629493177, 3897141.045196423772722 ], [ 4988563.031430706381798, 3897100.242662106640637 ], [ 4988604.817654633894563, 3897091.972339338157326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988503.121646977029741, 3906881.389091972727329 ], [ 4988545.161442880518734, 3906880.766080900095403 ], [ 4988545.642462246119976, 3906918.63705942640081 ], [ 4988515.984666245058179, 3906918.92693104268983 ], [ 4988515.724081792868674, 3906908.002305428497493 ], [ 4988503.342136091552675, 3906908.33544425200671 ], [ 4988503.121646977029741, 3906881.389091972727329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990290.171660934574902, 3900663.27289478527382 ], [ 4990334.460634328424931, 3900687.783486030995846 ], [ 4990315.075896681286395, 3900722.326122677884996 ], [ 4990270.787897888571024, 3900697.45143416384235 ], [ 4990290.171660934574902, 3900663.27289478527382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989985.128035770729184, 3909014.223302292637527 ], [ 4989962.552909422665834, 3909060.410446174442768 ], [ 4989929.772355833090842, 3909044.304782104678452 ], [ 4989941.927802273072302, 3909019.57481467211619 ], [ 4989926.688202474266291, 3909011.889064613729715 ], [ 4989936.818990517407656, 3908990.795249830465764 ], [ 4989985.128035770729184, 3909014.223302292637527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988350.234169224277139, 3903765.856903178151697 ], [ 4988385.044240148738027, 3903779.416717633139342 ], [ 4988352.872868372127414, 3903862.358404769096524 ], [ 4988318.06198020838201, 3903849.16276079043746 ], [ 4988350.234169224277139, 3903765.856903178151697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988071.968168651685119, 3906118.184444423299283 ], [ 4988103.638795133680105, 3906119.355617473833263 ], [ 4988101.187616555020213, 3906178.703077198937535 ], [ 4988068.653243362903595, 3906177.529758972115815 ], [ 4988069.576821424998343, 3906153.499326418619603 ], [ 4988062.954221768304706, 3906153.482858910690993 ], [ 4988063.583518312312663, 3906132.000620568636805 ], [ 4988071.357880647294223, 3906132.019952341914177 ], [ 4988071.968168651685119, 3906118.184444423299283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989656.632481775246561, 3908331.728192889131606 ], [ 4989657.909300027415156, 3908282.573516405187547 ], [ 4989697.638966671191156, 3908283.767095791175961 ], [ 4989696.362075773999095, 3908332.921770425979048 ], [ 4989656.632481775246561, 3908331.728192889131606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989390.538677837699652, 3908127.501830547582358 ], [ 4989394.186491150408983, 3908165.016754931304604 ], [ 4989353.005050474777818, 3908168.553670815657824 ], [ 4989349.645098109729588, 3908131.039481671992689 ], [ 4989390.538677837699652, 3908127.501830547582358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987852.239417161792517, 3896600.706096341833472 ], [ 4987813.862273751758039, 3896627.920797688420862 ], [ 4987796.3521583462134, 3896603.480722835753113 ], [ 4987834.729318735189736, 3896576.265996882691979 ], [ 4987852.239417161792517, 3896600.706096341833472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987822.653779392130673, 3905287.34431343106553 ], [ 4987848.8471564585343, 3905291.414670750964433 ], [ 4987843.875331284478307, 3905322.353574299253523 ], [ 4987817.394937622360885, 3905317.918378598988056 ], [ 4987822.653779392130673, 3905287.34431343106553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989291.881245339289308, 3897169.077712319791317 ], [ 4989300.156837023794651, 3897199.685609386768192 ], [ 4989232.134516341611743, 3897217.720004073809832 ], [ 4989224.147808918729424, 3897186.748728005681187 ], [ 4989291.881245339289308, 3897169.077712319791317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989204.831166599877179, 3913362.904689156915992 ], [ 4989148.045070743188262, 3913393.348352457396686 ], [ 4989141.453703533858061, 3913381.679407732561231 ], [ 4989108.881184769794345, 3913399.075537125114352 ], [ 4989094.269220594316721, 3913371.728585850447416 ], [ 4989125.112751129083335, 3913355.056338234804571 ], [ 4989121.3889454388991, 3913347.764251287095249 ], [ 4989179.616260331124067, 3913316.595908841583878 ], [ 4989204.831166599877179, 3913362.904689156915992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987661.075254922732711, 3895395.691026251297444 ], [ 4987673.844121634028852, 3895357.488936792127788 ], [ 4987712.411955536343157, 3895370.328810198232532 ], [ 4987699.643940079957247, 3895408.166753950063139 ], [ 4987661.075254922732711, 3895395.691026251297444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987396.944438847713172, 3903346.926917321048677 ], [ 4987411.706170666962862, 3903316.376200722530484 ], [ 4987460.027633654884994, 3903339.799631904345006 ], [ 4987444.977890628390014, 3903370.349613063037395 ], [ 4987396.944438847713172, 3903346.926917321048677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987299.044714188203216, 3909902.524762189015746 ], [ 4987297.528237169608474, 3909933.836479044053704 ], [ 4987216.638562861829996, 3909929.632285819854587 ], [ 4987218.154051747173071, 3909898.684695347677916 ], [ 4987299.044714188203216, 3909902.524762189015746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987245.600231300108135, 3908687.645952138584107 ], [ 4987260.699431093409657, 3908752.862816404551268 ], [ 4987258.946915267966688, 3908763.054229691624641 ], [ 4987234.174930936656892, 3908767.727108970750123 ], [ 4987236.447814366780221, 3908780.113206740934402 ], [ 4987212.539582470431924, 3908784.788227298296988 ], [ 4987210.550129862502217, 3908774.223491444252431 ], [ 4987191.250260343775153, 3908778.18157902546227 ], [ 4987182.723730403929949, 3908733.008185419719666 ], [ 4987184.478899918496609, 3908721.724375510588288 ], [ 4987191.968176078051329, 3908720.28622387861833 ], [ 4987188.839574385434389, 3908704.620835112407804 ], [ 4987199.654083073139191, 3908638.739341801963747 ], [ 4987220.104809960350394, 3908635.148218821268529 ], [ 4987233.056402365677059, 3908637.000685928855091 ], [ 4987229.076595053076744, 3908616.235343921463937 ], [ 4987360.140496669337153, 3908590.704080607742071 ], [ 4987367.350866257213056, 3908585.623963810969144 ], [ 4987401.916569876484573, 3908579.154654427897185 ], [ 4987416.699742152355611, 3908655.658941369503736 ], [ 4987378.709657245315611, 3908649.739288392011076 ], [ 4987374.087825044989586, 3908655.918171045836061 ], [ 4987360.261762957088649, 3908658.433077791705728 ], [ 4987358.802491118200123, 3908666.440408817958087 ], [ 4987245.600231300108135, 3908687.645952138584107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988857.771791043691337, 3907944.453778232913464 ], [ 4988855.930663120932877, 3907989.601599326357245 ], [ 4988802.671059333719313, 3907987.282848277594894 ], [ 4988804.201290589757264, 3907951.237559275235981 ], [ 4988833.565451850183308, 3907952.76793324528262 ], [ 4988833.877184982411563, 3907943.301267517730594 ], [ 4988857.771791043691337, 3907944.453778232913464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988848.585304073058069, 3908505.923363229259849 ], [ 4988863.38161997590214, 3908461.172258016187698 ], [ 4988907.970756257884204, 3908476.21394608868286 ], [ 4988895.786683265119791, 3908512.596549162641168 ], [ 4988874.498472212813795, 3908505.624437780119479 ], [ 4988871.599171704612672, 3908513.628062693402171 ], [ 4988848.585304073058069, 3908505.923363229259849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988612.405636279843748, 3912789.72248042980209 ], [ 4988532.379242793656886, 3912789.157799122389406 ], [ 4988532.481384269893169, 3912748.375072692055255 ], [ 4988612.795767688192427, 3912748.940476127434522 ], [ 4988612.405636279843748, 3912789.72248042980209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987185.347864225506783, 3905668.839943990577012 ], [ 4987177.507258267141879, 3905695.766483476385474 ], [ 4987161.106060046702623, 3905690.99253139551729 ], [ 4987155.881091968156397, 3905708.093925856053829 ], [ 4987158.758744612336159, 3905708.829248122405261 ], [ 4987145.11108638998121, 3905755.404690356459469 ], [ 4987113.459627066738904, 3905746.22378842625767 ], [ 4987122.752370017580688, 3905714.202939535025507 ], [ 4987112.68147617392242, 3905711.265196514315903 ], [ 4987119.361310264095664, 3905687.977113840635866 ], [ 4987120.225142575800419, 3905687.979231352452189 ], [ 4987130.677725817076862, 3905652.684040401130915 ], [ 4987185.347864225506783, 3905668.839943990577012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986911.779283069074154, 3895185.203938354272395 ], [ 4986912.42121393699199, 3895158.259899962227792 ], [ 4986938.632615563459694, 3895159.052196949254721 ], [ 4986937.991548212245107, 3895185.63210708135739 ], [ 4986911.779283069074154, 3895185.203938354272395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986190.426365165039897, 3910462.043769985437393 ], [ 4986192.701342739164829, 3910473.701530416496098 ], [ 4986212.575632456690073, 3910469.744113568682224 ], [ 4986222.818253157660365, 3910520.019260075408965 ], [ 4986174.427703998982906, 3910530.098007330670953 ], [ 4986161.622114430181682, 3910468.164425319992006 ], [ 4986190.426365165039897, 3910462.043769985437393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986075.44549669791013, 3910508.011003430467099 ], [ 4986137.656649894081056, 3910497.237187377177179 ], [ 4986148.162663598544896, 3910557.708671341184527 ], [ 4986134.0498036602512, 3910560.223516651429236 ], [ 4986135.468157174065709, 3910568.966138622257859 ], [ 4986123.372305274009705, 3910570.757594536058605 ], [ 4986128.196999489329755, 3910599.535767195746303 ], [ 4986089.602844886481762, 3910606.361127031967044 ], [ 4986084.773716964758933, 3910579.403616524301469 ], [ 4986112.422747426666319, 3910574.736622443422675 ], [ 4986110.434756592847407, 3910563.443694163113832 ], [ 4986085.665511707775295, 3910567.753506583161652 ], [ 4986075.44549669791013, 3910508.011003430467099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986064.914046036079526, 3914753.419915878679603 ], [ 4986077.799493762664497, 3914781.489339166786522 ], [ 4986045.236809372901917, 3914796.340274439193308 ], [ 4986032.351334856823087, 3914768.270866493694484 ], [ 4986064.914046036079526, 3914753.419915878679603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987524.367700052447617, 3911228.160469703841954 ], [ 4987492.919130257330835, 3911256.121179621201009 ], [ 4987450.714967438951135, 3911209.408077132422477 ], [ 4987482.16444531455636, 3911181.083187482785434 ], [ 4987524.367700052447617, 3911228.160469703841954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987244.290791143663228, 3913205.444740412756801 ], [ 4987345.364044914022088, 3913192.220277238637209 ], [ 4987352.145542131736875, 3913243.943967587780207 ], [ 4987251.073374067433178, 3913256.804274037946016 ], [ 4987244.290791143663228, 3913205.444740412756801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985706.943223338574171, 3910747.088155726902187 ], [ 4985710.628130135126412, 3910771.129789176862687 ], [ 4985662.245211238972843, 3910778.296411526855081 ], [ 4985655.728501605801284, 3910734.584802403580397 ], [ 4985694.89552029967308, 3910728.852593229617923 ], [ 4985698.016016194596887, 3910748.159138958435506 ], [ 4985706.943223338574171, 3910747.088155726902187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987012.893175549805164, 3905540.971104001160711 ], [ 4986971.389812350273132, 3905556.891376441344619 ], [ 4986974.250564532354474, 3905564.545147196389735 ], [ 4986943.987808149307966, 3905576.123372360132635 ], [ 4986924.81650516204536, 3905526.554546589031816 ], [ 4986975.254229120910168, 3905507.3788648606278 ], [ 4986980.691357251256704, 3905521.229183114133775 ], [ 4987002.019845893606544, 3905512.906325458548963 ], [ 4987012.893175549805164, 3905540.971104001160711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986980.765116354450583, 3913964.017845057416707 ], [ 4987031.478495651856065, 3913943.386344766709954 ], [ 4987043.783157334662974, 3913973.275466297753155 ], [ 4986993.069824841804802, 3913993.906943745911121 ], [ 4986980.765116354450583, 3913964.017845057416707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986965.463028220459819, 3907980.177732917014509 ], [ 4986988.796092667616904, 3907975.501085988245904 ], [ 4986990.502228226512671, 3907984.244443486910313 ], [ 4987024.205745519138873, 3907977.408406828995794 ], [ 4987031.602506940253079, 3908013.839778427965939 ], [ 4986974.278978182002902, 3908024.987610377836972 ], [ 4986965.463028220459819, 3907980.177732917014509 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986802.970692694187164, 3909557.204111801926047 ], [ 4986810.594771949574351, 3909500.417970358859748 ], [ 4986824.121781183406711, 3909502.271646375767887 ], [ 4986825.295612312853336, 3909493.171187078114599 ], [ 4986840.550044057890773, 3909495.029087492730469 ], [ 4986838.500053497031331, 3909509.225268882699311 ], [ 4986862.100109283812344, 3909512.560087909922004 ], [ 4986863.861319547519088, 3909498.727336001116782 ], [ 4986880.554372287355363, 3909500.952905444893986 ], [ 4986879.378743842244148, 3909510.781623979564756 ], [ 4986890.027601595968008, 3909512.264169934205711 ], [ 4986882.983610236085951, 3909567.231041761580855 ], [ 4986802.970692694187164, 3909557.204111801926047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985570.202770112082362, 3900638.8181088315323 ], [ 4985585.850553446449339, 3900598.801156545523554 ], [ 4985618.939001646824181, 3900611.989096948411316 ], [ 4985610.245856662280858, 3900634.180266565643251 ], [ 4985622.043319716118276, 3900638.578091687057167 ], [ 4985614.80063490010798, 3900656.403162678703666 ], [ 4985570.202770112082362, 3900638.8181088315323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985179.419048079289496, 3908735.08544645132497 ], [ 4985202.7199412798509, 3908743.515950869303197 ], [ 4985188.232522253878415, 3908782.079542985651642 ], [ 4985165.2195690786466, 3908773.649735822807997 ], [ 4985179.419048079289496, 3908735.08544645132497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986752.613330393098295, 3896195.640294033102691 ], [ 4986746.521781853400171, 3896213.103692559525371 ], [ 4986712.56077322550118, 3896201.368805384729058 ], [ 4986718.652302302420139, 3896183.90539928432554 ], [ 4986752.613330393098295, 3896195.640294033102691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986602.837877921760082, 3907087.532745823264122 ], [ 4986585.801363474689424, 3907107.518598378170282 ], [ 4986563.676864022389054, 3907088.529924730304629 ], [ 4986580.713373948819935, 3907068.544058384839445 ], [ 4986602.837877921760082, 3907087.532745823264122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986537.195393724367023, 3908507.126085765659809 ], [ 4986506.662370787933469, 3908512.878035551868379 ], [ 4986500.119938469491899, 3908480.090200601145625 ], [ 4986554.561384952627122, 3908469.662617074325681 ], [ 4986563.376970076002181, 3908514.83650388289243 ], [ 4986539.4686209410429, 3908519.512122578918934 ], [ 4986537.195393724367023, 3908507.126085765659809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986389.820015209726989, 3906591.431354174390435 ], [ 4986379.263736785389483, 3906670.058344375807792 ], [ 4986319.105017356574535, 3906661.90168639132753 ], [ 4986322.627239705063403, 3906634.23616033885628 ], [ 4986344.215230089612305, 3906637.201507490128279 ], [ 4986346.856035769917071, 3906616.816495808772743 ], [ 4986337.932723170146346, 3906615.702482611406595 ], [ 4986342.03789630625397, 3906585.12531352089718 ], [ 4986389.820015209726989, 3906591.431354174390435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985079.464828638359904, 3907664.662035200279206 ], [ 4985117.202638349495828, 3907656.376661997754127 ], [ 4985120.335169007070363, 3907670.949408067855984 ], [ 4985133.586546267382801, 3907668.067850694525987 ], [ 4985140.709290450438857, 3907699.764314388856292 ], [ 4985072.148262904956937, 3907714.530808562878519 ], [ 4985066.165025200694799, 3907687.934924349188805 ], [ 4985084.02574668917805, 3907683.971892849076539 ], [ 4985079.464828638359904, 3907664.662035200279206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985021.411603959277272, 3904586.150967529974878 ], [ 4985020.917782806791365, 3904551.557274077087641 ], [ 4985037.620111456140876, 3904551.2327835788019 ], [ 4985037.601096005178988, 3904559.243638118728995 ], [ 4985084.539686298929155, 3904558.626834135502577 ], [ 4985084.97114663105458, 3904619.437871735543013 ], [ 4985044.945324551314116, 3904619.342821053229272 ], [ 4985044.736897133290768, 3904585.842199347447604 ], [ 4985021.411603959277272, 3904586.150967529974878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984861.373624741099775, 3904558.097639344632626 ], [ 4984804.932484816759825, 3904558.692357413936406 ], [ 4984804.69017125852406, 3904539.392799214459956 ], [ 4984821.679599542170763, 3904539.432985289953649 ], [ 4984821.220837716944516, 3904489.909976894967258 ], [ 4984859.232015916146338, 3904489.635793229565024 ], [ 4984859.685536129400134, 3904541.343580790795386 ], [ 4984861.125318085774779, 3904541.346988919656724 ], [ 4984861.373624741099775, 3904558.097639344632626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984737.772110846824944, 3914699.271725288126618 ], [ 4984767.398021442815661, 3914708.809247248340398 ], [ 4984759.568460082635283, 3914733.187719468493015 ], [ 4984729.654726374894381, 3914723.649525770917535 ], [ 4984737.772110846824944, 3914699.271725288126618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984715.433261748403311, 3907582.962318241130561 ], [ 4984744.820419438183308, 3907575.020832076668739 ], [ 4984752.528099999763072, 3907603.077247417066246 ], [ 4984722.853907343000174, 3907610.653914691880345 ], [ 4984715.433261748403311, 3907582.962318241130561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986244.450126267038286, 3901813.306458822451532 ], [ 4986226.83986547216773, 3901831.106307023670524 ], [ 4986186.329818897880614, 3901791.318091137800366 ], [ 4986205.09378307312727, 3901772.792742726858705 ], [ 4986217.73612177092582, 3901784.839631555601954 ], [ 4986239.676764881238341, 3901762.680674464441836 ], [ 4986267.54535451438278, 3901790.057922644540668 ], [ 4986258.018039558082819, 3901799.866418836638331 ], [ 4986266.350247083231807, 3901807.897461874876171 ], [ 4986252.78233364969492, 3901821.337497715838253 ], [ 4986244.450126267038286, 3901813.306458822451532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986149.457526423968375, 3901914.669516189955175 ], [ 4986164.08053317759186, 3901941.286414384376258 ], [ 4986135.532289621420205, 3901956.875118559226394 ], [ 4986120.909263188019395, 3901930.258235641289502 ], [ 4986149.457526423968375, 3901914.669516189955175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986045.351357472129166, 3907706.300214709248394 ], [ 4986055.033577468246222, 3907750.747735574841499 ], [ 4986026.226454134099185, 3907756.868525659665465 ], [ 4986021.668858780525625, 3907736.466115960851312 ], [ 4986005.536442596465349, 3907740.068557206075639 ], [ 4986008.669359344057739, 3907754.277277130633593 ], [ 4985962.001446188427508, 3907764.360553132370114 ], [ 4985960.861159187741578, 3907759.624083757866174 ], [ 4985940.408183787018061, 3907763.944424109067768 ], [ 4985938.701692345552146, 3907755.20113447168842 ], [ 4985902.116328843869269, 3907763.123995075933635 ], [ 4985894.711833654902875, 3907729.241853039246053 ], [ 4985926.399932216852903, 3907722.399591543711722 ], [ 4985921.846637246198952, 3907700.176547079347074 ], [ 4985974.275730923749506, 3907689.01468108035624 ], [ 4985978.548956803977489, 3907707.95986684737727 ], [ 4986009.372456816025078, 3907701.479752889834344 ], [ 4986012.222719656303525, 3907713.5029964055866 ], [ 4986045.351357472129166, 3907706.300214709248394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985812.416559723205864, 3899437.402981068007648 ], [ 4985846.647872163914144, 3899454.96350326621905 ], [ 4985842.016946027055383, 3899464.419772281311452 ], [ 4985854.673666572198272, 3899471.004544542171061 ], [ 4985849.175207811407745, 3899481.915250027552247 ], [ 4985860.106481092050672, 3899487.403485814575106 ], [ 4985844.771038248203695, 3899516.861213956959546 ], [ 4985830.67516034655273, 3899509.908857413567603 ], [ 4985816.207291388884187, 3899537.912163852248341 ], [ 4985779.386595979332924, 3899519.253070299979299 ], [ 4985786.331190645694733, 3899505.796907677780837 ], [ 4985779.714820641092956, 3899502.503845335915685 ], [ 4985788.396226374432445, 3899485.410546171013266 ], [ 4985787.821079575456679, 3899485.045034421607852 ], [ 4985812.416559723205864, 3899437.402981068007648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984182.29672387894243, 3906802.100951462984085 ], [ 4984178.867973908782005, 3906790.804820708930492 ], [ 4984202.207550900056958, 3906783.576845447998494 ], [ 4984216.207869914360344, 3906829.854448840487748 ], [ 4984192.869182236492634, 3906836.71828185999766 ], [ 4984196.297920374199748, 3906848.014414713717997 ], [ 4984167.196358477696776, 3906856.685431993566453 ], [ 4984163.766756666824222, 3906845.753433077130467 ], [ 4984145.326343177817762, 3906851.17224747268483 ], [ 4984148.756804152391851, 3906861.740113780368119 ], [ 4984119.078557726927102, 3906870.773965552449226 ], [ 4984115.649790098890662, 3906859.477842381689698 ], [ 4984096.921464303508401, 3906864.896016403101385 ], [ 4984100.064011143520474, 3906875.463203130755574 ], [ 4984071.251292837783694, 3906883.770867656450719 ], [ 4984068.109586938284338, 3906872.839553937315941 ], [ 4984048.804566386155784, 3906878.620545571204275 ], [ 4984052.23506173864007, 3906889.188399724196643 ], [ 4984023.709453511051834, 3906897.860918572638184 ], [ 4984009.9942193524912, 3906852.676476942840964 ], [ 4984037.366442441940308, 3906844.729513121303171 ], [ 4984033.93848792463541, 3906833.069270263426006 ], [ 4984059.006431591697037, 3906825.481076810508966 ], [ 4984061.861917406320572, 3906835.683455493766814 ], [ 4984086.06521940883249, 3906828.457398377358913 ], [ 4984082.920958532951772, 3906818.618474158458412 ], [ 4984107.124281593598425, 3906811.392436086665839 ], [ 4984110.839287267997861, 3906823.417491993866861 ], [ 4984135.330545593984425, 3906816.192152896896005 ], [ 4984131.615549854002893, 3906804.167093658819795 ], [ 4984154.954249994829297, 3906797.30320757208392 ], [ 4984158.669236264191568, 3906809.328269988764077 ], [ 4984182.29672387894243, 3906802.100951462984085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983965.428605353459716, 3909785.66061487654224 ], [ 4983921.92764603253454, 3909797.575494405347854 ], [ 4983913.360284353606403, 3909767.696609969250858 ], [ 4983957.14918867032975, 3909755.782388744875789 ], [ 4983965.428605353459716, 3909785.66061487654224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985461.456281216815114, 3903844.005960707552731 ], [ 4985460.648942669853568, 3903820.335473973769695 ], [ 4985495.784046960994601, 3903818.962921709753573 ], [ 4985498.211188705638051, 3903887.789608561433852 ], [ 4985452.132695892825723, 3903889.50014234194532 ], [ 4985450.512784499675035, 3903844.343945977278054 ], [ 4985461.456281216815114, 3903844.005960707552731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985201.149051744490862, 3905895.268374097533524 ], [ 4985209.588637645356357, 3905857.782854289747775 ], [ 4985253.046239973977208, 3905866.989630877971649 ], [ 4985243.14954396430403, 3905911.754309489391744 ], [ 4985251.207575340755284, 3905913.594161299057305 ], [ 4985245.965654889121652, 3905938.342660550028086 ], [ 4985182.363521759398282, 3905924.354241473600268 ], [ 4985189.349499616771936, 3905892.691370007116348 ], [ 4985201.149051744490862, 3905895.268374097533524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985018.446976335719228, 3899767.230604229960591 ], [ 4985054.09335299488157, 3899795.353269548621029 ], [ 4985043.405107147991657, 3899808.800736827775836 ], [ 4985034.781312812119722, 3899801.861785175744444 ], [ 4985024.381086256355047, 3899815.30994356283918 ], [ 4985013.744694801978767, 3899806.909700203221291 ], [ 4985004.788834323175251, 3899818.540639048907906 ], [ 4984988.115514849312603, 3899805.392386644147336 ], [ 4985018.446976335719228, 3899767.230604229960591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984846.873809371143579, 3915061.114999724086374 ], [ 4984875.595214264467359, 3915087.764809368178248 ], [ 4984873.863841670565307, 3915089.581379395909607 ], [ 4984890.522523543797433, 3915104.914477286394686 ], [ 4984864.838078739121556, 3915132.891971574630588 ], [ 4984852.200580793432891, 3915121.209752071648836 ], [ 4984858.260804783552885, 3915114.669686363544315 ], [ 4984843.038740752264857, 3915100.432411982677877 ], [ 4984837.555927573703229, 3915106.245579532813281 ], [ 4984820.035409802570939, 3915090.182206603232771 ], [ 4984846.873809371143579, 3915061.114999724086374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984841.249132581055164, 3915856.370928135700524 ], [ 4984849.320586765184999, 3915851.292156648356467 ], [ 4984872.263743153773248, 3915886.667522376403213 ], [ 4984842.859763994812965, 3915905.532880765851587 ], [ 4984808.446265442296863, 3915851.923678378108889 ], [ 4984829.778821371495724, 3915838.137057835236192 ], [ 4984841.249132581055164, 3915856.370928135700524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984849.096951725892723, 3907190.015338413883001 ], [ 4984875.003574701026082, 3907192.989729096181691 ], [ 4984876.766494595445693, 3907178.064475745894015 ], [ 4984894.900792254135013, 3907180.292217403650284 ], [ 4984893.426652845926583, 3907194.854021215811372 ], [ 4984899.471414828673005, 3907195.596604164224118 ], [ 4984892.711940341629088, 3907253.477643931284547 ], [ 4984868.245014441199601, 3907250.506644571665674 ], [ 4984870.886366355232894, 3907229.393219425342977 ], [ 4984844.979778051376343, 3907226.418832649942487 ], [ 4984849.096951725892723, 3907190.015338413883001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983281.522584888152778, 3906977.70291412062943 ], [ 4983325.461277892813087, 3906902.793135456275195 ], [ 4983367.442816962487996, 3906927.287016562186182 ], [ 4983323.791976516135037, 3907002.197392877656966 ], [ 4983281.522584888152778, 3906977.70291412062943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984424.174375667236745, 3915978.464198196772486 ], [ 4984447.239634323865175, 3915962.132407987024635 ], [ 4984457.854361703619361, 3915977.086893177125603 ], [ 4984434.789965908043087, 3915993.054542060941458 ], [ 4984424.174375667236745, 3915978.464198196772486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984222.336028601974249, 3907286.490759894251823 ], [ 4984053.517199863679707, 3907326.150207240600139 ], [ 4984044.10837883874774, 3907286.437787221744657 ], [ 4984076.949933579191566, 3907278.867777231615037 ], [ 4984074.954025967046618, 3907270.488065717276186 ], [ 4984101.169875781983137, 3907264.359123962465674 ], [ 4984102.881255604326725, 3907271.281642318237573 ], [ 4984130.826378577388823, 3907264.428509826306254 ], [ 4984128.827930329367518, 3907257.141185544896871 ], [ 4984155.908440105617046, 3907250.650188227184117 ], [ 4984157.620659226551652, 3907257.208579629193991 ], [ 4984186.140812747180462, 3907250.720983298961073 ], [ 4984184.430305890738964, 3907243.434329346287996 ], [ 4984210.647060507908463, 3907236.94136412255466 ], [ 4984222.336028601974249, 3907286.490759894251823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982896.008155141025782, 3906966.255856656469405 ], [ 4982913.841456289403141, 3906974.307686200365424 ], [ 4982915.867832175455987, 3906969.578616975340992 ], [ 4982946.356680447235703, 3906983.485631592106074 ], [ 4982942.016826617531478, 3906992.578974245581776 ], [ 4982957.549164935946465, 3906999.533153379335999 ], [ 4982944.237498539499938, 3907028.63316920818761 ], [ 4982913.173676365055144, 3907014.360704723745584 ], [ 4982904.78193368576467, 3907032.548062520567328 ], [ 4982878.894986317493021, 3907020.836442778818309 ], [ 4982889.023483497090638, 3906998.6476059560664 ], [ 4982882.694868707098067, 3906996.084163108840585 ], [ 4982896.008155141025782, 3906966.255856656469405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982708.004475041292608, 3905070.881966786459088 ], [ 4982720.908947585150599, 3905094.215921557042748 ], [ 4982700.438651160337031, 3905105.457190023735166 ], [ 4982687.533333795145154, 3905082.487374868709594 ], [ 4982708.004475041292608, 3905070.881966786459088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983854.802850564941764, 3909445.66661576135084 ], [ 4983829.164990907534957, 3909451.797147385776043 ], [ 4983823.175830311141908, 3909427.386296646203846 ], [ 4983848.526656142435968, 3909420.890957730356604 ], [ 4983854.802850564941764, 3909445.66661576135084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983744.741208042018116, 3909852.14683978818357 ], [ 4983747.861515548080206, 3909872.181410449091345 ], [ 4983693.429935364052653, 3909880.065773183945566 ], [ 4983689.458583646453917, 3909854.567236727103591 ], [ 4983728.914357486180961, 3909848.832833727821708 ], [ 4983729.765354236587882, 3909854.296806967817247 ], [ 4983744.741208042018116, 3909852.14683978818357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983678.562101458199322, 3917515.553484706673771 ], [ 4983720.241417290642858, 3917538.955012243706733 ], [ 4983696.253546977415681, 3917581.502994121517986 ], [ 4983688.779625155031681, 3917577.480136892292649 ], [ 4983675.772863919846714, 3917601.118661258369684 ], [ 4983641.279719481244683, 3917581.739375240169466 ], [ 4983678.562101458199322, 3917515.553484706673771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983513.161333975382149, 3907040.869423045311123 ], [ 4983499.568748403340578, 3907066.691324024926871 ], [ 4983457.868733189068735, 3907045.110943850129843 ], [ 4983455.843953421339393, 3907049.111711690202355 ], [ 4983427.661407281644642, 3907034.117057444062084 ], [ 4983443.56665063649416, 3907004.295018209144473 ], [ 4983513.161333975382149, 3907040.869423045311123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983308.665515310131013, 3894721.118241538759321 ], [ 4983312.658026651479304, 3894738.605679803527892 ], [ 4983305.740349444560707, 3894740.410358055029064 ], [ 4983318.575321325100958, 3894795.787691214587539 ], [ 4983283.413415455259383, 3894803.71738048736006 ], [ 4983282.272095677442849, 3894798.981061717495322 ], [ 4983264.691147631965578, 3894802.945924350991845 ], [ 4983258.416805236600339, 3894775.62172942655161 ], [ 4983264.18138596508652, 3894774.17850852990523 ], [ 4983257.621494583785534, 3894745.761266725603491 ], [ 4983269.437890677712858, 3894743.239618116989732 ], [ 4983266.585837822407484, 3894730.852631728630513 ], [ 4983308.665515310131013, 3894721.118241538759321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983137.655812211334705, 3917181.846785629633814 ], [ 4983164.480235899798572, 3917157.147451167926192 ], [ 4983211.853974338620901, 3917207.871405552141368 ], [ 4983174.933176989667118, 3917242.37904958659783 ], [ 4983144.212762487120926, 3917209.171990713570267 ], [ 4983154.308304875157773, 3917199.727755980566144 ], [ 4983137.655812211334705, 3917181.846785629633814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983163.299974570982158, 3895425.373977814335376 ], [ 4983197.016566052101552, 3895419.261448553297669 ], [ 4983204.411982176825404, 3895460.061024496331811 ], [ 4983170.69544012285769, 3895466.173544632270932 ], [ 4983163.299974570982158, 3895425.373977814335376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981530.976206945255399, 3904760.524455913342535 ], [ 4981583.151480887085199, 3904735.880589716602117 ], [ 4981597.195006003603339, 3904765.406794591806829 ], [ 4981545.019776326604187, 3904790.050633965060115 ], [ 4981530.976206945255399, 3904760.524455913342535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981473.251595778390765, 3896980.010450848843902 ], [ 4981479.231030919589102, 3897010.974901353940368 ], [ 4981460.788501165807247, 3897014.574884579051286 ], [ 4981454.809045610018075, 3896983.610438102390617 ], [ 4981473.251595778390765, 3896980.010450848843902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981219.547721478156745, 3894629.713804498314857 ], [ 4981222.033371769823134, 3894548.518467987887561 ], [ 4981303.262389542534947, 3894550.884580922778696 ], [ 4981301.064556657336652, 3894632.080553505569696 ], [ 4981219.547721478156745, 3894629.713804498314857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981032.271336290985346, 3906168.96488991053775 ], [ 4981045.717764994129539, 3906207.956937638111413 ], [ 4980992.696595964021981, 3906226.045604531187564 ], [ 4980979.250099552795291, 3906187.053582889027894 ], [ 4981032.271336290985346, 3906168.96488991053775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980935.194727756083012, 3903464.706816609948874 ], [ 4980921.314861627295613, 3903490.529325712937862 ], [ 4980882.197316964156926, 3903469.68700391240418 ], [ 4980896.07715614233166, 3903443.86447491357103 ], [ 4980935.194727756083012, 3903464.706816609948874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980693.939761488698423, 3906430.025252307765186 ], [ 4980718.741758388467133, 3906412.23765907343477 ], [ 4980742.567917045205832, 3906445.062288503628224 ], [ 4980717.76512866653502, 3906463.213990421500057 ], [ 4980693.939761488698423, 3906430.025252307765186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980700.740123790688813, 3903095.686160462908447 ], [ 4980686.573127933777869, 3903121.144018412567675 ], [ 4980636.240054645575583, 3903092.99463115632534 ], [ 4980650.407017483375967, 3903067.536747103091329 ], [ 4980700.740123790688813, 3903095.686160462908447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980612.514599465765059, 3904577.506373813841492 ], [ 4980575.339335476979613, 3904590.533018031157553 ], [ 4980562.748040404170752, 3904554.82031994825229 ], [ 4980571.105202079750597, 3904551.925713747739792 ], [ 4980565.382244759239256, 3904535.527156036812812 ], [ 4980614.084691950120032, 3904518.520512244198471 ], [ 4980622.670293019153178, 3904542.572169804945588 ], [ 4980602.498065968044102, 3904549.446110153570771 ], [ 4980612.514599465765059, 3904577.506373813841492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980472.17888779938221, 3898611.274243413005024 ], [ 4980428.931803344748914, 3898631.206160329282284 ], [ 4980420.331291370093822, 3898612.980707785580307 ], [ 4980409.664135595783591, 3898617.690921843517572 ], [ 4980402.210077014751732, 3898602.016911138314754 ], [ 4980413.166059263050556, 3898596.943199544213712 ], [ 4980404.851943058893085, 3898579.446643465664238 ], [ 4980439.16163716930896, 3898563.500439601484686 ], [ 4980453.209673970006406, 3898593.025936850812286 ], [ 4980461.859101602807641, 3898589.039555783383548 ], [ 4980472.17888779938221, 3898611.274243413005024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980367.899012623354793, 3904379.243638215586543 ], [ 4980398.442610920406878, 3904370.207558611407876 ], [ 4980408.163450997322798, 3904401.908407860435545 ], [ 4980377.619885386899114, 3904410.944476605858654 ], [ 4980367.899012623354793, 3904379.243638215586543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982134.928817958571017, 3894159.131336350925267 ], [ 4982145.940550019964576, 3894130.390051879920065 ], [ 4982169.829561047255993, 3894139.5474126143381 ], [ 4982158.817807126790285, 3894168.288687453605235 ], [ 4982134.928817958571017, 3894159.131336350925267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982001.135777394287288, 3915869.096510254312307 ], [ 4982023.196915886364877, 3915914.299065334256738 ], [ 4981991.211877066642046, 3915929.884492882527411 ], [ 4981968.86286289151758, 3915884.681312985252589 ], [ 4982001.135777394287288, 3915869.096510254312307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980164.383927965536714, 3902113.171336893923581 ], [ 4980182.763699383474886, 3902136.516026240307838 ], [ 4980159.397236124612391, 3902154.671353330370039 ], [ 4980130.391632480546832, 3902117.830546142533422 ], [ 4980131.545955282635987, 3902116.740681827068329 ], [ 4980116.612346302717924, 3902097.773149435408413 ], [ 4980139.402066447772086, 3902079.980653050355613 ], [ 4980152.613360445015132, 3902096.395505236461759 ], [ 4980159.824897727929056, 3902090.949345256201923 ], [ 4980172.461805586703122, 3902106.634686088189483 ], [ 4980164.383927965536714, 3902113.171336893923581 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980055.24279644433409, 3904085.067583659198135 ], [ 4980108.144728709943593, 3904123.053080725017935 ], [ 4980091.391970596276224, 3904146.320813265163451 ], [ 4980070.691483618691564, 3904131.346101169008762 ], [ 4980059.715505068190396, 3904146.615604229271412 ], [ 4980046.202866566367447, 3904136.754483952652663 ], [ 4980058.333872407674789, 3904120.030976886861026 ], [ 4980039.645887807942927, 3904106.517219442408532 ], [ 4980055.24279644433409, 3904085.067583659198135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980049.479597762227058, 3902902.356132042594254 ], [ 4980061.327966507524252, 3902883.447231562808156 ], [ 4980078.871274220757186, 3902894.045436185318977 ], [ 4980066.734126980416477, 3902913.317828319501132 ], [ 4980049.479597762227058, 3902902.356132042594254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980016.773441959172487, 3903109.475306431297213 ], [ 4980070.272425396367908, 3903138.722855626605451 ], [ 4980054.371052175760269, 3903167.454432212747633 ], [ 4980000.872904883697629, 3903137.842784573324025 ], [ 4980016.773441959172487, 3903109.475306431297213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981322.178255265578628, 3906834.880826770327985 ], [ 4981340.637649591080844, 3906820.720945972949266 ], [ 4981361.883519856259227, 3906848.078381963539869 ], [ 4981343.423318678513169, 3906862.602378786541522 ], [ 4981322.178255265578628, 3906834.880826770327985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979467.720519199967384, 3904121.293899836484343 ], [ 4979505.099390538409352, 3904147.228243122808635 ], [ 4979481.413239448331296, 3904181.041140782181174 ], [ 4979457.548030760139227, 3904164.6035176650621 ], [ 4979463.902880218811333, 3904155.513994528912008 ], [ 4979450.389239609241486, 3904146.017303637228906 ], [ 4979467.720519199967384, 3904121.293899836484343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979455.290242220275104, 3900952.233242636546493 ], [ 4979466.467618191614747, 3900977.382479805499315 ], [ 4979422.650669924914837, 3900996.586538270581514 ], [ 4979415.200642438605428, 3900979.092133274767548 ], [ 4979403.66982945241034, 3900984.165012607350945 ], [ 4979397.651881530880928, 3900970.315019789617509 ], [ 4979407.741149861365557, 3900965.967280159238726 ], [ 4979399.428695100359619, 3900947.742752015590668 ], [ 4979433.445201396942139, 3900932.522876802366227 ], [ 4979444.336188157089055, 3900956.943222728557885 ], [ 4979455.290242220275104, 3900952.233242636546493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979425.710966643877327, 3906899.164780066348612 ], [ 4979400.626285540871322, 3906915.13229674147442 ], [ 4979386.852082264609635, 3906893.618693807162344 ], [ 4979411.936775182373822, 3906877.651164489798248 ], [ 4979425.710966643877327, 3906899.164780066348612 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979391.548534703440964, 3906453.029008297715336 ], [ 4979317.180021776817739, 3906490.373797698877752 ], [ 4979300.26498566288501, 3906456.472968365531415 ], [ 4979374.632780939340591, 3906419.49226328311488 ], [ 4979391.548534703440964, 3906453.029008297715336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979166.068843949586153, 3900852.564852712210268 ], [ 4979176.797680503688753, 3900818.723809652496129 ], [ 4979231.768048846162856, 3900835.956492153927684 ], [ 4979216.690941023640335, 3900882.896844417322427 ], [ 4979186.471812263131142, 3900873.364283469505608 ], [ 4979190.531226995401084, 3900860.628456111997366 ], [ 4979166.068843949586153, 3900852.564852712210268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979072.041232861578465, 3895562.278396380133927 ], [ 4979050.805200704373419, 3895525.091501331888139 ], [ 4979078.204702282324433, 3895509.128725178539753 ], [ 4979116.37233226839453, 3895575.846586439292878 ], [ 4979090.703539994545281, 3895590.720659128855914 ], [ 4979084.103405888192356, 3895579.054309219121933 ], [ 4979073.720203052274883, 3895585.222176611889154 ], [ 4979063.388690955005586, 3895567.357601429335773 ], [ 4979072.041232861578465, 3895562.278396380133927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980921.783978047780693, 3904316.744815492536873 ], [ 4980956.65611770004034, 3904303.713534280192107 ], [ 4980967.247482509352267, 3904332.139335375279188 ], [ 4980960.618770346045494, 3904334.673527128063142 ], [ 4980966.628679242916405, 3904351.43693673145026 ], [ 4980938.673256961628795, 3904361.934646069537848 ], [ 4980921.783978047780693, 3904316.744815492536873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980903.335162825882435, 3907438.407249333336949 ], [ 4980944.880545439198613, 3907400.62975534889847 ], [ 4980989.974785348400474, 3907450.251972142606974 ], [ 4980970.356213898397982, 3907468.050844852346927 ], [ 4980946.229567538015544, 3907441.415572069585323 ], [ 4980924.303574265912175, 3907461.030013606417924 ], [ 4980903.335162825882435, 3907438.407249333336949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980817.774839682504535, 3903432.402722688857466 ], [ 4980834.541587643325329, 3903403.309379045385867 ], [ 4980861.576710506342351, 3903418.662854854948819 ], [ 4980859.552854652516544, 3903422.299679831601679 ], [ 4980869.043693964369595, 3903427.782704897690564 ], [ 4980854.588744091801345, 3903453.239840547554195 ], [ 4980817.774839682504535, 3903432.402722688857466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980733.88936594221741, 3903211.189155315514654 ], [ 4980752.682437663897872, 3903177.366541857365519 ], [ 4980775.691889025270939, 3903190.162095855455846 ], [ 4980756.898797180503607, 3903223.98469348391518 ], [ 4980733.88936594221741, 3903211.189155315514654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980687.080927888862789, 3903933.158258461859077 ], [ 4980672.903915614821017, 3903963.34982343018055 ], [ 4980631.76710622292012, 3903944.324051738716662 ], [ 4980624.245479424484074, 3903959.965088198892772 ], [ 4980601.231791738420725, 3903949.354436459951103 ], [ 4980622.642400456592441, 3903903.521159173920751 ], [ 4980687.080927888862789, 3903933.158258461859077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980674.785104976966977, 3902200.958278709091246 ], [ 4980619.984162744134665, 3902239.070931654889137 ], [ 4980599.313856532797217, 3902209.894784060772508 ], [ 4980662.47918005939573, 3902165.974481166806072 ], [ 4980674.250204280950129, 3902182.386407443787903 ], [ 4980665.88585542794317, 3902188.194012312218547 ], [ 4980674.785104976966977, 3902200.958278709091246 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979053.005455588921905, 3901332.610050951596349 ], [ 4979067.591932971030474, 3901379.614315064623952 ], [ 4979027.246679681353271, 3901391.908002134878188 ], [ 4979022.670929837040603, 3901376.968797799665481 ], [ 4979007.97325152810663, 3901381.670909299515188 ], [ 4979000.823571753688157, 3901358.351166271604598 ], [ 4979030.794154826551676, 3901349.312311181332916 ], [ 4979027.933819156140089, 3901340.202888986561447 ], [ 4979053.005455588921905, 3901332.610050951596349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978866.378721953369677, 3901604.943382639903575 ], [ 4978887.373722497373819, 3901618.097115331795067 ], [ 4978898.06519669201225, 3901601.370021969545633 ], [ 4978919.635378737002611, 3901614.889144609682262 ], [ 4978907.788040201179683, 3901633.434404629282653 ], [ 4978917.279128245078027, 3901639.280863794498146 ], [ 4978905.720570470206439, 3901657.462613634765148 ], [ 4978894.503905259072781, 3901650.520064345560968 ], [ 4978888.147098143585026, 3901660.337966921273619 ], [ 4978847.596300785429776, 3901634.39773140149191 ], [ 4978866.378721953369677, 3901604.943382639903575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978817.079269199632108, 3895443.75318017648533 ], [ 4978849.945499280467629, 3895430.714916797354817 ], [ 4978863.413801277056336, 3895463.515445621218532 ], [ 4978814.11451833229512, 3895483.07283146912232 ], [ 4978801.792924346402287, 3895452.823689474258572 ], [ 4978818.226026135496795, 3895446.30454337829724 ], [ 4978817.079269199632108, 3895443.75318017648533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978753.043399024754763, 3910020.152918447740376 ], [ 4978738.087523208931088, 3910013.202388893812895 ], [ 4978734.906624143943191, 3910019.749973945785314 ], [ 4978713.04820638615638, 3910009.507494987454265 ], [ 4978718.543967361561954, 3909997.50286622857675 ], [ 4978710.490613122470677, 3909993.84431301895529 ], [ 4978728.133405235596001, 3909956.012237018439919 ], [ 4978773.001112874597311, 3909976.863833384588361 ], [ 4978753.043399024754763, 3910020.152918447740376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978735.980998556129634, 3909517.613164206501096 ], [ 4978726.098039638251066, 3909561.652080899570137 ], [ 4978694.444324843585491, 3909554.301729932893068 ], [ 4978704.614358980208635, 3909510.62754852604121 ], [ 4978735.980998556129634, 3909517.613164206501096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978722.394785628654063, 3905504.846433942206204 ], [ 4978736.998240707442164, 3905543.111513587646186 ], [ 4978688.294951349496841, 3905561.942220890894532 ], [ 4978673.692215458489954, 3905523.313037100248039 ], [ 4978722.394785628654063, 3905504.846433942206204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978682.210282624699175, 3901267.728084104601294 ], [ 4978725.725028184242547, 3901254.712396143935621 ], [ 4978732.58776190597564, 3901277.667319353204221 ], [ 4978723.942570174112916, 3901280.197746435180306 ], [ 4978733.66651795245707, 3901311.897930678445846 ], [ 4978698.509044268168509, 3901322.382552600931376 ], [ 4978682.210282624699175, 3901267.728084104601294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980543.057114210911095, 3901994.204982691444457 ], [ 4980559.134378765709698, 3902016.816586288157851 ], [ 4980513.850317277014256, 3902048.760226963553578 ], [ 4980497.773033906705678, 3902026.148650019429624 ], [ 4980543.057114210911095, 3901994.204982691444457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980516.929463212378323, 3899085.106546155642718 ], [ 4980490.990469538606703, 3899093.060232470277697 ], [ 4980483.554245603270829, 3899069.375363567844033 ], [ 4980509.781274994835258, 3899061.422305194661021 ], [ 4980516.929463212378323, 3899085.106546155642718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980424.52988157235086, 3916187.47171294875443 ], [ 4980426.645781313069165, 3916141.595452749636024 ], [ 4980465.786931341513991, 3916143.502383584622294 ], [ 4980463.67176759429276, 3916189.014508214779198 ], [ 4980424.52988157235086, 3916187.47171294875443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980393.974195517599583, 3906269.509360098745674 ], [ 4980406.865664955228567, 3906299.396565855015069 ], [ 4980356.141399186104536, 3906320.768733757548034 ], [ 4980343.249883742071688, 3906290.881551947910339 ], [ 4980393.974195517599583, 3906269.509360098745674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980406.174679325893521, 3899156.232127762865275 ], [ 4980418.281691902317107, 3899151.525080885272473 ], [ 4980426.015584412962198, 3899170.841022422537208 ], [ 4980413.908579155802727, 3899175.548065876588225 ], [ 4980406.174679325893521, 3899156.232127762865275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980369.855748826637864, 3899300.347891144920141 ], [ 4980381.02975928876549, 3899326.953998741693795 ], [ 4980356.527096346020699, 3899336.731627902947366 ], [ 4980358.531970580108464, 3899341.833864064421505 ], [ 4980329.993159416131675, 3899353.423294184729457 ], [ 4980314.236518994905055, 3899315.15496043022722 ], [ 4980339.604024115949869, 3899305.01506363414228 ], [ 4980342.181726624257863, 3899311.575079837348312 ], [ 4980369.855748826637864, 3899300.347891144920141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980318.944846139289439, 3907130.516828211955726 ], [ 4980293.336799471639097, 3907122.449636430013925 ], [ 4980303.19439875241369, 3907091.520059616770595 ], [ 4980350.382729038596153, 3907106.189097747206688 ], [ 4980336.466856319457293, 3907149.4902293686755 ], [ 4980315.175359643995762, 3907142.524905695114285 ], [ 4980318.944846139289439, 3907130.516828211955726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980180.900277970358729, 3903248.932888644281775 ], [ 4980176.563158884644508, 3903256.934268315322697 ], [ 4980158.729762242175639, 3903247.427755208685994 ], [ 4980185.621994784101844, 3903196.872458613477647 ], [ 4980252.353672285564244, 3903232.339628970716149 ], [ 4980229.798478765413165, 3903274.893487957306206 ], [ 4980180.900277970358729, 3903248.932888644281775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978488.734736343845725, 3906108.806632455438375 ], [ 4978478.997525016777217, 3906084.024920081719756 ], [ 4978505.797656498849392, 3906073.886316992808133 ], [ 4978514.960519436746836, 3906097.938551062252373 ], [ 4978530.810399188660085, 3906091.782090364489704 ], [ 4978534.81904423609376, 3906102.350462491158396 ], [ 4978551.244805422611535, 3906096.195241517852992 ], [ 4978561.841104288585484, 3906123.163604463916272 ], [ 4978543.109512974508107, 3906130.406298408284783 ], [ 4978545.973378160968423, 3906137.69504397874698 ], [ 4978525.224674521014094, 3906145.661713414825499 ], [ 4978508.042207303456962, 3906101.565127816982567 ], [ 4978488.734736343845725, 3906108.806632455438375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978423.466056490316987, 3914046.763743060640991 ], [ 4978466.653543500229716, 3914042.486090063117445 ], [ 4978476.241241231560707, 3914136.088890011887997 ], [ 4978433.053903085179627, 3914140.366527858190238 ], [ 4978423.466056490316987, 3914046.763743060640991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978201.201883950270712, 3907682.338846869301051 ], [ 4978211.524645869620144, 3907702.388005033135414 ], [ 4978183.854764765128493, 3907716.166388257406652 ], [ 4978176.686021118424833, 3907702.314171766396612 ], [ 4978165.732624341733754, 3907708.117084468714893 ], [ 4978153.403625579550862, 3907683.694107485003769 ], [ 4978188.567235128954053, 3907666.290248998906463 ], [ 4978197.742952411063015, 3907684.152177187614143 ], [ 4978201.201883950270712, 3907682.338846869301051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978170.425374143756926, 3907395.701539815869182 ], [ 4978156.655833562836051, 3907371.639646987430751 ], [ 4978182.600040500983596, 3907357.129317039623857 ], [ 4978181.452193219214678, 3907355.306223840918392 ], [ 4978208.260980394668877, 3907340.433618415612727 ], [ 4978219.161265917122364, 3907359.755734805483371 ], [ 4978221.755689880810678, 3907358.304706718306988 ], [ 4978232.655958406627178, 3907377.626828795298934 ], [ 4978199.505108605138958, 3907396.127289934549481 ], [ 4978192.33397192787379, 3907383.367463783826679 ], [ 4978170.425374143756926, 3907395.701539815869182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978151.553957407362759, 3907605.401748523116112 ], [ 4978169.896214379929006, 3907645.495149447117001 ], [ 4978144.246383246034384, 3907657.093058642931283 ], [ 4978125.904096026904881, 3907616.999674948398024 ], [ 4978151.553957407362759, 3907605.401748523116112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979953.609420219436288, 3907372.228264273144305 ], [ 4979967.192075056955218, 3907349.317609026096761 ], [ 4979992.210617044009268, 3907363.573451295960695 ], [ 4979978.915078021585941, 3907386.848853951785713 ], [ 4979953.609420219436288, 3907372.228264273144305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979822.609715418890119, 3902348.745388552546501 ], [ 4979858.08365115057677, 3902324.790069986134768 ], [ 4979878.177917857654393, 3902354.328522469382733 ], [ 4979842.704003031365573, 3902378.283814937341958 ], [ 4979822.609715418890119, 3902348.745388552546501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979759.041392358951271, 3900065.14201716799289 ], [ 4979757.829132556915283, 3900092.81330816494301 ], [ 4979732.199148165993392, 3900091.6651351605542 ], [ 4979733.411381624639034, 3900063.993843034375459 ], [ 4979759.041392358951271, 3900065.14201716799289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979679.546802856959403, 3908278.684642273001373 ], [ 4979694.860228701494634, 3908253.956939504481852 ], [ 4979717.574738563969731, 3908268.207523893099278 ], [ 4979702.261299851350486, 3908292.935213944409043 ], [ 4979679.546802856959403, 3908278.684642273001373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979669.446894233115017, 3901798.938193700741976 ], [ 4979706.652500856667757, 3901773.52992206858471 ], [ 4979698.901426860131323, 3901762.225001983810216 ], [ 4979721.108842810615897, 3901747.343936255201697 ], [ 4979745.510011293925345, 3901783.081876122392714 ], [ 4979686.097022543661296, 3901823.371170968748629 ], [ 4979669.446894233115017, 3901798.938193700741976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979661.885307082906365, 3904085.30208681197837 ], [ 4979680.365499696694314, 3904062.037844024132937 ], [ 4979715.724559331312776, 3904089.788745666388422 ], [ 4979697.243563069961965, 3904113.417094346135855 ], [ 4979661.885307082906365, 3904085.30208681197837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978133.673677075654268, 3895509.29820208856836 ], [ 4978146.786937639117241, 3895574.141028001904488 ], [ 4978160.042747909203172, 3895571.620180765166879 ], [ 4978164.889528726227582, 3895595.298868667799979 ], [ 4978132.902629761956632, 3895601.421367262955755 ], [ 4978122.640603804960847, 3895550.421505151316524 ], [ 4978115.14815160818398, 3895551.862173111177981 ], [ 4978107.450055743567646, 3895514.340538199990988 ], [ 4978133.673677075654268, 3895509.29820208856836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978039.787657593376935, 3904632.392111501190811 ], [ 4977995.710487022064626, 3904641.766420870088041 ], [ 4977989.437745831906796, 3904612.258515333756804 ], [ 4978033.514962549321353, 3904602.884195845108479 ], [ 4978039.787657593376935, 3904632.392111501190811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977883.341353502124548, 3903716.635343282949179 ], [ 4977810.36889361217618, 3903772.193764509633183 ], [ 4977788.830535281449556, 3903744.110322672873735 ], [ 4977861.803026527166367, 3903688.551843924447894 ], [ 4977883.341353502124548, 3903716.635343282949179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979559.349582299590111, 3916696.824264985974878 ], [ 4979571.716618533246219, 3916701.220727350562811 ], [ 4979563.319858848117292, 3916724.142964080907404 ], [ 4979550.952831818722188, 3916719.74650553194806 ], [ 4979559.349582299590111, 3916696.824264985974878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979399.583978024311364, 3901142.1889663268812 ], [ 4979429.850812315009534, 3901129.509888817090541 ], [ 4979450.19501471798867, 3901177.255082469433546 ], [ 4979402.344148459844291, 3901197.54283309308812 ], [ 4979392.602040979079902, 3901174.581509485375136 ], [ 4979410.18534120451659, 3901167.336936747655272 ], [ 4979399.583978024311364, 3901142.1889663268812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977572.369742664508522, 3909333.446489716880023 ], [ 4977544.39183655846864, 3909357.784742537420243 ], [ 4977511.36284872610122, 3909319.481630695052445 ], [ 4977514.823811335489154, 3909316.575817024335265 ], [ 4977494.144182283431292, 3909292.86389715783298 ], [ 4977518.660377964377403, 3909271.79553667223081 ], [ 4977572.369742664508522, 3909333.446489716880023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977508.269693354144692, 3906671.504713420756161 ], [ 4977499.943250110372901, 3906660.199188191443682 ], [ 4977523.591178874485195, 3906642.406232327222824 ], [ 4977550.582957170903683, 3906677.783582419157028 ], [ 4977517.994621343910694, 3906702.476300832349807 ], [ 4977499.329270005226135, 3906678.404505438171327 ], [ 4977508.269693354144692, 3906671.504713420756161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977413.766926185227931, 3912209.40084400260821 ], [ 4977438.853109612129629, 3912189.790102737490088 ], [ 4977467.278004364110529, 3912225.5346330977045 ], [ 4977442.191071758046746, 3912245.509479975327849 ], [ 4977413.766926185227931, 3912209.40084400260821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977402.987583767622709, 3905106.973963065538555 ], [ 4977394.125790095888078, 3905076.004252383485436 ], [ 4977439.937355726025999, 3905062.99126538541168 ], [ 4977448.799100987613201, 3905093.96099091693759 ], [ 4977402.987583767622709, 3905106.973963065538555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977336.992758728563786, 3908581.384499263949692 ], [ 4977351.057163440622389, 3908602.169413134455681 ], [ 4977329.145384640432894, 3908616.688969826791435 ], [ 4977315.368883594870567, 3908595.904668009839952 ], [ 4977336.992758728563786, 3908581.384499263949692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977309.651715421117842, 3901812.847063022665679 ], [ 4977294.679500101134181, 3901811.359312490560114 ], [ 4977292.042070907540619, 3901833.201670781243593 ], [ 4977259.219322713091969, 3901829.491936970502138 ], [ 4977263.912089416757226, 3901788.719049172010273 ], [ 4977311.994338813237846, 3901794.281270395498723 ], [ 4977309.651715421117842, 3901812.847063022665679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977299.195969407446682, 3901717.058813558891416 ], [ 4977294.206038881093264, 3901762.20064535131678 ], [ 4977265.414252230897546, 3901758.863441494759172 ], [ 4977270.116148290224373, 3901713.721004153601825 ], [ 4977299.195969407446682, 3901717.058813558891416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979035.064700849354267, 3902175.898875099141151 ], [ 4979089.876055505126715, 3902131.956921325996518 ], [ 4979118.885419911704957, 3902167.70421760994941 ], [ 4979111.962096471339464, 3902173.151277197059244 ], [ 4979136.663430727086961, 3902203.427352239377797 ], [ 4979145.02979661244899, 3902196.526883128099144 ], [ 4979175.762195473536849, 3902234.462741083465517 ], [ 4979121.239673084579408, 3902278.041013113223016 ], [ 4979091.656820596195757, 3902241.200083994306624 ], [ 4979097.137865628115833, 3902236.842307842336595 ], [ 4979074.161272398196161, 3902208.026503874920309 ], [ 4979066.37167432717979, 3902214.564104746095836 ], [ 4979035.064700849354267, 3902175.898875099141151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979022.191164633259177, 3904815.095494057051837 ], [ 4978971.772716271691024, 3904827.367624783888459 ], [ 4978962.353933153674006, 3904788.385305447038263 ], [ 4979012.484496364369988, 3904776.112538374494761 ], [ 4979022.191164633259177, 3904815.095494057051837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978972.193650025874376, 3909054.578701266087592 ], [ 4978967.553486029617488, 3909070.226436029188335 ], [ 4978914.03622810728848, 3909054.453821145463735 ], [ 4978925.927221149206161, 3909014.060623039957136 ], [ 4978996.708876313641667, 3909034.604085482191294 ], [ 4978989.45717647485435, 3909059.713651895988733 ], [ 4978972.193650025874376, 3909054.578701266087592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978922.195717629045248, 3900153.273569715209305 ], [ 4978936.936254970729351, 3900128.908450458664447 ], [ 4978976.343487232923508, 3900151.933291286695749 ], [ 4978961.890147939324379, 3900176.663136662915349 ], [ 4978922.195717629045248, 3900153.273569715209305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978891.958082040771842, 3902166.124147169757634 ], [ 4978926.723394024185836, 3902203.704237912781537 ], [ 4978892.673636605031788, 3902235.310590466950089 ], [ 4978864.517060940153897, 3902204.663200936280191 ], [ 4978880.676035489886999, 3902189.768472532741725 ], [ 4978874.068073959089816, 3902182.471681314520538 ], [ 4978891.958082040771842, 3902166.124147169757634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977197.341964234597981, 3905683.329726783093065 ], [ 4977167.32833441067487, 3905715.674986347090453 ], [ 4977138.87642608769238, 3905689.398303734604269 ], [ 4977153.017502809874713, 3905674.134182541165501 ], [ 4977145.832530336454511, 3905667.564863233827055 ], [ 4977161.993022129870951, 3905650.484288566745818 ], [ 4977197.341964234597981, 3905683.329726783093065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977120.10162931215018, 3908486.986448153853416 ], [ 4977135.017875020392239, 3908513.599137861281633 ], [ 4977094.086432297714055, 3908536.454378840047866 ], [ 4977079.170158874243498, 3908509.841711477376521 ], [ 4977120.10162931215018, 3908486.986448153853416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977010.072030825540423, 3912254.440706978086382 ], [ 4977044.377405747771263, 3912231.207401242107153 ], [ 4977062.745360171422362, 3912258.191419278271496 ], [ 4977028.440003673546016, 3912281.424701950047165 ], [ 4977010.072030825540423, 3912254.440706978086382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976979.315015214495361, 3912509.998483007308096 ], [ 4977017.362364307977259, 3912486.772902576718479 ], [ 4977033.428714546374977, 3912513.02386074885726 ], [ 4976995.381388599053025, 3912536.249418801628053 ], [ 4976979.315015214495361, 3912509.998483007308096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976980.236688402481377, 3902764.728810165543109 ], [ 4976995.828148767352104, 3902745.098064260557294 ], [ 4976987.489693745039403, 3902738.890539201442152 ], [ 4977006.546706336550415, 3902714.533282510004938 ], [ 4977015.746825483627617, 3902721.834994851145893 ], [ 4977027.584822571836412, 3902706.93018444115296 ], [ 4977019.247118620201945, 3902700.358520082663745 ], [ 4977037.437234556302428, 3902677.456011400092393 ], [ 4977073.376039556227624, 3902705.568738175556064 ], [ 4977055.185155742801726, 3902728.835352508351207 ], [ 4977064.960452010855079, 3902736.502407334279269 ], [ 4977049.080204548314214, 3902756.496644698083401 ], [ 4977038.44249605294317, 3902748.099542925134301 ], [ 4977023.427712732926011, 3902767.367329823318869 ], [ 4977032.915028658695519, 3902775.03377552703023 ], [ 4977017.901019892655313, 3902793.937436218839139 ], [ 4976980.236688402481377, 3902764.728810165543109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976953.564869162626565, 3901878.014358232729137 ], [ 4976957.972952415235341, 3901835.420171909499913 ], [ 4976987.341420378535986, 3901838.394111666362733 ], [ 4976985.578771123662591, 3901855.140480561181903 ], [ 4977008.613052319735289, 3901857.373046223074198 ], [ 4977005.966794855892658, 3901883.584986079949886 ], [ 4976953.564869162626565, 3901878.014358232729137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976932.724166627041996, 3908043.448349459562451 ], [ 4976958.66253318451345, 3908031.121616342570633 ], [ 4976979.014152617193758, 3908074.859701472800225 ], [ 4976953.076573713682592, 3908086.822284488007426 ], [ 4976932.724166627041996, 3908043.448349459562451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976874.628883538767695, 3911488.751919044647366 ], [ 4976865.112195803783834, 3911496.743145341984928 ], [ 4976829.790111919865012, 3911454.430605764500797 ], [ 4976839.594686454162002, 3911446.439962843433022 ], [ 4976874.628883538767695, 3911488.751919044647366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976893.609711453318596, 3902043.205626409035176 ], [ 4976893.026206070557237, 3902046.845728369895369 ], [ 4976870.861302612349391, 3902042.066143432166427 ], [ 4976881.907927486114204, 3901992.203060792759061 ], [ 4976942.35734105296433, 3902005.436976058408618 ], [ 4976931.894119708798826, 3902051.659933091141284 ], [ 4976893.609711453318596, 3902043.205626409035176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978603.755556381307542, 3905776.963577815331519 ], [ 4978576.936448118649423, 3905795.841206799261272 ], [ 4978544.20877674408257, 3905749.890789018478245 ], [ 4978571.027907671406865, 3905731.013127895072103 ], [ 4978603.755556381307542, 3905776.963577815331519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978339.959738302975893, 3909995.96747844433412 ], [ 4978322.562100327573717, 3910054.191768569406122 ], [ 4978305.298313863575459, 3910049.421374487224966 ], [ 4978322.696690955199301, 3909990.832942172884941 ], [ 4978339.959738302975893, 3909995.96747844433412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976856.841546270996332, 3906172.744441405404359 ], [ 4976816.738973719067872, 3906210.895334911998361 ], [ 4976795.477439525537193, 3906188.639328747522086 ], [ 4976835.867954060435295, 3906150.488999664783478 ], [ 4976856.841546270996332, 3906172.744441405404359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976672.301680728793144, 3905320.658856776542962 ], [ 4976652.712955817580223, 3905324.623911679256707 ], [ 4976645.590821766294539, 3905287.467792917042971 ], [ 4976688.800359359011054, 3905279.181873587891459 ], [ 4976698.20347982365638, 3905327.266662137117237 ], [ 4976674.294034888967872, 3905331.951049589551985 ], [ 4976672.301680728793144, 3905320.658856776542962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976650.787383444607258, 3911424.930231718346477 ], [ 4976605.536540892906487, 3911450.690406532026827 ], [ 4976595.49591519497335, 3911433.555464221164584 ], [ 4976640.459644814021885, 3911407.43054768582806 ], [ 4976650.787383444607258, 3911424.930231718346477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976626.479427246376872, 3913441.086370842065662 ], [ 4976638.236682530492544, 3913462.95862360810861 ], [ 4976651.492547065019608, 3913456.067420452367514 ], [ 4976663.82098990585655, 3913480.125664091203362 ], [ 4976615.985096695832908, 3913504.788114555645734 ], [ 4976591.899346901103854, 3913458.857654620427638 ], [ 4976626.479427246376872, 3913441.086370842065662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976548.06909703835845, 3906781.30004422320053 ], [ 4976559.794125583022833, 3906820.28630623081699 ], [ 4976530.118404464796185, 3906829.328539532143623 ], [ 4976518.393336886540055, 3906790.34229026408866 ], [ 4976548.06909703835845, 3906781.30004422320053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976540.192393416538835, 3903192.402303489856422 ], [ 4976515.674434875138104, 3903212.014959167223424 ], [ 4976530.037013594061136, 3903229.522799725178629 ], [ 4976508.979980248957872, 3903246.593662468250841 ], [ 4976471.925345228984952, 3903201.001087951939553 ], [ 4976480.001996493898332, 3903194.463323010131717 ], [ 4976471.959763975813985, 3903184.251121233683079 ], [ 4976487.536389895714819, 3903171.538539847824723 ], [ 4976488.971754459664226, 3903173.726277648936957 ], [ 4976510.606271934695542, 3903155.928324882872403 ], [ 4976540.192393416538835, 3903192.402303489856422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976519.066537861712277, 3907722.886124312411994 ], [ 4976525.05897219851613, 3907749.115974083077163 ], [ 4976493.084655229002237, 3907756.332861499860883 ], [ 4976487.092191332019866, 3907730.103018744848669 ], [ 4976519.066537861712277, 3907722.886124312411994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978155.053759482689202, 3906496.626749644521624 ], [ 4978137.184802614152431, 3906504.599818368442357 ], [ 4978125.434175197966397, 3906478.721569896675646 ], [ 4978162.902055431157351, 3906461.686696923803538 ], [ 4978179.812349833548069, 3906498.499853587243706 ], [ 4978160.213461210951209, 3906507.561638028360903 ], [ 4978155.053759482689202, 3906496.626749644521624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978057.414392505772412, 3906510.257168872281909 ], [ 4978095.745221620425582, 3906493.588158508297056 ], [ 4978111.504617917351425, 3906530.034705980680883 ], [ 4978091.04274070635438, 3906538.730582723859698 ], [ 4978087.031676459126174, 3906529.254665207117796 ], [ 4978069.16353150177747, 3906536.863648906815797 ], [ 4978057.414392505772412, 3906510.257168872281909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977912.662679626606405, 3904833.488549317233264 ], [ 4977865.700981623493135, 3904845.40591173293069 ], [ 4977857.703493756242096, 3904814.437873180955648 ], [ 4977904.665242246352136, 3904802.520497007295489 ], [ 4977912.662679626606405, 3904833.488549317233264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976462.547720113769174, 3907764.645137338433415 ], [ 4976493.654509849846363, 3907759.247091254685074 ], [ 4976502.192580149509013, 3907807.694239302538335 ], [ 4976471.085844724439085, 3907813.092275661416352 ], [ 4976462.547720113769174, 3907764.645137338433415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976422.784393173642457, 3910022.549222615081817 ], [ 4976483.601913975551724, 3909988.081569553352892 ], [ 4976498.231549675576389, 3910013.965076198801398 ], [ 4976437.414068491198123, 3910048.432696693576872 ], [ 4976422.784393173642457, 3910022.549222615081817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976387.403944458812475, 3902850.897449283860624 ], [ 4976403.579838334582746, 3902826.897984811104834 ], [ 4976391.789310091175139, 3902818.862904272973537 ], [ 4976406.23214509524405, 3902797.40880403155461 ], [ 4976419.749033393338323, 3902806.175697080325335 ], [ 4976436.503176650032401, 3902781.0850465814583 ], [ 4976425.287093565799296, 3902773.779393529053777 ], [ 4976441.175091865472496, 3902749.779361575376242 ], [ 4976455.267195806838572, 3902758.911584671121091 ], [ 4976461.622854797169566, 3902749.093100135214627 ], [ 4976492.970278351567686, 3902769.548864322248846 ], [ 4976414.110829259268939, 3902887.365374175831676 ], [ 4976365.221692994236946, 3902854.857390367425978 ], [ 4976373.887815090827644, 3902841.766442630439997 ], [ 4976387.403944458812475, 3902850.897449283860624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976229.519646186381578, 3900634.47318920539692 ], [ 4976259.752010107971728, 3900638.176357521675527 ], [ 4976253.896659099496901, 3900684.773101447615772 ], [ 4976223.95234458334744, 3900681.070528695359826 ], [ 4976229.519646186381578, 3900634.47318920539692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976205.32938311714679, 3908096.570610249880701 ], [ 4976162.100709328427911, 3908116.509507618844509 ], [ 4976148.627334791235626, 3908087.715520993806422 ], [ 4976191.568870739080012, 3908067.411882763262838 ], [ 4976205.32938311714679, 3908096.570610249880701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977815.954851609654725, 3911923.671777848154306 ], [ 4977783.945301949977875, 3911949.821993179153651 ], [ 4977774.182000019587576, 3911938.149185399990529 ], [ 4977806.192320572212338, 3911911.634827010333538 ], [ 4977815.954851609654725, 3911923.671777848154306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977793.631472899578512, 3904062.73543613916263 ], [ 4977833.720994205214083, 3904032.961037544067949 ], [ 4977852.09916559420526, 3904057.396549650467932 ], [ 4977812.009660199284554, 3904087.170921278651804 ], [ 4977793.631472899578512, 3904062.73543613916263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977509.560677004046738, 3904954.625698633026332 ], [ 4977464.33469903562218, 3904962.906079831533134 ], [ 4977458.356258107349277, 3904930.121724230237305 ], [ 4977503.582289346493781, 3904921.841333149001002 ], [ 4977509.560677004046738, 3904954.625698633026332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977495.89030343759805, 3904469.573772164527327 ], [ 4977509.04485391639173, 3904513.297096416354179 ], [ 4977480.518854933790863, 3904521.976548667531461 ], [ 4977467.076305315829813, 3904478.252635743003339 ], [ 4977495.89030343759805, 3904469.573772164527327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975997.365135557949543, 3910540.932378522120416 ], [ 4976018.885039830580354, 3910576.29712942102924 ], [ 4975975.647877768613398, 3910602.426591123919934 ], [ 4975951.545808001421392, 3910562.687022170051932 ], [ 4975970.858295981772244, 3910551.074097945354879 ], [ 4975973.440423690713942, 3910555.448951871134341 ], [ 4975997.365135557949543, 3910540.932378522120416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976000.124615024775267, 3908621.594724228605628 ], [ 4975946.790350508876145, 3908656.078680231235921 ], [ 4975955.975371015258133, 3908669.934413331560791 ], [ 4975943.002276170998812, 3908678.283048875164241 ], [ 4975917.170204556547105, 3908638.904172787442803 ], [ 4975953.49462444614619, 3908615.673627181444317 ], [ 4975960.957370138727129, 3908626.976928026881069 ], [ 4975969.606613725423813, 3908621.168422297108918 ], [ 4975964.439757307060063, 3908613.511118735652417 ], [ 4975985.773489479906857, 3908599.717537928838283 ], [ 4976000.124615024775267, 3908621.594724228605628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975983.438363880850375, 3905081.468936487101018 ], [ 4975947.987086214125156, 3905097.782676484435797 ], [ 4975938.525480317883193, 3905077.73617802746594 ], [ 4975931.607996198348701, 3905080.999285682570189 ], [ 4975921.286223791539669, 3905059.130384977441281 ], [ 4975963.655774470418692, 3905039.189378896262497 ], [ 4975983.438363880850375, 3905081.468936487101018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977463.37107827141881, 3913679.875549914315343 ], [ 4977419.282289244234562, 3913701.995479648001492 ], [ 4977395.200372762046754, 3913654.971897705458105 ], [ 4977431.508649815805256, 3913636.841125826351345 ], [ 4977443.835549494251609, 3913661.263862180989236 ], [ 4977451.903972057625651, 3913657.27527121687308 ], [ 4977463.37107827141881, 3913679.875549914315343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977472.743287347257137, 3909201.057683037128299 ], [ 4977506.618658734485507, 3909247.737566831987351 ], [ 4977478.937773741781712, 3909267.70691687753424 ], [ 4977445.350285906344652, 3909221.027669571805745 ], [ 4977472.743287347257137, 3909201.057683037128299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977385.867775802500546, 3907926.04824255919084 ], [ 4977360.496586645953357, 3907942.381203145720065 ], [ 4977334.667397868819535, 3907902.272720796056092 ], [ 4977360.03860904276371, 3907885.93973622051999 ], [ 4977385.867775802500546, 3907926.04824255919084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977208.658358459360898, 3907439.197883154265583 ], [ 4977280.736125632189214, 3907393.103297880385071 ], [ 4977300.53920314181596, 3907423.731705772690475 ], [ 4977259.022521981969476, 3907450.226785172242671 ], [ 4977256.726710113696754, 3907446.580677521880716 ], [ 4977226.165669500827789, 3907466.180133712012321 ], [ 4977208.658358459360898, 3907439.197883154265583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977170.774377529509366, 3901706.95975878322497 ], [ 4977180.953185569494963, 3901659.279787641949952 ], [ 4977210.027769156731665, 3901665.166405933443457 ], [ 4977200.136140344664454, 3901713.211095140781254 ], [ 4977170.774377529509366, 3901706.95975878322497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977127.522630664519966, 3909625.644449181389064 ], [ 4977144.176247300580144, 3909647.162919474765658 ], [ 4977122.83744733594358, 3909663.504507441073656 ], [ 4977106.471725556068122, 3909641.986648690421134 ], [ 4977127.522630664519966, 3909625.644449181389064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977142.153126008808613, 3901760.063338595442474 ], [ 4977145.664244728162885, 3901733.489081588108093 ], [ 4977182.228675873950124, 3901738.298855894245207 ], [ 4977178.717521594837308, 3901764.873108204454184 ], [ 4977142.153126008808613, 3901760.063338595442474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975662.718889365904033, 3907611.898634942248464 ], [ 4975675.628241969272494, 3907635.229242192115635 ], [ 4975637.580362508073449, 3907655.907737395726144 ], [ 4975624.95891017653048, 3907632.577730788383633 ], [ 4975662.718889365904033, 3907611.898634942248464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975661.895328024402261, 3907449.858141114935279 ], [ 4975690.269341157749295, 3907514.367010834626853 ], [ 4975661.163155383430421, 3907527.052681423723698 ], [ 4975632.789085954427719, 3907462.543841934762895 ], [ 4975661.895328024402261, 3907449.858141114935279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975648.568565030582249, 3903507.74100127723068 ], [ 4975632.426175810396671, 3903515.719218580052257 ], [ 4975623.535287577658892, 3903497.858794637024403 ], [ 4975639.67768485378474, 3903489.880572078749537 ], [ 4975648.568565030582249, 3903507.74100127723068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977031.740938169881701, 3908195.496927234344184 ], [ 4977045.002522182650864, 3908187.149417764041573 ], [ 4977055.90632229950279, 3908205.014549104031175 ], [ 4977042.644743679091334, 3908213.362053272780031 ], [ 4977031.740938169881701, 3908195.496927234344184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977003.660846871323884, 3900912.807307696435601 ], [ 4977057.784299292601645, 3900922.387039237655699 ], [ 4977051.95484125893563, 3900955.87496585259214 ], [ 4976997.831454276107252, 3900946.295245862100273 ], [ 4977003.660846871323884, 3900912.807307696435601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976970.494974876753986, 3900518.384959621820599 ], [ 4976937.643415749073029, 3900527.784269392956048 ], [ 4976922.776815395802259, 3900474.954523171298206 ], [ 4976955.916433845646679, 3900465.555792459752411 ], [ 4976970.494974876753986, 3900518.384959621820599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976939.024268517270684, 3906670.683052710257471 ], [ 4976915.956391233019531, 3906686.657063962426037 ], [ 4976891.83935540355742, 3906653.10696570109576 ], [ 4976914.90800136141479, 3906636.768803616985679 ], [ 4976939.024268517270684, 3906670.683052710257471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976917.635437573306262, 3911851.517629705369473 ], [ 4976931.128725827671587, 3911869.388119847048074 ], [ 4976913.252383052371442, 3911882.82400392787531 ], [ 4976899.759089711122215, 3911864.953522609546781 ], [ 4976917.635437573306262, 3911851.517629705369473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976869.666431156918406, 3912356.106977369170636 ], [ 4976848.334464778192341, 3912370.26402050582692 ], [ 4976829.392133492045105, 3912342.550692505203187 ], [ 4976850.72486543096602, 3912328.029502815101296 ], [ 4976869.666431156918406, 3912356.106977369170636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976862.620729786343873, 3906302.023238881025463 ], [ 4976870.923433058895171, 3906324.980736773461103 ], [ 4976847.583185026422143, 3906333.30746894236654 ], [ 4976839.568401862867177, 3906310.350573820527643 ], [ 4976862.620729786343873, 3906302.023238881025463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976841.652531976811588, 3913512.536835909355432 ], [ 4976861.877377300523221, 3913476.529472445137799 ], [ 4976909.031448066234589, 3913503.208881558384746 ], [ 4976896.608195685781538, 3913525.031159691046923 ], [ 4976889.419988596811891, 3913521.010801151860505 ], [ 4976881.331249016337097, 3913534.831125473603606 ], [ 4976841.652531976811588, 3913512.536835909355432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976831.745367644354701, 3913292.215532696340233 ], [ 4976851.255210839211941, 3913323.571390294935554 ], [ 4976808.020893621258438, 3913350.063689533155411 ], [ 4976783.346810394898057, 3913310.322115390561521 ], [ 4976804.387876382097602, 3913297.256812876090407 ], [ 4976809.839943829923868, 3913305.643159627914429 ], [ 4976831.745367644354701, 3913292.215532696340233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976840.803812403231859, 3907661.647365128621459 ], [ 4976860.615481422282755, 3907688.270016141235828 ], [ 4976828.318431782536209, 3907712.235920892097056 ], [ 4976808.21957880910486, 3907685.248567248228937 ], [ 4976840.803812403231859, 3907661.647365128621459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976729.580766874365509, 3913000.333415023051202 ], [ 4976750.241651919670403, 3913032.055703441146761 ], [ 4976715.651190376840532, 3913054.560538314282894 ], [ 4976694.990281956270337, 3913022.838276046328247 ], [ 4976729.580766874365509, 3913000.333415023051202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975211.115400531329215, 3896349.509955849032849 ], [ 4975216.581660469993949, 3896352.798097026534379 ], [ 4975227.279508377425373, 3896332.792441839817911 ], [ 4975258.64268874656409, 3896349.605405430775136 ], [ 4975219.03442329633981, 3896422.351799860596657 ], [ 4975192.27488549053669, 3896408.097027646377683 ], [ 4975203.838286448270082, 3896387.364840035326779 ], [ 4975193.479671714827418, 3896381.882104715332389 ], [ 4975211.115400531329215, 3896349.509955849032849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975166.342941396869719, 3898422.41188885923475 ], [ 4975169.782404359430075, 3898430.79378226166591 ], [ 4975147.297714531421661, 3898440.216070821508765 ], [ 4975128.382434468716383, 3898393.20535692339763 ], [ 4975167.873624650761485, 3898377.262819017283618 ], [ 4975183.638141194358468, 3898415.528113950509578 ], [ 4975166.342941396869719, 3898422.41188885923475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975084.637350740842521, 3909731.805627267342061 ], [ 4975105.679653614759445, 3909719.103154809214175 ], [ 4975113.427427882328629, 3909731.863329928833991 ], [ 4975133.028779288753867, 3909719.886255438905209 ], [ 4975153.403263145126402, 3909753.063198222313076 ], [ 4975112.759646445512772, 3909777.742708896286786 ], [ 4975084.637350740842521, 3909731.805627267342061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976734.230283410288393, 3899731.738247887697071 ], [ 4976772.273657099343836, 3899719.072242247406393 ], [ 4976784.582014305517077, 3899755.874851589091122 ], [ 4976746.250679256394506, 3899768.54024541284889 ], [ 4976734.230283410288393, 3899731.738247887697071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976617.044517058879137, 3912432.053144344128668 ], [ 4976585.032240881584585, 3912460.389587287791073 ], [ 4976564.640596370212734, 3912437.407192886807024 ], [ 4976596.652878279797733, 3912409.070726060308516 ], [ 4976617.044517058879137, 3912432.053144344128668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976607.520293620415032, 3899724.922624108381569 ], [ 4976566.174774625338614, 3899802.761425950098783 ], [ 4976519.567781777121127, 3899778.268800733145326 ], [ 4976560.913203034549952, 3899700.429928344674408 ], [ 4976607.520293620415032, 3899724.922624108381569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976557.515752816572785, 3912122.781357545405626 ], [ 4976542.52451110444963, 3912133.310363418888301 ], [ 4976536.783496383577585, 3912125.287616378162056 ], [ 4976516.027273140847683, 3912139.446106205228716 ], [ 4976498.804947760887444, 3912115.013754038605839 ], [ 4976534.265305301174521, 3912089.961508531589061 ], [ 4976557.515752816572785, 3912122.781357545405626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976408.875699509866536, 3905998.858504332602024 ], [ 4976397.642272841185331, 3906000.65610693115741 ], [ 4976401.336177073419094, 3906024.696391836274415 ], [ 4976365.621099324896932, 3906029.720958643592894 ], [ 4976359.375277291983366, 3905986.376455804798752 ], [ 4976406.03515759203583, 3905979.917816477827728 ], [ 4976408.875699509866536, 3905998.858504332602024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975032.325017367489636, 3896594.57508885441348 ], [ 4974992.541067684069276, 3896611.60961803002283 ], [ 4974964.728390491567552, 3896547.831317254342139 ], [ 4975002.494664811529219, 3896531.520972144324332 ], [ 4975015.970741719007492, 3896562.498952896334231 ], [ 4975029.808408560231328, 3896556.700558128301054 ], [ 4975037.549839062616229, 3896574.55840592039749 ], [ 4975025.729928514920175, 3896579.632573755923659 ], [ 4975032.325017367489636, 3896594.57508885441348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974975.676968270912766, 3907782.750643123872578 ], [ 4974918.024997273460031, 3907816.499726521782577 ], [ 4974902.816065550781786, 3907790.980096467304975 ], [ 4974960.468799882568419, 3907756.866850199177861 ], [ 4974975.676968270912766, 3907782.750643123872578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974935.701646752655506, 3909344.798765299841762 ], [ 4974867.104703383520246, 3909382.531574946828187 ], [ 4974851.3273441856727, 3909353.733620048034936 ], [ 4974919.63643345143646, 3909316.000195694621652 ], [ 4974935.701646752655506, 3909344.798765299841762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974946.073661635629833, 3898820.693525271024555 ], [ 4974941.780309329740703, 3898807.212129395455122 ], [ 4974959.64905708283186, 3898801.421745832078159 ], [ 4974962.797607003711164, 3898811.259554279502481 ], [ 4974977.783994477242231, 3898806.555813619866967 ], [ 4974989.521379301324487, 3898842.264043006114662 ], [ 4974948.019948747940361, 3898855.65391783695668 ], [ 4974937.427312322892249, 3898823.589295404031873 ], [ 4974946.073661635629833, 3898820.693525271024555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974847.294552007690072, 3896359.341835825238377 ], [ 4974861.381840953603387, 3896372.842727567534894 ], [ 4974870.90690188575536, 3896363.03022385854274 ], [ 4974901.380700596608222, 3896392.585536696016788 ], [ 4974868.187400045804679, 3896426.747500635217875 ], [ 4974842.313590763136744, 3896401.570952148642391 ], [ 4974827.304840771481395, 3896416.834481657948345 ], [ 4974808.617566495202482, 3896398.954885077197105 ], [ 4974847.294552007690072, 3896359.341835825238377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974806.926161730661988, 3910541.08186248363927 ], [ 4974840.941009603440762, 3910519.30171973304823 ], [ 4974863.61547273863107, 3910553.939579076133668 ], [ 4974861.598049154505134, 3910555.027951841242611 ], [ 4974873.366007060743868, 3910572.893947149626911 ], [ 4974843.674658005125821, 3910592.133743674959987 ], [ 4974832.768185406923294, 3910575.361877897754312 ], [ 4974830.174255046993494, 3910576.81323610804975 ], [ 4974806.926161730661988, 3910541.08186248363927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976313.945769445039332, 3903284.427115982398391 ], [ 4976373.016935270279646, 3903266.341653477400541 ], [ 4976385.033983348868787, 3903304.235957033932209 ], [ 4976351.607852634042501, 3903314.727206662297249 ], [ 4976356.185498432256281, 3903329.301843957975507 ], [ 4976330.251835337840021, 3903337.25956607144326 ], [ 4976313.945769445039332, 3903284.427115982398391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976182.584921476431191, 3904997.396757234819233 ], [ 4976160.111311079934239, 3905003.905195066705346 ], [ 4976154.10822563432157, 3904982.409162379801273 ], [ 4976176.581108240410686, 3904976.264849726110697 ], [ 4976182.584921476431191, 3904997.396757234819233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976011.300591115839779, 3911472.412964486982673 ], [ 4976011.958000923506916, 3911432.359664590563625 ], [ 4976004.185172094032168, 3911432.343821868300438 ], [ 4976004.217825684696436, 3911416.32203273056075 ], [ 4976025.809029743075371, 3911416.366045875009149 ], [ 4976025.118932872079313, 3911472.44113454548642 ], [ 4976011.300591115839779, 3911472.412964486982673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974721.333800189197063, 3900166.435541588347405 ], [ 4974758.162697212770581, 3900184.351233934052289 ], [ 4974743.126384736038744, 3900214.544138120487332 ], [ 4974706.297519186511636, 3900196.628466047346592 ], [ 4974721.333800189197063, 3900166.435541588347405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974678.120136694982648, 3910021.207915172446519 ], [ 4974686.445269602350891, 3910033.240852016955614 ], [ 4974707.777943836525083, 3910019.082112983800471 ], [ 4974724.138830058276653, 3910043.875697270501405 ], [ 4974688.104575181379914, 3910067.472629490774125 ], [ 4974676.335547417402267, 3910049.970852233003825 ], [ 4974669.417322741821408, 3910054.326688742730767 ], [ 4974656.787479824386537, 3910035.366677776444703 ], [ 4974678.120136694982648, 3910021.207915172446519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974681.844555202871561, 3900472.590815676376224 ], [ 4974693.441305194981396, 3900434.016029555350542 ], [ 4974727.405790699645877, 3900443.915114515926689 ], [ 4974715.808996148407459, 3900482.489886200521141 ], [ 4974681.844555202871561, 3900472.590815676376224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974588.568777536042035, 3899438.274958289694041 ], [ 4974607.584737066179514, 3899434.671398364007473 ], [ 4974611.857913405634463, 3899458.348356303293258 ], [ 4974592.553959215059876, 3899461.951341657433659 ], [ 4974594.263956875540316, 3899471.057994964532554 ], [ 4974559.977680828422308, 3899477.544315383769572 ], [ 4974551.71274754870683, 3899433.4681480913423 ], [ 4974586.287088958546519, 3899426.982388829346746 ], [ 4974588.568777536042035, 3899438.274958289694041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974559.391614863649011, 3895706.613151202443987 ], [ 4974517.613387775607407, 3895711.992275304161012 ], [ 4974512.788669023662806, 3895675.569758936297148 ], [ 4974489.738788179121912, 3895678.437134286854416 ], [ 4974485.761595053598285, 3895650.391281829215586 ], [ 4974561.828176122158766, 3895639.982274005655199 ], [ 4974566.369116891175508, 3895674.219458324834704 ], [ 4974555.131501702591777, 3895676.017819879110903 ], [ 4974559.391614863649011, 3895706.613151202443987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974513.875024377368391, 3900795.969543049577624 ], [ 4974505.704335518181324, 3900849.844691307283938 ], [ 4974472.882892618887126, 3900844.681845607236028 ], [ 4974478.717092298902571, 3900807.187940218485892 ], [ 4974486.490110150538385, 3900808.659858552273363 ], [ 4974489.115257536061108, 3900791.915047795977443 ], [ 4974513.875024377368391, 3900795.969543049577624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974485.717088162899017, 3899890.321028906386346 ], [ 4974441.332421013154089, 3899906.254893451463431 ], [ 4974429.300288054160774, 3899873.823472234420478 ], [ 4974473.685722569935024, 3899857.525459092110395 ], [ 4974485.717088162899017, 3899890.321028906386346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974481.991643838584423, 3898281.221877799835056 ], [ 4974477.404900513589382, 3898270.288890845607966 ], [ 4974498.160632798448205, 3898261.226747951935977 ], [ 4974519.376241975463927, 3898310.790481992997229 ], [ 4974502.945215106010437, 3898317.67639579763636 ], [ 4974506.385619778186083, 3898325.694075087551028 ], [ 4974483.613052952103317, 3898335.116347575560212 ], [ 4974463.831026373431087, 3898288.832650355994701 ], [ 4974481.991643838584423, 3898281.221877799835056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975875.351654638536274, 3910231.535237738862634 ], [ 4975859.530729090794921, 3910224.948684957344085 ], [ 4975844.777765532955527, 3910259.511319157667458 ], [ 4975813.99887103959918, 3910246.704144055489451 ], [ 4975839.168574165552855, 3910186.309227570425719 ], [ 4975886.056359959766269, 3910205.703575304709375 ], [ 4975875.351654638536274, 3910231.535237738862634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975810.66593249514699, 3897421.626095658633858 ], [ 4975801.3934625685215, 3897448.917023780755699 ], [ 4975792.470369388349354, 3897445.985876321792603 ], [ 4975781.169881911948323, 3897479.098776398226619 ], [ 4975747.780309920199215, 3897468.107159710954875 ], [ 4975759.080760801210999, 3897434.994245820678771 ], [ 4975751.309050382114947, 3897432.429576937574893 ], [ 4975760.87024634052068, 3897404.775087451562285 ], [ 4975810.66593249514699, 3897421.626095658633858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975769.614629862830043, 3897353.814627862535417 ], [ 4975816.084102482534945, 3897306.572027669288218 ], [ 4975841.381538834422827, 3897331.020100004505366 ], [ 4975794.624030602164567, 3897378.262072662357241 ], [ 4975769.614629862830043, 3897353.814627862535417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975727.061255736276507, 3909959.226962623652071 ], [ 4975733.447446609847248, 3909933.386487756855786 ], [ 4975759.633661144413054, 3909939.62985965795815 ], [ 4975753.246707842685282, 3909965.834459642879665 ], [ 4975727.061255736276507, 3909959.226962623652071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974306.170294954441488, 3895718.492576980032027 ], [ 4974341.036683511920273, 3895712.371213364414871 ], [ 4974350.438069964759052, 3895765.188570174388587 ], [ 4974315.57174769975245, 3895771.309921793173999 ], [ 4974306.170294954441488, 3895718.492576980032027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974294.943402147851884, 3898634.05833846423775 ], [ 4974247.389280370436609, 3898649.622130155097693 ], [ 4974237.656196928583086, 3898619.380134992301464 ], [ 4974266.188835670240223, 3898609.969013947993517 ], [ 4974267.33373309392482, 3898613.612574074883014 ], [ 4974286.067241597920656, 3898607.459318964276463 ], [ 4974294.943402147851884, 3898634.05833846423775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974177.403096064925194, 3904936.203870115336031 ], [ 4974199.557475049048662, 3904945.35080391773954 ], [ 4974183.641928474418819, 3904985.009790488053113 ], [ 4974161.199625109322369, 3904975.862302609253675 ], [ 4974177.403096064925194, 3904936.203870115336031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974129.664266061969101, 3908416.483172911219299 ], [ 4974106.890338402241468, 3908431.003655787557364 ], [ 4974090.240696345455945, 3908405.845774989575148 ], [ 4974128.870750890113413, 3908380.796641123481095 ], [ 4974152.408823533914983, 3908416.892077972181141 ], [ 4974136.552720891311765, 3908427.420701413415372 ], [ 4974129.664266061969101, 3908416.483172911219299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975619.850492493249476, 3906457.513160809408873 ], [ 4975632.459240257740021, 3906487.397496562916785 ], [ 4975593.266868176870048, 3906503.704143250826746 ], [ 4975580.657348331995308, 3906474.183956057298928 ], [ 4975619.850492493249476, 3906457.513160809408873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975590.995013853535056, 3906060.915144161321223 ], [ 4975633.640364858321846, 3906046.072012924123555 ], [ 4975647.094683622010052, 3906085.061355683021247 ], [ 4975630.670321576297283, 3906090.854221479035914 ], [ 4975635.53729263599962, 3906104.701082658022642 ], [ 4975609.316369842737913, 3906113.751322442665696 ], [ 4975590.995013853535056, 3906060.915144161321223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975587.110769757069647, 3904991.452360922005028 ], [ 4975610.671971869654953, 3905016.625095787458122 ], [ 4975583.553012490272522, 3905042.059463590849191 ], [ 4975559.703856127336621, 3905016.886170143261552 ], [ 4975587.110769757069647, 3904991.452360922005028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975452.655850289389491, 3905410.296368985902518 ], [ 4975456.667276848107576, 3905420.13601699564606 ], [ 4975442.258178639225662, 3905425.933061663527042 ], [ 4975420.76419335231185, 3905375.275415468029678 ], [ 4975440.649457089602947, 3905366.940480402205139 ], [ 4975436.924495756626129, 3905357.829676186200231 ], [ 4975460.268088527955115, 3905348.04520283266902 ], [ 4975481.474809062667191, 3905398.338168429676443 ], [ 4975452.655850289389491, 3905410.296368985902518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975398.842639119364321, 3911108.495042466558516 ], [ 4975405.776859825477004, 3911096.128497607540339 ], [ 4975460.412040255963802, 3911127.554123177658767 ], [ 4975453.190651395358145, 3911139.555941835045815 ], [ 4975398.842639119364321, 3911108.495042466558516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975385.642908407375216, 3910944.244469096884131 ], [ 4975443.003089052625, 3910909.403348178602755 ], [ 4975460.220537941902876, 3910937.112188376951963 ], [ 4975402.86039390321821, 3910971.953273136168718 ], [ 4975385.642908407375216, 3910944.244469096884131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975388.776353829540312, 3898525.90783462068066 ], [ 4975336.89010264351964, 3898546.922926934901625 ], [ 4975323.992906361818314, 3898515.217650277540088 ], [ 4975375.590454077348113, 3898494.566082193050534 ], [ 4975388.776353829540312, 3898525.90783462068066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974101.054839213378727, 3900710.312138556502759 ], [ 4974102.802157644182444, 3900700.484047399368137 ], [ 4974124.394093791022897, 3900704.53195394994691 ], [ 4974115.952635535039008, 3900750.031678648665547 ], [ 4974074.208097248338163, 3900742.302855676040053 ], [ 4974080.902175899595022, 3900706.631210518069565 ], [ 4974101.054839213378727, 3900710.312138556502759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974073.043821135535836, 3901041.615984856151044 ], [ 4974137.820950341410935, 3901052.667299394495785 ], [ 4974137.23636429104954, 3901057.035717618186027 ], [ 4974158.828008652664721, 3901061.08365268772468 ], [ 4974150.088574435561895, 3901111.680619908031076 ], [ 4974063.431260177865624, 3901096.944962687790394 ], [ 4974073.043821135535836, 3901041.615984856151044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974055.679906425066292, 3902550.176082963123918 ], [ 4974065.438231110572815, 3902566.945286872331053 ], [ 4974054.194228507578373, 3902573.477550664916635 ], [ 4974066.53503814805299, 3902594.985533199738711 ], [ 4974037.127743208780885, 3902612.041914532426745 ], [ 4973996.372217253781855, 3902542.048732062336057 ], [ 4974021.454887608997524, 3902527.532731733284891 ], [ 4974039.823249844834208, 3902559.248207026161253 ], [ 4974055.679906425066292, 3902550.176082963123918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973745.645615027286112, 3906174.497125254478306 ], [ 4973712.530509796924889, 3906175.52484672376886 ], [ 4973710.620861414819956, 3906121.265475458465517 ], [ 4973743.736033427529037, 3906120.237751671578735 ], [ 4973745.645615027286112, 3906174.497125254478306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975270.304164331406355, 3911178.513947411905974 ], [ 4975278.681396306492388, 3911164.329605883918703 ], [ 4975341.942141222767532, 3911201.234334907028824 ], [ 4975333.564887237735093, 3911215.418657044880092 ], [ 4975270.304164331406355, 3911178.513947411905974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975200.672814079560339, 3910443.189656981267035 ], [ 4975180.495441827923059, 3910455.529663101769984 ], [ 4975152.084621315822005, 3910410.320176347158849 ], [ 4975197.052306589670479, 3910382.372204002924263 ], [ 4975221.157848280854523, 3910421.018697566818446 ], [ 4975196.367577557452023, 3910436.626620932016522 ], [ 4975200.672814079560339, 3910443.189656981267035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975180.628177622333169, 3909672.280379510950297 ], [ 4975237.341096764430404, 3909674.214941842947155 ], [ 4975236.112665947526693, 3909712.44640377862379 ], [ 4975179.399827431887388, 3909710.511844002641737 ], [ 4975180.628177622333169, 3909672.280379510950297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973637.994459936395288, 3904382.395250299014151 ], [ 4973607.432591449469328, 3904401.998785351868719 ], [ 4973602.551495162770152, 3904394.706646921113133 ], [ 4973589.577074998058379, 3904403.056396787520498 ], [ 4973565.171543775126338, 3904366.595729995518923 ], [ 4973608.997248090803623, 3904337.914701675064862 ], [ 4973637.994459936395288, 3904382.395250299014151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973449.607775377109647, 3901745.355068638920784 ], [ 4973474.425547301769257, 3901719.185862344224006 ], [ 4973529.043842389248312, 3901770.270371711812913 ], [ 4973504.226064161397517, 3901796.439528386574239 ], [ 4973449.607775377109647, 3901745.355068638920784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973408.670967130921781, 3901915.688834519125521 ], [ 4973387.892990037798882, 3901937.860501299612224 ], [ 4973336.151088858023286, 3901888.602502385154366 ], [ 4973356.92835511919111, 3901866.794925759080797 ], [ 4973408.670967130921781, 3901915.688834519125521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974967.283506954088807, 3904923.934227488934994 ], [ 4974962.690099093131721, 3904917.006545452866703 ], [ 4974949.426826632581651, 3904925.719195990823209 ], [ 4974936.221760575659573, 3904905.301442162599415 ], [ 4974942.276765981689095, 3904901.308092295192182 ], [ 4974920.459281132556498, 3904867.764402935281396 ], [ 4974955.058747263625264, 3904845.257371143903583 ], [ 4974994.675387812778354, 3904905.782418112736195 ], [ 4974967.283506954088807, 3904923.934227488934994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974851.384175016544759, 3903407.095429150387645 ], [ 4974831.494743053801358, 3903416.887309511192143 ], [ 4974837.805361392907798, 3903429.28035523602739 ], [ 4974820.510568068362772, 3903437.620892790146172 ], [ 4974816.207738327793777, 3903429.237296861130744 ], [ 4974798.336289707571268, 3903437.940830504987389 ], [ 4974804.93270945455879, 3903451.426831919234246 ], [ 4974788.214601989835501, 3903459.404408305417746 ], [ 4974766.416050831787288, 3903415.665238779969513 ], [ 4974837.902658570557833, 3903380.486961536575109 ], [ 4974851.384175016544759, 3903407.095429150387645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974743.672933078370988, 3909776.277044896036386 ], [ 4974786.338045928627253, 3909748.323810529895127 ], [ 4974807.578813961707056, 3909780.409819006919861 ], [ 4974786.245897975750268, 3909794.568476689979434 ], [ 4974791.700035589747131, 3909802.590264259371907 ], [ 4974770.367870924994349, 3909816.384803510736674 ], [ 4974743.672933078370988, 3909776.277044896036386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974631.585442149080336, 3905040.879771491978317 ], [ 4974623.846203022636473, 3905023.021949793677777 ], [ 4974634.221851261332631, 3905018.308849265333265 ], [ 4974627.916578302159905, 3905003.366928211413324 ], [ 4974672.875369882211089, 3904984.157295857090503 ], [ 4974690.645819025114179, 3905025.703632849734277 ], [ 4974645.687084070406854, 3905044.913235954008996 ], [ 4974641.961084863170981, 3905036.166673900093883 ], [ 4974631.585442149080336, 3905040.879771491978317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974593.985483864322305, 3898450.400294268969446 ], [ 4974649.907984219491482, 3898427.20700744446367 ], [ 4974661.087294599972665, 3898454.174851510673761 ], [ 4974605.165563377551734, 3898477.003986732102931 ], [ 4974593.985483864322305, 3898450.400294268969446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974545.972564636729658, 3898261.32150806998834 ], [ 4974611.695458770729601, 3898234.506276760715991 ], [ 4974625.45480917301029, 3898267.669436921365559 ], [ 4974582.21586428117007, 3898285.425984563305974 ], [ 4974580.496393376030028, 3898281.053011410403997 ], [ 4974558.011786058545113, 3898290.475792086217552 ], [ 4974545.972564636729658, 3898261.32150806998834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974531.55265393294394, 3900014.216219416819513 ], [ 4974540.996890995651484, 3900044.457775145303458 ], [ 4974496.616051987744868, 3900058.570904483087361 ], [ 4974486.884486541152, 3900027.964664560277015 ], [ 4974531.55265393294394, 3900014.216219416819513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974465.309204206801951, 3908158.611889590043575 ], [ 4974428.684569072909653, 3908188.398226564750075 ], [ 4974410.302528162486851, 3908165.785648349672556 ], [ 4974446.927173594012856, 3908135.999286734964699 ], [ 4974465.309204206801951, 3908158.611889590043575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974446.103236214257777, 3903606.926450995262712 ], [ 4974495.3988794144243, 3903580.078361999709159 ], [ 4974509.745254596695304, 3903606.324243277311325 ], [ 4974542.608808353543282, 3903588.546961638145149 ], [ 4974557.815420334227383, 3903616.615231211297214 ], [ 4974523.222650388255715, 3903635.117329092230648 ], [ 4974517.484259493649006, 3903624.546146580949426 ], [ 4974469.630668518133461, 3903650.304657558444887 ], [ 4974446.103236214257777, 3903606.926450995262712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974428.485926458612084, 3894607.411201479379088 ], [ 4974430.151634313166142, 3894639.093748386949301 ], [ 4974445.709170928224921, 3894638.032141552772373 ], [ 4974446.823231198824942, 3894657.333200939930975 ], [ 4974413.980527888983488, 3894659.088876255322248 ], [ 4974415.091729478910565, 3894679.846446232870221 ], [ 4974377.351281441748142, 3894681.956609829794616 ], [ 4974375.679757437668741, 3894653.18708870280534 ], [ 4974383.458160552196205, 3894652.838332357816398 ], [ 4974380.949800556525588, 3894610.230242916382849 ], [ 4974428.485926458612084, 3894607.411201479379088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974356.624681957066059, 3905169.601689623203129 ], [ 4974350.806685857474804, 3905199.448986179195344 ], [ 4974310.509596398100257, 3905191.358490439597517 ], [ 4974316.326830361969769, 3905161.875315512064844 ], [ 4974356.624681957066059, 3905169.601689623203129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972573.006604564376175, 3908211.371220854111016 ], [ 4972528.912207401357591, 3908233.863231619354337 ], [ 4972516.003889096900821, 3908208.713472954928875 ], [ 4972525.802798803895712, 3908203.634319448377937 ], [ 4972498.839293839409947, 3908150.783699492458254 ], [ 4972524.776903749443591, 3908137.724423507694155 ], [ 4972537.683858097530901, 3908163.602447129320353 ], [ 4972546.329727460630238, 3908159.249364802148193 ], [ 4972573.006604564376175, 3908211.371220854111016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974293.707537612877786, 3899114.343690884765238 ], [ 4974305.455757362768054, 3899144.953823743388057 ], [ 4974260.779800014570355, 3899161.979797455482185 ], [ 4974249.031536946073174, 3899131.36968382820487 ], [ 4974293.707537612877786, 3899114.343690884765238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974124.780442265793681, 3895529.880206327885389 ], [ 4974129.061841079965234, 3895549.915751538239419 ], [ 4974115.517633522860706, 3895552.802148113492876 ], [ 4974124.077566222287714, 3895594.329749523196369 ], [ 4974082.292812324129045, 3895602.986702946946025 ], [ 4974075.44324470218271, 3895570.565713843796402 ], [ 4974054.694880061782897, 3895574.894503091927618 ], [ 4974048.702278407290578, 3895546.116499985102564 ], [ 4974124.780442265793681, 3895529.880206327885389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974013.250841286964715, 3908465.048049753997475 ], [ 4974052.17151590809226, 3908438.542846289929003 ], [ 4974068.247491880320013, 3908462.607179180253297 ], [ 4974029.327551400288939, 3908488.748228788375854 ], [ 4974013.250841286964715, 3908465.048049753997475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972379.467692523263395, 3904156.030440553557128 ], [ 4972361.968587514013052, 3904121.040542204398662 ], [ 4972408.66331048682332, 3904097.460858030710369 ], [ 4972410.670719772577286, 3904101.834255763329566 ], [ 4972435.458955587819219, 3904089.50099329976365 ], [ 4972448.94179615098983, 3904116.472397149540484 ], [ 4972412.624054386280477, 3904134.609795777127147 ], [ 4972419.222191153094172, 3904147.731087252032012 ], [ 4972402.216573567129672, 3904156.073733075521886 ], [ 4972397.626531599089503, 3904146.961712552700192 ], [ 4972379.467692523263395, 3904156.030440553557128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972288.181601161137223, 3905066.913806366734207 ], [ 4972331.130563457496464, 3905043.690994532313198 ], [ 4972345.191004756838083, 3905069.571066021453589 ], [ 4972302.242071547545493, 3905092.793855756986886 ], [ 4972288.181601161137223, 3905066.913806366734207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973885.52591229043901, 3904293.302617197390646 ], [ 4973907.918933392502367, 3904327.93897319259122 ], [ 4973861.787087206728756, 3904357.707393715623766 ], [ 4973839.106072950176895, 3904323.070511997211725 ], [ 4973885.52591229043901, 3904293.302617197390646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973785.599451267160475, 3903853.600511899683625 ], [ 4973772.343866527080536, 3903858.308308482635766 ], [ 4973766.043532690964639, 3903840.453560775145888 ], [ 4973800.046770584769547, 3903828.503698308952153 ], [ 4973806.634336379356682, 3903846.723146969918162 ], [ 4973819.889932862482965, 3903842.0153673379682 ], [ 4973834.496289164759219, 3903882.826653070747852 ], [ 4973800.492392455227673, 3903895.140602266881615 ], [ 4973785.599451267160475, 3903853.600511899683625 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972108.568971765227616, 3906855.916682679671794 ], [ 4972099.054825915955007, 3906862.453051576390862 ], [ 4972113.124871204607189, 3906882.871070706285536 ], [ 4972089.772121927700937, 3906898.848682072013617 ], [ 4972062.779586041346192, 3906860.199637313373387 ], [ 4972095.646501863375306, 3906837.68562946934253 ], [ 4972108.568971765227616, 3906855.916682679671794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972120.546470866538584, 3892004.156143601983786 ], [ 4972108.113796284422278, 3892027.800988559611142 ], [ 4972123.368122328072786, 3892035.47655242215842 ], [ 4972113.247758545912802, 3892055.120355033781379 ], [ 4972057.413312112912536, 3892025.88448333600536 ], [ 4972053.943840618245304, 3892032.432243878953159 ], [ 4972030.919302445836365, 3892020.372497256379575 ], [ 4972056.941037307493389, 3891970.900155456271023 ], [ 4972120.546470866538584, 3892004.156143601983786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972034.641906928271055, 3895539.687178006395698 ], [ 4972035.18499250896275, 3895557.166418428532779 ], [ 4972022.798040284775198, 3895557.507149048615247 ], [ 4972022.25494665838778, 3895540.027908863034099 ], [ 4972034.641906928271055, 3895539.687178006395698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971905.605056731030345, 3892781.893528112675995 ], [ 4971935.006623833440244, 3892772.845721010584384 ], [ 4971951.328439622186124, 3892825.311055955477059 ], [ 4971921.926924307830632, 3892834.358845493290573 ], [ 4971905.605056731030345, 3892781.893528112675995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973550.530452789738774, 3898719.990782637614757 ], [ 4973608.181730533018708, 3898695.706300911493599 ], [ 4973619.935881556943059, 3898723.767224828712642 ], [ 4973562.572671703062952, 3898748.052242295350879 ], [ 4973550.530452789738774, 3898719.990782637614757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973387.347599813714623, 3900289.075592893175781 ], [ 4973354.49631697870791, 3900298.843410205096006 ], [ 4973341.335037437267601, 3900254.029843888711184 ], [ 4973374.185663986951113, 3900244.626139911822975 ], [ 4973387.347599813714623, 3900289.075592893175781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973346.787734892219305, 3897737.900415033102036 ], [ 4973366.576328597031534, 3897781.998503319453448 ], [ 4973333.424085947684944, 3897796.863573830574751 ], [ 4973329.982557867653668, 3897789.210175815969706 ], [ 4973306.055721462704241, 3897799.723596540279686 ], [ 4973288.27549098059535, 3897759.634870354551822 ], [ 4973313.932646959088743, 3897748.032395550981164 ], [ 4973315.653063525445759, 3897752.041157691273838 ], [ 4973346.787734892219305, 3897737.900415033102036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973263.414961339905858, 3901824.37459981860593 ], [ 4973281.608100930228829, 3901798.556525298394263 ], [ 4973330.787339681759477, 3901832.880084229633212 ], [ 4973312.305485360324383, 3901859.061697597615421 ], [ 4973263.414961339905858, 3901824.37459981860593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971632.731038948521018, 3902955.171865845099092 ], [ 4971656.290901420637965, 3902983.982400222215801 ], [ 4971635.525435634888709, 3903000.693489170633256 ], [ 4971611.96556565631181, 3902971.882972705177963 ], [ 4971632.731038948521018, 3902955.171865845099092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973166.613000058569014, 3898265.904475601390004 ], [ 4973184.386038419790566, 3898309.634420709684491 ], [ 4973159.884378795512021, 3898319.782733073458076 ], [ 4973156.157658443786204, 3898310.672283755615354 ], [ 4973118.684433281421661, 3898326.257538531906903 ], [ 4973104.350721322931349, 3898291.273393557872623 ], [ 4973166.613000058569014, 3898265.904475601390004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973155.513292261399329, 3899837.469209454488009 ], [ 4973165.528119029477239, 3899871.352681801654398 ], [ 4973111.929412429220974, 3899886.542683115229011 ], [ 4973105.635426491498947, 3899864.68271319149062 ], [ 4973122.060933050699532, 3899859.980713242199272 ], [ 4973118.628043787553906, 3899847.957784033380449 ], [ 4973155.513292261399329, 3899837.469209454488009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973097.599839647300541, 3904029.596274961251765 ], [ 4973087.500804477371275, 3904040.136601273901761 ], [ 4973094.399241891689599, 3904046.704273346811533 ], [ 4973076.220436275936663, 3904065.968169840984046 ], [ 4973036.266767058521509, 3904028.021486466284841 ], [ 4973047.519740214571357, 3904016.390971160493791 ], [ 4973043.495991805568337, 3904012.377771003637463 ], [ 4973060.808115087449551, 3903994.568707343190908 ], [ 4973097.599839647300541, 3904029.596274961251765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973099.824691937305033, 3900488.062912705354393 ], [ 4973095.454811315983534, 3900364.614226006902754 ], [ 4973277.772928949445486, 3900358.048057514242828 ], [ 4973282.432793081738055, 3900480.040814090520144 ], [ 4973240.957988410256803, 3900481.417074172757566 ], [ 4973241.788881539367139, 3900498.53281821962446 ], [ 4973150.774643758311868, 3900501.634083678480238 ], [ 4973149.940177023410797, 3900486.33898844756186 ], [ 4973099.824691937305033, 3900488.062912705354393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973063.236865091137588, 3903182.924842962995172 ], [ 4973078.452274275012314, 3903207.350970441009849 ], [ 4973074.704442141577601, 3903209.528529678471386 ], [ 4973092.215159664861858, 3903238.328665893524885 ], [ 4973068.574207936413586, 3903252.484186264686286 ], [ 4973058.81410857103765, 3903236.443596987985075 ], [ 4973037.479741406626999, 3903249.14706685161218 ], [ 4973032.025145908817649, 3903240.397408015560359 ], [ 4973015.879869356751442, 3903250.197844805661589 ], [ 4972998.655646092258394, 3903222.126572262495756 ], [ 4973063.236865091137588, 3903182.924842962995172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972910.098738507367671, 3901801.845275717787445 ], [ 4972934.837501821108162, 3901816.458074348513037 ], [ 4972921.258773661218584, 3901839.008076953701675 ], [ 4972896.520723544992507, 3901824.031161108054221 ], [ 4972910.098738507367671, 3901801.845275717787445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971430.577250598929822, 3898016.81961726071313 ], [ 4971440.323230139911175, 3898041.962782937567681 ], [ 4971417.841568048112094, 3898050.295802880544215 ], [ 4971421.280208045616746, 3898059.769600878003985 ], [ 4971391.304463018663228, 3898071.001695916987956 ], [ 4971375.255149544216692, 3898028.00442278617993 ], [ 4971369.778578201308846, 3898030.178990297950804 ], [ 4971357.168555238284171, 3897996.291391802020371 ], [ 4971386.567636644467711, 3897985.422313408460468 ], [ 4971402.330969766713679, 3898027.326668634545058 ], [ 4971430.577250598929822, 3898016.81961726071313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971377.639092845842242, 3898448.579054372850806 ], [ 4971392.261628476902843, 3898484.291076745837927 ], [ 4971373.526663588359952, 3898491.538734738249332 ], [ 4971377.254641444422305, 3898500.284809057135135 ], [ 4971351.889777758158743, 3898510.433159257750958 ], [ 4971333.827229940332472, 3898465.975626322906464 ], [ 4971377.639092845842242, 3898448.579054372850806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971318.212945399805903, 3895096.654284783173352 ], [ 4971319.024218033067882, 3895125.057885527610779 ], [ 4971328.242729716934264, 3895124.710927704814821 ], [ 4971329.073662760667503, 3895142.554814322851598 ], [ 4971319.279042980633676, 3895142.90069881407544 ], [ 4971319.54539720248431, 3895154.553334552329034 ], [ 4971285.264583735726774, 3895155.581894002389163 ], [ 4971283.355942991562188, 3895097.681773610878736 ], [ 4971318.212945399805903, 3895096.654284783173352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971229.81755109410733, 3906071.748474435415119 ], [ 4971199.546624137088656, 3906091.719434283208102 ], [ 4971171.119734650477767, 3906049.063192827161402 ], [ 4971201.390688363462687, 3906029.092201462946832 ], [ 4971229.81755109410733, 3906071.748474435415119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971160.593111775815487, 3905360.470654073171318 ], [ 4971125.708196070045233, 3905383.710304658859968 ], [ 4971113.648191108368337, 3905365.481343507766724 ], [ 4971106.152771941386163, 3905370.201146610546857 ], [ 4971092.657061520963907, 3905349.784741860348731 ], [ 4971098.42277087457478, 3905346.154121049214154 ], [ 4971087.511145666241646, 3905329.747960350010544 ], [ 4971122.68472211714834, 3905306.14466503309086 ], [ 4971135.31929178442806, 3905325.102959343697876 ], [ 4971126.09414235688746, 3905330.91194048570469 ], [ 4971137.580287052318454, 3905348.047446676529944 ], [ 4971147.670628826133907, 3905341.511812795419246 ], [ 4971160.593111775815487, 3905360.470654073171318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972872.557145705446601, 3897956.919968474656343 ], [ 4972933.668569183908403, 3897931.184174677822739 ], [ 4972951.733038014732301, 3897973.457996419630945 ], [ 4972929.248747503384948, 3897982.88213785039261 ], [ 4972926.095155213959515, 3897975.229344468563795 ], [ 4972887.468091777525842, 3897991.540960872080177 ], [ 4972872.557145705446601, 3897956.919968474656343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972621.71161878015846, 3903969.693057768978179 ], [ 4972559.15631443168968, 3904004.894285537302494 ], [ 4972545.381395231932402, 3903980.107058520894498 ], [ 4972562.38925442751497, 3903970.672114211600274 ], [ 4972557.223309599794447, 3903961.55896777799353 ], [ 4972602.770108836703002, 3903936.156774147879332 ], [ 4972621.71161878015846, 3903969.693057768978179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972550.308357241563499, 3903661.865721178706735 ], [ 4972522.631681161001325, 3903678.562939251307398 ], [ 4972505.694490998983383, 3903650.856654703151435 ], [ 4972533.371184990741313, 3903634.159419471863657 ], [ 4972550.308357241563499, 3903661.865721178706735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972541.065100255422294, 3900356.996171226724982 ], [ 4972586.585291147232056, 3900348.708077691029757 ], [ 4972595.139072407968342, 3900393.876602649688721 ], [ 4972585.343566568568349, 3900395.678543785586953 ], [ 4972588.76688570715487, 3900412.799217710271478 ], [ 4972552.753600716590881, 3900419.648930837865919 ], [ 4972541.065100255422294, 3900356.996171226724982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971105.049082225188613, 3892300.839401384815574 ], [ 4971113.941301055252552, 3892321.611231519840658 ], [ 4971102.985204674303532, 3892326.324587002396584 ], [ 4971094.381741553544998, 3892305.189167034812272 ], [ 4971105.049082225188613, 3892300.839401384815574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970919.76718108728528, 3894817.720330082345754 ], [ 4970950.591010130941868, 3894817.04904169542715 ], [ 4970951.395948510617018, 3894849.093907138798386 ], [ 4970920.571483378298581, 3894850.12932266574353 ], [ 4970919.76718108728528, 3894817.720330082345754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972523.087592147290707, 3892114.887702729552984 ], [ 4972526.278106074780226, 3892103.605796494521201 ], [ 4972516.48791775945574, 3892101.03822476696223 ], [ 4972523.742243585176766, 3892073.742403246928006 ], [ 4972575.572025909088552, 3892087.678192547056824 ], [ 4972568.317651141434908, 3892114.974000303540379 ], [ 4972548.737983686849475, 3892109.474702331237495 ], [ 4972545.834855753928423, 3892121.121283035259694 ], [ 4972523.087592147290707, 3892114.887702729552984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972334.17894528619945, 3903743.019408285617828 ], [ 4972354.264475975185633, 3903780.927248533815145 ], [ 4972324.285713642835617, 3903796.892031358554959 ], [ 4972298.461608223617077, 3903748.049373732879758 ], [ 4972300.47943764552474, 3903746.960813080891967 ], [ 4972289.575499720871449, 3903726.548750909511 ], [ 4972316.67120701353997, 3903712.399107471108437 ], [ 4972321.550008383579552, 3903721.147529077716172 ], [ 4972331.350514510646462, 3903716.068318680394441 ], [ 4972343.402823545970023, 3903738.303237366955727 ], [ 4972334.17894528619945, 3903743.019408285617828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970508.206782056950033, 3910485.883392067626119 ], [ 4970511.645470538176596, 3910494.628882402088493 ], [ 4970543.335703145712614, 3910482.670627120882273 ], [ 4970557.374950493685901, 3910519.4737952449359 ], [ 4970513.584602501243353, 3910536.143569809850305 ], [ 4970517.882284699939191, 3910547.439565548207611 ], [ 4970488.784501600079238, 3910558.674336799420416 ], [ 4970467.00944382045418, 3910501.46559829171747 ], [ 4970508.206782056950033, 3910485.883392067626119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970522.292696226388216, 3892746.915203087497503 ], [ 4970533.168418829329312, 3892785.896923241205513 ], [ 4970495.121537880040705, 3892796.751069433055818 ], [ 4970488.825743425637484, 3892773.799421037081629 ], [ 4970496.031807616353035, 3892771.627846942748874 ], [ 4970491.452499634586275, 3892755.233661510981619 ], [ 4970522.292696226388216, 3892746.915203087497503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970402.515154316090047, 3897122.437695266213268 ], [ 4970379.17226779088378, 3897128.949356540106237 ], [ 4970377.7414058027789, 3897123.848924639634788 ], [ 4970349.787958287633955, 3897131.444574523717165 ], [ 4970338.629704742692411, 3897090.277531762607396 ], [ 4970389.926115438342094, 3897076.170198426581919 ], [ 4970402.515154316090047, 3897122.437695266213268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970149.012229134328663, 3890962.731616671197116 ], [ 4970125.053436727263033, 3890988.17704372946173 ], [ 4970066.380537176504731, 3890933.087053995579481 ], [ 4970090.339322855696082, 3890907.641575468704104 ], [ 4970149.012229134328663, 3890962.731616671197116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971710.496177355758846, 3911687.93250431958586 ], [ 4971683.957915587350726, 3911716.285048061981797 ], [ 4971660.967867779545486, 3911694.758049984462559 ], [ 4971687.506126421503723, 3911666.405483925249428 ], [ 4971710.496177355758846, 3911687.93250431958586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971544.227108479477465, 3909006.147350769024342 ], [ 4971593.507229812443256, 3908980.750373973976821 ], [ 4971619.038277094252408, 3909030.320233527105302 ], [ 4971569.75890424195677, 3909055.353033116087317 ], [ 4971544.227108479477465, 3909006.147350769024342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971450.058955542743206, 3903623.374789903871715 ], [ 4971466.505010385066271, 3903606.291349503211677 ], [ 4971484.61490279994905, 3903623.439363189972937 ], [ 4971467.880880836397409, 3903640.522254565730691 ], [ 4971450.058955542743206, 3903623.374789903871715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969527.853246858343482, 3897704.916735793463886 ], [ 4969549.394620364531875, 3897738.819513048510998 ], [ 4969512.484374814666808, 3897762.421656690072268 ], [ 4969490.654944430105388, 3897728.518391607794911 ], [ 4969527.853246858343482, 3897704.916735793463886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969479.892996745184064, 3903725.000617240089923 ], [ 4969494.538688974454999, 3903747.603039780166 ], [ 4969472.339909096248448, 3903761.764312992803752 ], [ 4969457.694205978885293, 3903739.161902347113937 ], [ 4969479.892996745184064, 3903725.000617240089923 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971158.782861796207726, 3911914.849187694489956 ], [ 4971130.225534468889236, 3911945.747461657505482 ], [ 4971088.55429142806679, 3911907.436150983907282 ], [ 4971117.111611304804683, 3911876.537833465263247 ], [ 4971158.782861796207726, 3911914.849187694489956 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971157.674633293412626, 3900884.565809039864689 ], [ 4971132.907689611427486, 3900884.155698949471116 ], [ 4971132.896200446411967, 3900890.345897865947336 ], [ 4971110.432550368830562, 3900890.304214157164097 ], [ 4971110.444034359417856, 3900884.114015226718038 ], [ 4971088.269049883820117, 3900883.708754982799292 ], [ 4971088.615790681913495, 3900852.030036035459489 ], [ 4971121.734646243974566, 3900852.455601802561432 ], [ 4971122.049669563770294, 3900837.890962658915669 ], [ 4971158.33582269679755, 3900838.686581573914737 ], [ 4971157.674633293412626, 3900884.565809039864689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971149.922482299618423, 3903508.478611745871603 ], [ 4971159.972940114326775, 3903523.79078534943983 ], [ 4971122.491915839724243, 3903548.117990586906672 ], [ 4971098.084962511435151, 3903510.203063674271107 ], [ 4971127.204140892252326, 3903491.686402870807797 ], [ 4971141.561285730451345, 3903513.925055347848684 ], [ 4971149.922482299618423, 3903508.478611745871603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971049.969884976744652, 3912533.309461758472025 ], [ 4971066.340029743500054, 3912554.095405823085457 ], [ 4971037.799007062800229, 3912576.618755192961544 ], [ 4971045.266085982322693, 3912586.100058622192591 ], [ 4971017.878618410788476, 3912607.533168069086969 ], [ 4970974.224156066775322, 3912552.468215504661202 ], [ 4970993.827671552076936, 3912537.210912478156388 ], [ 4971002.730758182704449, 3912548.515528877731413 ], [ 4970994.946789829060435, 3912554.691378802061081 ], [ 4971005.572371731512249, 3912568.548118376173079 ], [ 4971049.969884976744652, 3912533.309461758472025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971063.918673727661371, 3892576.044518142938614 ], [ 4971100.245016427710652, 3892561.18257010448724 ], [ 4971104.834115457721055, 3892572.114944000262767 ], [ 4971137.700765738263726, 3892558.703146330546588 ], [ 4971151.754739898256958, 3892592.229079563170671 ], [ 4971124.077693719416857, 3892603.465714218094945 ], [ 4971127.232434714213014, 3892611.118272002786398 ], [ 4971085.716581207700074, 3892628.155336528550833 ], [ 4971063.918673727661371, 3892576.044518142938614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969143.750873973593116, 3897308.420484411995858 ], [ 4969186.354564988985658, 3897322.697489766404033 ], [ 4969168.399752331897616, 3897376.920813778880984 ], [ 4969141.628887435421348, 3897367.769858014769852 ], [ 4969144.52479141857475, 3897359.035902918316424 ], [ 4969128.404652429744601, 3897353.545237961225212 ], [ 4969143.750873973593116, 3897308.420484411995858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968981.152166858315468, 3899175.389766830019653 ], [ 4968993.72581603191793, 3899231.124016665387899 ], [ 4968961.167386474087834, 3899238.348805900197476 ], [ 4968952.594846511259675, 3899200.099920609034598 ], [ 4968958.933731627650559, 3899198.654650813434273 ], [ 4968954.932562266476452, 3899181.169300347566605 ], [ 4968981.152166858315468, 3899175.389766830019653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970741.40651932451874, 3903760.79435046762228 ], [ 4970728.197013834491372, 3903740.742809086106718 ], [ 4970723.872846740297973, 3903743.283766482956707 ], [ 4970711.524534211494029, 3903724.690343887545168 ], [ 4970740.93184954021126, 3903705.809662155341357 ], [ 4970755.002575057558715, 3903727.319320708978921 ], [ 4970772.5885776784271, 3903716.4277861462906 ], [ 4970783.787676405161619, 3903733.56259360909462 ], [ 4970741.40651932451874, 3903760.79435046762228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970708.46481232624501, 3903666.059587651863694 ], [ 4970683.383658134378493, 3903681.30695002572611 ], [ 4970658.120343293994665, 3903639.021270919591188 ], [ 4970683.200852675363421, 3903624.138015324715525 ], [ 4970708.46481232624501, 3903666.059587651863694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970693.981709315441549, 3911379.078351170290262 ], [ 4970715.805849603377283, 3911408.977426544297487 ], [ 4970682.655107568949461, 3911432.949183360673487 ], [ 4970660.830280302092433, 3911403.414266177918762 ], [ 4970693.981709315441549, 3911379.078351170290262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970630.897800972685218, 3903409.204466158058494 ], [ 4970647.843768268823624, 3903433.268265820574015 ], [ 4970620.164029374718666, 3903452.152220433112234 ], [ 4970603.506017612293363, 3903428.088966803159565 ], [ 4970630.897800972685218, 3903409.204466158058494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970614.516490194015205, 3902293.841051283758134 ], [ 4970596.083065448328853, 3902295.263722070492804 ], [ 4970593.262762414291501, 3902262.850894092582166 ], [ 4970611.696209236979485, 3902261.428221400827169 ], [ 4970614.516490194015205, 3902293.841051283758134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970469.917309688404202, 3912685.540537716820836 ], [ 4970489.167833199724555, 3912705.60314243612811 ], [ 4970469.84725908190012, 3912723.774398890789598 ], [ 4970453.757290048524737, 3912706.994795453269035 ], [ 4970428.380832918919623, 3912730.981122459284961 ], [ 4970401.08594377245754, 3912702.164644268807024 ], [ 4970432.229787156917155, 3912672.726851598825306 ], [ 4970456.364117233082652, 3912698.260372560005635 ], [ 4970469.917309688404202, 3912685.540537716820836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968599.687633750028908, 3897779.368829614017159 ], [ 4968610.927174772135913, 3897775.747332513798028 ], [ 4968608.636416383087635, 3897768.096569216810167 ], [ 4968646.390041816979647, 3897755.782698498573154 ], [ 4968661.28598658926785, 3897802.053461639210582 ], [ 4968637.366131312213838, 3897809.658008297439665 ], [ 4968641.376702564768493, 3897822.045494802296162 ], [ 4968616.016087509691715, 3897830.011650210246444 ], [ 4968599.687633750028908, 3897779.368829614017159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970142.541048971936107, 3891511.09737349813804 ], [ 4970110.535921006463468, 3891525.604332353454083 ], [ 4970101.642000359483063, 3891505.196971037425101 ], [ 4970086.360341059044003, 3891512.087650913279504 ], [ 4970072.014389683492482, 3891479.654154531657696 ], [ 4970084.989308066666126, 3891473.85166218644008 ], [ 4970073.798512668348849, 3891449.070596264209598 ], [ 4970107.532954420894384, 3891434.202608165331185 ], [ 4970142.541048971936107, 3891511.09737349813804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970132.224708973430097, 3894649.505546941421926 ], [ 4970109.457191310822964, 3894655.290224448312074 ], [ 4970103.452218334190547, 3894630.882652830332518 ], [ 4970126.219755349680781, 3894625.097970318980515 ], [ 4970132.224708973430097, 3894649.505546941421926 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968482.556565168313682, 3901985.23206917848438 ], [ 4968427.192727563902736, 3902025.55334201734513 ], [ 4968406.507123401388526, 3901997.478967586066574 ], [ 4968461.870987581089139, 3901957.157652817200869 ], [ 4968482.556565168313682, 3901985.23206917848438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968208.97907579690218, 3913348.221257624216378 ], [ 4968214.398163317702711, 3913376.997264076955616 ], [ 4968194.817203667014837, 3913380.604372202884406 ], [ 4968197.953772644512355, 3913397.724120401777327 ], [ 4968178.084968869574368, 3913401.330737689975649 ], [ 4968174.661798138171434, 3913383.482224489562213 ], [ 4968166.311266764067113, 3913384.924172682221979 ], [ 4968161.178719573654234, 3913356.876942892093211 ], [ 4968208.97907579690218, 3913348.221257624216378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968200.556280782446265, 3900702.633982398081571 ], [ 4968170.291112998500466, 3900717.146348679903895 ], [ 4968152.501362750306726, 3900679.245726632885635 ], [ 4968182.765927638858557, 3900665.097470024134964 ], [ 4968200.556280782446265, 3900702.633982398081571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967962.468460206873715, 3904131.967717085033655 ], [ 4967993.884687123820186, 3904115.636439537163824 ], [ 4968004.791092082858086, 3904136.410893523599952 ], [ 4967973.08692220877856, 3904152.741657874081284 ], [ 4967962.468460206873715, 3904131.967717085033655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967942.473229645751417, 3892432.437262158375233 ], [ 4967934.955800765193999, 3892448.081741478759795 ], [ 4967953.95366123598069, 3892457.21795552643016 ], [ 4967942.388487226329744, 3892481.230361963156611 ], [ 4967905.831312912516296, 3892464.052845963742584 ], [ 4967903.229694396257401, 3892469.146133157424629 ], [ 4967885.670991166494787, 3892460.740708725526929 ], [ 4967890.875487560406327, 3892449.825876040849835 ], [ 4967882.239224685356021, 3892446.169607729651034 ], [ 4967898.720148815773427, 3892411.605972769670188 ], [ 4967942.473229645751417, 3892432.437262158375233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967922.986108439043164, 3897682.419145600870252 ], [ 4967886.391781790181994, 3897690.730614711064845 ], [ 4967879.817630984820426, 3897661.588823188561946 ], [ 4967916.411995227448642, 3897653.277345268055797 ], [ 4967922.986108439043164, 3897682.419145600870252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969601.898340995423496, 3912256.107748653739691 ], [ 4969626.091536247171462, 3912249.596907006576657 ], [ 4969636.959252843633294, 3912289.306988330557942 ], [ 4969612.766090674325824, 3912295.817820354830474 ], [ 4969601.898340995423496, 3912256.107748653739691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969542.627605261281133, 3904068.853158947080374 ], [ 4969514.08476035669446, 3904088.100837789475918 ], [ 4969484.789182176813483, 3904045.444880936294794 ], [ 4969513.332705206237733, 3904025.833041388075799 ], [ 4969542.627605261281133, 3904068.853158947080374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969455.762856405228376, 3897590.450576603412628 ], [ 4969418.849879913963377, 3897615.509361459873617 ], [ 4969399.888780367560685, 3897588.165650898590684 ], [ 4969436.802429370582104, 3897562.742711743805557 ], [ 4969455.762856405228376, 3897590.450576603412628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969419.318506517447531, 3897032.538414915557951 ], [ 4969446.471011491492391, 3896989.619779410306364 ], [ 4969494.80572862830013, 3897020.657513896003366 ], [ 4969472.853512864559889, 3897054.846316765062511 ], [ 4969446.959597980603576, 3897038.41403780458495 ], [ 4969441.759920766577125, 3897046.779698764905334 ], [ 4969419.318506517447531, 3897032.538414915557951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967405.644770621322095, 3901897.426134753506631 ], [ 4967413.684575044550002, 3901911.276911589782685 ], [ 4967392.640444920398295, 3901923.621217300649732 ], [ 4967366.508840126916766, 3901879.880675762426108 ], [ 4967405.426200307905674, 3901857.007248264271766 ], [ 4967423.229355373419821, 3901887.260679840575904 ], [ 4967405.644770621322095, 3901897.426134753506631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968992.300428560934961, 3897114.798162541352212 ], [ 4969039.275539397262037, 3897100.680578 ], [ 4969054.454030266962945, 3897149.865081813186407 ], [ 4969007.478350327350199, 3897164.346768831834197 ], [ 4968992.300428560934961, 3897114.798162541352212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966957.303150692023337, 3913207.327653408516198 ], [ 4966908.066728339530528, 3913214.1624577017501 ], [ 4966902.944592084735632, 3913179.196959382388741 ], [ 4966952.181696644052863, 3913171.99801364261657 ], [ 4966957.303150692023337, 3913207.327653408516198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966782.95885275490582, 3906352.237603987567127 ], [ 4966786.937518683262169, 3906383.195541785098612 ], [ 4966687.0031803753227, 3906395.04271862283349 ], [ 4966683.311722314916551, 3906364.449412905145437 ], [ 4966782.95885275490582, 3906352.237603987567127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968720.624136903323233, 3896658.062521426938474 ], [ 4968712.776952782645822, 3896697.738794087897986 ], [ 4968685.710147458128631, 3896692.593200931325555 ], [ 4968684.836387512274086, 3896698.053603496402502 ], [ 4968665.256703095510602, 3896694.01363312965259 ], [ 4968673.976934652775526, 3896649.241072354838252 ], [ 4968720.624136903323233, 3896658.062521426938474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966490.810727315954864, 3902353.582933641504496 ], [ 4966489.035038121975958, 3902381.982148326467723 ], [ 4966444.403722069226205, 3902378.629878696985543 ], [ 4966446.178751934319735, 3902350.594790915958583 ], [ 4966490.810727315954864, 3902353.582933641504496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968334.254107515327632, 3905266.885790369473398 ], [ 4968319.844557989388704, 3905273.779044672381133 ], [ 4968303.779374789446592, 3905239.52254803897813 ], [ 4968330.004416272975504, 3905227.188011202029884 ], [ 4968350.947468263097107, 3905271.284623368177563 ], [ 4968338.844057098031044, 3905276.72538377949968 ], [ 4968334.254107515327632, 3905266.885790369473398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966242.420534289442003, 3899519.138274806085974 ], [ 4966261.996691022068262, 3899524.268874614499509 ], [ 4966252.13911047577858, 3899563.214298630598933 ], [ 4966232.562980263493955, 3899558.083705880213529 ], [ 4966242.420534289442003, 3899519.138274806085974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966191.640579016879201, 3899228.477454226464033 ], [ 4966201.784988760948181, 3899190.260755706112832 ], [ 4966253.892305709421635, 3899204.184897305909544 ], [ 4966250.992660997435451, 3899215.83220622362569 ], [ 4966272.008494281210005, 3899221.329352612607181 ], [ 4966264.183955769054592, 3899250.082527220249176 ], [ 4966242.880739790387452, 3899244.220775617286563 ], [ 4966240.271555178798735, 3899254.412051661871374 ], [ 4966220.119780639186502, 3899248.916375613771379 ], [ 4966223.308030953630805, 3899236.905415943358094 ], [ 4966191.640579016879201, 3899228.477454226464033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967891.199694383889437, 3900563.361636759247631 ], [ 4967935.624913779087365, 3900521.199636251199991 ], [ 4967961.21066818293184, 3900547.825614656321704 ], [ 4967916.785452438518405, 3900589.987573551479727 ], [ 4967891.199694383889437, 3900563.361636759247631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967814.719207699410617, 3895668.230510046239942 ], [ 4967842.666511760093272, 3895664.63764173630625 ], [ 4967848.068795439787209, 3895705.429498153738678 ], [ 4967820.121533033438027, 3895709.022360939066857 ], [ 4967814.719207699410617, 3895668.230510046239942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967801.982257293537259, 3900194.706981619819999 ], [ 4967839.449153271503747, 3900179.47842652676627 ], [ 4967851.206773196347058, 3900208.629239975940436 ], [ 4967813.451908450573683, 3900223.857279984746128 ], [ 4967801.982257293537259, 3900194.706981619819999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967791.499554018490016, 3902422.804060211405158 ], [ 4967813.62094852514565, 3902453.429371661972255 ], [ 4967775.560472751036286, 3902480.673269325401634 ], [ 4967753.438427375629544, 3902450.412118469364941 ], [ 4967791.499554018490016, 3902422.804060211405158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967751.371914208866656, 3901647.5001803888008 ], [ 4967723.981627845205367, 3901665.659336633048952 ], [ 4967719.960510363802314, 3901659.462161720730364 ], [ 4967693.147490093484521, 3901676.894086232408881 ], [ 4967674.764749572612345, 3901648.82426235312596 ], [ 4967685.43286572676152, 3901641.560078904032707 ], [ 4967681.698465086519718, 3901636.091666588559747 ], [ 4967716.008012774400413, 3901613.574861494358629 ], [ 4967726.636482855305076, 3901629.250858868006617 ], [ 4967735.286187822930515, 3901623.439727554563433 ], [ 4967751.371914208866656, 3901647.5001803888008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965890.865976955741644, 3891822.678265810012817 ], [ 4965847.042064954526722, 3891842.996733003295958 ], [ 4965833.549421712756157, 3891814.208201174158603 ], [ 4965877.373370334506035, 3891793.889712329022586 ], [ 4965890.865976955741644, 3891822.678265810012817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965828.681806694716215, 3898570.618282907642424 ], [ 4965821.417292566038668, 3898609.204013047739863 ], [ 4965770.741461419500411, 3898599.652647838927805 ], [ 4965777.424435365013778, 3898564.343110664747655 ], [ 4965792.972711554728448, 3898567.281912469305098 ], [ 4965793.84220378100872, 3898564.006183662451804 ], [ 4965828.681806694716215, 3898570.618282907642424 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967671.539862215518951, 3902515.449953069444746 ], [ 4967694.318449864163995, 3902499.103419675026089 ], [ 4967689.722123464569449, 3902492.541121034882963 ], [ 4967709.329200922511518, 3902478.373905533459038 ], [ 4967739.208416533656418, 3902519.208233706653118 ], [ 4967696.534171869046986, 3902550.085572151932865 ], [ 4967671.539862215518951, 3902515.449953069444746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967679.07903852686286, 3895649.425294007640332 ], [ 4967679.902942231856287, 3895672.730997768696398 ], [ 4967657.433673926629126, 3895673.420456738211215 ], [ 4967656.609750768169761, 3895650.114753655623645 ], [ 4967679.07903852686286, 3895649.425294007640332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965546.860993016511202, 3899002.738809550646693 ], [ 4965552.684927631169558, 3898964.150622435845435 ], [ 4965550.093382396735251, 3898963.782220917288214 ], [ 4965555.042476273141801, 3898931.746934101451188 ], [ 4965591.034927592612803, 3898937.632367690559477 ], [ 4965579.974395330063999, 3899007.8912238990888 ], [ 4965546.860993016511202, 3899002.738809550646693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965531.315532527863979, 3904416.607742393855006 ], [ 4965563.885979720391333, 3904397.726607427466661 ], [ 4965584.274523250758648, 3904431.988574065733701 ], [ 4965551.415545486845076, 3904451.233340254519135 ], [ 4965531.315532527863979, 3904416.607742393855006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965370.658911988139153, 3902823.270059024915099 ], [ 4965388.257071288302541, 3902804.000019181519747 ], [ 4965404.359741119667888, 3902818.591706665232778 ], [ 4965386.76157977245748, 3902837.861736133228987 ], [ 4965370.658911988139153, 3902823.270059024915099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965238.533312116749585, 3906131.914203324820846 ], [ 4965218.071744010783732, 3906142.804663729388267 ], [ 4965196.827962326817214, 3906103.807827961165458 ], [ 4965217.578087006695569, 3906092.553692142479122 ], [ 4965238.533312116749585, 3906131.914203324820846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967195.19934743270278, 3896800.699628440663218 ], [ 4967219.397142563015223, 3896799.28448098897934 ], [ 4967221.08427791018039, 3896823.319921437650919 ], [ 4967196.885881910100579, 3896825.099195953924209 ], [ 4967195.19934743270278, 3896800.699628440663218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965175.638045876286924, 3901451.270101341884583 ], [ 4965166.941239082254469, 3901486.212425393983722 ], [ 4965122.608745741657913, 3901475.216101235244423 ], [ 4965131.593488006852567, 3901440.274233284872025 ], [ 4965175.638045876286924, 3901451.270101341884583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965182.361451377160847, 3894165.043890058062971 ], [ 4965176.843543278984725, 3894192.344549172092229 ], [ 4965086.132035584188998, 3894173.990028352476656 ], [ 4965091.649855241179466, 3894146.689350917935371 ], [ 4965182.361451377160847, 3894165.043890058062971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965144.380106182768941, 3891138.708324308972806 ], [ 4965081.301638435572386, 3891129.138078005984426 ], [ 4965086.541466706432402, 3891096.0109400334768 ], [ 4965108.143655760213733, 3891099.323325446341187 ], [ 4965112.221020938828588, 3891072.384478719439358 ], [ 4965141.312060317955911, 3891076.801494229119271 ], [ 4965136.944783124141395, 3891104.832248510792851 ], [ 4965149.329531823284924, 3891107.037237600423396 ], [ 4965144.380106182768941, 3891138.708324308972806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965025.953913322649896, 3904059.659436597954482 ], [ 4965035.099861334078014, 3904101.913551921024919 ], [ 4965016.951788563281298, 3904105.88943161489442 ], [ 4965018.667100481688976, 3904113.538979910779744 ], [ 4964992.7411292437464, 3904119.322864901740104 ], [ 4964981.591834958642721, 3904069.418749042320997 ], [ 4965025.953913322649896, 3904059.659436597954482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964958.488465616479516, 3907296.678820334840566 ], [ 4964945.813169848173857, 3907300.663655386772007 ], [ 4964946.386062696576118, 3907302.485246444586664 ], [ 4964930.830319963395596, 3907307.193668225780129 ], [ 4964920.806738549843431, 3907274.041374358348548 ], [ 4964949.037215612828732, 3907265.712238337378949 ], [ 4964958.488465616479516, 3907296.678820334840566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964961.118171361275017, 3901785.192253979388624 ], [ 4964987.607543065212667, 3901788.512526369653642 ], [ 4964988.482167649082839, 3901781.959597956389189 ], [ 4965013.820188457146287, 3901784.913891767617315 ], [ 4965007.987546661868691, 3901829.692465931177139 ], [ 4964969.117211638018489, 3901824.895507151260972 ], [ 4964968.534132593311369, 3901829.264126629568636 ], [ 4964955.577155873179436, 3901827.786529699806124 ], [ 4964961.118171361275017, 3901785.192253979388624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964930.664686387404799, 3902448.953058371320367 ], [ 4964884.879011287353933, 3902447.058025669772178 ], [ 4964886.979411145672202, 3902394.990732443053275 ], [ 4964932.765174824744463, 3902396.885768676176667 ], [ 4964930.664686387404799, 3902448.953058371320367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966587.81315993051976, 3892989.420389433391392 ], [ 4966602.70733071770519, 3893040.423542886506766 ], [ 4966642.770073441788554, 3893028.839035919401795 ], [ 4966656.231716885231435, 3893075.106127135455608 ], [ 4966623.950861221179366, 3893084.518974267411977 ], [ 4966622.519069040194154, 3893079.418754410464317 ], [ 4966565.451151369139552, 3893096.072425968945026 ], [ 4966538.526913413777947, 3893003.902469073887914 ], [ 4966587.81315993051976, 3892989.420389433391392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966448.274157035164535, 3899905.825836742296815 ], [ 4966442.748774566687644, 3899937.495879898779094 ], [ 4966410.213305121287704, 3899931.979238387197256 ], [ 4966415.450644230470061, 3899900.308704652823508 ], [ 4966448.274157035164535, 3899905.825836742296815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966421.984697659499943, 3897040.442944237031043 ], [ 4966462.606456428766251, 3897035.413424729369581 ], [ 4966466.586907397955656, 3897066.371141130104661 ], [ 4966425.96519463788718, 3897071.400654713157564 ], [ 4966421.984697659499943, 3897040.442944237031043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964560.560388641431928, 3892469.743545846547931 ], [ 4964609.232198053970933, 3892478.925215136725456 ], [ 4964601.677970759570599, 3892518.603054918348789 ], [ 4964553.2943159872666, 3892509.42186311725527 ], [ 4964560.560388641431928, 3892469.743545846547931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964449.811346185393631, 3892008.942699675448239 ], [ 4964492.445838936604559, 3892010.83188265003264 ], [ 4964491.243695706129074, 3892041.780875084921718 ], [ 4964448.608666879124939, 3892040.255821584258229 ], [ 4964449.811346185393631, 3892008.942699675448239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964391.335380799137056, 3906718.613322514574975 ], [ 4964419.584996060468256, 3906698.631447599735111 ], [ 4964436.247670992277563, 3906721.962653995491564 ], [ 4964419.817353259772062, 3906733.22433606069535 ], [ 4964426.137834802269936, 3906741.973653115332127 ], [ 4964403.365412111394107, 3906757.958868116140366 ], [ 4964388.713584584183991, 3906737.543963763862848 ], [ 4964399.379379716701806, 3906729.914322584401816 ], [ 4964391.335380799137056, 3906718.613322514574975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966123.990571961738169, 3906451.993532488122582 ], [ 4966135.124577327631414, 3906509.18080916441977 ], [ 4966125.331736389547586, 3906510.985111442394555 ], [ 4966129.613666879944503, 3906533.204298529773951 ], [ 4966115.499985696747899, 3906536.093783220741898 ], [ 4966118.352582771331072, 3906552.120342765003443 ], [ 4966089.549376187846065, 3906557.898370500188321 ], [ 4966086.123930595815182, 3906540.050199443940073 ], [ 4966052.425217441283166, 3906546.184230494312942 ], [ 4966045.003254984505475, 3906507.573893001303077 ], [ 4966100.303854405879974, 3906497.470451239962131 ], [ 4966092.883162379264832, 3906458.131840273272246 ], [ 4966123.990571961738169, 3906451.993532488122582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964333.401446860283613, 3901546.765477975830436 ], [ 4964317.515399579890072, 3901575.870463654398918 ], [ 4964285.575534516945481, 3901559.069292262196541 ], [ 4964301.462140344083309, 3901529.600158349145204 ], [ 4964333.401446860283613, 3901546.765477975830436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964264.208441031165421, 3897634.804323219228536 ], [ 4964267.99595991987735, 3897607.864784259349108 ], [ 4964261.949063500389457, 3897606.7627182751894 ], [ 4964264.571057794615626, 3897588.19629793940112 ], [ 4964272.058695532381535, 3897588.93654071027413 ], [ 4964274.388004714623094, 3897573.282690838910639 ], [ 4964304.624850050546229, 3897577.336533075664192 ], [ 4964302.293773947283626, 3897594.082766751293093 ], [ 4964315.828306189738214, 3897595.925096760038286 ], [ 4964312.331684999167919, 3897621.044446219690144 ], [ 4964297.357595496810973, 3897618.835682705976069 ], [ 4964294.444635533727705, 3897639.222282949835062 ], [ 4964264.208441031165421, 3897634.804323219228536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964144.392698238603771, 3901962.664460306987166 ], [ 4964123.596854787319899, 3902000.864998415578157 ], [ 4964073.818045473657548, 3901974.204093046952039 ], [ 4964086.815046530216932, 3901950.556312138214707 ], [ 4964105.806323020718992, 3901960.418117659166455 ], [ 4964113.604541793465614, 3901946.229457714129239 ], [ 4964144.392698238603771, 3901962.664460306987166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964128.161821642890573, 3894805.665429789572954 ], [ 4964173.671344629488885, 3894808.286961452104151 ], [ 4964171.890655395574868, 3894841.05573987821117 ], [ 4964135.309897212311625, 3894839.176711957436055 ], [ 4964136.199638152495027, 3894823.156449661124498 ], [ 4964127.270923374220729, 3894822.413948600646108 ], [ 4964128.161821642890573, 3894805.665429789572954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965973.898871046490967, 3899230.29903768748045 ], [ 4965987.491861928254366, 3899196.457558640278876 ], [ 4966012.820690894499421, 3899206.331242783926427 ], [ 4965999.227673054672778, 3899240.172709211707115 ], [ 4965973.898871046490967, 3899230.29903768748045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965946.475914061069489, 3900133.296359404921532 ], [ 4965942.125585176981986, 3900151.495641015470028 ], [ 4965913.048735456541181, 3900144.528830464929342 ], [ 4965917.111042054370046, 3900126.329065571073443 ], [ 4965946.475914061069489, 3900133.296359404921532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965878.800185678526759, 3902904.946163828950375 ], [ 4965914.789664181880653, 3902909.375525194685906 ], [ 4965910.701752968132496, 3902943.232907753903419 ], [ 4965929.704372673295438, 3902945.449279498774558 ], [ 4965926.785290226340294, 3902969.112937340978533 ], [ 4965871.79328444506973, 3902962.467215470038354 ], [ 4965878.800185678526759, 3902904.946163828950375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963882.845571755431592, 3904176.892519678920507 ], [ 4963837.897220276296139, 3904193.571281882934272 ], [ 4963826.715236795134842, 3904162.966545643750578 ], [ 4963871.663054908625782, 3904146.651895292568952 ], [ 4963882.845571755431592, 3904176.892519678920507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965632.06193136703223, 3898859.776252985466272 ], [ 4965626.25108664482832, 3898890.35358148580417 ], [ 4965589.684347655624151, 3898883.374763500411063 ], [ 4965595.494551487267017, 3898853.161556267179549 ], [ 4965632.06193136703223, 3898859.776252985466272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965604.468288697302341, 3897429.428552883211523 ], [ 4965592.552028654143214, 3897494.223983808420599 ], [ 4965552.23956482578069, 3897486.874916972126812 ], [ 4965564.155730862170458, 3897422.079468455631286 ], [ 4965604.468288697302341, 3897429.428552883211523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965572.698945698328316, 3899053.395483881700784 ], [ 4965574.743875470943749, 3899035.920612746849656 ], [ 4965609.011095773428679, 3899039.982575620524585 ], [ 4965604.92179577704519, 3899074.568184018600732 ], [ 4965557.696344351395965, 3899069.02834148099646 ], [ 4965559.741263219155371, 3899051.553469030652195 ], [ 4965572.698945698328316, 3899053.395483881700784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965430.087047437205911, 3891368.213053781539202 ], [ 4965392.03306164033711, 3891383.443942063488066 ], [ 4965371.374903100542724, 3891331.703797189518809 ], [ 4965409.140852176584303, 3891316.472406926099211 ], [ 4965430.087047437205911, 3891368.213053781539202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963802.939544972032309, 3892986.324684710241854 ], [ 4963766.898997844196856, 3893005.566485564690083 ], [ 4963749.089843616820872, 3892972.766740851569921 ], [ 4963785.418502415530384, 3892953.525372280273587 ], [ 4963802.939544972032309, 3892986.324684710241854 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965349.670721805654466, 3893498.233606226742268 ], [ 4965326.033072533085942, 3893507.662192234769464 ], [ 4965306.521572733297944, 3893460.293457114137709 ], [ 4965330.447929011657834, 3893450.501198674086481 ], [ 4965349.670721805654466, 3893498.233606226742268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965182.790654911659658, 3901656.287326014600694 ], [ 4965225.685868008993566, 3901665.460746153257787 ], [ 4965217.272285705432296, 3901703.316567015368491 ], [ 4965174.665117119438946, 3901694.143630773294717 ], [ 4965182.790654911659658, 3901656.287326014600694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963285.6065738722682, 3894053.136548275593668 ], [ 4963315.557180214673281, 3894058.645331376232207 ], [ 4963318.173160860314965, 3894043.720138103235513 ], [ 4963334.012959064915776, 3894046.29383243387565 ], [ 4963331.107191218994558, 3894062.310957432258874 ], [ 4963342.91458623483777, 3894064.514216326642781 ], [ 4963328.961900082416832, 3894144.600743804126978 ], [ 4963300.73866028059274, 3894139.822905180044472 ], [ 4963306.843341847881675, 3894104.511945691425353 ], [ 4963277.467782919295132, 3894099.73232898581773 ], [ 4963285.6065738722682, 3894053.136548275593668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965040.084978740662336, 3904223.541489877272397 ], [ 4965049.800238179974258, 3904269.801985531579703 ], [ 4964998.526291443035007, 3904280.278268431313336 ], [ 4964989.098907295614481, 3904234.018259702716023 ], [ 4965040.084978740662336, 3904223.541489877272397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964848.634063537232578, 3893010.576160361990333 ], [ 4964863.41829252615571, 3892953.796055195853114 ], [ 4964885.015469307079911, 3892959.293031590990722 ], [ 4964884.726206799037755, 3892960.020819597877562 ], [ 4964928.495510438457131, 3892971.744015699718148 ], [ 4964920.959284279495478, 3893000.133815445471555 ], [ 4964890.435801450163126, 3892992.07341730222106 ], [ 4964883.188882937654853, 3893019.73544002044946 ], [ 4964848.634063537232578, 3893010.576160361990333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964766.485248818993568, 3894462.589155319146812 ], [ 4964776.940465847961605, 3894410.171497288625687 ], [ 4964809.769840073771775, 3894416.41486676922068 ], [ 4964799.313971519470215, 3894469.196640336886048 ], [ 4964766.485248818993568, 3894462.589155319146812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964662.739266488701105, 3898769.345439438708127 ], [ 4964697.851004811935127, 3898785.788023084867746 ], [ 4964675.887505330145359, 3898831.632908725179732 ], [ 4964640.7758135991171, 3898815.190353328827769 ], [ 4964662.739266488701105, 3898769.345439438708127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964627.853454275988042, 3904322.644857177045196 ], [ 4964670.489585882052779, 3904311.425646504387259 ], [ 4964678.217986635863781, 3904340.204500695690513 ], [ 4964635.581897400319576, 3904351.423699297010899 ], [ 4964627.853454275988042, 3904322.644857177045196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964632.774334762245417, 3901095.725182933267206 ], [ 4964613.982504675164819, 3901140.482907808851451 ], [ 4964583.475812993943691, 3901127.689135298598558 ], [ 4964602.267601114697754, 3901082.931389435194433 ], [ 4964632.774334762245417, 3901095.725182933267206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964499.557662856765091, 3900660.374592722393572 ], [ 4964536.165660915896297, 3900640.406355368439108 ], [ 4964552.534037144854665, 3900669.92728498019278 ], [ 4964515.925480848178267, 3900690.259629847481847 ], [ 4964499.557662856765091, 3900660.374592722393572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964471.495736458338797, 3901096.921855583786964 ], [ 4964452.199600024148822, 3901097.254961302503943 ], [ 4964452.184381563216448, 3901106.722329707350582 ], [ 4964427.70437497831881, 3901107.047120610717684 ], [ 4964426.630789280869067, 3901058.251910147257149 ], [ 4964470.695584243163466, 3901057.230345391202718 ], [ 4964471.495736458338797, 3901096.921855583786964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964272.900521449744701, 3906597.531700267922133 ], [ 4964283.285985684022307, 3906585.167852598242462 ], [ 4964262.294162938371301, 3906568.020052158273757 ], [ 4964285.085323920473456, 3906540.382535041775554 ], [ 4964303.489241308532655, 3906555.341416161507368 ], [ 4964309.836060971021652, 3906547.704820460639894 ], [ 4964337.729543901979923, 3906570.325699538458139 ], [ 4964327.920501664280891, 3906582.326318490318954 ], [ 4964334.822172312997282, 3906587.79935952462256 ], [ 4964305.395094808191061, 3906623.801230960525572 ], [ 4964272.900521449744701, 3906597.531700267922133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962417.512092666700482, 3893580.974531360436231 ], [ 4962455.504910470917821, 3893602.516338732559234 ], [ 4962432.974925528280437, 3893641.807729802560061 ], [ 4962395.26966146286577, 3893620.630522654857486 ], [ 4962417.512092666700482, 3893580.974531360436231 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962382.653488148935139, 3897158.8547847061418 ], [ 4962381.430583325214684, 3897205.097372454125434 ], [ 4962371.349915255792439, 3897204.717819361016154 ], [ 4962371.044611785560846, 3897216.005370054394007 ], [ 4962381.125832809135318, 3897216.020794278942049 ], [ 4962380.507974843494594, 3897243.329569532070309 ], [ 4962324.919523866847157, 3897241.788049238268286 ], [ 4962325.227589841000736, 3897228.679854063782841 ], [ 4962309.674269512295723, 3897228.291961855255067 ], [ 4962310.277037769556046, 3897210.814661544281989 ], [ 4962325.542333261109889, 3897211.202113947365433 ], [ 4962326.460412983782589, 3897175.882945677265525 ], [ 4962316.667768535204232, 3897175.503853263799101 ], [ 4962316.984175848774612, 3897156.933727363590151 ], [ 4962382.653488148935139, 3897158.8547847061418 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962314.333780028857291, 3896629.305981865152717 ], [ 4962286.087956726551056, 3896640.914989865850657 ], [ 4962291.54127810895443, 3896653.66784740332514 ], [ 4962256.95525997877121, 3896667.451983469072729 ], [ 4962252.93768603540957, 3896657.614358751568943 ], [ 4962240.544154872186482, 3896662.693269496317953 ], [ 4962223.61191094852984, 3896621.884952819440514 ], [ 4962250.127812687307596, 3896611.36562905786559 ], [ 4962243.527294773608446, 3896595.333865530788898 ], [ 4962279.266676994971931, 3896580.823214139323682 ], [ 4962287.588755474425852, 3896601.227168177254498 ], [ 4962300.558406919240952, 3896596.149159069173038 ], [ 4962314.333780028857291, 3896629.305981865152717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964176.213036908768117, 3901152.524705320131034 ], [ 4964128.38823881931603, 3901163.73640767019242 ], [ 4964117.515957966446877, 3901118.931012919638306 ], [ 4964165.341412601061165, 3901107.355161973275244 ], [ 4964176.213036908768117, 3901152.524705320131034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962009.832402031868696, 3899125.680170269217342 ], [ 4961993.661092227324843, 3899153.693662877194583 ], [ 4961968.62537731975317, 3899139.454652812331915 ], [ 4961984.508654949255288, 3899111.440708879381418 ], [ 4962009.832402031868696, 3899125.680170269217342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963907.33321054186672, 3901267.161835987586528 ], [ 4963894.589363691397011, 3901312.657927521970123 ], [ 4963858.030671977438033, 3901302.4042888446711 ], [ 4963870.486470135860145, 3901256.907723557204008 ], [ 4963907.33321054186672, 3901267.161835987586528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961714.76348511595279, 3897689.106193560175598 ], [ 4961677.906621860340238, 3897681.768139927648008 ], [ 4961683.710491641424596, 3897653.010624367743731 ], [ 4961709.049476308748126, 3897658.146568411029875 ], [ 4961709.338602640666068, 3897657.418744231574237 ], [ 4961748.499182789586484, 3897665.124441361054778 ], [ 4961740.082683482207358, 3897707.350806368514895 ], [ 4961712.152032157406211, 3897701.846801728010178 ], [ 4961714.76348511595279, 3897689.106193560175598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961562.599515224806964, 3908879.348990427330136 ], [ 4961525.460774768143892, 3908878.200897266156971 ], [ 4961526.06716169975698, 3908857.81040514074266 ], [ 4961513.11175118945539, 3908857.426855654455721 ], [ 4961514.916699839755893, 3908805.72279461286962 ], [ 4961575.087302532047033, 3908807.633694663643837 ], [ 4961573.889208298176527, 3908838.583129572682083 ], [ 4961563.812892636284232, 3908838.203876764047891 ], [ 4961562.599515224806964, 3908879.348990427330136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963377.766535480506718, 3901234.647170501295477 ], [ 4963361.599054616875947, 3901260.110968189314008 ], [ 4963325.924016566947103, 3901237.114871116355062 ], [ 4963342.090907076373696, 3901212.01518191350624 ], [ 4963377.766535480506718, 3901234.647170501295477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963353.250047625973821, 3899971.440524150151759 ], [ 4963371.952705398201942, 3899982.757865558378398 ], [ 4963360.691404887475073, 3900001.310860832221806 ], [ 4963341.988755321130157, 3899989.993527132086456 ], [ 4963353.250047625973821, 3899971.440524150151759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963292.652283989824355, 3904095.853830817621201 ], [ 4963328.979293892160058, 3904067.872591898776591 ], [ 4963348.808133628219366, 3904093.756958237383515 ], [ 4963355.439228354953229, 3904088.669511396437883 ], [ 4963364.060375521890819, 3904099.971085739787668 ], [ 4963321.390823341906071, 3904132.676052172668278 ], [ 4963292.652283989824355, 3904095.853830817621201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963294.060613027773798, 3894357.561594785191119 ], [ 4963297.563531647436321, 3894328.072623870801181 ], [ 4963308.22025840356946, 3894329.18168127303943 ], [ 4963312.017529338598251, 3894295.68775423290208 ], [ 4963360.116025512106717, 3894301.224989322479814 ], [ 4963354.861827527172863, 3894345.276369082741439 ], [ 4963365.517974680289626, 3894346.749577336013317 ], [ 4963363.471852913498878, 3894365.681080509908497 ], [ 4963294.060613027773798, 3894357.561594785191119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963232.617840730585158, 3894042.858134333044291 ], [ 4963218.091609968803823, 3894121.487306320574135 ], [ 4963191.884803040884435, 3894116.71273012412712 ], [ 4963198.274574292823672, 3894083.222836215980351 ], [ 4963167.460333742201328, 3894077.348708102945238 ], [ 4963176.173942890018225, 3894031.48204932641238 ], [ 4963203.820612250827253, 3894036.622985797002912 ], [ 4963206.725738663226366, 3894020.969975332729518 ], [ 4963224.580907431431115, 3894024.275008477736264 ], [ 4963221.674065464176238, 3894041.020401216112077 ], [ 4963232.617840730585158, 3894042.858134333044291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961106.611322390846908, 3892718.562931750435382 ], [ 4961118.676252316683531, 3892741.8850526669994 ], [ 4961132.225868434645236, 3892735.350834558252245 ], [ 4961141.130504156462848, 3892752.842219758778811 ], [ 4961127.868437202647328, 3892759.740988592617214 ], [ 4961133.613343965262175, 3892771.037498173769563 ], [ 4961116.027351478114724, 3892779.750501737464219 ], [ 4961123.495892211794853, 3892794.326722979079932 ], [ 4961100.14395681489259, 3892805.944214966613799 ], [ 4961093.536955314688385, 3892793.189920111559331 ], [ 4961070.761196223087609, 3892804.80829150788486 ], [ 4961058.409788278862834, 3892780.393381179776043 ], [ 4961073.11277901660651, 3892773.132583774160594 ], [ 4961057.88915768545121, 3892742.887361808214337 ], [ 4961106.611322390846908, 3892718.562931750435382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962831.106174096465111, 3899591.93227364635095 ], [ 4962845.552290963940322, 3899562.46008617291227 ], [ 4962869.43905643094331, 3899574.149227908346802 ], [ 4962854.992919590324163, 3899603.62140275305137 ], [ 4962831.106174096465111, 3899591.93227364635095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960684.860829319804907, 3907633.807312100194395 ], [ 4960694.308307672850788, 3907670.598498424049467 ], [ 4960677.602370031177998, 3907674.943561815656722 ], [ 4960676.458159018307924, 3907669.844036574941128 ], [ 4960630.084966127760708, 3907681.792383458465338 ], [ 4960618.633679322898388, 3907636.987382464576513 ], [ 4960647.72460266854614, 3907629.747384367045015 ], [ 4960647.724068755283952, 3907630.11151545541361 ], [ 4960672.494554130360484, 3907623.957605228293687 ], [ 4960675.643545182421803, 3907636.342709044925869 ], [ 4960684.860829319804907, 3907633.807312100194395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962043.652860288508236, 3899234.606357044074684 ], [ 4962059.242618058808148, 3899210.233310482930392 ], [ 4962109.884284433908761, 3899242.353691716212779 ], [ 4962094.006486329250038, 3899266.726271702907979 ], [ 4962043.652860288508236, 3899234.606357044074684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961999.584421383216977, 3892585.538151139393449 ], [ 4962002.422213734127581, 3892613.944484209641814 ], [ 4962010.202143335714936, 3892612.86389258177951 ], [ 4962014.178454192355275, 3892650.375169045291841 ], [ 4961976.72149112727493, 3892654.323814937844872 ], [ 4961975.300929556600749, 3892641.213032671250403 ], [ 4961966.080590090714395, 3892642.291452883277088 ], [ 4961963.525883748196065, 3892617.162709440104663 ], [ 4961954.306087826378644, 3892617.877005900721997 ], [ 4961951.466591266915202, 3892590.563061149790883 ], [ 4961999.584421383216977, 3892585.538151139393449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961923.793884149752557, 3892982.323606261052191 ], [ 4961926.085303818807006, 3892991.06616170052439 ], [ 4961897.265726487152278, 3892998.66927517671138 ], [ 4961881.79855583794415, 3892939.657046933658421 ], [ 4961923.874866498634219, 3892928.796812191605568 ], [ 4961926.739697524346411, 3892939.360878348350525 ], [ 4961944.607867102138698, 3892934.654246664140373 ], [ 4961954.918680530972779, 3892974.359882779885083 ], [ 4961923.793884149752557, 3892982.323606261052191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961650.582775421440601, 3892288.974898525048047 ], [ 4961659.223216689191759, 3892290.444398310501128 ], [ 4961663.579015446826816, 3892267.510847910773009 ], [ 4961706.203971829265356, 3892275.585783815477043 ], [ 4961697.492311527952552, 3892321.45287201879546 ], [ 4961646.226991175673902, 3892311.908451313152909 ], [ 4961650.582775421440601, 3892288.974898525048047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959947.567330913618207, 3906379.02985431579873 ], [ 4959973.691382098942995, 3906433.323094558436424 ], [ 4959950.064887456595898, 3906444.213004027493298 ], [ 4959943.749171994626522, 3906431.095171564258635 ], [ 4959908.884800598025322, 3906447.795042402110994 ], [ 4959891.373070743866265, 3906411.356695665977895 ], [ 4959902.321985141374171, 3906406.274600894656032 ], [ 4959896.58053938858211, 3906394.250000666361302 ], [ 4959915.308989292941988, 3906385.537785469554365 ], [ 4959918.753748667426407, 3906392.825373969972134 ], [ 4959947.567330913618207, 3906379.02985431579873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959666.424089398235083, 3893363.158897108398378 ], [ 4959648.560766256414354, 3893364.954020267352462 ], [ 4959649.127556783147156, 3893371.509146915283054 ], [ 4959608.791190078482032, 3893375.45697907730937 ], [ 4959606.240067134611309, 3893346.323041142430156 ], [ 4959664.439294858835638, 3893340.944208761211485 ], [ 4959666.424089398235083, 3893363.158897108398378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959636.009653044864535, 3898925.919107219204307 ], [ 4959634.225392878986895, 3898965.242591179441661 ], [ 4959603.121727829799056, 3898963.74167079012841 ], [ 4959602.820722122676671, 3898972.844489561393857 ], [ 4959579.780995056033134, 3898971.719233877491206 ], [ 4959581.867212669923902, 3898922.564668995328248 ], [ 4959605.771031562238932, 3898923.691159436944872 ], [ 4959606.362653598189354, 3898912.768106090836227 ], [ 4959624.794163047336042, 3898913.88680477347225 ], [ 4959624.201493798755109, 3898925.538116074167192 ], [ 4959636.009653044864535, 3898925.919107219204307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959508.433863973245025, 3898914.813315204810351 ], [ 4959529.743986933492124, 3898917.028436026535928 ], [ 4959530.912648975849152, 3898905.377943099476397 ], [ 4959549.34260998852551, 3898907.588977565057576 ], [ 4959548.17445888929069, 3898918.875340522266924 ], [ 4959561.709164830856025, 3898920.35114895273 ], [ 4959557.910975511185825, 3898958.215247435495257 ], [ 4959546.103867026977241, 3898957.1060322211124 ], [ 4959544.937275773845613, 3898967.30000808602199 ], [ 4959503.181157074868679, 3898962.87098882207647 ], [ 4959508.433863973245025, 3898914.813315204810351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961179.752549563534558, 3897782.251563330180943 ], [ 4961183.525595704093575, 3897762.958294312469661 ], [ 4961206.273393345996737, 3897767.361655830871314 ], [ 4961202.500331481918693, 3897786.654921721667051 ], [ 4961179.752549563534558, 3897782.251563330180943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961129.739837557077408, 3905086.999306067358702 ], [ 4961183.909171778708696, 3905063.775347812566906 ], [ 4961199.693413970060647, 3905099.483677172102034 ], [ 4961145.523597337305546, 3905123.071734627243131 ], [ 4961129.739837557077408, 3905086.999306067358702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959306.771659089252353, 3898950.211757337674499 ], [ 4959307.363674635067582, 3898938.924568043090403 ], [ 4959279.715643494389951, 3898937.793045048601925 ], [ 4959281.499901901930571, 3898898.105409001931548 ], [ 4959297.339798404835165, 3898898.856086279265583 ], [ 4959297.642763188108802, 3898888.296747769229114 ], [ 4959317.802919414825737, 3898889.053553011734039 ], [ 4959317.209867027588189, 3898901.069000103976578 ], [ 4959336.505962679162621, 3898901.824595651589334 ], [ 4959334.707692647352815, 3898951.34371626842767 ], [ 4959306.771659089252353, 3898950.211757337674499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959145.139981173910201, 3907769.96176623692736 ], [ 4959122.088274222798645, 3907782.673880602698773 ], [ 4959092.794114372693002, 3907730.197618105914444 ], [ 4959146.678195943124592, 3907700.050618355628103 ], [ 4959171.377865759655833, 3907743.781289257574826 ], [ 4959154.37710773665458, 3907753.224729514215142 ], [ 4959150.930262142792344, 3907747.393757457844913 ], [ 4959136.81078671105206, 3907755.384745760355145 ], [ 4959145.139981173910201, 3907769.96176623692736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960942.304311474785209, 3900003.45664685824886 ], [ 4960924.128282674588263, 3900024.913491385988891 ], [ 4960897.951538777910173, 3900003.391182899940759 ], [ 4960916.127561162225902, 3899981.934320962522179 ], [ 4960942.304311474785209, 3900003.45664685824886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960869.913786975666881, 3898508.960242 ], [ 4960894.760397247970104, 3898456.926309559028596 ], [ 4960926.996239750646055, 3898472.26732888026163 ], [ 4960902.149581125937402, 3898524.301232006400824 ], [ 4960869.913786975666881, 3898508.960242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960839.393194040283561, 3900066.663516498636454 ], [ 4960824.94633100181818, 3900098.321567580569535 ], [ 4960798.467108602635562, 3900086.63042499544099 ], [ 4960813.202487138099968, 3900054.608654426876456 ], [ 4960839.393194040283561, 3900066.663516498636454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959079.839531901292503, 3892587.097216608002782 ], [ 4959047.00660300347954, 3892580.860851290635765 ], [ 4959044.975677886046469, 3892591.05359548330307 ], [ 4959029.999380285851657, 3892588.119517156854272 ], [ 4959041.315547254867852, 3892530.603111839387566 ], [ 4959089.124860272742808, 3892539.773572865407914 ], [ 4959079.839531901292503, 3892587.097216608002782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960688.335850685834885, 3893096.27575061423704 ], [ 4960668.734196710400283, 3893104.621962354518473 ], [ 4960674.188473412767053, 3893117.738593188114464 ], [ 4960649.686299483291805, 3893128.262405110523105 ], [ 4960641.07274938095361, 3893108.586833482142538 ], [ 4960622.623967615887523, 3893116.570639417506754 ], [ 4960607.694511542096734, 3893081.956553367897868 ], [ 4960614.036518920212984, 3893079.052809229586273 ], [ 4960606.571513157337904, 3893061.927831784356385 ], [ 4960655.864046737551689, 3893040.88057482521981 ], [ 4960662.754469592124224, 3893056.912337376736104 ], [ 4960659.007301603443921, 3893058.363358907401562 ], [ 4960665.897718069143593, 3893074.395122420974076 ], [ 4960676.851672361604869, 3893069.677511855959892 ], [ 4960688.335850685834885, 3893096.27575061423704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958716.066399357281625, 3900384.054330931510776 ], [ 4958786.335068468935788, 3900386.701288752723485 ], [ 4958785.146450503729284, 3900412.91700514825061 ], [ 4958762.971926708705723, 3900411.793655332177877 ], [ 4958762.670712144114077, 3900421.260620925575495 ], [ 4958714.865160325542092, 3900419.373288457281888 ], [ 4958716.066399357281625, 3900384.054330931510776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960450.679572076536715, 3898028.058346129953861 ], [ 4960481.206095937639475, 3898031.015921603888273 ], [ 4960476.532315235584974, 3898075.797059586737305 ], [ 4960446.006372725591063, 3898072.475360369775444 ], [ 4960450.679572076536715, 3898028.058346129953861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958457.551492445170879, 3898639.876500267535448 ], [ 4958472.870489335618913, 3898600.935818278230727 ], [ 4958503.672484334558249, 3898612.630646926816553 ], [ 4958488.352944939397275, 3898651.935440769884735 ], [ 4958457.551492445170879, 3898639.876500267535448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958429.853915836662054, 3905543.754238954279572 ], [ 4958450.890583572909236, 3905531.767019067890942 ], [ 4958464.392769473604858, 3905554.361859021708369 ], [ 4958443.068167954683304, 3905566.348669949918985 ], [ 4958429.853915836662054, 3905543.754238954279572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958189.964492548257113, 3906194.126252366695553 ], [ 4958157.680850601755083, 3906219.206964295357466 ], [ 4958120.315308379009366, 3906170.726178841665387 ], [ 4958152.598473434336483, 3906146.009553574025631 ], [ 4958189.964492548257113, 3906194.126252366695553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959894.573802874423563, 3893568.490375519730151 ], [ 4959942.108104467391968, 3893567.102232141420245 ], [ 4959943.470908955670893, 3893620.995253201574087 ], [ 4959895.937226019799709, 3893622.019266173243523 ], [ 4959894.573802874423563, 3893568.490375519730151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959785.135402576997876, 3893748.577034460380673 ], [ 4959799.514463921077549, 3893765.711703770793974 ], [ 4959779.614021308720112, 3893782.068971500732005 ], [ 4959765.809534749947488, 3893766.027522306889296 ], [ 4959760.041316718794405, 3893770.752933374606073 ], [ 4959736.171495909802616, 3893742.680832212790847 ], [ 4959770.781888811849058, 3893713.6000981987454 ], [ 4959794.076599344611168, 3893740.943147430662066 ], [ 4959785.135402576997876, 3893748.577034460380673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959708.475034479983151, 3901622.771092030219734 ], [ 4959680.828218603506684, 3901622.731543977279216 ], [ 4959680.85893936548382, 3901601.247887784615159 ], [ 4959693.818394673056901, 3901601.266422410029918 ], [ 4959693.84600059594959, 3901581.967545063700527 ], [ 4959708.53339381236583, 3901581.988558542449027 ], [ 4959708.475034479983151, 3901622.771092030219734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959492.607962700538337, 3906594.308532368857414 ], [ 4959506.684086852706969, 3906617.268861202057451 ], [ 4959478.730126277543604, 3906634.343262513633817 ], [ 4959464.653469389304519, 3906611.74707896867767 ], [ 4959492.607962700538337, 3906594.308532368857414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957560.325816835276783, 3898884.801232784520835 ], [ 4957556.465517032891512, 3898970.730670836754143 ], [ 4957516.433737971819937, 3898968.855976986698806 ], [ 4957518.809603603556752, 3898915.696219332516193 ], [ 4957526.585562322288752, 3898916.070843045599759 ], [ 4957528.069878218695521, 3898883.301157420035452 ], [ 4957560.325816835276783, 3898884.801232784520835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959317.812445960007608, 3899085.683728663716465 ], [ 4959332.499655628576875, 3899086.796924301423132 ], [ 4959332.795409357175231, 3899081.335394078399986 ], [ 4959353.530933399684727, 3899082.457171593327075 ], [ 4959353.826175240799785, 3899077.359770833514631 ], [ 4959379.456922166980803, 3899079.216768449638039 ], [ 4959376.224193647503853, 3899124.72842714143917 ], [ 4959352.033045987598598, 3899123.237603199668229 ], [ 4959351.149904141202569, 3899136.709159849677235 ], [ 4959330.990966396406293, 3899135.224071017466486 ], [ 4959332.163660402409732, 3899120.660534100607038 ], [ 4959315.46036781091243, 3899119.544483277015388 ], [ 4959317.812445960007608, 3899085.683728663716465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959270.606440950185061, 3901101.441533819306642 ], [ 4959303.432000353932381, 3901105.493425462394953 ], [ 4959300.229534910991788, 3901129.885627762880176 ], [ 4959308.580299089662731, 3901130.625712639652193 ], [ 4959306.539599217474461, 3901148.101082094945014 ], [ 4959298.189355911687016, 3901146.996868177317083 ], [ 4959294.403698810376227, 3901176.486071854829788 ], [ 4959272.520393993705511, 3901173.54206042131409 ], [ 4959273.39570499304682, 3901165.532429850660264 ], [ 4959262.741525143384933, 3901164.424967474769801 ], [ 4959270.606440950185061, 3901101.441533819306642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957359.725121663883328, 3900489.980360236484557 ], [ 4957393.691959600895643, 3900502.770575263537467 ], [ 4957378.084667297080159, 3900543.896306977141649 ], [ 4957372.615618388168514, 3900541.704174501355737 ], [ 4957366.255658628419042, 3900559.538008858915418 ], [ 4957321.350285801105201, 3900542.727712460327893 ], [ 4957330.599012898281217, 3900518.343401473015547 ], [ 4957346.718671092763543, 3900524.555260119959712 ], [ 4957359.725121663883328, 3900489.980360236484557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957282.298109415918589, 3898737.682746032252908 ], [ 4957284.361591767519712, 3898702.364918417297304 ], [ 4957306.5375862037763, 3898703.487047187052667 ], [ 4957306.833909182809293, 3898697.29723757551983 ], [ 4957333.905741075053811, 3898698.790086868684739 ], [ 4957331.246603968553245, 3898748.672304686158895 ], [ 4957304.174822177737951, 3898747.179458028171211 ], [ 4957304.762093367055058, 3898738.805259469896555 ], [ 4957282.298109415918589, 3898737.682746032252908 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957172.499333363957703, 3900724.593474734574556 ], [ 4957165.558689247816801, 3900746.067884927615523 ], [ 4957140.801153576001525, 3900738.388076442759484 ], [ 4957147.453782498836517, 3900716.913275300059468 ], [ 4957172.499333363957703, 3900724.593474734574556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957166.602802448906004, 3896731.537827539257705 ], [ 4957191.662776086479425, 3896731.207194095477462 ], [ 4957192.192602308467031, 3896765.800196106545627 ], [ 4957167.13266091607511, 3896766.130829066503793 ], [ 4957166.602802448906004, 3896731.537827539257705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958843.094569716602564, 3907368.992474074475467 ], [ 4958872.403378576040268, 3907411.636913754977286 ], [ 4958850.500138727016747, 3907426.535657359752804 ], [ 4958841.879185882396996, 3907414.507245968095958 ], [ 4958806.430236632935703, 3907438.854504303075373 ], [ 4958785.453906338661909, 3907408.602255198638886 ], [ 4958843.094569716602564, 3907368.992474074475467 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957061.287537929601967, 3900974.238443329464644 ], [ 4957044.301190191879869, 3900970.210381559561938 ], [ 4957054.145398264750838, 3900930.897419895511121 ], [ 4957082.359692019410431, 3900937.85349748050794 ], [ 4957079.173300650902092, 3900951.686201453208923 ], [ 4957095.871660095639527, 3900955.713901104871184 ], [ 4957085.158561672084033, 3900998.666992868296802 ], [ 4957056.944332516752183, 3900991.710912100039423 ], [ 4957061.287537929601967, 3900974.238443329464644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958667.318269895389676, 3907263.513044422026724 ], [ 4958676.250607195310295, 3907258.791771857533604 ], [ 4958666.197998212650418, 3907240.935316313523799 ], [ 4958686.368140356615186, 3907230.03945854306221 ], [ 4958693.835482655093074, 3907243.522737853229046 ], [ 4958715.158867449499667, 3907231.536113549489528 ], [ 4958730.380426262505352, 3907259.231354077812284 ], [ 4958680.530458266846836, 3907286.835878130979836 ], [ 4958667.318269895389676, 3907263.513044422026724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958571.366772023960948, 3898605.806089889258146 ], [ 4958628.939375040121377, 3898628.462142255157232 ], [ 4958616.22195949498564, 3898660.487885714508593 ], [ 4958576.20900546759367, 3898644.774706466589123 ], [ 4958578.232727929018438, 3898639.315569288562983 ], [ 4958560.673133881762624, 3898632.372721670661122 ], [ 4958571.366772023960948, 3898605.806089889258146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958545.50854754820466, 3901673.202723765745759 ], [ 4958545.787439030595124, 3901679.757459855172783 ], [ 4958572.283765049651265, 3901678.701851127203554 ], [ 4958573.106260132044554, 3901708.561694971751422 ], [ 4958498.51416009105742, 3901711.00712248776108 ], [ 4958497.12418725527823, 3901674.956275956705213 ], [ 4958545.50854754820466, 3901673.202723765745759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956740.978782644495368, 3901454.465641535352916 ], [ 4956711.306738710962236, 3901461.344952120445669 ], [ 4956694.697478546760976, 3901389.953480689786375 ], [ 4956724.369596975855529, 3901383.074152061715722 ], [ 4956740.978782644495368, 3901454.465641535352916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956655.173313482664526, 3905595.612936296034604 ], [ 4956591.757866369560361, 3905646.871975724119693 ], [ 4956569.334087371826172, 3905619.532642180565745 ], [ 4956613.148664146661758, 3905583.905395851936191 ], [ 4956615.736337245441973, 3905586.821852054446936 ], [ 4956635.337228501215577, 3905571.190008745063096 ], [ 4956655.173313482664526, 3905595.612936296034604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958312.82253934442997, 3898743.453549498692155 ], [ 4958323.514381750486791, 3898717.979204833041877 ], [ 4958353.73926458042115, 3898730.401326274033636 ], [ 4958343.047398424707353, 3898755.875659114215523 ], [ 4958312.82253934442997, 3898743.453549498692155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958074.652235234156251, 3907554.363815264310688 ], [ 4958049.288981745019555, 3907573.263920651283115 ], [ 4958046.127802684903145, 3907568.890009781811386 ], [ 4958014.42378362827003, 3907592.515179168898612 ], [ 4957994.305475459434092, 3907565.906037889420986 ], [ 4958013.616310719400644, 3907551.367180544883013 ], [ 4958010.455123268999159, 3907546.993273922707886 ], [ 4958047.923665300942957, 3907519.006412851624191 ], [ 4958074.652235234156251, 3907554.363815264310688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957961.987500326707959, 3905509.975012888666242 ], [ 4957889.717023328877985, 3905506.963323321193457 ], [ 4957891.208887725137174, 3905468.731567383743823 ], [ 4957933.535027951002121, 3905470.245840503834188 ], [ 4957933.537016308866441, 3905468.789317893330008 ], [ 4957963.769901318475604, 3905469.923001039773226 ], [ 4957961.987500326707959, 3905509.975012888666242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956208.212958208285272, 3905427.163216184824705 ], [ 4956182.563436188735068, 3905444.244030909147114 ], [ 4956152.099729929119349, 3905399.052166125271469 ], [ 4956177.749275605194271, 3905381.971322812139988 ], [ 4956208.212958208285272, 3905427.163216184824705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956035.819341624155641, 3901355.592607354279608 ], [ 4956106.375131876207888, 3901357.140543365385383 ], [ 4956105.755231700837612, 3901391.003865974955261 ], [ 4956035.19953031744808, 3901389.45593155734241 ], [ 4956035.819341624155641, 3901355.592607354279608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957834.383389209397137, 3899830.45429623965174 ], [ 4957863.682708055712283, 3899887.298487900756299 ], [ 4957843.796394445002079, 3899897.467047768179327 ], [ 4957838.625667558051646, 3899887.628495522309095 ], [ 4957812.398770311847329, 3899901.06561864959076 ], [ 4957818.718555649742484, 3899913.09050990594551 ], [ 4957794.221213535405695, 3899925.437613879796118 ], [ 4957781.007588578388095, 3899899.93054366344586 ], [ 4957809.540007274597883, 3899885.404135615099221 ], [ 4957792.305176831781864, 3899851.880728946533054 ], [ 4957834.383389209397137, 3899830.45429623965174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957775.044924757443368, 3905134.300895909313112 ], [ 4957787.675117795355618, 3905163.448566758539528 ], [ 4957762.897093082778156, 3905173.974694162607193 ], [ 4957765.767682607285678, 3905180.532957541756332 ], [ 4957745.599345788359642, 3905189.244709053542465 ], [ 4957743.59062279202044, 3905184.144143312703818 ], [ 4957721.405661610886455, 3905193.581436911597848 ], [ 4957709.635801779106259, 3905166.98388284444809 ], [ 4957728.075456313788891, 3905158.998020251281559 ], [ 4957722.046797147020698, 3905145.516980644315481 ], [ 4957741.638764584437013, 3905137.168560191988945 ], [ 4957745.945156594738364, 3905146.641821180004627 ], [ 4957775.044924757443368, 3905134.300895909313112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957693.107620367780328, 3899517.838785470463336 ], [ 4957730.800386125221848, 3899544.835540666244924 ], [ 4957693.576501771807671, 3899596.855636432766914 ], [ 4957655.883771790191531, 3899569.858932594303042 ], [ 4957693.107620367780328, 3899517.838785470463336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955774.358967723324895, 3897516.233252584468573 ], [ 4955761.931528897024691, 3897548.988953073509037 ], [ 4955731.990285272710025, 3897538.0266401800327 ], [ 4955752.799125717021525, 3897483.069781145546585 ], [ 4955747.041289139539003, 3897480.877613738179207 ], [ 4955757.445034932345152, 3897453.945382143836468 ], [ 4955794.58342372905463, 3897467.830007546581328 ], [ 4955785.045613083057106, 3897493.30681940400973 ], [ 4955794.546454605646431, 3897496.596193707548082 ], [ 4955785.586588713340461, 3897520.61723035434261 ], [ 4955774.358967723324895, 3897516.233252584468573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957634.138793383724988, 3905844.894099520053715 ], [ 4957628.940054764039814, 3905856.539265993982553 ], [ 4957615.415144130587578, 3905850.330725046806037 ], [ 4957636.208134629763663, 3905805.206578328739852 ], [ 4957684.840852259658277, 3905827.120359817519784 ], [ 4957669.246054210700095, 3905860.963440461549908 ], [ 4957634.138793383724988, 3905844.894099520053715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957528.177025274373591, 3900084.202058604452759 ], [ 4957538.650385065935552, 3900006.292350111529231 ], [ 4957576.948650240898132, 3900011.077778166159987 ], [ 4957570.256139518693089, 3900061.6828209804371 ], [ 4957560.177953471429646, 3900060.212683186400682 ], [ 4957556.396513358689845, 3900087.881465029437095 ], [ 4957528.177025274373591, 3900084.202058604452759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957524.154802540317178, 3901783.95697239600122 ], [ 4957584.011079594492912, 3901817.173705008346587 ], [ 4957566.40115096885711, 3901848.829258269630373 ], [ 4957506.256445988081396, 3901815.976305583957583 ], [ 4957524.154802540317178, 3901783.95697239600122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955590.131662924773991, 3904865.604166369885206 ], [ 4955609.972944125533104, 3904887.1132673160173 ], [ 4955576.81931309401989, 3904917.657913839444518 ], [ 4955587.171174160204828, 3904928.959205647464842 ], [ 4955573.044771146960557, 3904942.049880840815604 ], [ 4955562.404956988990307, 3904930.74822669941932 ], [ 4955553.467747170478106, 3904939.111833405215293 ], [ 4955525.286987596191466, 3904908.852987288031727 ], [ 4955564.494553835131228, 3904872.854039945174009 ], [ 4955572.546071247197688, 3904881.603470339439809 ], [ 4955590.131662924773991, 3904865.604166369885206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955555.242365604266524, 3900390.393787616863847 ], [ 4955559.659063553437591, 3900314.660352112259716 ], [ 4955597.672493525780737, 3900316.893686124589294 ], [ 4955595.314503712579608, 3900359.12977106589824 ], [ 4955602.5140684498474, 3900359.503102396149188 ], [ 4955601.335536013357341, 3900380.257015466690063 ], [ 4955592.984438173472881, 3900379.518082817550749 ], [ 4955592.10368541162461, 3900392.625643463805318 ], [ 4955555.242365604266524, 3900390.393787616863847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955364.295995296910405, 3900618.460372314788401 ], [ 4955348.987728300504386, 3900653.397446871269494 ], [ 4955323.658210481517017, 3900642.077285593375564 ], [ 4955321.925605276599526, 3900645.716391269583255 ], [ 4955270.978051781654358, 3900623.439908858388662 ], [ 4955285.419932433404028, 3900590.322344462387264 ], [ 4955312.189508185721934, 3900601.644294303841889 ], [ 4955314.211959583684802, 3900596.549034608993679 ], [ 4955364.295995296910405, 3900618.460372314788401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957168.863212603144348, 3892883.789817510172725 ], [ 4957180.356292518787086, 3892906.381147439125925 ], [ 4957140.862449842505157, 3892926.355465619824827 ], [ 4957112.417733768932521, 3892869.877576407510787 ], [ 4957137.785914672538638, 3892857.166928390972316 ], [ 4957154.737988665699959, 3892890.689392101950943 ], [ 4957168.863212603144348, 3892883.789817510172725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955026.830934649333358, 3892769.225813486613333 ], [ 4955034.290422514081001, 3892793.631797298789024 ], [ 4955015.269675139337778, 3892799.433957867324352 ], [ 4955007.810171640478075, 3892775.027979254256934 ], [ 4955026.830934649333358, 3892769.225813486613333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954974.082522542215884, 3894859.258554778527468 ], [ 4954968.313555397093296, 3894865.441510524600744 ], [ 4954995.072060280479491, 3894890.235856688581407 ], [ 4954973.15028013754636, 3894913.512601480353624 ], [ 4954907.548836219124496, 3894852.620848502963781 ], [ 4954935.240031215362251, 3894822.796958721242845 ], [ 4954974.082522542215884, 3894859.258554778527468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954895.008977862074971, 3900497.705839484464377 ], [ 4954883.144030596129596, 3900543.207262351177633 ], [ 4954849.171046051196754, 3900534.425645696930587 ], [ 4954847.434856742620468, 3900540.977818687446415 ], [ 4954827.28173241019249, 3900535.490680695511401 ], [ 4954840.882323902100325, 3900483.801189657300711 ], [ 4954895.008977862074971, 3900497.705839484464377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954894.757174408063293, 3895866.704289949964732 ], [ 4954874.012611429207027, 3895870.683754829224199 ], [ 4954864.279039070941508, 3895822.606530797667801 ], [ 4954897.412972139194608, 3895816.09365928824991 ], [ 4954902.851730825379491, 3895843.410155220422894 ], [ 4954890.462408437393606, 3895845.943551979959011 ], [ 4954894.757174408063293, 3895866.704289949964732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956050.47300429455936, 3901159.345310227014124 ], [ 4956051.972849896177649, 3901113.102699158713222 ], [ 4956062.052137675695121, 3901113.479883154854178 ], [ 4956062.358997027389705, 3901098.915067275520414 ], [ 4956090.293400968424976, 3901099.679525780491531 ], [ 4956089.70136552862823, 3901112.059189674444497 ], [ 4956110.724392264150083, 3901112.450580673292279 ], [ 4956109.219250327907503, 3901162.698615523520857 ], [ 4956082.148890211246908, 3901161.935257048346102 ], [ 4956082.451984542421997, 3901150.283478829078376 ], [ 4956070.068768989294767, 3901149.903302121907473 ], [ 4956069.768038806505501, 3901159.734431799035519 ], [ 4956050.47300429455936, 3901159.345310227014124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955937.736886234954, 3905945.699872388504446 ], [ 4955966.483505627140403, 3905982.514268670231104 ], [ 4955960.142690123990178, 3905987.239785661920905 ], [ 4955979.97766811773181, 3906012.754613462369889 ], [ 4955950.866510652936995, 3906035.293152064550668 ], [ 4955933.618287649005651, 3906013.422998303547502 ], [ 4955930.736061727628112, 3906015.604066757950932 ], [ 4955899.402655380778015, 3905975.145058206282556 ], [ 4955937.736886234954, 3905945.699872388504446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954231.602844307199121, 3901317.269027471542358 ], [ 4954237.68640901427716, 3901288.146066141314805 ], [ 4954266.47792951669544, 3901294.371636477764696 ], [ 4954260.682773117907345, 3901323.130815326236188 ], [ 4954231.602844307199121, 3901317.269027471542358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955780.005783281289041, 3905225.973234199453145 ], [ 4955803.008932548575103, 3905251.491989788599312 ], [ 4955771.874444018118083, 3905279.49007979594171 ], [ 4955766.69885494094342, 3905273.657331271562725 ], [ 4955743.924744705669582, 3905294.019437790382653 ], [ 4955726.097643075510859, 3905273.969341152347624 ], [ 4955780.005783281289041, 3905225.973234199453145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953964.962941972538829, 3893948.053551636636257 ], [ 4953931.585787687450647, 3893915.969624899327755 ], [ 4953956.967866271734238, 3893889.783224262762815 ], [ 4954009.623095358721912, 3893940.461233359295875 ], [ 4953966.935116628184915, 3893984.468827171251178 ], [ 4953947.657046305947006, 3893965.87480596313253 ], [ 4953964.962941972538829, 3893948.053551636636257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953951.672460716217756, 3894217.128549103159457 ], [ 4954004.455274255014956, 3894162.573488154448569 ], [ 4954029.487852127291262, 3894186.636500583495945 ], [ 4954013.623733966611326, 3894203.367086448706686 ], [ 4954018.803172912448645, 3894208.107073890976608 ], [ 4954001.496964877471328, 3894226.292424551676959 ], [ 4953996.029902964830399, 3894221.187961228191853 ], [ 4953976.705034853890538, 3894241.191513157915324 ], [ 4953951.672460716217756, 3894217.128549103159457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953789.119610430672765, 3890953.247931004036218 ], [ 4953808.143602002412081, 3890945.624271297361702 ], [ 4953815.323660752736032, 3890964.203500839881599 ], [ 4953796.299680268391967, 3890971.827155556064099 ], [ 4953789.119610430672765, 3890953.247931004036218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955634.885022564791143, 3894865.921724946238101 ], [ 4955569.696980536915362, 3894933.566412766464055 ], [ 4955533.733679037541151, 3894898.928270020056516 ], [ 4955446.04772568680346, 3894989.848831294570118 ], [ 4955406.343736033886671, 3894951.928938865661621 ], [ 4955493.740690490230918, 3894861.736139936372638 ], [ 4955449.721229488030076, 3894819.441142021212727 ], [ 4955461.547468524426222, 3894807.075805365107954 ], [ 4955448.024828409776092, 3894794.314085753634572 ], [ 4955463.600504613481462, 3894778.312230700161308 ], [ 4955477.985937143675983, 3894792.167443429119885 ], [ 4955516.348623419180512, 3894752.526260411832482 ], [ 4955634.885022564791143, 3894865.921724946238101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955474.51280764490366, 3891636.988530058879405 ], [ 4955402.748556545004249, 3891659.473225462250412 ], [ 4955384.671189942397177, 3891602.282127408776432 ], [ 4955456.435578397475183, 3891579.797384495846927 ], [ 4955474.51280764490366, 3891636.988530058879405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953242.897966627962887, 3891904.423537766560912 ], [ 4953252.389825932681561, 3891917.179325320292264 ], [ 4953220.672030221670866, 3891940.445801018271595 ], [ 4953187.306629753671587, 3891895.618363240733743 ], [ 4953217.582689709961414, 3891873.442519330885261 ], [ 4953229.375409875065088, 3891889.478189124725759 ], [ 4953238.890676444396377, 3891882.571071305312216 ], [ 4953250.971471761353314, 3891898.607093437109143 ], [ 4953242.897966627962887, 3891904.423537766560912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953224.05070548132062, 3890310.612262873444706 ], [ 4953185.155141361989081, 3890311.294291900470853 ], [ 4953184.341848076321185, 3890268.326226206030697 ], [ 4953216.610959453508258, 3890267.636316710617393 ], [ 4953216.886080991476774, 3890278.560482630971819 ], [ 4953223.512593179941177, 3890278.56836199387908 ], [ 4953224.05070548132062, 3890310.612262873444706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953078.084831200540066, 3892655.060641635209322 ], [ 4953092.164708162657917, 3892685.66410533292219 ], [ 4953012.03363432828337, 3892722.710420693736523 ], [ 4952997.953685693442822, 3892692.106998298317194 ], [ 4953078.084831200540066, 3892655.060641635209322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952615.894550167955458, 3893731.245611249934882 ], [ 4952617.661646382883191, 3893698.111963214352727 ], [ 4952660.293835959397256, 3893700.346512515563518 ], [ 4952658.526687337085605, 3893733.480157791171223 ], [ 4952615.894550167955458, 3893731.245611249934882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952466.744125573895872, 3890444.449680019635707 ], [ 4952435.051039247773588, 3890445.505285383667797 ], [ 4952432.262449046596885, 3890365.758024323731661 ], [ 4952463.667943678796291, 3890364.337953770067543 ], [ 4952466.744125573895872, 3890444.449680019635707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952421.418950110673904, 3900212.158180818893015 ], [ 4952447.649181855842471, 3900193.253851075656712 ], [ 4952461.738916530273855, 3900212.569103675428778 ], [ 4952455.685784903354943, 3900216.931635891553015 ], [ 4952483.00203687697649, 3900254.832894410006702 ], [ 4952450.430721083655953, 3900278.099389515817165 ], [ 4952421.676968437619507, 3900238.011715840548277 ], [ 4952433.78321311622858, 3900229.286637353245169 ], [ 4952421.418950110673904, 3900212.158180818893015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952167.445356667973101, 3888651.13859630888328 ], [ 4952242.930345533415675, 3888654.86677411198616 ], [ 4952241.74342401791364, 3888684.723870028275996 ], [ 4952207.458070674911141, 3888683.227863917592913 ], [ 4952207.164075174368918, 3888688.325312010012567 ], [ 4952165.676404823549092, 3888686.092812736518681 ], [ 4952167.445356667973101, 3888651.13859630888328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952095.306623766198754, 3890000.14903837069869 ], [ 4952054.669869599863887, 3890011.39041440654546 ], [ 4952046.35048702172935, 3889980.06588608212769 ], [ 4952086.986867386847734, 3889969.188625077251345 ], [ 4952095.306623766198754, 3890000.14903837069869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951367.480257170274854, 3890305.555484683252871 ], [ 4951329.446618616580963, 3890308.425931361503899 ], [ 4951322.911750895902514, 3890226.489836973138154 ], [ 4951357.487779111601412, 3890223.979636983480304 ], [ 4951358.907124446704984, 3890242.915878424420953 ], [ 4951368.991776509210467, 3890242.198917634785175 ], [ 4951370.411112755537033, 3890261.13515987014398 ], [ 4951364.072297846898437, 3890261.492187391035259 ], [ 4951367.480257170274854, 3890305.555484683252871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952316.685030460357666, 3891652.088812821079046 ], [ 4952289.874164298176765, 3891667.715359920635819 ], [ 4952249.043697978369892, 3891599.212143491953611 ], [ 4952275.855028784833848, 3891583.221428554970771 ], [ 4952316.685030460357666, 3891652.088812821079046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950879.405650163069367, 3890582.842827463056892 ], [ 4950880.816082897596061, 3890610.153981305658817 ], [ 4950878.510836256667972, 3890610.51556884823367 ], [ 4950879.924077366478741, 3890635.277830156497657 ], [ 4950873.009146495722234, 3890635.634338519070297 ], [ 4950873.570111808367074, 3890649.471820690669119 ], [ 4950830.351920442655683, 3890651.609005491249263 ], [ 4950828.378046379424632, 3890612.645137943327427 ], [ 4950809.938484380953014, 3890613.353114509023726 ], [ 4950808.527579516172409, 3890586.406091885641217 ], [ 4950879.405650163069367, 3890582.842827463056892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952067.583196457475424, 3893323.879784948658198 ], [ 4952063.791039159521461, 3893365.021969078108668 ], [ 4952000.420949601568282, 3893359.123352226801217 ], [ 4952001.003349659964442, 3893353.662089494057 ], [ 4951988.905395180918276, 3893352.555868170689791 ], [ 4951992.115040313452482, 3893316.874936543405056 ], [ 4952067.583196457475424, 3893323.879784948658198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951455.5301204752177, 3891943.502510436810553 ], [ 4951472.168198245577514, 3892006.879531438462436 ], [ 4951464.099203195422888, 3892009.055231895297766 ], [ 4951466.967013868503273, 3892020.710560590494424 ], [ 4951439.878732589073479, 3892027.598566621076316 ], [ 4951437.010093215852976, 3892016.671496451832354 ], [ 4951415.973350900225341, 3892022.109808781184256 ], [ 4951399.335966881364584, 3891958.004566327203065 ], [ 4951455.5301204752177, 3891943.502510436810553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951418.581764569506049, 3893291.828593413345516 ], [ 4951423.247802270576358, 3893241.219959307927638 ], [ 4951455.221129481680691, 3893244.168892277870327 ], [ 4951454.640474415384233, 3893248.173654076177627 ], [ 4951478.836519759148359, 3893250.385621188674122 ], [ 4951477.67069941200316, 3893262.400552964769304 ], [ 4951491.784846310503781, 3893263.872940624132752 ], [ 4951487.99397159833461, 3893304.651076416485012 ], [ 4951469.559102991595864, 3893302.809704935643822 ], [ 4951470.142215024679899, 3893296.620174652896821 ], [ 4951418.581764569506049, 3893291.828593413345516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951415.820639624260366, 3892671.714650565758348 ], [ 4951382.98604947887361, 3892665.487644913140684 ], [ 4951381.536652865819633, 3892673.496846062131226 ], [ 4951356.76635975856334, 3892669.099554139655083 ], [ 4951365.460262080654502, 3892623.229108904954046 ], [ 4951423.065230793319643, 3892633.853423085995018 ], [ 4951415.820639624260366, 3892671.714650565758348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951281.214895756915212, 3888607.895376335829496 ], [ 4951282.976195313967764, 3888578.767137228511274 ], [ 4951325.904740082100034, 3888580.999885768163949 ], [ 4951326.48954819701612, 3888573.35386080481112 ], [ 4951337.14945073146373, 3888574.09404183877632 ], [ 4951336.562194990925491, 3888583.924829307477921 ], [ 4951360.187417256645858, 3888585.043657573405653 ], [ 4951358.42073392868042, 3888618.905544403009117 ], [ 4951321.542512806132436, 3888617.043637298513204 ], [ 4951321.838377328589559, 3888610.12554409308359 ], [ 4951281.214895756915212, 3888607.895376335829496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949621.186044605448842, 3895825.664738276042044 ], [ 4949633.270678947679698, 3895838.422013524919748 ], [ 4949595.211265221238136, 3895873.338247356005013 ], [ 4949560.109136079438031, 3895835.431830844376236 ], [ 4949607.97186285816133, 3895791.422661144752055 ], [ 4949609.410577011294663, 3895792.880695239175111 ], [ 4949623.538869994692504, 3895779.786957290489227 ], [ 4949645.406074122525752, 3895803.114308395422995 ], [ 4949621.186044605448842, 3895825.664738276042044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951035.653789990581572, 3890237.458039372228086 ], [ 4951041.373216135427356, 3890276.061935978010297 ], [ 4951062.408825292252004, 3890272.8081009327434 ], [ 4951070.700992160476744, 3890329.621254319790751 ], [ 4951035.257977334782481, 3890334.679758198559284 ], [ 4951030.969017173163593, 3890305.180644303094596 ], [ 4951016.849260296672583, 3890307.349775965791196 ], [ 4951013.417750760912895, 3890284.041789461392909 ], [ 4951027.537519590929151, 3890281.872656041756272 ], [ 4951026.107458327896893, 3890272.403746126685292 ], [ 4950999.596971604973078, 3890276.379807063844055 ], [ 4950994.735772070474923, 3890243.238787621725351 ], [ 4951035.653789990581572, 3890237.458039372228086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949326.789438168518245, 3894179.857109299395233 ], [ 4949330.565123006701469, 3894150.366626026108861 ], [ 4949354.471699751913548, 3894153.304638065863401 ], [ 4949350.695989094674587, 3894182.795118030160666 ], [ 4949326.789438168518245, 3894179.857109299395233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950914.197439597919583, 3902651.946203542407602 ], [ 4950905.810757283121347, 3902683.980439910199493 ], [ 4950857.156402947381139, 3902671.546353758778423 ], [ 4950865.543031092733145, 3902639.512102457229048 ], [ 4950914.197439597919583, 3902651.946203542407602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950819.774954485706985, 3893719.378533197101206 ], [ 4950818.880699675530195, 3893746.68719881400466 ], [ 4950794.971518841572106, 3893745.932654513046145 ], [ 4950795.865749383345246, 3893718.623988116160035 ], [ 4950819.774954485706985, 3893719.378533197101206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950799.432248855009675, 3890473.516421058680862 ], [ 4950851.58525306545198, 3890468.475998295936733 ], [ 4950857.849830493330956, 3890535.482443185988814 ], [ 4950814.052841957658529, 3890539.803784747608006 ], [ 4950811.491111749783158, 3890511.398985817562789 ], [ 4950816.389326587319374, 3890511.040243824478239 ], [ 4950815.252515444532037, 3890496.838002795353532 ], [ 4950801.70989088062197, 3890498.279626245144755 ], [ 4950799.432248855009675, 3890473.516421058680862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949280.974295461550355, 3899163.646547568030655 ], [ 4949313.813976420089602, 3899157.854739265050739 ], [ 4949321.544340159744024, 3899201.922518555540591 ], [ 4949288.704711351543665, 3899207.714317576028407 ], [ 4949280.974295461550355, 3899163.646547568030655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948954.273078461177647, 3888911.264315320178866 ], [ 4948955.135198950767517, 3888913.449969295877963 ], [ 4948972.716385444626212, 3888908.006176223512739 ], [ 4948981.619684935547411, 3888935.689056060276926 ], [ 4948930.60493631195277, 3888952.022232235874981 ], [ 4948920.839841633103788, 3888921.789588889107108 ], [ 4948954.273078461177647, 3888911.264315320178866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948884.510022476315498, 3892030.676575184334069 ], [ 4948874.388694235123694, 3892067.807257273700088 ], [ 4948851.347845114767551, 3892061.593411985319108 ], [ 4948853.372700804844499, 3892053.584668866358697 ], [ 4948829.755654104053974, 3892047.370250568259507 ], [ 4948837.852447060868144, 3892017.884168167598546 ], [ 4948884.510022476315498, 3892030.676575184334069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950530.681831874884665, 3893333.814038565382361 ], [ 4950533.057439586147666, 3893268.637613809201866 ], [ 4950566.76088188495487, 3893270.130860449746251 ], [ 4950565.868458445183933, 3893295.983014815952629 ], [ 4950571.917676026932895, 3893296.353740514721721 ], [ 4950571.029616976156831, 3893318.200485656503588 ], [ 4950560.371177772060037, 3893317.824734475463629 ], [ 4950559.776366042904556, 3893334.938128583133221 ], [ 4950530.681831874884665, 3893333.814038565382361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950516.657543040812016, 3893514.406546231359243 ], [ 4950546.32763459160924, 3893515.895377209875733 ], [ 4950544.847583050839603, 3893552.306625364348292 ], [ 4950541.390693307854235, 3893552.302858625072986 ], [ 4950540.213402976281941, 3893575.241678740829229 ], [ 4950513.999867216683924, 3893574.120745396707207 ], [ 4950516.657543040812016, 3893514.406546231359243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950409.045681193470955, 3894193.025462622754276 ], [ 4950435.258617685176432, 3894194.146294005680829 ], [ 4950433.783890737220645, 3894225.823894481174648 ], [ 4950407.571380019187927, 3894224.338936185464263 ], [ 4950409.045681193470955, 3894193.025462622754276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950188.977114268578589, 3890432.070106563623995 ], [ 4950158.427139969542623, 3890441.868696607183665 ], [ 4950154.406553292647004, 3890429.848151683807373 ], [ 4950147.489231263287365, 3890432.389611762948334 ], [ 4950141.171602112241089, 3890413.084041256923229 ], [ 4950146.647606752812862, 3890411.269286361057311 ], [ 4950139.181452439166605, 3890388.321202822029591 ], [ 4950166.273399420082569, 3890379.24712773738429 ], [ 4950173.452992107719183, 3890400.738398669287562 ], [ 4950193.051385998725891, 3890394.20518592512235 ], [ 4950202.239865524694324, 3890422.981186273042113 ], [ 4950211.46244902908802, 3890420.078095398377627 ], [ 4950219.790108809247613, 3890445.576023406814784 ], [ 4950195.868959285318851, 3890453.196946498472244 ], [ 4950188.977114268578589, 3890432.070106563623995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949990.85070232860744, 3890885.196938183624297 ], [ 4950016.788908307440579, 3890876.849733233917505 ], [ 4950028.849860676564276, 3890913.639572905842215 ], [ 4950002.911686412990093, 3890921.986766391899437 ], [ 4949990.85070232860744, 3890885.196938183624297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949746.518486294895411, 3892263.890290460083634 ], [ 4949741.013558720238507, 3892293.378850956447423 ], [ 4949661.805236020125449, 3892278.365765426307917 ], [ 4949667.888565305620432, 3892246.693030484952033 ], [ 4949682.002188378944993, 3892249.256850881502032 ], [ 4949684.029973324388266, 3892238.699274055659771 ], [ 4949713.121101117692888, 3892244.191982093267143 ], [ 4949710.802904265932739, 3892256.934019290376455 ], [ 4949746.518486294895411, 3892263.890290460083634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948080.439024708233774, 3898966.883637221995741 ], [ 4948079.332030224613845, 3898921.730444487649947 ], [ 4948110.150535089895129, 3898921.032965202350169 ], [ 4948110.142893497832119, 3898928.679682021960616 ], [ 4948133.47296115104109, 3898927.974747103638947 ], [ 4948134.300225253216922, 3898964.752678369171917 ], [ 4948112.69828633684665, 3898965.459339641500264 ], [ 4948112.973929054103792, 3898977.840026489924639 ], [ 4948090.796332855708897, 3898978.182000268250704 ], [ 4948090.519589074887335, 3898966.893701789900661 ], [ 4948080.439024708233774, 3898966.883637221995741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949207.777830892242491, 3894217.966592681594193 ], [ 4949221.662257649935782, 3894162.99759748345241 ], [ 4949265.149460954591632, 3894173.602614134550095 ], [ 4949259.363830470480025, 3894196.900824199896306 ], [ 4949249.2841318808496, 3894194.341422895435244 ], [ 4949241.184884067624807, 3894226.376317242626101 ], [ 4949207.777830892242491, 3894217.966592681594193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946476.301722153089941, 3890864.191516885533929 ], [ 4946502.235433634370565, 3890859.482198121957481 ], [ 4946508.539491255767643, 3890895.900919068139046 ], [ 4946482.893916341476142, 3890900.61050223140046 ], [ 4946476.301722153089941, 3890864.191516885533929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946383.309342972002923, 3890486.503743926528841 ], [ 4946387.01660540048033, 3890527.28953596483916 ], [ 4946353.881631067954004, 3890530.171600875910372 ], [ 4946350.462425748817623, 3890489.386082302313298 ], [ 4946383.309342972002923, 3890486.503743926528841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946319.177985891699791, 3890979.473128758370876 ], [ 4946327.537011229433119, 3890975.111388050485402 ], [ 4946347.666064983233809, 3891015.91250833729282 ], [ 4946308.17819678876549, 3891035.174461253453046 ], [ 4946282.297915179282427, 3890982.715918395202607 ], [ 4946313.427153195254505, 3890967.45154282823205 ], [ 4946319.177985891699791, 3890979.473128758370876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945074.571734053082764, 3891311.154459746554494 ], [ 4945069.046253923326731, 3891369.41005561221391 ], [ 4945015.464618254452944, 3891364.264845966361463 ], [ 4945018.082605057395995, 3891335.865170459728688 ], [ 4945033.350505097769201, 3891337.335184520110488 ], [ 4945036.257900146767497, 3891307.479254952166229 ], [ 4945074.571734053082764, 3891311.154459746554494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946553.228192425332963, 3891167.218318671919405 ], [ 4946589.528068621642888, 3891167.980762305669487 ], [ 4946589.221094002947211, 3891188.007516121957451 ], [ 4946579.42605471983552, 3891187.634158292319626 ], [ 4946578.505155319347978, 3891247.714421488810331 ], [ 4946544.221735847182572, 3891247.318017688579857 ], [ 4946545.141873483546078, 3891187.966008800081909 ], [ 4946552.920559464022517, 3891187.9733283710666 ], [ 4946553.228192425332963, 3891167.218318671919405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946415.904287540353835, 3890445.023651946336031 ], [ 4946416.74850058555603, 3890466.507988401688635 ], [ 4946397.444295675493777, 3890467.582309688907117 ], [ 4946397.722866703756154, 3890477.778151605743915 ], [ 4946378.130903889425099, 3890478.488089703023434 ], [ 4946377.008081380277872, 3890446.80791271943599 ], [ 4946415.904287540353835, 3890445.023651946336031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946387.321173639968038, 3892358.490088486112654 ], [ 4946354.482662867754698, 3892354.81812138017267 ], [ 4946356.518654190935194, 3892334.064709486439824 ], [ 4946389.645617694593966, 3892337.372820445802063 ], [ 4946387.321173639968038, 3892358.490088486112654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944495.16854877397418, 3891354.342638122849166 ], [ 4944498.074714612215757, 3891325.214905637316406 ], [ 4944486.263640297576785, 3891324.112311029341072 ], [ 4944487.719551702030003, 3891306.27129437867552 ], [ 4944500.394613507203758, 3891307.73876482155174 ], [ 4944501.846441305242479, 3891294.631410300265998 ], [ 4944539.296071005985141, 3891298.305104800965637 ], [ 4944536.098605901934206, 3891331.073860752396286 ], [ 4944555.111492251046002, 3891332.910975106060505 ], [ 4944552.495256633497775, 3891359.854184460826218 ], [ 4944495.16854877397418, 3891354.342638122849166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943325.70822403114289, 3889335.360459870658815 ], [ 4943307.829292047768831, 3889354.280423564370722 ], [ 4943315.890352305024862, 3889361.933718163520098 ], [ 4943300.030068465508521, 3889378.670578183606267 ], [ 4943264.906398820690811, 3889345.870309684425592 ], [ 4943283.938679035753012, 3889325.858879790641367 ], [ 4943277.892645599320531, 3889320.392011457122862 ], [ 4943292.59957573749125, 3889304.746576252393425 ], [ 4943325.70822403114289, 3889335.360459870658815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943288.499448597431183, 3889737.326887134462595 ], [ 4943278.660280137322843, 3889790.117343653924763 ], [ 4943232.280699213035405, 3889781.704447369091213 ], [ 4943238.357607355341315, 3889749.302049228455871 ], [ 4943248.152024279348552, 3889751.130699440371245 ], [ 4943251.914203742519021, 3889730.742625696118921 ], [ 4943288.499448597431183, 3889737.326887134462595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944841.535974751226604, 3890613.643865738064051 ], [ 4944855.679365853779018, 3890583.797790631651878 ], [ 4944901.468993709422648, 3890605.685706601478159 ], [ 4944888.480866088531911, 3890632.255622410215437 ], [ 4944873.505782174877822, 3890624.959902126342058 ], [ 4944872.062375347130001, 3890628.235785212367773 ], [ 4944841.535974751226604, 3890613.643865738064051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943244.344387836754322, 3892996.600978441536427 ], [ 4943275.404534125700593, 3893060.713007369078696 ], [ 4943229.29366850014776, 3893082.887102981097996 ], [ 4943218.365405385382473, 3893059.938080321997404 ], [ 4943229.893047804944217, 3893054.485576411243528 ], [ 4943210.049173885025084, 3893013.322849382646382 ], [ 4943244.344387836754322, 3892996.600978441536427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942746.485512546263635, 3892346.229215196799487 ], [ 4942800.646757163107395, 3892345.180191195569932 ], [ 4942800.926671419292688, 3892355.376006878912449 ], [ 4942817.347920882515609, 3892355.025046984665096 ], [ 4942818.465798056684434, 3892397.993079239036888 ], [ 4942803.485007374547422, 3892398.345193215180188 ], [ 4942803.200423882342875, 3892393.975425824988633 ], [ 4942747.598844725638628, 3892395.023292872589082 ], [ 4942746.485512546263635, 3892346.229215196799487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944440.739971275441349, 3892330.887390874326229 ], [ 4944434.057443745434284, 3892396.424718091730028 ], [ 4944394.593037114478648, 3892392.385303687304258 ], [ 4944401.275469419546425, 3892326.847966824192554 ], [ 4944440.739971275441349, 3892330.887390874326229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942703.272165898233652, 3889819.146432545036077 ], [ 4942676.74186968524009, 3889848.983750961255282 ], [ 4942598.429261967539787, 3889780.465444684028625 ], [ 4942628.997200475074351, 3889745.533472404349595 ], [ 4942670.744566734880209, 3889782.343598637729883 ], [ 4942666.707192598842084, 3889787.074042760767043 ], [ 4942703.272165898233652, 3889819.146432545036077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943393.373873722739518, 3892884.935898636933416 ], [ 4943403.765204303897917, 3892860.183729830663651 ], [ 4943413.556375123560429, 3892864.561340475454926 ], [ 4943430.585930303670466, 3892824.885392552707344 ], [ 4943471.191338227130473, 3892842.032957721501589 ], [ 4943443.770665814168751, 3892906.096901807468385 ], [ 4943393.373873722739518, 3892884.935898636933416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943362.431513259187341, 3889875.391997868195176 ], [ 4943370.526552828028798, 3889841.534776590298861 ], [ 4943380.60844166111201, 3889844.091967166401446 ], [ 4943385.233851902186871, 3889825.161132380366325 ], [ 4943411.447131384164095, 3889831.372897035442293 ], [ 4943398.438507631421089, 3889884.16070055263117 ], [ 4943362.431513259187341, 3889875.391997868195176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993306.087743788026273, 3911837.675571337342262 ], [ 4993325.399029375053942, 3911828.988164331298321 ], [ 4993338.566195353865623, 3911857.061789847910404 ], [ 4993326.748543499968946, 3911862.492087581194937 ], [ 4993331.328211800195277, 3911872.335985474288464 ], [ 4993300.776051371358335, 3911886.091110958252102 ], [ 4993279.023287270218134, 3911839.059529464691877 ], [ 4993301.793985413387418, 3911828.560712239239365 ], [ 4993306.087743788026273, 3911837.675571337342262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989371.374415334314108, 3908304.785892331972718 ], [ 4989379.066898791119456, 3908336.849081804975867 ], [ 4989334.70111966598779, 3908347.296474408823997 ], [ 4989327.007663758471608, 3908315.597427877597511 ], [ 4989371.374415334314108, 3908304.785892331972718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989037.937292720191181, 3908315.958967846352607 ], [ 4989035.903508175164461, 3908323.236492350231856 ], [ 4989058.921155076473951, 3908329.484829552471638 ], [ 4989048.170876137912273, 3908368.055776153225452 ], [ 4989002.999379448592663, 3908355.561317638494074 ], [ 4989015.495461400598288, 3908309.712100960779935 ], [ 4989037.937292720191181, 3908315.958967846352607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989038.904974418692291, 3907475.907314441166818 ], [ 4989025.29351313970983, 3907507.188380449544638 ], [ 4988987.0417659310624, 3907490.34182309685275 ], [ 4989000.652272924780846, 3907459.424868294969201 ], [ 4989038.904974418692291, 3907475.907314441166818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988504.400522203184664, 3905910.251378186512738 ], [ 4988502.301998781971633, 3905943.38215815089643 ], [ 4988457.101579102687538, 3905940.720144315157086 ], [ 4988458.912105225026608, 3905907.588640694040805 ], [ 4988504.400522203184664, 3905910.251378186512738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988416.783701597712934, 3904214.997648164629936 ], [ 4988451.639596191234887, 3904209.986944803968072 ], [ 4988457.017036932520568, 3904247.505972568877041 ], [ 4988481.21474811527878, 3904243.925181724596769 ], [ 4988485.177853900007904, 3904271.244985719677061 ], [ 4988426.701183070428669, 3904279.473774611484259 ], [ 4988424.439379651099443, 3904262.718055526260287 ], [ 4988418.10154296271503, 3904263.794609021861106 ], [ 4988413.575189569965005, 3904231.375561688560992 ], [ 4988419.048244399018586, 3904230.660977420862764 ], [ 4988416.783701597712934, 3904214.997648164629936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988405.552420538850129, 3907902.172724239528179 ], [ 4988418.80404004547745, 3907899.29278668621555 ], [ 4988424.209893396124244, 3907925.159720164723694 ], [ 4988374.084500530734658, 3907935.958430989645422 ], [ 4988364.693193878978491, 3907891.874919267836958 ], [ 4988401.567037026397884, 3907883.956130713690072 ], [ 4988405.552420538850129, 3907902.172724239528179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988351.474665183573961, 3896231.991483221761882 ], [ 4988331.561365591362119, 3896247.235245783813298 ], [ 4988316.632069802843034, 3896227.534968720749021 ], [ 4988336.833421078510582, 3896212.291914151981473 ], [ 4988351.474665183573961, 3896231.991483221761882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988060.895959683693945, 3896786.930290340445936 ], [ 4988061.976618317887187, 3896815.699262451846153 ], [ 4988023.375750534236431, 3896817.059867010917515 ], [ 4988022.295050653629005, 3896788.290896413847804 ], [ 4988060.895959683693945, 3896786.930290340445936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987889.649569015949965, 3907300.069503520149738 ], [ 4987897.03360728546977, 3907341.234791686292738 ], [ 4987885.223207246512175, 3907343.390295174904168 ], [ 4987889.481596492230892, 3907367.797734951600432 ], [ 4987852.898734789341688, 3907374.261416262947023 ], [ 4987840.967374283820391, 3907309.052123799454421 ], [ 4987889.649569015949965, 3907300.069503520149738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987756.306536020711064, 3896490.137140939477831 ], [ 4987784.308862856589258, 3896465.081458519212902 ], [ 4987762.76600908767432, 3896440.631426789332181 ], [ 4987785.570992798544466, 3896420.660708182957023 ], [ 4987824.636677072383463, 3896464.453047022689134 ], [ 4987773.5422367695719, 3896509.114556703250855 ], [ 4987756.306536020711064, 3896490.137140939477831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987474.460267417132854, 3908349.929722534026951 ], [ 4987511.047097528353333, 3908341.280738947447389 ], [ 4987518.166856334544718, 3908372.977845799177885 ], [ 4987526.232976590283215, 3908371.177077354397625 ], [ 4987531.931099691428244, 3908395.588026955723763 ], [ 4987487.279126067645848, 3908405.673629637341946 ], [ 4987474.460267417132854, 3908349.929722534026951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987446.683719880878925, 3894023.485518135596067 ], [ 4987460.611479471437633, 3893982.737303957808763 ], [ 4987502.347461307421327, 3893996.677052386105061 ], [ 4987488.419645523652434, 3894037.425245265476406 ], [ 4987446.683719880878925, 3894023.485518135596067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986680.602761396206915, 3896195.100787085946649 ], [ 4986669.887464320287108, 3896218.743159151170403 ], [ 4986637.37462972663343, 3896203.734721186105162 ], [ 4986648.089904093183577, 3896180.09233636688441 ], [ 4986680.602761396206915, 3896195.100787085946649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986478.635528953745961, 3910095.331625047605485 ], [ 4986476.090425845235586, 3910076.390525348950177 ], [ 4986489.050215357914567, 3910074.601326005533338 ], [ 4986485.938164428807795, 3910052.017518100794405 ], [ 4986535.185421015135944, 3910045.218612072058022 ], [ 4986538.57824965659529, 3910070.716172711458057 ], [ 4986531.090269730426371, 3910071.790376745630056 ], [ 4986534.766571584157646, 3910099.109291583765298 ], [ 4986494.735647301189601, 3910104.47404567245394 ], [ 4986493.035678233020008, 3910093.181791545357555 ], [ 4986478.635528953745961, 3910095.331625047605485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986412.2647057864815, 3910040.186473773326725 ], [ 4986364.74662100803107, 3910046.26152963982895 ], [ 4986359.659770714119077, 3910006.922829702496529 ], [ 4986368.299353077076375, 3910005.851369043346494 ], [ 4986366.6055021379143, 3909992.01020709425211 ], [ 4986403.755821354687214, 3909987.366542527917773 ], [ 4986405.169703039340675, 3909997.92983024707064 ], [ 4986418.129525566473603, 3909996.140596784185618 ], [ 4986420.67114435415715, 3910016.538213787600398 ], [ 4986409.151703097857535, 3910017.966806168202311 ], [ 4986412.2647057864815, 3910040.186473773326725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985398.294780107215047, 3900627.119192223064601 ], [ 4985409.307387170381844, 3900598.379134457092732 ], [ 4985437.218905966728926, 3900608.641445533372462 ], [ 4985419.248238563537598, 3900656.663818927016109 ], [ 4985379.25213645491749, 3900641.63898628205061 ], [ 4985386.497275638394058, 3900622.721465336624533 ], [ 4985398.294780107215047, 3900627.119192223064601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985365.271984459832311, 3908913.953357184305787 ], [ 4985411.039166010916233, 3908918.432203473523259 ], [ 4985408.379289558157325, 3908947.192342707887292 ], [ 4985385.35090116597712, 3908945.316699129994959 ], [ 4985385.052561672404408, 3908949.685580564662814 ], [ 4985362.024173829704523, 3908947.809956985060126 ], [ 4985365.271984459832311, 3908913.953357184305787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985165.304278000257909, 3904259.138357500545681 ], [ 4985195.57987408619374, 3904242.460323055274785 ], [ 4985203.894305848516524, 3904257.773642158601433 ], [ 4985213.985886654816568, 3904252.335684597492218 ], [ 4985231.761348427273333, 3904285.14985760813579 ], [ 4985229.455074552446604, 3904286.236761918757111 ], [ 4985244.937230330891907, 3904314.675903464667499 ], [ 4985218.410347642377019, 3904329.178015614394099 ], [ 4985200.346073420718312, 3904296.727294971700758 ], [ 4985189.100943432189524, 3904302.89077657321468 ], [ 4985165.304278000257909, 3904259.138357500545681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984756.825035579502583, 3903835.413037691731006 ], [ 4984742.681249307468534, 3903849.580750647932291 ], [ 4984748.139655670151114, 3903855.055622204206884 ], [ 4984710.327837151475251, 3903892.471863248385489 ], [ 4984671.831841110251844, 3903853.783029650337994 ], [ 4984706.180351755581796, 3903819.635741816367954 ], [ 4984700.147720752283931, 3903813.431259872857481 ], [ 4984717.753955438733101, 3903796.358649035450071 ], [ 4984756.825035579502583, 3903835.413037691731006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984638.963089557364583, 3905580.054469640832394 ], [ 4984627.67138949688524, 3905606.245340828318149 ], [ 4984605.234002416022122, 3905596.724997956305742 ], [ 4984602.628761023283005, 3905602.544968019705266 ], [ 4984562.643868325278163, 3905585.700655852910131 ], [ 4984576.252807239070535, 3905553.68910638615489 ], [ 4984638.963089557364583, 3905580.054469640832394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984473.1603236021474, 3917178.40268700523302 ], [ 4984505.093016384169459, 3917185.032293389551342 ], [ 4984501.600578645244241, 3917201.410128677263856 ], [ 4984513.970866461284459, 3917203.988204626832157 ], [ 4984503.785664636641741, 3917251.301724020391703 ], [ 4984444.235155415721238, 3917239.145106909330934 ], [ 4984450.930421238765121, 3917207.11700931424275 ], [ 4984466.465024264529347, 3917210.430778490845114 ], [ 4984473.1603236021474, 3917178.40268700523302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984433.962418019771576, 3909368.369668385479599 ], [ 4984464.752796073444188, 3909374.996486362069845 ], [ 4984454.858678045682609, 3909419.761552247218788 ], [ 4984424.068348930217326, 3909413.13474542228505 ], [ 4984433.962418019771576, 3909368.369668385479599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984098.883516752161086, 3916240.242021932732314 ], [ 4984123.576469780877233, 3916266.153354342095554 ], [ 4984099.345010379329324, 3916289.037115733604878 ], [ 4984107.096835563890636, 3916297.430346822366118 ], [ 4984090.943404711782932, 3916312.322063056286424 ], [ 4984058.497770368121564, 3916278.381673092022538 ], [ 4984098.883516752161086, 3916240.242021932732314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984096.914493170566857, 3905390.525028553325683 ], [ 4984099.69678929913789, 3905308.965978898573667 ], [ 4984134.248012715950608, 3905310.139207895379514 ], [ 4984131.465611811727285, 3905391.698254028800875 ], [ 4984096.914493170566857, 3905390.525028553325683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983155.818007999099791, 3916794.449454809073359 ], [ 4983182.295397575944662, 3916795.602894774638116 ], [ 4983181.36895414814353, 3916822.910848494619131 ], [ 4983154.603766653686762, 3916821.756746076513082 ], [ 4983155.818007999099791, 3916794.449454809073359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983141.138172595761716, 3902296.829508107621223 ], [ 4983131.63817176502198, 3902295.351106831803918 ], [ 4983137.479955760762095, 3902259.679697149898857 ], [ 4983176.631086136214435, 3902265.960114125162363 ], [ 4983170.20574002712965, 3902304.907352237962186 ], [ 4983158.114759081043303, 3902303.058840784244239 ], [ 4983156.650532579980791, 3902313.615274047013372 ], [ 4983138.802464606240392, 3902310.66111656697467 ], [ 4983141.138172595761716, 3902296.829508107621223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982647.766908111050725, 3917314.35990887414664 ], [ 4982660.440124802291393, 3917310.383400157559663 ], [ 4982657.86889610812068, 3917302.002425087615848 ], [ 4982690.416671887040138, 3917291.516952531412244 ], [ 4982706.705756397917867, 3917342.533066761679947 ], [ 4982672.430288619361818, 3917353.378703523427248 ], [ 4982666.143229177221656, 3917333.701056568417698 ], [ 4982655.197770703583956, 3917337.317377838306129 ], [ 4982647.766908111050725, 3917314.35990887414664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982553.291483675129712, 3916966.759719462599605 ], [ 4982580.076505400240421, 3916959.17403919249773 ], [ 4982588.074024702422321, 3916986.13825798407197 ], [ 4982561.001204600557685, 3916993.723273417446762 ], [ 4982553.291483675129712, 3916966.759719462599605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982280.973907150328159, 3904689.390992978587747 ], [ 4982271.24132380168885, 3904663.879668544512242 ], [ 4982294.874319587834179, 3904654.830050627235323 ], [ 4982298.023627668619156, 3904662.848103271331638 ], [ 4982311.569100482389331, 3904657.781034520361573 ], [ 4982316.720021580345929, 3904671.993877327535301 ], [ 4982305.191894131712615, 3904676.337263431400061 ], [ 4982319.217280487529933, 3904713.510571866296232 ], [ 4982275.986886953003705, 3904729.798291720915586 ], [ 4982274.557037943042815, 3904725.425463564228266 ], [ 4982239.108066747896373, 3904738.817860693670809 ], [ 4982227.945604330860078, 3904708.933725010603666 ], [ 4982280.973907150328159, 3904689.390992978587747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982210.216419131495059, 3914297.967412506695837 ], [ 4982178.541153789497912, 3914302.993424796033651 ], [ 4982180.530512494035065, 3914314.286088583059609 ], [ 4982140.505099054425955, 3914320.385608859825879 ], [ 4982138.519025438465178, 3914307.636419785674661 ], [ 4982106.844610028900206, 3914312.298384606838226 ], [ 4982101.739166798070073, 3914278.786498544272035 ], [ 4982142.341162878088653, 3914272.324093621689826 ], [ 4982140.072186499834061, 3914257.389460101723671 ], [ 4982171.747498269192874, 3914252.363402593880892 ], [ 4982173.729431147687137, 3914266.933253870811313 ], [ 4982204.829033607617021, 3914261.90592967486009 ], [ 4982210.216419131495059, 3914297.967412506695837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982037.804963475093246, 3904748.557429009117186 ], [ 4981984.753911743871868, 3904778.296278745867312 ], [ 4981924.236540437676013, 3904671.468968810513616 ], [ 4981977.287735287100077, 3904641.730001537594944 ], [ 4982037.804963475093246, 3904748.557429009117186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981896.31918147392571, 3905430.620787723921239 ], [ 4981873.24728701915592, 3905446.590530651155859 ], [ 4981838.233553501777351, 3905395.168963866308331 ], [ 4981861.592597171664238, 3905379.563970908056945 ], [ 4981896.31918147392571, 3905430.620787723921239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981699.966375609859824, 3903754.080102626699954 ], [ 4981681.527619454078376, 3903758.044078812003136 ], [ 4981689.509557591751218, 3903794.111050651874393 ], [ 4981656.377281812950969, 3903801.319185388274491 ], [ 4981652.671394259668887, 3903784.560805080924183 ], [ 4981640.283192782662809, 3903787.08188387658447 ], [ 4981636.290964995510876, 3903769.59459947841242 ], [ 4981645.798708920367062, 3903767.431176613550633 ], [ 4981640.09669459797442, 3903741.929155873134732 ], [ 4981694.549917836673558, 3903729.671107335481793 ], [ 4981699.966375609859824, 3903754.080102626699954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981611.886164546012878, 3901685.980509491637349 ], [ 4981645.156820055097342, 3901746.501013546716422 ], [ 4981621.225325284525752, 3901759.191832316573709 ], [ 4981622.659530449658632, 3901761.743971637450159 ], [ 4981601.034401264972985, 3901773.347596313338727 ], [ 4981577.229642456397414, 3901729.598421750124544 ], [ 4981600.873973677866161, 3901716.542788100894541 ], [ 4981590.5489660827443, 3901697.584788889624178 ], [ 4981611.886164546012878, 3901685.980509491637349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981076.064347037114203, 3903311.720722160302103 ], [ 4981103.106723714619875, 3903323.797273653093725 ], [ 4981099.344469472765923, 3903332.16391709074378 ], [ 4981132.140519830398262, 3903346.802232303656638 ], [ 4981120.274563798680902, 3903373.357387823984027 ], [ 4981060.436191030777991, 3903346.642550836317241 ], [ 4981076.064347037114203, 3903311.720722160302103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980749.818509959615767, 3903560.426443564239889 ], [ 4980763.407788952812552, 3903535.695596025325358 ], [ 4980815.75485931802541, 3903564.213826567865908 ], [ 4980802.165546392090619, 3903588.944648063741624 ], [ 4980749.818509959615767, 3903560.426443564239889 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980556.752964163199067, 3899441.678150133229792 ], [ 4980539.743445002473891, 3899449.287364619784057 ], [ 4980543.469111814163625, 3899457.670585880056024 ], [ 4980518.09846140537411, 3899469.266806307714432 ], [ 4980500.614090296439826, 3899430.994550135917962 ], [ 4980542.994303305633366, 3899411.789090428035706 ], [ 4980556.752964163199067, 3899441.678150133229792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980515.932602775283158, 3907502.365521557163447 ], [ 4980492.268187471665442, 3907527.07433381350711 ], [ 4980475.603084779344499, 3907511.379905559588224 ], [ 4980499.555423310957849, 3907486.671713758260012 ], [ 4980515.932602775283158, 3907502.365521557163447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980397.986538078635931, 3899081.567361894994974 ], [ 4980410.021450587548316, 3899109.631894307676703 ], [ 4980355.247430838644505, 3899132.815739068202674 ], [ 4980343.211671115830541, 3899105.115359490271658 ], [ 4980397.986538078635931, 3899081.567361894994974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980237.779465017840266, 3901344.287591028492898 ], [ 4980233.475588165223598, 3901336.995526131708175 ], [ 4980202.623838850297034, 3901353.67785793216899 ], [ 4980178.241248018108308, 3901309.56454094266519 ], [ 4980202.173256661742926, 3901296.508311511948705 ], [ 4980213.072983077727258, 3901316.559423981234431 ], [ 4980258.341926224529743, 3901291.897874257527292 ], [ 4980275.840614310465753, 3901323.25156093435362 ], [ 4980237.779465017840266, 3901344.287591028492898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980105.621763961389661, 3900278.186919431667775 ], [ 4980130.693898709490895, 3900270.959220610093325 ], [ 4980137.552496823482215, 3900295.371004810091108 ], [ 4980112.481180434115231, 3900302.23456837516278 ], [ 4980105.621763961389661, 3900278.186919431667775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979990.070698818191886, 3899120.363013008609414 ], [ 4979947.411157190799713, 3899135.563296295702457 ], [ 4979936.81823209952563, 3899106.409728733822703 ], [ 4979940.277588073164225, 3899104.960760496556759 ], [ 4979933.977836762554944, 3899088.197004586458206 ], [ 4979958.478980609215796, 3899079.147249083966017 ], [ 4979963.919447124004364, 3899093.724350896198303 ], [ 4979978.619338891468942, 3899088.65863996790722 ], [ 4979990.070698818191886, 3899120.363013008609414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979969.28129175119102, 3907579.089655414223671 ], [ 4979991.998616848140955, 3907592.248074111528695 ], [ 4979979.281424852088094, 3907614.432347018271685 ], [ 4979956.563316777348518, 3907601.638069488573819 ], [ 4979969.28129175119102, 3907579.089655414223671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979831.0842001773417, 3903613.391853688750416 ], [ 4979809.962679754011333, 3903659.226381071377546 ], [ 4979784.647065772674978, 3903647.519021457526833 ], [ 4979805.768552088178694, 3903601.684474508743733 ], [ 4979831.0842001773417, 3903613.391853688750416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979794.495837833732367, 3904149.677812190260738 ], [ 4979777.452235671691597, 3904174.401632811874151 ], [ 4979740.648000358603895, 3904149.196423456072807 ], [ 4979757.403623634018004, 3904124.471952925436199 ], [ 4979794.495837833732367, 3904149.677812190260738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979635.019852673634887, 3908762.519978567492217 ], [ 4979690.582746030762792, 3908764.461437423247844 ], [ 4979688.740440927445889, 3908817.256655870005488 ], [ 4979658.800116180442274, 3908816.099154266994447 ], [ 4979659.10623325034976, 3908807.724770075175911 ], [ 4979633.483765727840364, 3908806.940816279035062 ], [ 4979635.019852673634887, 3908762.519978567492217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979617.155769669450819, 3904394.352600955404341 ], [ 4979634.33356652315706, 3904440.270499156787992 ], [ 4979591.393909686245024, 3904455.834900880698115 ], [ 4979574.504007391631603, 3904409.917654674500227 ], [ 4979617.155769669450819, 3904394.352600955404341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979590.610983533784747, 3901898.174715828150511 ], [ 4979615.562060029245913, 3901945.930059649515897 ], [ 4979576.929502387531102, 3901965.50926533062011 ], [ 4979552.266360153444111, 3901917.75458155060187 ], [ 4979590.610983533784747, 3901898.174715828150511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979337.754349355585873, 3901367.452289708890021 ], [ 4979309.502184807322919, 3901380.864086157176644 ], [ 4979277.392721138894558, 3901313.430518968962133 ], [ 4979305.932931452989578, 3901300.019311416894197 ], [ 4979337.754349355585873, 3901367.452289708890021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979245.725204861722887, 3908646.24683861201629 ], [ 4979236.806993050500751, 3908642.950397166889161 ], [ 4979244.627000764012337, 3908621.483455318957567 ], [ 4979279.724821011535823, 3908634.303874593228102 ], [ 4979261.18992473743856, 3908684.514141437597573 ], [ 4979235.010364952497184, 3908674.990183926653117 ], [ 4979245.725204861722887, 3908646.24683861201629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979094.955402930267155, 3902448.033668375108391 ], [ 4979146.891216488555074, 3902401.900848567951471 ], [ 4979177.632010208442807, 3902435.83128923131153 ], [ 4979171.284701460041106, 3902441.2795758866705 ], [ 4979197.427184380590916, 3902470.830556083470583 ], [ 4979204.928761766292155, 3902464.292371152434498 ], [ 4979237.392566245049238, 3902500.411384518258274 ], [ 4979185.45757157728076, 3902546.179902679752558 ], [ 4979154.431290092878044, 3902511.156441880855709 ], [ 4979159.913859736174345, 3902506.070418864488602 ], [ 4979134.344974260777235, 3902477.61310348380357 ], [ 4979127.132180420681834, 3902483.787798871286213 ], [ 4979094.955402930267155, 3902448.033668375108391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978895.216076880693436, 3906285.551314464770257 ], [ 4978913.086186526343226, 3906277.214620599523187 ], [ 4978923.69142893049866, 3906299.813565227203071 ], [ 4978906.10926843713969, 3906308.150869974866509 ], [ 4978895.216076880693436, 3906285.551314464770257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978846.676196710206568, 3904482.266545561142266 ], [ 4978843.917575095780194, 3904560.184797510504723 ], [ 4978796.119966709986329, 3904558.625872428994626 ], [ 4978798.878449860028923, 3904480.707615647930652 ], [ 4978846.676196710206568, 3904482.266545561142266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978706.824730487540364, 3913996.025459617841989 ], [ 4978697.28735638037324, 3914013.847615781240165 ], [ 4978669.395787040702999, 3913999.586767285596579 ], [ 4978678.93392609898001, 3913981.400469308253378 ], [ 4978706.824730487540364, 3913996.025459617841989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978571.102697066962719, 3904076.034771095495671 ], [ 4978568.947942627593875, 3904141.209715317003429 ], [ 4978541.881191433407366, 3904140.42373358272016 ], [ 4978542.799415884539485, 3904114.936485258396715 ], [ 4978530.417870746925473, 3904114.54595932085067 ], [ 4978531.943054432980716, 3904074.494744685478508 ], [ 4978571.102697066962719, 3904076.034771095495671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978519.773122234269977, 3908433.128690685145557 ], [ 4978489.539752799086273, 3908434.156663538888097 ], [ 4978488.185507000423968, 3908394.099206822458655 ], [ 4978518.131006330251694, 3908393.070618797559291 ], [ 4978519.773122234269977, 3908433.128690685145557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978519.765480774454772, 3907761.304396526422352 ], [ 4978553.800836242735386, 3907732.974640525411814 ], [ 4978573.617749326862395, 3907756.32137964386493 ], [ 4978539.581625995226204, 3907785.01524162106216 ], [ 4978519.765480774454772, 3907761.304396526422352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978172.544460086151958, 3895925.216564148664474 ], [ 4978148.038738518022001, 3895935.360314855352044 ], [ 4978137.435651714913547, 3895909.484664470888674 ], [ 4978161.940621889196336, 3895899.705032317433506 ], [ 4978172.544460086151958, 3895925.216564148664474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978057.855111310258508, 3896491.923998307436705 ], [ 4978062.856500971131027, 3896442.412912145722657 ], [ 4978095.398449511267245, 3896445.758878389373422 ], [ 4978090.397000496275723, 3896495.269958599004894 ], [ 4978057.855111310258508, 3896491.923998307436705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977992.085039779543877, 3911130.232912816107273 ], [ 4977980.853649545460939, 3911132.029859317932278 ], [ 4977983.122133352793753, 3911148.420637927018106 ], [ 4977948.277218134142458, 3911153.444941147696227 ], [ 4977942.605567123740911, 3911112.650068262126297 ], [ 4977988.6811653226614, 3911106.192941344808787 ], [ 4977992.085039779543877, 3911130.232912816107273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977923.126510535366833, 3895909.396115557756275 ], [ 4977951.382183849811554, 3895896.711161830928177 ], [ 4977946.794903616420925, 3895886.505854566581547 ], [ 4977973.60959745477885, 3895874.182014773599803 ], [ 4977990.524569878354669, 3895912.087202163878828 ], [ 4977977.838125259615481, 3895917.886502002365887 ], [ 4977983.285691875964403, 3895929.914278962649405 ], [ 4977965.409772771410644, 3895937.887410952709615 ], [ 4977960.248712129890919, 3895926.588501408696175 ], [ 4977935.740768761374056, 3895937.82482993369922 ], [ 4977923.126510535366833, 3895909.396115557756275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977878.917405506595969, 3904176.159916240721941 ], [ 4977906.54931145068258, 3904182.044262907467782 ], [ 4977896.949141873978078, 3904228.268726522568613 ], [ 4977869.029321608133614, 3904222.383782860357314 ], [ 4977878.917405506595969, 3904176.159916240721941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977748.899462392553687, 3906711.335857349447906 ], [ 4977775.592984136193991, 3906751.446525597479194 ], [ 4977750.796316286548972, 3906767.780317200347781 ], [ 4977724.102773905731738, 3906727.669673188589513 ], [ 4977748.899462392553687, 3906711.335857349447906 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977729.427560174837708, 3911179.929816191550344 ], [ 4977693.386057225987315, 3911206.435786008369178 ], [ 4977675.301308434456587, 3911181.636748007498682 ], [ 4977711.342826655134559, 3911155.130754340440035 ], [ 4977729.427560174837708, 3911179.929816191550344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977737.642727516591549, 3906998.248284619301558 ], [ 4977713.719281626865268, 3907010.214362543541938 ], [ 4977698.520192069932818, 3906981.05185773735866 ], [ 4977722.156491977162659, 3906968.721030842512846 ], [ 4977737.642727516591549, 3906998.248284619301558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977603.091627585701644, 3911432.372892750892788 ], [ 4977622.902802799828351, 3911457.539641928859055 ], [ 4977588.876950475387275, 3911484.049985144287348 ], [ 4977569.065763090737164, 3911458.883260638918728 ], [ 4977603.091627585701644, 3911432.372892750892788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977617.949257106520236, 3902152.497888933867216 ], [ 4977583.926165744662285, 3902172.089626658242196 ], [ 4977558.960251013748348, 3902129.798104198183864 ], [ 4977575.683062566444278, 3902120.365740244276822 ], [ 4977558.753139107488096, 3902091.199779998976737 ], [ 4977575.765483610332012, 3902081.039760837331414 ], [ 4977617.949257106520236, 3902152.497888933867216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977527.265119230374694, 3912997.987163636367768 ], [ 4977524.85311487223953, 3913050.053200104739517 ], [ 4977484.267930719070137, 3913048.147545333951712 ], [ 4977485.479609403759241, 3913019.383535861968994 ], [ 4977476.844405234791338, 3913019.001327387522906 ], [ 4977478.044644926674664, 3912995.699296423699707 ], [ 4977527.265119230374694, 3912997.987163636367768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977483.383636943995953, 3905079.468073749914765 ], [ 4977477.408293426036835, 3905045.227191206999123 ], [ 4977518.600534496828914, 3905038.030780204571784 ], [ 4977524.57582719065249, 3905072.27167175617069 ], [ 4977483.383636943995953, 3905079.468073749914765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977384.777806658297777, 3909136.786414409521967 ], [ 4977408.713676945306361, 3909117.901538650039583 ], [ 4977441.735444405116141, 3909159.845829695928842 ], [ 4977417.800349311903119, 3909178.366545498371124 ], [ 4977384.777806658297777, 3909136.786414409521967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977375.248725624755025, 3907082.69580406229943 ], [ 4977417.060106755234301, 3907053.288467790465802 ], [ 4977433.998455940745771, 3907076.99246869282797 ], [ 4977391.899164082482457, 3907106.399177437648177 ], [ 4977375.248725624755025, 3907082.69580406229943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977267.301496067084372, 3913697.672659299336374 ], [ 4977274.50174999050796, 3913695.867006507236511 ], [ 4977267.940236174501479, 3913667.450899521354586 ], [ 4977307.395860506221652, 3913658.429864009376615 ], [ 4977319.378763124346733, 3913709.797714889515191 ], [ 4977272.722961959429085, 3913720.624384458642453 ], [ 4977267.301496067084372, 3913697.672659299336374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977141.528024441562593, 3912857.354608820751309 ], [ 4977139.701580437831581, 3912905.052290591411293 ], [ 4977093.358815301209688, 3912903.135249296203256 ], [ 4977095.473044435493648, 3912855.438162843696773 ], [ 4977141.528024441562593, 3912857.354608820751309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977089.817327229306102, 3908374.042437757365406 ], [ 4977097.238036022521555, 3908405.373249469324946 ], [ 4977043.370713133364916, 3908418.37010631756857 ], [ 4977035.949945218861103, 3908387.039309222716838 ], [ 4977089.817327229306102, 3908374.042437757365406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977034.123614323325455, 3903025.194418330211192 ], [ 4977098.824380500242114, 3903070.116941317450255 ], [ 4977072.251523789018393, 3903108.295511939097196 ], [ 4977058.736512405797839, 3903098.800029770936817 ], [ 4977037.941311325877905, 3903128.251483781728894 ], [ 4977046.280389557592571, 3903134.094896276947111 ], [ 4977021.152059834450483, 3903170.091730271000415 ], [ 4976959.902535333298147, 3903127.361333036329597 ], [ 4976986.473703064024448, 3903089.910910226404667 ], [ 4976999.413556082174182, 3903099.041031546890736 ], [ 4977020.209493001922965, 3903069.225418568123132 ], [ 4977008.995199688710272, 3903061.191261314786971 ], [ 4977034.123614323325455, 3903025.194418330211192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976969.421868876554072, 3900619.2469347352162 ], [ 4977002.565858153626323, 3900607.663485947530717 ], [ 4977020.891225388273597, 3900659.043935170862824 ], [ 4976987.459293562918901, 3900670.626764465123415 ], [ 4976969.421868876554072, 3900619.2469347352162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976928.164081566035748, 3901349.971898192539811 ], [ 4976929.981042648665607, 3901307.0082220393233 ], [ 4976957.337927985936403, 3901308.157305221073329 ], [ 4976956.427160689607263, 3901330.731530088465661 ], [ 4976986.663928614929318, 3901331.886612590402365 ], [ 4976985.757668264210224, 3901352.276061047334224 ], [ 4976928.164081566035748, 3901349.971898192539811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976647.272680032067001, 3901398.18498073425144 ], [ 4976642.588288296945393, 3901435.316673437133431 ], [ 4976616.675968925468624, 3901431.986101044807583 ], [ 4976621.359575205482543, 3901395.218533217906952 ], [ 4976647.272680032067001, 3901398.18498073425144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976527.160598408430815, 3901407.769202284980565 ], [ 4976506.139576589688659, 3901406.633582470007241 ], [ 4976507.631933112628758, 3901381.14749103365466 ], [ 4976528.364984564483166, 3901382.282519656699151 ], [ 4976527.160598408430815, 3901407.769202284980565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976413.453311449848115, 3912183.295413761865348 ], [ 4976434.708901612088084, 3912206.279463742394 ], [ 4976402.982928995043039, 3912235.344974423758686 ], [ 4976381.727334841154516, 3912212.360949120484293 ], [ 4976413.453311449848115, 3912183.295413761865348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976161.546642233617604, 3901623.67757245246321 ], [ 4976122.104972009547055, 3901617.4067895822227 ], [ 4976126.187358388677239, 3901592.654224478174001 ], [ 4976165.629064017906785, 3901598.925013253930956 ], [ 4976161.546642233617604, 3901623.67757245246321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976147.913027125410736, 3906887.170208469498903 ], [ 4976159.0843062736094, 3906915.595335708465427 ], [ 4976131.421367100439966, 3906926.098650847095996 ], [ 4976120.537994267418981, 3906897.674122898373753 ], [ 4976147.913027125410736, 3906887.170208469498903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976072.229483411647379, 3908982.9611806711182 ], [ 4976060.662619506008923, 3909007.698594206944108 ], [ 4976030.748344153165817, 3908993.800549666862935 ], [ 4976052.725214058533311, 3908946.872270660009235 ], [ 4976079.475503374822438, 3908959.307352181058377 ], [ 4976069.065458402968943, 3908981.4981947876513 ], [ 4976072.229483411647379, 3908982.9611806711182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976023.162117138504982, 3912291.008552846964449 ], [ 4976041.536995972506702, 3912315.078819496091455 ], [ 4976004.919966937042773, 3912343.042426227126271 ], [ 4975986.545074570924044, 3912318.972184199374169 ], [ 4976023.162117138504982, 3912291.008552846964449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975982.62365132663399, 3907884.555162196513265 ], [ 4976011.164893426932395, 3907866.40670191636309 ], [ 4976033.837875384837389, 3907902.137884178664535 ], [ 4976005.008735592477024, 3907920.285734035540372 ], [ 4975982.62365132663399, 3907884.555162196513265 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975653.150949071161449, 3907075.876734308898449 ], [ 4975601.292752362787724, 3907091.065335967577994 ], [ 4975588.995749431662261, 3907049.529406973626465 ], [ 4975580.35271018743515, 3907052.060854223091155 ], [ 4975575.492510033771396, 3907034.936819651629776 ], [ 4975635.993854342028499, 3907017.216736638918519 ], [ 4975653.150949071161449, 3907075.876734308898449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975508.396992588415742, 3911458.283791222143918 ], [ 4975556.195754338987172, 3911453.282506043091416 ], [ 4975557.605722949840128, 3911467.850679387338459 ], [ 4975509.806986844167113, 3911472.851962094195187 ], [ 4975508.396992588415742, 3911458.283791222143918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975494.545553673990071, 3909763.581373802851886 ], [ 4975523.677929168567061, 3909736.694388154428452 ], [ 4975559.587497218511999, 3909775.365017079282552 ], [ 4975530.455127483233809, 3909802.251964435912669 ], [ 4975494.545553673990071, 3909763.581373802851886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975461.110674432478845, 3911637.341816170606762 ], [ 4975539.141702202148736, 3911629.852590850554407 ], [ 4975540.835135566070676, 3911646.606136462185532 ], [ 4975462.804155955091119, 3911654.095356955658644 ], [ 4975461.110674432478845, 3911637.341816170606762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975395.740443240851164, 3904361.118500554468483 ], [ 4975402.06158469710499, 3904368.049735845532268 ], [ 4975387.924488136544824, 3904381.494116254150867 ], [ 4975346.547216171398759, 3904337.35088052181527 ], [ 4975361.837616451084614, 3904323.180538064334542 ], [ 4975358.964627825655043, 3904319.897569851018488 ], [ 4975378.870455198921263, 3904301.731084756553173 ], [ 4975416.512342552654445, 3904341.861393531318754 ], [ 4975395.740443240851164, 3904361.118500554468483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974921.359369057230651, 3900235.290777875110507 ], [ 4974926.347767657600343, 3900189.056159746833146 ], [ 4974954.278240675106645, 3900192.024999103043228 ], [ 4974949.28979454934597, 3900238.259612134192139 ], [ 4974921.359369057230651, 3900235.290777875110507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974731.904487546533346, 3904840.078606171533465 ], [ 4974777.438808004371822, 3904821.234427017625421 ], [ 4974784.602097400464118, 3904839.091143425554037 ], [ 4974793.247948742471635, 3904835.467053308617324 ], [ 4974799.552443997003138, 3904850.773141744546592 ], [ 4974788.313568465411663, 3904855.120326717849821 ], [ 4974795.764794351533055, 3904872.977620169520378 ], [ 4974762.622663495130837, 3904886.748601280152798 ], [ 4974751.732659223489463, 3904860.509443995542824 ], [ 4974741.934284990653396, 3904864.495384824462235 ], [ 4974731.904487546533346, 3904840.078606171533465 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974625.133476142771542, 3900169.885629602707922 ], [ 4974605.835090869106352, 3900170.939703279640526 ], [ 4974606.103576599620283, 3900180.771760739386082 ], [ 4974583.06115953810513, 3900181.818418353330344 ], [ 4974581.136899183504283, 3900135.570022569037974 ], [ 4974623.765047675929964, 3900133.833989514969289 ], [ 4974625.133476142771542, 3900169.885629602707922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974598.877187452279031, 3898888.094511932693422 ], [ 4974553.344509943388402, 3898901.112864683382213 ], [ 4974541.617401457391679, 3898859.942892245016992 ], [ 4974561.21413145493716, 3898854.155669992789626 ], [ 4974562.071683319285512, 3898857.434543123468757 ], [ 4974588.295709216035903, 3898850.203965465538204 ], [ 4974598.877187452279031, 3898888.094511932693422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974583.817773311398923, 3904879.474628692027181 ], [ 4974578.952204099856317, 3904864.535577967297286 ], [ 4974615.545365883968771, 3904852.956013227347285 ], [ 4974630.139832592569292, 3904898.865578450262547 ], [ 4974597.004324777051806, 3904909.359592739026994 ], [ 4974592.424552536569536, 3904895.513501378241926 ], [ 4974579.45873670745641, 3904899.493214149028063 ], [ 4974574.021598698571324, 3904882.368240382522345 ], [ 4974583.817773311398923, 3904879.474628692027181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974532.000225788913667, 3898916.728145408909768 ], [ 4974486.460417195223272, 3898933.387899992987514 ], [ 4974470.990442577749491, 3898891.482284178957343 ], [ 4974492.03082572016865, 3898883.877218775451183 ], [ 4974494.03612507507205, 3898889.343144848477095 ], [ 4974518.53560748603195, 3898880.28843167424202 ], [ 4974532.000225788913667, 3898916.728145408909768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974403.9736755983904, 3908890.760704637970775 ], [ 4974446.595858717337251, 3908885.018939440604299 ], [ 4974451.13319939468056, 3908919.984640465583652 ], [ 4974431.26240071374923, 3908922.494229348376393 ], [ 4974430.410924755968153, 3908916.302291956264526 ], [ 4974410.828034802339971, 3908918.812465800438076 ], [ 4974411.678074237890542, 3908925.732664678711444 ], [ 4974387.487202515825629, 3908928.96200347179547 ], [ 4974381.812542965635657, 3908886.711414779536426 ], [ 4974403.123633036389947, 3908883.840506158769131 ], [ 4974403.9736755983904, 3908890.760704637970775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974380.167254487983882, 3905932.868303896859288 ], [ 4974421.887065602466464, 3905948.972624886315316 ], [ 4974418.703860473819077, 3905956.977225984446704 ], [ 4974455.244277161546052, 3905971.250692315399647 ], [ 4974445.114438738673925, 3905997.448127632495016 ], [ 4974366.854286507703364, 3905967.070374178700149 ], [ 4974380.167254487983882, 3905932.868303896859288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974277.459238813258708, 3895232.687159503344446 ], [ 4974313.755031049251556, 3895232.394652053248137 ], [ 4974314.027992838062346, 3895240.041909507475793 ], [ 4974326.990515540353954, 3895240.067500297911465 ], [ 4974327.243342640809715, 3895257.910343135241419 ], [ 4974316.297219629399478, 3895257.888732619117945 ], [ 4974316.557241752743721, 3895272.090295052621514 ], [ 4974333.265192355029285, 3895271.75915343593806 ], [ 4974333.497162628918886, 3895300.16171016683802 ], [ 4974265.803421585820615, 3895300.392249953467399 ], [ 4974265.552708583883941, 3895281.457023089751601 ], [ 4974277.939818375743926, 3895281.117325991392136 ], [ 4974277.459238813258708, 3895232.687159503344446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974051.082861582748592, 3908846.004863349720836 ], [ 4974067.446503299288452, 3908870.069767624139786 ], [ 4974009.499369502067566, 3908909.282223020214587 ], [ 4973992.847790129482746, 3908885.216788283083588 ], [ 4974051.082861582748592, 3908846.004863349720836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974052.649760045111179, 3904678.517445344012231 ], [ 4974028.178597880527377, 3904675.920451556798071 ], [ 4974031.10749623272568, 3904650.801130007952452 ], [ 4974004.6213348954916, 3904647.836068607401103 ], [ 4974008.724198046140373, 3904611.430973331909627 ], [ 4974019.664367222227156, 3904612.544848883524537 ], [ 4974021.421418786980212, 3904597.618907933589071 ], [ 4974038.983145299367607, 3904599.474058370105922 ], [ 4974037.224653529934585, 3904615.128258362878114 ], [ 4974059.392941225320101, 3904617.356603028718382 ], [ 4974052.649760045111179, 3904678.517445344012231 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973777.846107862889767, 3898243.0594398281537 ], [ 4973781.858515959233046, 3898253.26292399642989 ], [ 4973759.374878079630435, 3898262.322243884205818 ], [ 4973741.602742858231068, 3898218.591919846367091 ], [ 4973786.858119141310453, 3898200.473832636140287 ], [ 4973800.617080157622695, 3898234.364827300887555 ], [ 4973777.846107862889767, 3898243.0594398281537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973753.955998873338103, 3903984.261819358915091 ], [ 4973778.166189775802195, 3903973.385190977714956 ], [ 4973788.774527940899134, 3903997.074466820806265 ], [ 4973764.564354028552771, 3904007.951085806824267 ], [ 4973753.955998873338103, 3903984.261819358915091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973625.602399765513837, 3895519.79974332684651 ], [ 4973652.586536176502705, 3895419.716722107026726 ], [ 4973704.984677786938846, 3895434.01996694272384 ], [ 4973678.001070506870747, 3895533.738808277063072 ], [ 4973625.602399765513837, 3895519.79974332684651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973597.032414804212749, 3910035.465775292832404 ], [ 4973624.88110121153295, 3910075.210514659062028 ], [ 4973595.187262621708214, 3910095.908210309688002 ], [ 4973579.39761596545577, 3910072.937090816907585 ], [ 4973591.793508009985089, 3910064.586185033433139 ], [ 4973579.735159148462117, 3910047.448458622209728 ], [ 4973597.032414804212749, 3910035.465775292832404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973552.37785972841084, 3903838.2162053915672 ], [ 4973530.464265560731292, 3903852.738817320670933 ], [ 4973527.881091960705817, 3903848.364216225687414 ], [ 4973507.698133637197316, 3903861.433688244316727 ], [ 4973480.996776853688061, 3903820.59907103702426 ], [ 4973523.092659510672092, 3903793.371073790360242 ], [ 4973552.37785972841084, 3903838.2162053915672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973544.11095845606178, 3895949.678083751350641 ], [ 4973571.850076908245683, 3895905.308251563459635 ], [ 4973587.674335218034685, 3895914.806425941176713 ], [ 4973592.008538980036974, 3895907.896402879152447 ], [ 4973627.108645115979016, 3895929.448417051229626 ], [ 4973613.239750497974455, 3895951.269173013046384 ], [ 4973597.128183253109455, 3895941.406294234562665 ], [ 4973578.635660575702786, 3895970.86478622071445 ], [ 4973544.11095845606178, 3895949.678083751350641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973457.035045653581619, 3899700.77603440079838 ], [ 4973498.829512582160532, 3899683.743120250757784 ], [ 4973511.729001845233142, 3899715.083414195105433 ], [ 4973469.934575359337032, 3899732.11630861600861 ], [ 4973457.035045653581619, 3899700.77603440079838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973423.693704064935446, 3898627.255215039942414 ], [ 4973383.049723096191883, 3898644.290469761937857 ], [ 4973365.559602981433272, 3898603.473973373882473 ], [ 4973416.004801721312106, 3898582.088151118718088 ], [ 4973428.907041875645518, 3898612.335998347494751 ], [ 4973419.106590245850384, 3898616.322406424209476 ], [ 4973423.693704064935446, 3898627.255215039942414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973297.890922717750072, 3910488.958137772511691 ], [ 4973264.733213900588453, 3910514.747351636178792 ], [ 4973239.45998701825738, 3910483.018879965413362 ], [ 4973272.906308627687395, 3910456.866061455570161 ], [ 4973297.890922717750072, 3910488.958137772511691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973172.401706640608609, 3911216.981081516016275 ], [ 4973202.982987750321627, 3911183.175836784765124 ], [ 4973238.906631682999432, 3911215.289029954001307 ], [ 4973218.134545938111842, 3911238.189218123443425 ], [ 4973194.568136583082378, 3911217.388063633814454 ], [ 4973185.047522998414934, 3911227.929513357579708 ], [ 4973172.401706640608609, 3911216.981081516016275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973170.070078930817544, 3902887.092425550799817 ], [ 4973192.560211695730686, 3902872.570641464088112 ], [ 4973190.550725659355521, 3902869.289577780291438 ], [ 4973224.286677084863186, 3902847.142804980278015 ], [ 4973241.800994422286749, 3902874.122383681125939 ], [ 4973185.287670746445656, 3902910.426219927147031 ], [ 4973170.070078930817544, 3902887.092425550799817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972975.725990124046803, 3905110.831853680312634 ], [ 4972969.910216771997511, 3905140.315317907836288 ], [ 4972925.007526636123657, 3905131.12564244447276 ], [ 4972930.822552353143692, 3905102.006298889406025 ], [ 4972975.725990124046803, 3905110.831853680312634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972936.117814781144261, 3905193.413512146100402 ], [ 4972944.228731687180698, 3905168.304033981636167 ], [ 4972975.01972128637135, 3905178.558969748672098 ], [ 4972966.909479439258575, 3905203.304308520164341 ], [ 4972936.117814781144261, 3905193.413512146100402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972392.918566127307713, 3908738.291432739701122 ], [ 4972411.278334305621684, 3908773.283095031045377 ], [ 4972339.517860826104879, 3908810.288052021060139 ], [ 4972326.895478678867221, 3908786.231315925717354 ], [ 4972351.104233662597835, 3908773.532714323606342 ], [ 4972345.654698010534048, 3908762.598378797061741 ], [ 4972392.918566127307713, 3908738.291432739701122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972311.777718839235604, 3913104.454385697375983 ], [ 4972287.247655532322824, 3913136.815641594585031 ], [ 4972263.101628855802119, 3913118.563110068440437 ], [ 4972287.631679617799819, 3913086.201832490973175 ], [ 4972311.777718839235604, 3913104.454385697375983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972285.709432343021035, 3904094.314018760807812 ], [ 4972257.177085157483816, 3904107.004443699959666 ], [ 4972229.651638086885214, 3904044.321622984483838 ], [ 4972268.558960967697203, 3904027.281288249883801 ], [ 4972286.04995053447783, 3904066.640683999285102 ], [ 4972275.674349148757756, 3904071.354688438121229 ], [ 4972285.709432343021035, 3904094.314018760807812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971193.024880670011044, 3912078.044446654617786 ], [ 4971173.408737652935088, 3912099.855973289348185 ], [ 4971149.842183362692595, 3912078.69246936077252 ], [ 4971169.458322600461543, 3912056.880925813689828 ], [ 4971193.024880670011044, 3912078.044446654617786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970937.8409981764853, 3899220.810753080528229 ], [ 4970938.911598982289433, 3899264.872491109184921 ], [ 4970922.20617600902915, 3899265.205743301194161 ], [ 4970923.286894700489938, 3899303.805546757299453 ], [ 4970937.400181039236486, 3899303.467503220308572 ], [ 4970938.472125090658665, 3899346.800985379610211 ], [ 4970858.11272947024554, 3899348.837327860295773 ], [ 4970857.042000074870884, 3899304.775590822100639 ], [ 4970873.748069860041142, 3899304.078169114422053 ], [ 4970872.667952307499945, 3899265.114238639827818 ], [ 4970857.402595003135502, 3899265.450189838185906 ], [ 4970856.328500390052795, 3899223.209099990315735 ], [ 4970937.8409981764853, 3899220.810753080528229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970836.773980300873518, 3911534.098034204915166 ], [ 4970818.033468249253929, 3911549.357035664841533 ], [ 4970798.502535522915423, 3911524.924098072573543 ], [ 4970817.242381624877453, 3911510.029214952141047 ], [ 4970836.773980300873518, 3911534.098034204915166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970742.360885413363576, 3902929.84886094275862 ], [ 4970675.177303064614534, 3902976.333991149440408 ], [ 4970655.072734714485705, 3902947.166539859957993 ], [ 4970721.968380955979228, 3902900.680830086581409 ], [ 4970742.360885413363576, 3902929.84886094275862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970692.55724991299212, 3905112.360092914663255 ], [ 4970657.961707844398916, 3905134.872616423759609 ], [ 4970638.149371609091759, 3905104.249147803056985 ], [ 4970672.744936362840235, 3905081.736599212512374 ], [ 4970692.55724991299212, 3905112.360092914663255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970456.767698653973639, 3893919.654555268585682 ], [ 4970428.232095161452889, 3893928.70556603372097 ], [ 4970418.206915033981204, 3893897.37212786404416 ], [ 4970446.454477802850306, 3893888.320579453371465 ], [ 4970456.767698653973639, 3893919.654555268585682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970447.824904512614012, 3898175.948330924846232 ], [ 4970468.259315620176494, 3898184.360730735119432 ], [ 4970442.222487326711416, 3898246.943427535239607 ], [ 4970406.534168219193816, 3898232.312936071772128 ], [ 4970425.628357170149684, 3898186.103352488484234 ], [ 4970440.882326576858759, 3898192.321474301628768 ], [ 4970447.824904512614012, 3898175.948330924846232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969985.561218424700201, 3897530.960384589619935 ], [ 4969988.42238646838814, 3897541.525337849278003 ], [ 4969999.084170916117728, 3897538.995763158425689 ], [ 4970007.661705165170133, 3897573.967786427587271 ], [ 4969959.827435227110982, 3897585.533216096460819 ], [ 4969948.388660850003362, 3897539.996258483268321 ], [ 4969985.561218424700201, 3897530.960384589619935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969986.850904319435358, 3894595.350472292862833 ], [ 4970012.231488668359816, 3894578.282425306737423 ], [ 4970034.929005540907383, 3894611.095235174521804 ], [ 4970009.548437646590173, 3894628.163261070847511 ], [ 4969986.850904319435358, 3894595.350472292862833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969886.320161613635719, 3893956.485887453891337 ], [ 4969899.50020635034889, 3893995.835676140617579 ], [ 4969869.522550220601261, 3894005.977057527285069 ], [ 4969856.34312501642853, 3893966.263155411928892 ], [ 4969886.320161613635719, 3893956.485887453891337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969808.65986271481961, 3902659.416875350289047 ], [ 4969785.556633377447724, 3902695.424106020014733 ], [ 4969753.052785447798669, 3902674.609958288259804 ], [ 4969776.15533148124814, 3902638.966829895973206 ], [ 4969808.65986271481961, 3902659.416875350289047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969614.963996084406972, 3897635.160401838831604 ], [ 4969648.586841940879822, 3897677.824115366209298 ], [ 4969627.819850449450314, 3897693.808444926515222 ], [ 4969621.78498624637723, 3897686.150856734719127 ], [ 4969605.632387534715235, 3897698.866339033003896 ], [ 4969578.044385150074959, 3897663.860255589243025 ], [ 4969614.963996084406972, 3897635.160401838831604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969387.760380949825048, 3897444.676776228938252 ], [ 4969402.654572262428701, 3897491.312070269137621 ], [ 4969371.52952217310667, 3897501.087835418060422 ], [ 4969356.634630688466132, 3897454.816686996258795 ], [ 4969387.760380949825048, 3897444.676776228938252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969343.374847846105695, 3897782.509821668732911 ], [ 4969291.484755029901862, 3897807.5419902196154 ], [ 4969283.449237189255655, 3897791.141784670297056 ], [ 4969289.214367110282183, 3897788.603178426623344 ], [ 4969271.709667310118675, 3897752.158911541104317 ], [ 4969306.879169246181846, 3897735.471793024800718 ], [ 4969320.367056120187044, 3897763.169781537726521 ], [ 4969331.60930694732815, 3897758.092070985585451 ], [ 4969343.374847846105695, 3897782.509821668732911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969189.974881949834526, 3896746.286603761371225 ], [ 4969208.096060381270945, 3896760.51998488092795 ], [ 4969182.980110242962837, 3896792.154466935433447 ], [ 4969164.858939925208688, 3896777.921102496795356 ], [ 4969189.974881949834526, 3896746.286603761371225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969011.411311718635261, 3898355.058431411162019 ], [ 4969022.13092668633908, 3898319.756871926598251 ], [ 4969083.735460802912712, 3898338.072933158371598 ], [ 4969073.015772101469338, 3898373.374468458350748 ], [ 4969011.411311718635261, 3898355.058431411162019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968883.82705956324935, 3892171.915995626244694 ], [ 4968842.001952345483005, 3892201.33634625794366 ], [ 4968796.884089619852602, 3892137.898127620574087 ], [ 4968824.86354672908783, 3892118.284677107818425 ], [ 4968830.036913963034749, 3892125.212276758160442 ], [ 4968843.88261135481298, 3892115.405310163274407 ], [ 4968883.82705956324935, 3892171.915995626244694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968790.390082257799804, 3902323.324118497781456 ], [ 4968819.499281122349203, 3902310.266916307155043 ], [ 4968834.415586370974779, 3902343.429231479763985 ], [ 4968805.59439589548856, 3902356.486927357502282 ], [ 4968790.390082257799804, 3902323.324118497781456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968794.211247175931931, 3896743.763040888588876 ], [ 4968750.399576310999691, 3896760.435549051966518 ], [ 4968734.057854062877595, 3896717.075248969253153 ], [ 4968777.868941495195031, 3896700.766843087505549 ], [ 4968794.211247175931931, 3896743.763040888588876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968769.63765659276396, 3900378.829761091154069 ], [ 4968778.909066180698574, 3900347.530938063748181 ], [ 4968804.815656025893986, 3900355.223502847366035 ], [ 4968795.544218874536455, 3900386.522317092865705 ], [ 4968769.63765659276396, 3900378.829761091154069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968632.221837201155722, 3902197.783780371304601 ], [ 4968651.172099084593356, 3902229.860711006913334 ], [ 4968609.659819413907826, 3902254.184290997684002 ], [ 4968605.640919340774417, 3902246.894592257682234 ], [ 4968584.885124574415386, 3902258.874344621784985 ], [ 4968570.241699202917516, 3902234.087659954093397 ], [ 4968632.221837201155722, 3902197.783780371304601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968636.70941849052906, 3891155.196493391413242 ], [ 4968668.584461616352201, 3891214.241502347402275 ], [ 4968647.244579347781837, 3891225.855984529945999 ], [ 4968650.977669827640057, 3891232.781006724108011 ], [ 4968633.098205047659576, 3891242.580958971753716 ], [ 4968597.491290208883584, 3891175.882721381727606 ], [ 4968636.70941849052906, 3891155.196493391413242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968259.144588359631598, 3893713.994396860711277 ], [ 4968280.563232219778001, 3893656.135351283475757 ], [ 4968310.503067567944527, 3893667.475743657909334 ], [ 4968289.084368177689612, 3893725.334765756968409 ], [ 4968259.144588359631598, 3893713.994396860711277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968164.154058349318802, 3902582.9413345400244 ], [ 4968130.133981194347143, 3902605.093953290488571 ], [ 4968124.964365371502936, 3902597.07405591616407 ], [ 4968100.746347525157034, 3902613.053585234098136 ], [ 4968085.236834528855979, 3902589.358042810112238 ], [ 4968143.762306893244386, 3902551.590487517882138 ], [ 4968164.154058349318802, 3902582.9413345400244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967969.192635700106621, 3895623.710621997714043 ], [ 4967990.509746172465384, 3895623.019420189317316 ], [ 4967989.948837266303599, 3895614.279339683242142 ], [ 4968017.315682481043041, 3895613.234549348708242 ], [ 4968017.591698043048382, 3895620.153487858362496 ], [ 4968039.197498435154557, 3895619.098697527777404 ], [ 4968040.581349160522223, 3895651.508621908258647 ], [ 4967970.291050405241549, 3895654.663529044482857 ], [ 4967969.192635700106621, 3895623.710621997714043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967857.554099016822875, 3902194.97263106983155 ], [ 4967835.930236127227545, 3902209.500371259637177 ], [ 4967806.055867645889521, 3902165.752905500121415 ], [ 4967841.231316498480737, 3902141.781230870168656 ], [ 4967846.401736298575997, 3902149.436941765248775 ], [ 4967861.683098196983337, 3902138.903648097999394 ], [ 4967881.790670444257557, 3902168.433125036302954 ], [ 4967852.670409974642098, 3902188.045676624868065 ], [ 4967857.554099016822875, 3902194.97263106983155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967356.508136790245771, 3895789.424036455340683 ], [ 4967365.356485061347485, 3895836.776038037613034 ], [ 4967324.728375615552068, 3895844.353088102769107 ], [ 4967315.879958340898156, 3895797.001099684275687 ], [ 4967356.508136790245771, 3895789.424036455340683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966868.373001601547003, 3899457.562999944202602 ], [ 4966918.869565120898187, 3899401.936835125088692 ], [ 4966945.326380502432585, 3899425.650263669434935 ], [ 4966894.829806526191533, 3899481.276379580143839 ], [ 4966868.373001601547003, 3899457.562999944202602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966589.70843609329313, 3898355.59803800098598 ], [ 4966599.975268273614347, 3898416.060929991304874 ], [ 4966541.20220834389329, 3898425.793340537697077 ], [ 4966535.211415484547615, 3898391.555030958261341 ], [ 4966566.326417420990765, 3898386.509652205742896 ], [ 4966562.050279255956411, 3898360.285087028518319 ], [ 4966589.70843609329313, 3898355.59803800098598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966126.789213671348989, 3899602.330773996189237 ], [ 4966141.288811839185655, 3899543.001765371765941 ], [ 4966165.47252019494772, 3899548.504121147096157 ], [ 4966162.57295045722276, 3899560.151442002039403 ], [ 4966190.498938728123903, 3899566.752464615274221 ], [ 4966178.610195204615593, 3899614.79777542129159 ], [ 4966126.789213671348989, 3899602.330773996189237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966078.244923667982221, 3900215.445138511713594 ], [ 4966087.240436447784305, 3900175.041676845867187 ], [ 4966124.091468225233257, 3900183.114045870490372 ], [ 4966115.095902684144676, 3900223.517495394684374 ], [ 4966078.244923667982221, 3900215.445138511713594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965760.834053188562393, 3907536.138236254453659 ], [ 4965787.346024067141116, 3907522.345153697300702 ], [ 4965822.648379415273666, 3907590.132236025761813 ], [ 4965796.136457124724984, 3907603.925284329801798 ], [ 4965760.834053188562393, 3907536.138236254453659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965742.928795902058482, 3908090.317505870014429 ], [ 4965749.314862843602896, 3908059.012723207473755 ], [ 4965738.952804340980947, 3908057.174903671722859 ], [ 4965743.890234380029142, 3908031.329702734015882 ], [ 4965754.540221492759883, 3908033.168001031968743 ], [ 4965763.540512584149837, 3907988.030534921679646 ], [ 4965796.927699266932905, 3907995.004376644268632 ], [ 4965786.186562712304294, 3908048.149851763155311 ], [ 4965791.367290467023849, 3908049.250835672486573 ], [ 4965781.497182873077691, 3908098.028173379600048 ], [ 4965742.928795902058482, 3908090.317505870014429 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965756.431166618131101, 3897675.103190214838833 ], [ 4965766.06761965341866, 3897595.738858223892748 ], [ 4965801.488771361298859, 3897599.802971157245338 ], [ 4965794.483104144223034, 3897655.867344720289111 ], [ 4965803.986289168708026, 3897656.975484367460012 ], [ 4965801.355392028577626, 3897680.275429368484765 ], [ 4965756.431166618131101, 3897675.103190214838833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965658.64160175435245, 3892184.237468213308603 ], [ 4965679.958368044346571, 3892185.365073627792299 ], [ 4965678.760280531831086, 3892213.036867534276098 ], [ 4965657.155447631143034, 3892211.90878720022738 ], [ 4965656.558821622282267, 3892224.288174354005605 ], [ 4965626.023256830871105, 3892223.145369332283735 ], [ 4965628.123422135598958, 3892172.534960304852575 ], [ 4965658.947133251465857, 3892173.678243540227413 ], [ 4965658.64160175435245, 3892184.237468213308603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965486.89498736243695, 3891336.263162777293473 ], [ 4965474.169566123746336, 3891366.100758199114352 ], [ 4965437.030712560750544, 3891350.382172300945967 ], [ 4965449.755501315928996, 3891320.908687002956867 ], [ 4965486.89498736243695, 3891336.263162777293473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965207.676716932095587, 3897885.395451136864722 ], [ 4965217.595930897630751, 3897808.216156522743404 ], [ 4965248.408428283408284, 3897812.272003261838108 ], [ 4965238.4891272848472, 3897889.451286687050015 ], [ 4965207.676716932095587, 3897885.395451136864722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964967.886794213205576, 3899925.589043509215117 ], [ 4964959.501462836749852, 3899945.966699451208115 ], [ 4964923.525017733685672, 3899930.978875810746104 ], [ 4964940.582470235414803, 3899890.952271446119994 ], [ 4964965.909842314198613, 3899901.55323165981099 ], [ 4964957.525689298287034, 3899921.202629348263144 ], [ 4964967.886794213205576, 3899925.589043509215117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964855.692383889108896, 3893987.181213447358459 ], [ 4964887.37234343867749, 3893991.966295120306313 ], [ 4964883.004612606018782, 3894020.725394262932241 ], [ 4964851.325276773422956, 3894015.576189651153982 ], [ 4964855.692383889108896, 3893987.181213447358459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964744.522711123339832, 3904294.43120296811685 ], [ 4964749.07759736571461, 3904326.846253229770809 ], [ 4964706.450289821252227, 3904332.603385393042117 ], [ 4964702.183900930918753, 3904299.824677605181932 ], [ 4964744.522711123339832, 3904294.43120296811685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964519.512020012363791, 3903649.91998981917277 ], [ 4964496.480018389411271, 3903646.605735844932497 ], [ 4964496.478846426121891, 3903647.333996067754924 ], [ 4964435.732655460946262, 3903638.133031654637307 ], [ 4964440.391026792116463, 3903606.461116721387953 ], [ 4964453.921935567632318, 3903608.667652947362512 ], [ 4964455.08492408785969, 3903601.751032796222717 ], [ 4964485.3137864805758, 3903606.533353014383465 ], [ 4964483.861066624522209, 3903614.541898916009814 ], [ 4964523.878417353145778, 3903620.796536224428564 ], [ 4964519.512020012363791, 3903649.91998981917277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964315.159186960197985, 3903765.021281795110554 ], [ 4964307.884223314002156, 3903812.346665412187576 ], [ 4964262.972881269641221, 3903805.356252770405263 ], [ 4964269.081335936672986, 3903767.132266878616065 ], [ 4964289.234198605641723, 3903770.0775839779526 ], [ 4964290.688018582761288, 3903761.340766502544284 ], [ 4964315.159186960197985, 3903765.021281795110554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964314.515489946119487, 3896617.506696545984596 ], [ 4964252.514377620071173, 3896662.559498232789338 ], [ 4964242.741955867037177, 3896649.435203500557691 ], [ 4964305.031123416498303, 3896604.382840978447348 ], [ 4964314.515489946119487, 3896617.506696545984596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964092.712939405813813, 3893912.764533836394548 ], [ 4964105.959528593346477, 3893915.698679159395397 ], [ 4964094.9356753481552, 3893964.110256538260728 ], [ 4964058.076085600070655, 3893955.676571215502918 ], [ 4964065.326545012183487, 3893925.101286850869656 ], [ 4964088.652103793807328, 3893930.236251401714981 ], [ 4964092.712939405813813, 3893912.764533836394548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963836.554311263374984, 3901406.511583178769797 ], [ 4963815.757901232689619, 3901445.076476310845464 ], [ 4963780.940551452338696, 3901426.450696731451899 ], [ 4963801.736925807781518, 3901387.885777092073113 ], [ 4963836.554311263374984, 3901406.511583178769797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963750.475976436398923, 3904118.421862070914358 ], [ 4963733.44656188134104, 3904143.5199840888381 ], [ 4963694.32532178517431, 3904117.240723207592964 ], [ 4963711.354716331698, 3904092.142576796468347 ], [ 4963750.475976436398923, 3904118.421862070914358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963734.001044699922204, 3900331.436249474529177 ], [ 4963760.765602424740791, 3900343.859000099822879 ], [ 4963736.491750271059573, 3900395.527122649829835 ], [ 4963709.727808143012226, 3900382.740266397129744 ], [ 4963734.001044699922204, 3900331.436249474529177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963722.492128456942737, 3901600.048547030892223 ], [ 4963722.982361074537039, 3901654.30478042177856 ], [ 4963684.39148423820734, 3901654.607951060403138 ], [ 4963684.123044569976628, 3901642.227086857892573 ], [ 4963673.754921334795654, 3901642.574849036056548 ], [ 4963673.245046437717974, 3901600.699026028160006 ], [ 4963722.492128456942737, 3901600.048547030892223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962900.309596035629511, 3896007.910358963999897 ], [ 4962902.430311263538897, 3895940.549715338740498 ], [ 4962942.467365910299122, 3895941.704170740675181 ], [ 4962942.158986121416092, 3895954.812348844483495 ], [ 4962948.208002543076873, 3895954.82173144351691 ], [ 4962947.302624961361289, 3895981.401769501157105 ], [ 4962951.911394816823304, 3895981.408918906934559 ], [ 4962951.003754881210625, 3896009.445471178740263 ], [ 4962900.309596035629511, 3896007.910358963999897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962850.148070960305631, 3894917.629744252189994 ], [ 4962866.630035204812884, 3894877.236923083197325 ], [ 4962881.311506076715887, 3894883.449850578326732 ], [ 4962885.93794731143862, 3894872.169013219419867 ], [ 4962912.422537557780743, 3894883.133919784333557 ], [ 4962904.327521246857941, 3894902.056089331861585 ], [ 4962916.418126477859914, 3894907.172634293790907 ], [ 4962902.829674188047647, 3894939.194939005188644 ], [ 4962850.148070960305631, 3894917.629744252189994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962701.198127394542098, 3900909.154936261009425 ], [ 4962678.966358596459031, 3900945.533699308522046 ], [ 4962645.5903549073264, 3900925.090968109667301 ], [ 4962667.822095306590199, 3900888.712177903857082 ], [ 4962701.198127394542098, 3900909.154936261009425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962703.059722664766014, 3895032.831461946479976 ], [ 4962782.798983748070896, 3895067.182680885307491 ], [ 4962762.852136705070734, 3895113.032144088763744 ], [ 4962719.671609716489911, 3895094.759038713295013 ], [ 4962715.625322992913425, 3895103.491896767169237 ], [ 4962697.490050342865288, 3895095.453087655827403 ], [ 4962707.897749130614102, 3895071.072483264375478 ], [ 4962689.761890957131982, 3895063.397807797417045 ], [ 4962703.059722664766014, 3895032.831461946479976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962616.366965676657856, 3901574.654765657149255 ], [ 4962599.970127297565341, 3901562.613224456086755 ], [ 4962591.312554053962231, 3901574.252083412837237 ], [ 4962572.902025524526834, 3901560.75093903625384 ], [ 4962602.049355710856616, 3901521.469671097584069 ], [ 4962622.760442157275975, 3901537.15915984660387 ], [ 4962612.660666931420565, 3901550.252313870470971 ], [ 4962626.755843104794621, 3901560.833796811755747 ], [ 4962616.366965676657856, 3901574.654765657149255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962474.763848200440407, 3897386.576905903872102 ], [ 4962489.682023984380066, 3897237.67077138600871 ], [ 4962550.160349701531231, 3897243.58970050746575 ], [ 4962548.990868123248219, 3897254.875921767670661 ], [ 4962560.798602530732751, 3897255.986454979982227 ], [ 4962559.042975623160601, 3897273.826108265668154 ], [ 4962546.947214705869555, 3897272.715133285615593 ], [ 4962545.191038643009961, 3897290.918916424270719 ], [ 4962556.134655149653554, 3897292.028120110742748 ], [ 4962554.380152682773769, 3897309.139516532886773 ], [ 4962542.284407472237945, 3897308.028543639928102 ], [ 4962540.528236800804734, 3897326.23232745192945 ], [ 4962551.759872811846435, 3897327.34197184164077 ], [ 4962550.004815888591111, 3897344.817497694864869 ], [ 4962537.621053037233651, 3897343.706084311474115 ], [ 4962536.162428980693221, 3897355.720121950376779 ], [ 4962547.394052845425904, 3897356.829764527734369 ], [ 4962545.053424317389727, 3897380.49459531204775 ], [ 4962532.669677705504, 3897379.383184182923287 ], [ 4962531.497413081116974, 3897392.49005106696859 ], [ 4962474.763848200440407, 3897386.576905903872102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962184.947286747395992, 3896665.885711468290538 ], [ 4962166.765798576176167, 3896688.798187455628067 ], [ 4962140.585682877339423, 3896668.002968731801957 ], [ 4962158.479121714830399, 3896645.090036949142814 ], [ 4962184.947286747395992, 3896665.885711468290538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962156.349246400408447, 3900315.515943738166243 ], [ 4962177.140260840766132, 3900279.498698747251183 ], [ 4962229.510554371401668, 3900309.801310149021447 ], [ 4962208.720047916285694, 3900345.454385852441192 ], [ 4962156.349246400408447, 3900315.515943738166243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962073.373866831883788, 3900904.552670169621706 ], [ 4962078.316253260709345, 3900873.973224301822484 ], [ 4962091.561288263648748, 3900875.814000404905528 ], [ 4962086.618333818390965, 3900906.757573431357741 ], [ 4962073.373866831883788, 3900904.552670169621706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962024.140321834012866, 3899186.875715009868145 ], [ 4962010.565572579391301, 3899211.980097331572324 ], [ 4961972.291223395615816, 3899191.166669529862702 ], [ 4961985.86594732478261, 3899166.062268194742501 ], [ 4962024.140321834012866, 3899186.875715009868145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961924.476169713772833, 3899574.887358729727566 ], [ 4961952.101932507939637, 3899590.222644408233464 ], [ 4961956.144542784430087, 3899583.310294541995972 ], [ 4961973.698227172717452, 3899593.168398485518992 ], [ 4961969.366501198150218, 3899600.808567977510393 ], [ 4961986.920169302262366, 3899610.666680646594614 ], [ 4961971.903967808932066, 3899636.861294160597026 ], [ 4961909.459458399564028, 3899601.446135848760605 ], [ 4961924.476169713772833, 3899574.887358729727566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961728.11089011002332, 3898197.815551490522921 ], [ 4961722.354240756481886, 3898195.257974275853485 ], [ 4961712.817094856873155, 3898216.727274199947715 ], [ 4961686.336401185020804, 3898205.035269991960377 ], [ 4961697.608252482488751, 3898179.199013574980199 ], [ 4961687.245941773056984, 3898174.813864675816149 ], [ 4961695.339122402481735, 3898155.891291976906359 ], [ 4961738.226846564561129, 3898174.526480049360543 ], [ 4961728.11089011002332, 3898197.815551490522921 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961705.483383810147643, 3891988.651437345892191 ], [ 4961713.357743073254824, 3891924.940805522724986 ], [ 4961768.948991780169308, 3891931.942971096839756 ], [ 4961763.698596720583737, 3891974.902217973954976 ], [ 4961774.93195213843137, 3891976.375661972910166 ], [ 4961772.596489286981523, 3891996.763336390256882 ], [ 4961705.483383810147643, 3891988.651437345892191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961399.453318967483938, 3908042.329211245290935 ], [ 4961326.571824833750725, 3908067.709644144400954 ], [ 4961311.949326236732304, 3908026.540924905333668 ], [ 4961342.197125857695937, 3908015.662082562688738 ], [ 4961346.211149139329791, 3908026.956163326278329 ], [ 4961369.544552836567163, 3908018.980090154334903 ], [ 4961366.390490283258259, 3908010.236213645897806 ], [ 4961385.691412471234798, 3908003.346530124545097 ], [ 4961399.453318967483938, 3908042.329211245290935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960716.700720927678049, 3897518.301929892972112 ], [ 4960730.620370061136782, 3897454.23555627418682 ], [ 4960886.684495338238776, 3897487.965161351487041 ], [ 4960872.764491337351501, 3897552.031455432996154 ], [ 4960716.700720927678049, 3897518.301929892972112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960559.23466363362968, 3907696.25391302537173 ], [ 4960533.272653626278043, 3907729.716077020857483 ], [ 4960501.636848393827677, 3907705.273007603827864 ], [ 4960491.829402573406696, 3907717.639166336972266 ], [ 4960471.409770927391946, 3907701.951681024860591 ], [ 4960507.467119793407619, 3907656.123722143936902 ], [ 4960559.23466363362968, 3907696.25391302537173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960175.250641527585685, 3893504.808644530363381 ], [ 4960183.538888867013156, 3893550.336742968764156 ], [ 4960141.757072406820953, 3893557.922970062121749 ], [ 4960133.468756703659892, 3893512.394884308800101 ], [ 4960175.250641527585685, 3893504.808644530363381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959866.122826173901558, 3906750.691062500700355 ], [ 4959879.324282083660364, 3906780.932965506799519 ], [ 4959857.427817429415882, 3906790.368918808642775 ], [ 4959860.871493802405894, 3906798.384763522539288 ], [ 4959836.957956398837268, 3906808.910230243112892 ], [ 4959835.810411176644266, 3906805.995529016014189 ], [ 4959819.099371993914247, 3906813.618302093353122 ], [ 4959801.018686921335757, 3906772.445477664936334 ], [ 4959842.219180922955275, 3906754.298037054948509 ], [ 4959844.802206790074706, 3906760.127853505313396 ], [ 4959866.122826173901558, 3906750.691062500700355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959669.564260214567184, 3908090.414327241014689 ], [ 4959687.947278376668692, 3908121.027703335974365 ], [ 4959657.978298029862344, 3908138.827313339803368 ], [ 4959664.872708125971258, 3908149.761128373909742 ], [ 4959649.311620799824595, 3908159.206316078081727 ], [ 4959624.034155550412834, 3908117.659159518312663 ], [ 4959669.564260214567184, 3908090.414327241014689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959366.589649374596775, 3905104.831874212250113 ], [ 4959406.063148338347673, 3905087.773724476341158 ], [ 4959436.488107115961611, 3905156.637755 ], [ 4959406.810664230026305, 3905169.70432457793504 ], [ 4959397.912655809894204, 3905149.664470377843827 ], [ 4959388.116158622317016, 3905154.020140318199992 ], [ 4959366.589649374596775, 3905104.831874212250113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959284.965487294830382, 3904792.655745062511414 ], [ 4959329.909484010189772, 3904776.333492029458284 ], [ 4959338.802506336010993, 3904800.014623910188675 ], [ 4959330.447723336517811, 3904802.915832809638232 ], [ 4959341.348667356185615, 3904832.061779637821019 ], [ 4959309.369350668042898, 3904843.668667000252753 ], [ 4959305.926289031282067, 3904834.924641583580524 ], [ 4959301.316974666900933, 3904836.37463922938332 ], [ 4959284.965487294830382, 3904792.655745062511414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959151.558195665478706, 3892597.393828853964806 ], [ 4959106.05316939111799, 3892588.590629445854574 ], [ 4959115.33751770760864, 3892541.995250354055315 ], [ 4959147.882393453270197, 3892548.231292875017971 ], [ 4959145.851427653804421, 3892558.42402925202623 ], [ 4959158.811649347655475, 3892560.991200649179518 ], [ 4959151.558195665478706, 3892597.393828853964806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959051.746698739007115, 3907231.643400906119496 ], [ 4959074.516555056907237, 3907214.925383972935379 ], [ 4959064.745972554199398, 3907201.438757340889424 ], [ 4959086.074683967977762, 3907185.81111754802987 ], [ 4959122.571746634319425, 3907235.384451669175178 ], [ 4959101.531493529677391, 3907250.648337535560131 ], [ 4959097.220789427869022, 3907244.816157378721982 ], [ 4959073.875089753419161, 3907261.533344764262438 ], [ 4959051.746698739007115, 3907231.643400906119496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959036.694208110682666, 3900940.166020583361387 ], [ 4959035.496154053136706, 3900972.936068098992109 ], [ 4958995.466434815898538, 3900971.787428505718708 ], [ 4958996.37695652153343, 3900938.652845122851431 ], [ 4959036.694208110682666, 3900940.166020583361387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959023.819996825419366, 3897395.342722926288843 ], [ 4959026.742801427841187, 3897365.124075672123581 ], [ 4959051.798112919554114, 3897367.708207083400339 ], [ 4959053.257227123714983, 3897354.237464950885624 ], [ 4959091.848577101714909, 3897357.933062672615051 ], [ 4959087.754601143300533, 3897401.6228486453183 ], [ 4959023.819996825419366, 3897395.342722926288843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958395.978157911449671, 3896926.925454410724342 ], [ 4958431.391719730570912, 3896937.898300165310502 ], [ 4958421.843165293335915, 3896969.200228672940284 ], [ 4958386.141603223048151, 3896958.226997353602201 ], [ 4958395.978157911449671, 3896926.925454410724342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958315.377957083284855, 3899814.363328956067562 ], [ 4958333.001650106161833, 3899774.333329259417951 ], [ 4958392.870973432436585, 3899800.633364747744054 ], [ 4958375.535718059167266, 3899840.299594223499298 ], [ 4958315.377957083284855, 3899814.363328956067562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957757.682951932772994, 3906892.303942550905049 ], [ 4957699.166730373166502, 3906941.018143337219954 ], [ 4957677.606978649273515, 3906915.135558968409896 ], [ 4957736.123217294923961, 3906866.421312010847032 ], [ 4957757.682951932772994, 3906892.303942550905049 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957663.812111422419548, 3905408.704922688659281 ], [ 4957680.765939986333251, 3905434.581225635483861 ], [ 4957651.946101094596088, 3905453.112866461742669 ], [ 4957662.865375275723636, 3905469.8777015353553 ], [ 4957632.892815537750721, 3905489.136063797399402 ], [ 4957623.985212279483676, 3905475.287014299072325 ], [ 4957614.186165529303253, 3905481.828115786425769 ], [ 4957598.669573032297194, 3905457.774454834870994 ], [ 4957617.114415996707976, 3905445.783077486790717 ], [ 4957613.953900925815105, 3905440.680961863603443 ], [ 4957663.812111422419548, 3905408.704922688659281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957619.201063398271799, 3894325.616820889990777 ], [ 4957670.766825344413519, 3894324.230117157567292 ], [ 4957671.589089688844979, 3894355.182187487371266 ], [ 4957620.023387066088617, 3894356.568889668211341 ], [ 4957619.201063398271799, 3894325.616820889990777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957564.448388843797147, 3900736.408243971411139 ], [ 4957544.297930231317878, 3900729.462549590971321 ], [ 4957528.684639861807227, 3900774.957754923962057 ], [ 4957496.155739340931177, 3900763.989957283716649 ], [ 4957515.238706522621214, 3900708.303767296485603 ], [ 4957544.025668130256236, 3900717.81001309491694 ], [ 4957547.785370603203773, 3900706.162921730894595 ], [ 4957571.966333281248808, 3900714.206456128973514 ], [ 4957564.448388843797147, 3900736.408243971411139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957447.006619228050113, 3907532.027183058671653 ], [ 4957472.084998715668917, 3907510.577203640714288 ], [ 4957483.584304554387927, 3907523.701452118344605 ], [ 4957489.92600882332772, 3907518.248027915135026 ], [ 4957518.673730843700469, 3907551.422808901872486 ], [ 4957518.385315203107893, 3907551.78655138798058 ], [ 4957539.371318851597607, 3907575.847584754228592 ], [ 4957526.111089179292321, 3907587.481896550860256 ], [ 4957539.334926573559642, 3907602.793288724962622 ], [ 4957510.797076311893761, 3907627.515723961405456 ], [ 4957484.636810960248113, 3907597.257493309676647 ], [ 4957495.302265575155616, 3907588.168583277612925 ], [ 4957447.006619228050113, 3907532.027183058671653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957395.26338545512408, 3898263.373306473251432 ], [ 4957393.512230454944074, 3898280.485049401875585 ], [ 4957387.464226931333542, 3898280.112787681631744 ], [ 4957382.495872603729367, 3898333.633181129582226 ], [ 4957331.521683002822101, 3898329.195149009115994 ], [ 4957334.152018746361136, 3898300.796559751499444 ], [ 4957347.975179243832827, 3898302.27163955848664 ], [ 4957348.853430967777967, 3898291.71305648656562 ], [ 4957337.333474335260689, 3898290.969327893573791 ], [ 4957339.087037406861782, 3898272.036935795098543 ], [ 4957352.910212431102991, 3898273.51201811619103 ], [ 4957354.368916309438646, 3898259.677047431003302 ], [ 4957395.26338545512408, 3898263.373306473251432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957339.683766742236912, 3898900.161652957554907 ], [ 4957301.667985898442566, 3898898.289986192714423 ], [ 4957304.619467453099787, 3898845.130984478164464 ], [ 4957298.859607234597206, 3898844.759128929115832 ], [ 4957299.750520356930792, 3898824.733181549236178 ], [ 4957343.5262689627707, 3898826.976709402166307 ], [ 4957339.683766742236912, 3898900.161652957554907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956439.440024331212044, 3899264.918508002068847 ], [ 4956430.76389030367136, 3899292.216895845253021 ], [ 4956406.292817955836654, 3899284.538147621788085 ], [ 4956414.680916561745107, 3899257.239375185221434 ], [ 4956439.440024331212044, 3899264.918508002068847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956226.367709906771779, 3891250.52366988081485 ], [ 4956230.491106919944286, 3891181.344674660358578 ], [ 4956202.547343892045319, 3891179.851819536183029 ], [ 4956207.558663096278906, 3891092.467568802181631 ], [ 4956272.376533193513751, 3891096.193205915857106 ], [ 4956262.953887812793255, 3891252.391931615769863 ], [ 4956226.367709906771779, 3891250.52366988081485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956003.035099050961435, 3897087.219252938404679 ], [ 4955990.324325210414827, 3897115.969049665145576 ], [ 4955956.067792204208672, 3897100.631360120140016 ], [ 4955950.868099613115191, 3897112.276789809111506 ], [ 4955925.247457315213978, 3897100.955713600851595 ], [ 4955931.025562496855855, 3897087.490378025919199 ], [ 4955918.35948102734983, 3897081.647967716213316 ], [ 4955930.203735113143921, 3897054.717666876036674 ], [ 4956003.035099050961435, 3897087.219252938404679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955413.509754961356521, 3898605.976395492907614 ], [ 4955444.315386644564569, 3898615.847072228323668 ], [ 4955431.302628682926297, 3898656.613056579604745 ], [ 4955400.497039001435041, 3898646.74239451251924 ], [ 4955413.509754961356521, 3898605.976395492907614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955314.297757398337126, 3900074.386505024973303 ], [ 4955316.38993966858834, 3900014.307692129164934 ], [ 4955357.284787214361131, 3900015.816077345982194 ], [ 4955355.192975698038936, 3900075.530757596250623 ], [ 4955314.297757398337126, 3900074.386505024973303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954528.162750328890979, 3895326.244483169633895 ], [ 4954511.433025158010423, 3895344.430230695288628 ], [ 4954493.593882412649691, 3895328.022356280591339 ], [ 4954510.32360568922013, 3895309.836597831454128 ], [ 4954528.162750328890979, 3895326.244483169633895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954320.574811001308262, 3894542.382764645386487 ], [ 4954341.917062054388225, 3894521.653681839816272 ], [ 4954324.366676651872694, 3894504.15389728685841 ], [ 4954343.978782849386334, 3894484.879203447606415 ], [ 4954386.271699393168092, 3894527.534380227793008 ], [ 4954345.31734364759177, 3894567.538107151165605 ], [ 4954320.574811001308262, 3894542.382764645386487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954091.284177601337433, 3900664.939873135183007 ], [ 4954065.648805142380297, 3900667.821602188516408 ], [ 4954064.509706384502351, 3900657.260435508564115 ], [ 4954050.108028273098171, 3900658.699376585893333 ], [ 4954050.9640231160447, 3900665.25476490566507 ], [ 4954006.030577428638935, 3900669.933656695764512 ], [ 4954002.33053508028388, 3900633.88025769777596 ], [ 4954028.541929629631341, 3900630.999170792289078 ], [ 4954027.12058924138546, 3900615.703969209920615 ], [ 4954066.005271441303194, 3900611.745986925438046 ], [ 4954067.427479156292975, 3900626.312931213527918 ], [ 4954087.013590888120234, 3900624.516202945262194 ], [ 4954091.284177601337433, 3900664.939873135183007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954067.012699881568551, 3895540.14958200789988 ], [ 4954118.58796099293977, 3895528.924592734780163 ], [ 4954127.467278583906591, 3895570.082038951572031 ], [ 4954075.892537319101393, 3895580.94288290804252 ], [ 4954067.012699881568551, 3895540.14958200789988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953789.080574183724821, 3894317.794937867671251 ], [ 4953790.762689332477748, 3894356.030501206405461 ], [ 4953767.139994281344116, 3894357.094303505960852 ], [ 4953765.74635196197778, 3894318.494961754884571 ], [ 4953789.080574183724821, 3894317.794937867671251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953781.898095531389117, 3893825.848271265625954 ], [ 4953798.626505696214736, 3893809.118598686531186 ], [ 4953779.924776857718825, 3893790.161269042175263 ], [ 4953808.189749762415886, 3893762.157574930228293 ], [ 4953855.089381996542215, 3893808.458762334194034 ], [ 4953861.722975143231452, 3893801.912491706665605 ], [ 4953882.439369045197964, 3893822.328838786575943 ], [ 4953830.811508831568062, 3893874.336627507116646 ], [ 4953781.898095531389117, 3893825.848271265625954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952406.402750346809626, 3892294.150837606750429 ], [ 4952484.215599074959755, 3892269.116268689278513 ], [ 4952493.975041343830526, 3892299.71439217031002 ], [ 4952416.162694104015827, 3892324.384805400855839 ], [ 4952406.402750346809626, 3892294.150837606750429 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952178.187297566793859, 3893589.45656332699582 ], [ 4952175.265510525554419, 3893625.137809791602194 ], [ 4952117.943927996791899, 3893620.702387452125549 ], [ 4952118.239109116606414, 3893614.512539321556687 ], [ 4952096.059540246613324, 3893612.666438108775765 ], [ 4952098.400061731226742, 3893581.35406013391912 ], [ 4952124.612271496094763, 3893583.568922870326787 ], [ 4952124.906618162058294, 3893578.107331268489361 ], [ 4952150.83075509686023, 3893580.321888721548021 ], [ 4952150.2466552676633, 3893587.239661593921483 ], [ 4952178.187297566793859, 3893589.45656332699582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952002.82278495747596, 3894785.054270251654088 ], [ 4951998.506868885830045, 3894780.679786501452327 ], [ 4951978.320956448093057, 3894799.591407807543874 ], [ 4951960.483235145919025, 3894780.272192320320755 ], [ 4952006.910630627535284, 3894736.993933038320392 ], [ 4952004.033348690718412, 3894734.077610104344785 ], [ 4952021.912333969958127, 3894717.34814125765115 ], [ 4952041.476336363703012, 3894738.490018495824188 ], [ 4952027.634379412047565, 3894751.582807302009314 ], [ 4952032.813228287734091, 3894757.050670466385782 ], [ 4952002.82278495747596, 3894785.054270251654088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951909.195638116449118, 3890244.265999601222575 ], [ 4951877.209666294977069, 3890249.327335949987173 ], [ 4951866.623833711259067, 3890184.136380466632545 ], [ 4951898.609881049022079, 3890179.075031715910882 ], [ 4951909.195638116449118, 3890244.265999601222575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951808.244726379401982, 3893638.190874478314072 ], [ 4951841.368175026960671, 3893642.598089921288192 ], [ 4951837.297449572943151, 3893675.729165713768452 ], [ 4951804.173627252690494, 3893671.686083390843123 ], [ 4951808.244726379401982, 3893638.190874478314072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951475.995073209516704, 3900131.697967675514519 ], [ 4951492.160561821423471, 3900098.580318421591073 ], [ 4951532.746970842592418, 3900118.289039437659085 ], [ 4951517.158681035041809, 3900150.314924557693303 ], [ 4951499.024299641139805, 3900141.555387646891177 ], [ 4951498.447063147090375, 3900142.647128144744784 ], [ 4951475.995073209516704, 3900131.697967675514519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951291.744890720583498, 3893623.77184564108029 ], [ 4951252.560002686455846, 3893629.918272729963064 ], [ 4951247.983334712684155, 3893600.782874449621886 ], [ 4951287.168264145031571, 3893594.636440795846283 ], [ 4951291.744890720583498, 3893623.77184564108029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951236.852544260211289, 3893765.720735723152757 ], [ 4951192.196944994851947, 3893769.676377323456109 ], [ 4951189.92035195697099, 3893744.548963773529977 ], [ 4951234.575992614030838, 3893740.593318446539342 ], [ 4951236.852544260211289, 3893765.720735723152757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950697.870091071352363, 3893765.124933700542897 ], [ 4950667.046799962408841, 3893764.727059007622302 ], [ 4950667.967995152808726, 3893712.657669345382601 ], [ 4950699.079019495286047, 3893713.419988845009357 ], [ 4950697.870091071352363, 3893765.124933700542897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949996.328051586635411, 3896808.847995663993061 ], [ 4950004.368221529759467, 3896832.160870794672519 ], [ 4949991.113755500875413, 3896836.516247193794698 ], [ 4949998.292531564831734, 3896857.279294683597982 ], [ 4949991.953343404456973, 3896859.457291577011347 ], [ 4949998.557203997857869, 3896879.127336742822081 ], [ 4949970.607354286126792, 3896888.564821030013263 ], [ 4949966.012743867002428, 3896875.451256743632257 ], [ 4949956.792010869830847, 3896878.718571719713509 ], [ 4949944.732487278990448, 3896843.021022635046393 ], [ 4949952.224219913594425, 3896840.480115954298526 ], [ 4949947.055846594274044, 3896825.181166812311858 ], [ 4949996.328051586635411, 3896808.847995663993061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949741.47027606703341, 3889959.318288357462734 ], [ 4949777.496719812974334, 3889947.704397677909583 ], [ 4949788.120949057862163, 3889981.57956171920523 ], [ 4949800.225923344492912, 3889977.587006404064596 ], [ 4949807.691708171740174, 3890001.263245267793536 ], [ 4949759.560754993930459, 3890016.50553665868938 ], [ 4949741.47027606703341, 3889959.318288357462734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949484.243069660849869, 3895939.128832153975964 ], [ 4949474.151047076098621, 3895948.949720007367432 ], [ 4949453.146431383676827, 3895927.079927677288651 ], [ 4949475.636787921190262, 3895905.619916337076575 ], [ 4949491.462646534666419, 3895921.658218949101865 ], [ 4949510.781436839140952, 3895903.10793800605461 ], [ 4949528.908601757138968, 3895922.061715026851743 ], [ 4949496.903049414046109, 3895952.614909481722862 ], [ 4949484.243069660849869, 3895939.128832153975964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947129.287744655273855, 3891313.053741495124996 ], [ 4947128.405575517565012, 3891331.623425176832825 ], [ 4947115.729616404511034, 3891331.247099048923701 ], [ 4947116.323678656481206, 3891312.677137780934572 ], [ 4947129.287744655273855, 3891313.053741495124996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946666.623463465832174, 3889156.611321816686541 ], [ 4946644.720402209088206, 3889162.780795977450907 ], [ 4946641.561385095119476, 3889151.853983587119728 ], [ 4946663.464454521425068, 3889145.684506884776056 ], [ 4946666.623463465832174, 3889156.611321816686541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944585.251191933639348, 3892124.187585721258074 ], [ 4944586.716924814507365, 3892095.058599585667253 ], [ 4944595.359301443211734, 3892095.430230968631804 ], [ 4944597.11977728549391, 3892058.654809190891683 ], [ 4944634.858003401197493, 3892060.508248886559159 ], [ 4944631.343286938033998, 3892126.776529273949564 ], [ 4944585.251191933639348, 3892124.187585721258074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944218.789930464699864, 3892811.710368442814797 ], [ 4944251.341959488578141, 3892813.194712727796286 ], [ 4944250.166890195570886, 3892839.775078980717808 ], [ 4944217.902664004825056, 3892838.655110315885395 ], [ 4944218.789930464699864, 3892811.710368442814797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943662.966524884104729, 3890527.793761864770204 ], [ 4943741.315059191547334, 3890547.522094298619777 ], [ 4943717.613659782335162, 3890639.262508637271821 ], [ 4943656.836173960007727, 3890623.918416621629149 ], [ 4943662.61710377689451, 3890601.347305002156645 ], [ 4943645.046291593462229, 3890596.963128880597651 ], [ 4943662.966524884104729, 3890527.793761864770204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943079.910571099258959, 3892567.887880788650364 ], [ 4943048.218597595579922, 3892571.139320745132864 ], [ 4943044.788148935884237, 3892538.364991917740554 ], [ 4943076.768245696090162, 3892535.113781865686178 ], [ 4943079.910571099258959, 3892567.887880788650364 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943006.379985945299268, 3890160.941833705175668 ], [ 4942999.728407570160925, 3890191.887315568514168 ], [ 4942953.926829237490892, 3890182.01885335193947 ], [ 4942960.289658676832914, 3890151.801382817793638 ], [ 4942975.268761025741696, 3890155.090632304083556 ], [ 4942975.269349472597241, 3890154.36237717885524 ], [ 4943006.379985945299268, 3890160.941833705175668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990216.876081267371774, 3912947.093965898733586 ], [ 4990245.636527254246175, 3912957.363564816303551 ], [ 4990236.939760264009237, 3912981.009931945241988 ], [ 4990208.468137098476291, 3912970.376949639990926 ], [ 4990216.876081267371774, 3912947.093965898733586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989329.420531924813986, 3907817.834100761916488 ], [ 4989383.259041351266205, 3907819.062964880373329 ], [ 4989382.593635888770223, 3907854.382147464901209 ], [ 4989355.81791609339416, 3907853.950132656376809 ], [ 4989355.508767066523433, 3907862.324400757439435 ], [ 4989328.445134009234607, 3907861.891683429013938 ], [ 4989329.420531924813986, 3907817.834100761916488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989090.624537777155638, 3907974.535436634905636 ], [ 4989084.491812433116138, 3908008.748427252285182 ], [ 4989036.430428804829717, 3908000.252080783713609 ], [ 4989042.56309481151402, 3907966.039079362526536 ], [ 4989090.624537777155638, 3907974.535436634905636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988756.30420767236501, 3905699.686357260681689 ], [ 4988757.230244573205709, 3905674.92769566224888 ], [ 4988787.750503982417285, 3905675.732651330996305 ], [ 4988787.11146776843816, 3905700.856165477074683 ], [ 4988756.30420767236501, 3905699.686357260681689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988572.896787231788039, 3896266.409220837056637 ], [ 4988588.41564604640007, 3896280.649166448507458 ], [ 4988572.819270920939744, 3896297.360085973981768 ], [ 4988557.588458445854485, 3896283.120870486833155 ], [ 4988572.896787231788039, 3896266.409220837056637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988424.155150037258863, 3908753.197479778900743 ], [ 4988348.985758865252137, 3908762.841239159461111 ], [ 4988345.312930139712989, 3908734.793837716802955 ], [ 4988361.152607756666839, 3908733.012732799164951 ], [ 4988358.89479024708271, 3908714.800451139453799 ], [ 4988377.903328623622656, 3908712.299005423672497 ], [ 4988380.16113346721977, 3908730.511288654059172 ], [ 4988420.482398377731442, 3908725.150068239774555 ], [ 4988424.155150037258863, 3908753.197479778900743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987562.910992619581521, 3907858.932892605662346 ], [ 4987588.836454541422427, 3907853.899032099638134 ], [ 4987590.824929368682206, 3907864.827920355368406 ], [ 4987636.914745487272739, 3907855.838441216386855 ], [ 4987642.887304008938372, 3907885.712074085604399 ], [ 4987606.015487971715629, 3907892.903643005061895 ], [ 4987608.003952853381634, 3907903.832532794680446 ], [ 4987573.148511896841228, 3907910.664994034450501 ], [ 4987562.910992619581521, 3907858.932892605662346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987464.967655138112605, 3907879.082775056827813 ], [ 4987492.620603130199015, 3907874.053078920580447 ], [ 4987494.041354048065841, 3907881.703366768080741 ], [ 4987538.689708310179412, 3907873.438430675305426 ], [ 4987543.52057300042361, 3907899.303765929769725 ], [ 4987521.339924262836576, 3907903.618641029577702 ], [ 4987522.760665409266949, 3907911.268930535763502 ], [ 4987472.92712311539799, 3907920.613510893657804 ], [ 4987464.967655138112605, 3907879.082775056827813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986828.877916601486504, 3904839.931420227047056 ], [ 4986822.387452871538699, 3904903.638669657055289 ], [ 4986796.477944349870086, 3904901.026535271666944 ], [ 4986795.59277062676847, 3904909.763542683329433 ], [ 4986774.28961712308228, 3904907.526797657366842 ], [ 4986775.464512350969017, 3904898.062232161406428 ], [ 4986754.449300523847342, 3904895.826205025427043 ], [ 4986759.758498282171786, 3904844.13241354143247 ], [ 4986801.789886763319373, 3904848.240362660959363 ], [ 4986802.968347241170704, 3904837.319279689341784 ], [ 4986828.877916601486504, 3904839.931420227047056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986793.959671673364937, 3907822.089404541999102 ], [ 4986800.20244054403156, 3907859.610290892887861 ], [ 4986751.523403080180287, 3907867.866627293638885 ], [ 4986750.104215403087437, 3907859.488117896020412 ], [ 4986726.1961381258443, 3907863.799438083078712 ], [ 4986721.368916782550514, 3907836.113598176743835 ], [ 4986763.423151822760701, 3907828.933451359625906 ], [ 4986760.866485510952771, 3907814.726046775933355 ], [ 4986778.148868624120951, 3907811.855128387920558 ], [ 4986780.42115714866668, 3907824.605310690123588 ], [ 4986793.959671673364937, 3907822.089404541999102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986713.984592689201236, 3904839.651280810590833 ], [ 4986710.391666789539158, 3904896.082976882811636 ], [ 4986677.28155177924782, 3904894.181681696791202 ], [ 4986678.478577977046371, 3904875.613867803476751 ], [ 4986669.264974547550082, 3904875.227304163388908 ], [ 4986668.660702497698367, 3904886.878054794855416 ], [ 4986644.188268448226154, 3904885.361961635760963 ], [ 4986645.087571795098484, 3904870.798873056657612 ], [ 4986631.26849231030792, 3904869.67285130918026 ], [ 4986634.26054082531482, 3904823.435377506073564 ], [ 4986656.141451659612358, 3904824.945153628475964 ], [ 4986655.538956810720265, 3904835.867644673213363 ], [ 4986713.984592689201236, 3904839.651280810590833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986411.277345387265086, 3910447.284912506118417 ], [ 4986381.446805331856012, 3910401.695933661423624 ], [ 4986424.41008332837373, 3910374.126001573633403 ], [ 4986454.240581441670656, 3910419.715027332771569 ], [ 4986411.277345387265086, 3910447.284912506118417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986296.279995474033058, 3914661.124958474189043 ], [ 4986308.58955115173012, 3914689.193096809554845 ], [ 4986276.028389777056873, 3914703.315487415064126 ], [ 4986263.718806657008827, 3914675.247363762464374 ], [ 4986296.279995474033058, 3914661.124958474189043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986031.312319278717041, 3897761.836862630676478 ], [ 4986041.740171767771244, 3897737.465263632126153 ], [ 4986069.938065676018596, 3897749.549549780320376 ], [ 4986072.546134643256664, 3897743.00149312056601 ], [ 4986097.580081131309271, 3897753.257526594679803 ], [ 4986100.186399465426803, 3897747.437729057390243 ], [ 4986136.72918851301074, 3897762.819393097423017 ], [ 4986127.749313327483833, 3897783.917277520056814 ], [ 4986110.773187161423266, 3897776.593701088801026 ], [ 4986100.633315642364323, 3897800.965968789532781 ], [ 4986077.614737725816667, 3897791.078923031687737 ], [ 4986081.091282239183784, 3897782.712309894151986 ], [ 4986031.312319278717041, 3897761.836862630676478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985677.331000340171158, 3910610.103044105693698 ], [ 4985679.860895635560155, 3910635.598434175830334 ], [ 4985631.194213086739182, 3910640.943765932694077 ], [ 4985626.409130126237869, 3910595.415651589632034 ], [ 4985664.99619684740901, 3910591.502675105351955 ], [ 4985666.964292171411216, 3910611.170585702639073 ], [ 4985677.331000340171158, 3910610.103044105693698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985657.257595557719469, 3900485.727460861206055 ], [ 4985686.031390727497637, 3900496.720357817597687 ], [ 4985670.673144259490073, 3900536.009681924246252 ], [ 4985641.899384992197156, 3900525.01680115563795 ], [ 4985657.257595557719469, 3900485.727460861206055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985471.952790540643036, 3905838.017223170027137 ], [ 4985492.185372721403837, 3905806.02196161262691 ], [ 4985497.36050833389163, 3905809.311523371376097 ], [ 4985514.703260673210025, 3905781.67895508883521 ], [ 4985558.405254000797868, 3905809.093414378352463 ], [ 4985536.727655964903533, 3905843.269961852114648 ], [ 4985540.464809318073094, 3905845.827827622648329 ], [ 4985530.349369367584586, 3905861.461308607831597 ], [ 4985521.436223831027746, 3905855.978006749879569 ], [ 4985515.654735413379967, 3905865.431613869499415 ], [ 4985471.952790540643036, 3905838.017223170027137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984779.259732248261571, 3907744.059711919631809 ], [ 4984826.790998371317983, 3907733.976425569970161 ], [ 4984834.196838144212961, 3907767.858273432124406 ], [ 4984809.134719855152071, 3907773.260965247172862 ], [ 4984809.133858508430421, 3907773.625095717608929 ], [ 4984742.013671884313226, 3907788.031707914080471 ], [ 4984734.8939228951931, 3907754.878826269879937 ], [ 4984754.194160539656878, 3907750.918976789806038 ], [ 4984749.920939386822283, 3907731.609854767099023 ], [ 4984775.558928979560733, 3907726.208469288423657 ], [ 4984779.259732248261571, 3907744.059711919631809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984690.671311037614942, 3909168.337389197666198 ], [ 4984615.489847630262375, 3909184.181819831486791 ], [ 4984609.223737535066903, 3909155.400549420155585 ], [ 4984684.405277667567134, 3909139.556101533584297 ], [ 4984690.671311037614942, 3909168.337389197666198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984399.841847870498896, 3915799.252879252657294 ], [ 4984419.919274982996285, 3915829.523238104768097 ], [ 4984370.624117525294423, 3915861.451177634298801 ], [ 4984350.835349788889289, 3915830.817398854531348 ], [ 4984399.841847870498896, 3915799.252879252657294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984402.416309896856546, 3907845.856721638236195 ], [ 4984411.546752858906984, 3907881.199037787970155 ], [ 4984361.129857282154262, 3907894.189340867567807 ], [ 4984351.711431694217026, 3907858.846365377772599 ], [ 4984402.416309896856546, 3907845.856721638236195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984331.155303875915706, 3915999.001248735934496 ], [ 4984298.59335346147418, 3916014.582577595952898 ], [ 4984279.401645752601326, 3915974.846890505868942 ], [ 4984311.676653865724802, 3915958.900730666238815 ], [ 4984331.155303875915706, 3915999.001248735934496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984241.850063526071608, 3914681.354051212780178 ], [ 4984246.528212641365826, 3914650.413626051042229 ], [ 4984306.954937159083784, 3914659.658755620475858 ], [ 4984302.276719979010522, 3914690.599170448258519 ], [ 4984241.850063526071608, 3914681.354051212780178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984059.991813855245709, 3909729.440911314450204 ], [ 4984102.044070367701352, 3909721.528328637126833 ], [ 4984107.731379797682166, 3909751.764667562674731 ], [ 4984065.680020208470523, 3909759.313110541552305 ], [ 4984059.991813855245709, 3909729.440911314450204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983912.511437906883657, 3916425.515161783900112 ], [ 4983899.874137646518648, 3916413.833380741067231 ], [ 4983914.878632722422481, 3916397.846465207170695 ], [ 4983927.802063876762986, 3916410.257189784664661 ], [ 4983941.651860604993999, 3916395.724132633768022 ], [ 4983965.202006869018078, 3916417.991310109850019 ], [ 4983951.352208798751235, 3916432.524355320259929 ], [ 4983954.510677057318389, 3916435.808938591275364 ], [ 4983926.811125754378736, 3916464.875047642737627 ], [ 4983899.527706828899682, 3916438.95785074820742 ], [ 4983912.511437906883657, 3916425.515161783900112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982764.971421447582543, 3916659.185871051158756 ], [ 4982726.670489739626646, 3916667.837410264648497 ], [ 4982716.123402465134859, 3916623.024731860030442 ], [ 4982730.522249969653785, 3916619.780475056264549 ], [ 4982724.250059556216002, 3916593.548437640536577 ], [ 4982748.440053502097726, 3916588.1417939462699 ], [ 4982764.971421447582543, 3916659.185871051158756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982516.119187220931053, 3902592.528498839586973 ], [ 4982474.212334900163114, 3902658.340760658029467 ], [ 4982448.906881708651781, 3902642.261345464736223 ], [ 4982461.333838112652302, 3902622.990688405930996 ], [ 4982431.138535542413592, 3902604.351234294474125 ], [ 4982460.907169234007597, 3902557.446084633935243 ], [ 4982516.119187220931053, 3902592.528498839586973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981218.394401554949582, 3906892.181891773361713 ], [ 4981244.058489644899964, 3906875.124966944567859 ], [ 4981278.781045975163579, 3906927.637554116081446 ], [ 4981255.424496686086059, 3906942.87893817666918 ], [ 4981243.658363880589604, 3906925.374318595044315 ], [ 4981241.351665240712464, 3906926.825697332620621 ], [ 4981218.394401554949582, 3906892.181891773361713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980990.133770757354796, 3906860.72219672286883 ], [ 4981000.16765066049993, 3906880.407645357307047 ], [ 4980971.054214363917708, 3906894.908210755791515 ], [ 4980961.019509447738528, 3906875.586903209332377 ], [ 4980990.133770757354796, 3906860.72219672286883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980810.984546129591763, 3904806.984377534594387 ], [ 4980840.397796195931733, 3904788.114736638497561 ], [ 4980858.477495603263378, 3904815.828846692573279 ], [ 4980829.064263044856489, 3904834.698468114249408 ], [ 4980810.984546129591763, 3904806.984377534594387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980527.893109763972461, 3902993.711702106054872 ], [ 4980516.89151513017714, 3903020.269023990724236 ], [ 4980452.731360974721611, 3902993.910149485338479 ], [ 4980463.732902821153402, 3902967.352801762521267 ], [ 4980527.893109763972461, 3902993.711702106054872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980503.927334118634462, 3899495.817091225646436 ], [ 4980529.873171431012452, 3899484.586256447713822 ], [ 4980540.474941888824105, 3899509.37051889160648 ], [ 4980514.529124003835022, 3899520.601343591697514 ], [ 4980503.927334118634462, 3899495.817091225646436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980431.711769399233162, 3906653.751801735255867 ], [ 4980444.391282738186419, 3906649.046013460494578 ], [ 4980453.838542461395264, 3906673.827812089584768 ], [ 4980408.019430962391198, 3906690.841107884421945 ], [ 4980395.710431924089789, 3906658.042119027581066 ], [ 4980428.850876756943762, 3906645.370461828541011 ], [ 4980431.711769399233162, 3906653.751801735255867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980304.738024219870567, 3895117.07871879870072 ], [ 4980356.384359869174659, 3895078.958618185017258 ], [ 4980374.478342361748219, 3895103.39509109640494 ], [ 4980322.543970653787255, 3895141.514524490106851 ], [ 4980304.738024219870567, 3895117.07871879870072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980040.852156753651798, 3908950.933216201141477 ], [ 4980058.168945998884737, 3908931.672083460725844 ], [ 4980073.972868703305721, 3908945.907851979602128 ], [ 4980056.656077232211828, 3908965.168974702712148 ], [ 4980040.852156753651798, 3908950.933216201141477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980036.480558643117547, 3900287.502999389078468 ], [ 4980057.519840533845127, 3900280.630542441736907 ], [ 4980070.679477883502841, 3900321.077848823275417 ], [ 4980049.640224225819111, 3900327.950295636430383 ], [ 4980036.480558643117547, 3900287.502999389078468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979887.406095585785806, 3909869.668919659219682 ], [ 4979967.359336298890412, 3909907.713351714424789 ], [ 4979950.295336428098381, 3909943.361084000673145 ], [ 4979870.34217797126621, 3909905.316701885778457 ], [ 4979887.406095585785806, 3909869.668919659219682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979889.453302974812686, 3906820.792003153823316 ], [ 4979880.169562025927007, 3906852.815374408382922 ], [ 4979862.040989718399942, 3906847.677974215243012 ], [ 4979860.591005976311862, 3906852.408529471606016 ], [ 4979845.052226716652513, 3906848.005054166540504 ], [ 4979846.791727818548679, 3906842.546865141019225 ], [ 4979834.418602369725704, 3906838.878563961014152 ], [ 4979843.41277333535254, 3906807.582810138817877 ], [ 4979889.453302974812686, 3906820.792003153823316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979819.474876375868917, 3899161.86573044070974 ], [ 4979838.790866284631193, 3899153.168697687797248 ], [ 4979834.204862962476909, 3899142.963048689067364 ], [ 4979847.754233774729073, 3899137.166497549973428 ], [ 4979851.193733491934836, 3899144.820735935121775 ], [ 4979871.951405853033066, 3899135.398609441705048 ], [ 4979887.143875530920923, 3899168.567620929796249 ], [ 4979833.52089655213058, 3899192.483300559688359 ], [ 4979819.474876375868917, 3899161.86573044070974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979701.049022702500224, 3899980.173395260237157 ], [ 4979707.158907131291926, 3899951.784494206309319 ], [ 4979752.067169004119933, 3899961.349602574948221 ], [ 4979745.668441592715681, 3899990.101995669305325 ], [ 4979701.049022702500224, 3899980.173395260237157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979653.367861224338412, 3902041.778662727680057 ], [ 4979627.441465876996517, 3902045.363644255325198 ], [ 4979624.319524256512523, 3902024.237260245252401 ], [ 4979613.948960094712675, 3902025.67126105632633 ], [ 4979607.420224884524941, 3901981.961354557424784 ], [ 4979643.718053271993995, 3901976.578231223858893 ], [ 4979648.260122692212462, 3902006.810979621019214 ], [ 4979662.375273767858744, 3902005.020999488420784 ], [ 4979664.929927178658545, 3902022.140712793450803 ], [ 4979650.813993646763265, 3902024.294820954091847 ], [ 4979653.367861224338412, 3902041.778662727680057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979595.277878988534212, 3897094.574943967629224 ], [ 4979617.667215419001877, 3897130.308292124420404 ], [ 4979589.401772452518344, 3897147.725171508267522 ], [ 4979567.012413110584021, 3897111.991846536286175 ], [ 4979595.277878988534212, 3897094.574943967629224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979548.56591593939811, 3908799.473776273895055 ], [ 4979593.827208067290485, 3908772.26207800488919 ], [ 4979614.482451671734452, 3908806.535401462577283 ], [ 4979569.221196129918098, 3908833.747065520379692 ], [ 4979548.56591593939811, 3908799.473776273895055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979542.960337933152914, 3908198.278823838569224 ], [ 4979523.893833774141967, 3908227.732194009236991 ], [ 4979491.40342584438622, 3908207.270330121740699 ], [ 4979496.892006395384669, 3908198.907181427348405 ], [ 4979485.966937306337059, 3908191.600851077120751 ], [ 4979503.87859708070755, 3908163.601480633020401 ], [ 4979518.541862228885293, 3908173.100719276349992 ], [ 4979514.208887247368693, 3908179.645707068964839 ], [ 4979542.960337933152914, 3908198.278823838569224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979320.519596373662353, 3908542.2664820025675 ], [ 4979306.324499329552054, 3908582.654516651760787 ], [ 4979275.252690983004868, 3908572.027552609797567 ], [ 4979289.447746830061078, 3908531.63950180541724 ], [ 4979320.519596373662353, 3908542.2664820025675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979172.675170342437923, 3909944.586427691392601 ], [ 4979147.334610264748335, 3909947.080737959593534 ], [ 4979142.830235673114657, 3909899.733763703145087 ], [ 4979205.893463538959622, 3909893.679466958157718 ], [ 4979208.988870688714087, 3909926.822231767233461 ], [ 4979171.266293209046125, 3909930.382209811359644 ], [ 4979172.675170342437923, 3909944.586427691392601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979164.9025146542117, 3900057.300841704010963 ], [ 4979201.424119796603918, 3900082.868708403315395 ], [ 4979182.935342169366777, 3900109.046256192959845 ], [ 4979146.701759329065681, 3900083.479034615680575 ], [ 4979164.9025146542117, 3900057.300841704010963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978727.532741912640631, 3906333.621667667292058 ], [ 4978738.704643144272268, 3906360.591336084064096 ], [ 4978714.496918577700853, 3906370.3711201203987 ], [ 4978703.612934260629117, 3906343.402077240403742 ], [ 4978727.532741912640631, 3906333.621667667292058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978682.505291793495417, 3900186.260333136189729 ], [ 4978697.247150195762515, 3900161.166823970153928 ], [ 4978734.928857561200857, 3900183.095230880659074 ], [ 4978719.898973051458597, 3900208.188103877473623 ], [ 4978682.505291793495417, 3900186.260333136189729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978670.359689258038998, 3905196.315567408688366 ], [ 4978718.187319184653461, 3905183.309065792709589 ], [ 4978729.043724260292947, 3905223.386778840329498 ], [ 4978681.216160289011896, 3905236.393261457327753 ], [ 4978670.359689258038998, 3905196.315567408688366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978611.118891900405288, 3901652.462649176828563 ], [ 4978652.535406088456511, 3901677.67611485440284 ], [ 4978632.883090039715171, 3901710.041804234031588 ], [ 4978622.528782350942492, 3901703.829471577890217 ], [ 4978611.836743181571364, 3901720.920804916881025 ], [ 4978578.186582886613905, 3901700.093538350891322 ], [ 4978591.768578902818263, 3901678.274655090179294 ], [ 4978594.357354748994112, 3901679.736702565103769 ], [ 4978611.118891900405288, 3901652.462649176828563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978518.435308680869639, 3907034.49360504373908 ], [ 4978545.530979358591139, 3907020.350213764701039 ], [ 4978567.613804077729583, 3907061.544244976248592 ], [ 4978540.517386803403497, 3907076.051744865253568 ], [ 4978518.435308680869639, 3907034.49360504373908 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978429.959255463443696, 3904366.311039451044053 ], [ 4978475.771759390830994, 3904353.663953957613558 ], [ 4978484.060510501265526, 3904382.812131442595273 ], [ 4978438.248052278533578, 3904395.459203028585762 ], [ 4978429.959255463443696, 3904366.311039451044053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978395.577775925397873, 3913895.588902720250189 ], [ 4978387.346896710805595, 3913840.587204468436539 ], [ 4978397.137124513275921, 3913839.151494979392737 ], [ 4978394.584368879906833, 3913821.303513190243393 ], [ 4978433.169602043926716, 3913815.559481726493686 ], [ 4978440.260597915388644, 3913865.096760896034539 ], [ 4978435.941200383938849, 3913865.815832911990583 ], [ 4978439.345864962786436, 3913889.127638543955982 ], [ 4978395.577775925397873, 3913895.588902720250189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978205.511596630327404, 3903339.347857577726245 ], [ 4978257.797790391370654, 3903262.262882090173662 ], [ 4978290.292038866318762, 3903284.179711243137717 ], [ 4978237.717825100757182, 3903361.264013873878866 ], [ 4978205.511596630327404, 3903339.347857577726245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978192.006801871582866, 3904276.593547168187797 ], [ 4978198.856090144254267, 3904305.738584516569972 ], [ 4978151.0317795695737, 3904316.561223973054439 ], [ 4978144.470401372760534, 3904287.416808283887804 ], [ 4978192.006801871582866, 3904276.593547168187797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978156.616995668038726, 3905486.528121107723564 ], [ 4978150.266757067292929, 3905493.797309910878539 ], [ 4978133.595169306732714, 3905479.92500464245677 ], [ 4978162.751013793051243, 3905445.394218516536057 ], [ 4978181.147201527841389, 3905460.726722510997206 ], [ 4978188.074892615899444, 3905452.730501069221646 ], [ 4978207.621303102001548, 3905468.793724123388529 ], [ 4978177.887991123832762, 3905504.051502361893654 ], [ 4978156.616995668038726, 3905486.528121107723564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978110.186894464306533, 3902661.861869559623301 ], [ 4978094.856359959580004, 3902693.872981855180115 ], [ 4978058.606767249293625, 3902677.046296649612486 ], [ 4978073.650061260908842, 3902644.670425556600094 ], [ 4978110.186894464306533, 3902661.861869559623301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978058.106546212919056, 3906727.6454689912498 ], [ 4978078.00780495069921, 3906711.665739272721112 ], [ 4978094.090463404543698, 3906731.362889472860843 ], [ 4978074.477142369374633, 3906747.343216381967068 ], [ 4978058.106546212919056, 3906727.6454689912498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978044.116969115100801, 3902583.798092146869749 ], [ 4978058.576644808985293, 3902555.062292530201375 ], [ 4978078.426314851269126, 3902564.935800123494118 ], [ 4978063.966623181477189, 3902593.671589225530624 ], [ 4978044.116969115100801, 3902583.798092146869749 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977923.848980386741459, 3905263.915809211786836 ], [ 4977929.912031003274024, 3905256.281830424908549 ], [ 4977948.311554373241961, 3905270.157652738504112 ], [ 4977919.436833809129894, 3905307.966446320526302 ], [ 4977884.363946246914566, 3905280.946754767093807 ], [ 4977907.46277847699821, 3905251.136643853038549 ], [ 4977923.848980386741459, 3905263.915809211786836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977682.1880924385041, 3905023.44442228320986 ], [ 4977635.222244807519019, 3905037.54696939047426 ], [ 4977626.356875749304891, 3905008.397833846975118 ], [ 4977673.322769579477608, 3904994.295271489303559 ], [ 4977682.1880924385041, 3905023.44442228320986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977583.16263675596565, 3908030.603012545499951 ], [ 4977597.792288161814213, 3908056.487086480949074 ], [ 4977558.301637282595038, 3908078.252240516245365 ], [ 4977543.959115684963763, 3908052.732921724673361 ], [ 4977583.16263675596565, 3908030.603012545499951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977507.382092579267919, 3914244.739060189109296 ], [ 4977523.735520970076323, 3914270.626811262220144 ], [ 4977487.131036567501724, 3914293.126449381932616 ], [ 4977459.875777250155807, 3914249.737485093530267 ], [ 4977478.034103574231267, 3914238.487340241670609 ], [ 4977470.574325748719275, 3914226.819446267094463 ], [ 4977493.344414752908051, 3914212.665894001722336 ], [ 4977511.705979897640646, 3914241.835045647807419 ], [ 4977507.382092579267919, 3914244.739060189109296 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977499.657358170486987, 3912709.899782470893115 ], [ 4977502.584844981320202, 3912686.601373692043126 ], [ 4977513.233714169822633, 3912687.71607418730855 ], [ 4977516.743817759677768, 3912661.141686778049916 ], [ 4977551.566855314187706, 3912665.584246084559709 ], [ 4977545.416297898627818, 3912715.82176797837019 ], [ 4977499.657358170486987, 3912709.899782470893115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977497.793520448729396, 3911125.18803073791787 ], [ 4977491.766212522052228, 3911116.436219040304422 ], [ 4977513.38816050440073, 3911101.916169428266585 ], [ 4977533.192799022421241, 3911130.360030419193208 ], [ 4977516.183134099468589, 3911141.976659088395536 ], [ 4977532.543795360252261, 3911165.315444813575596 ], [ 4977401.367951237596571, 3911254.981828379444778 ], [ 4977371.23136187158525, 3911211.222888477612287 ], [ 4977497.793520448729396, 3911125.18803073791787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977424.917262554168701, 3904947.530120639596134 ], [ 4977434.922495919279754, 3904982.507678122259676 ], [ 4977415.618318378925323, 3904987.929298447445035 ], [ 4977413.045018803328276, 3904979.184759973548353 ], [ 4977382.215932108461857, 3904987.859504572115839 ], [ 4977374.783947611227632, 3904961.626501021906734 ], [ 4977424.917262554168701, 3904947.530120639596134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977378.441212631762028, 3908724.575123097747564 ], [ 4977352.205525144003332, 3908741.634557127486914 ], [ 4977324.366274310275912, 3908699.33707126416266 ], [ 4977350.60198524966836, 3908682.277610508725047 ], [ 4977378.441212631762028, 3908724.575123097747564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977321.389233365654945, 3901846.371598497033119 ], [ 4977324.60721465293318, 3901822.345668355002999 ], [ 4977345.624077822081745, 3901825.302575530018657 ], [ 4977342.118092839606106, 3901849.327902148943394 ], [ 4977321.389233365654945, 3901846.371598497033119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977273.883783053606749, 3901149.690120087936521 ], [ 4977279.125344721600413, 3901122.027104643639177 ], [ 4977325.185995943844318, 3901130.862307753413916 ], [ 4977319.944388535805047, 3901158.525314355734736 ], [ 4977273.883783053606749, 3901149.690120087936521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977187.152225005440414, 3911821.854392770677805 ], [ 4977147.647730689495802, 3911853.087624054402113 ], [ 4977124.103074026294053, 3911823.543855827301741 ], [ 4977124.103074026294053, 3911823.543855827301741 ], [ 4977099.410635692998767, 3911792.177056784275919 ], [ 4977138.914405534975231, 3911761.307887372095138 ], [ 4977163.320463350974023, 3911791.945859729778022 ], [ 4977163.320463350974023, 3911791.945859729778022 ], [ 4977187.152225005440414, 3911821.854392770677805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977162.754620868712664, 3908328.677566068246961 ], [ 4977178.826364809647202, 3908353.47201987169683 ], [ 4977138.753085285425186, 3908378.877904420718551 ], [ 4977122.969235242344439, 3908354.084072911646217 ], [ 4977162.754620868712664, 3908328.677566068246961 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977130.794876989908516, 3906113.959255312103778 ], [ 4977175.743001307360828, 3906099.851622188929468 ], [ 4977187.756876515224576, 3906138.110480443574488 ], [ 4977123.792712803930044, 3906158.004656967706978 ], [ 4977116.35550525970757, 3906134.320618525147438 ], [ 4977135.371617343276739, 3906128.534050191286951 ], [ 4977130.794876989908516, 3906113.959255312103778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977095.021486432291567, 3906424.125306088011712 ], [ 4977132.800198432058096, 3906395.801553141791373 ], [ 4977151.177381173707545, 3906420.236621158663183 ], [ 4977113.686619945801795, 3906448.560947305522859 ], [ 4977095.021486432291567, 3906424.125306088011712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977045.602342619560659, 3900825.138835031539202 ], [ 4977075.569075558334589, 3900817.918448342941701 ], [ 4977089.56287416536361, 3900874.75191588094458 ], [ 4977064.206398971378803, 3900880.889468618668616 ], [ 4977058.492609647102654, 3900858.665627336129546 ], [ 4977048.984210578724742, 3900860.830669334158301 ], [ 4977045.273525928147137, 3900844.801212678663433 ], [ 4977050.171725954860449, 3900843.718989578075707 ], [ 4977045.602342619560659, 3900825.138835031539202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976977.802638648077846, 3903383.018602127209306 ], [ 4976999.772871308960021, 3903342.281464933417737 ], [ 4977015.305831427685916, 3903350.688712507486343 ], [ 4977032.651249652728438, 3903318.317026034463197 ], [ 4977022.583652747794986, 3903312.834160953760147 ], [ 4977036.459859240800142, 3903287.009641123469919 ], [ 4977042.788391798734665, 3903290.299960643518716 ], [ 4977048.858439113944769, 3903279.388624823652208 ], [ 4977110.991819649003446, 3903312.289522005710751 ], [ 4977089.020637274719775, 3903353.3906972669065 ], [ 4977073.48694531340152, 3903345.347536794375628 ], [ 4977056.142251300625503, 3903377.355067705735564 ], [ 4977065.634635834023356, 3903382.472619629930705 ], [ 4977051.758450182154775, 3903408.297125888057053 ], [ 4977045.717915133573115, 3903405.007401918526739 ], [ 4977039.647897255606949, 3903415.918739270418882 ], [ 4976977.802638648077846, 3903383.018602127209306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976899.103166874498129, 3906760.540960683953017 ], [ 4976926.492980567738414, 3906743.119361069984734 ], [ 4976940.842829714529216, 3906765.725285745691508 ], [ 4976913.740962035022676, 3906783.147467453498393 ], [ 4976899.103166874498129, 3906760.540960683953017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976829.766259883530438, 3901025.32767059514299 ], [ 4976869.780103222467005, 3901033.785457141231745 ], [ 4976863.093703511171043, 3901063.994475893676281 ], [ 4976823.080656038597226, 3901055.172569916117936 ], [ 4976829.766259883530438, 3901025.32767059514299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976722.955784442834556, 3901007.992851968389004 ], [ 4976716.560543416067958, 3901036.745984224136919 ], [ 4976673.092981019057333, 3901027.188911147415638 ], [ 4976679.488177744671702, 3900998.435768715571612 ], [ 4976722.955784442834556, 3901007.992851968389004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976499.452478082850575, 3911380.194346757140011 ], [ 4976509.252487291581929, 3911374.388372919987887 ], [ 4976524.743488222360611, 3911401.001955887302756 ], [ 4976535.408642837777734, 3911394.469505346380174 ], [ 4976543.72876984719187, 3911408.323685696814209 ], [ 4976523.264368198812008, 3911420.297966737300158 ], [ 4976499.452478082850575, 3911380.194346757140011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976371.786175547167659, 3907937.057491741143167 ], [ 4976412.148800084367394, 3907910.922799821943045 ], [ 4976430.231692737899721, 3907938.269852615892887 ], [ 4976389.580424566753209, 3907964.768057735171169 ], [ 4976371.786175547167659, 3907937.057491741143167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976197.330957328900695, 3906798.4229975361377 ], [ 4976209.648735651746392, 3906829.399413141887635 ], [ 4976161.813349680043757, 3906848.236481288447976 ], [ 4976149.495524986647069, 3906817.260087250731885 ], [ 4976197.330957328900695, 3906798.4229975361377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975944.004295251332223, 3897998.314924016129225 ], [ 4975934.131387499161065, 3898037.620887260418385 ], [ 4975889.22300476487726, 3898025.877397521398962 ], [ 4975892.126214053481817, 3898014.595266130752861 ], [ 4975871.686704048886895, 3898009.455901297740638 ], [ 4975878.943607679568231, 3897981.796761978417635 ], [ 4975944.004295251332223, 3897998.314924016129225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975892.276434921659529, 3908704.397377033252269 ], [ 4975900.313523566350341, 3908716.430094636045396 ], [ 4975877.249497478827834, 3908731.676755907479674 ], [ 4975869.212403107434511, 3908719.644045097287744 ], [ 4975892.276434921659529, 3908704.397377033252269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975830.70391659066081, 3912793.849117728415877 ], [ 4975847.92567091435194, 3912818.64518389897421 ], [ 4975786.235496278852224, 3912861.123485886491835 ], [ 4975769.013712487183511, 3912836.327458587940782 ], [ 4975830.70391659066081, 3912793.849117728415877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975699.532221020199358, 3908910.833333808463067 ], [ 4975679.053759086877108, 3908928.998466451186687 ], [ 4975657.796393879689276, 3908905.286799197085202 ], [ 4975677.986949590966105, 3908887.121067384257913 ], [ 4975699.532221020199358, 3908910.833333808463067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975559.736397984437644, 3911268.310070279520005 ], [ 4975558.611359744332731, 3911255.199006773997098 ], [ 4975628.00551487877965, 3911248.420847315341234 ], [ 4975629.415455763228238, 3911262.989022559951991 ], [ 4975587.375500859692693, 3911267.273558337707072 ], [ 4975588.220741693861783, 3911276.378593830857426 ], [ 4975570.656859235838056, 3911277.799607389140874 ], [ 4975569.81455743778497, 3911267.238046251703054 ], [ 4975559.736397984437644, 3911268.310070279520005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975461.782716566696763, 3905596.386096477974206 ], [ 4975415.405942101031542, 3905605.031735963188112 ], [ 4975409.423680726438761, 3905572.976083879824728 ], [ 4975455.512563098222017, 3905564.329853393137455 ], [ 4975461.782716566696763, 3905596.386096477974206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975247.074295816011727, 3903683.899093794636428 ], [ 4975276.764032513834536, 3903669.393513233866543 ], [ 4975290.24203984066844, 3903697.458725073840469 ], [ 4975260.553058613091707, 3903711.600161135662347 ], [ 4975247.074295816011727, 3903683.899093794636428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975014.786983838304877, 3899314.227448207791895 ], [ 4975044.517851931042969, 3899281.51520459773019 ], [ 4975075.567080354318023, 3899309.615403353702277 ], [ 4975063.732324146665633, 3899322.700398589018732 ], [ 4975071.782085764221847, 3899329.999124004039913 ], [ 4975054.173977946862578, 3899349.626909852959216 ], [ 4975014.786983838304877, 3899314.227448207791895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974856.042397264391184, 3904969.592668301425874 ], [ 4974864.066543370485306, 3904988.907651413232088 ], [ 4974853.115666579455137, 3904993.255384162534028 ], [ 4974857.987597613595426, 3905004.917314283084124 ], [ 4974823.116437624208629, 3905019.413035600911826 ], [ 4974818.8174933725968, 3905009.208780387882143 ], [ 4974809.30784035846591, 3905012.831140876747668 ], [ 4974793.259472331032157, 3904974.201209422200918 ], [ 4974836.776493201963603, 3904956.081373383756727 ], [ 4974844.514157939702272, 3904974.667515972629189 ], [ 4974856.042397264391184, 3904969.592668301425874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974724.44936737511307, 3910177.148902073036879 ], [ 4974771.430093600414693, 3910150.296626524999738 ], [ 4974781.758809266611934, 3910168.159709668718278 ], [ 4974783.488362483680248, 3910167.07075753249228 ], [ 4974797.833091631531715, 3910192.224504859186709 ], [ 4974771.89345053397119, 3910206.738128516823053 ], [ 4974768.450307854451239, 3910200.905145231168717 ], [ 4974745.68044267501682, 3910213.968577469233423 ], [ 4974724.44936737511307, 3910177.148902073036879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974598.018968741409481, 3897288.833491790574044 ], [ 4974635.19923347607255, 3897276.891021783463657 ], [ 4974645.504813267849386, 3897308.954923469573259 ], [ 4974665.680210356600583, 3897302.440670148935169 ], [ 4974674.555707881227136, 3897329.403922838624567 ], [ 4974617.200137071311474, 3897347.860613502562046 ], [ 4974598.018968741409481, 3897288.833491790574044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974250.712926701642573, 3900615.568755275569856 ], [ 4974256.542555931024253, 3900580.259581998921931 ], [ 4974297.713452813215554, 3900586.895162947010249 ], [ 4974291.883770879358053, 3900622.204327432904392 ], [ 4974250.712926701642573, 3900615.568755275569856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974226.157398876734078, 3902991.474350791424513 ], [ 4974250.671010267920792, 3902973.316127845551819 ], [ 4974263.308070559985936, 3902990.455217125359923 ], [ 4974294.165743168443441, 3902967.939975508488715 ], [ 4974321.737827603705227, 3903005.135788295418024 ], [ 4974271.269300396554172, 3903042.177546469029039 ], [ 4974248.006005798466504, 3903010.452248854096979 ], [ 4974242.814597203396261, 3903014.447454090695828 ], [ 4974226.157398876734078, 3902991.474350791424513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974136.528740023262799, 3904343.317301927600056 ], [ 4974144.643899695947766, 3904316.751679082401097 ], [ 4974163.062508016824722, 3904322.249910958576947 ], [ 4974174.943398852832615, 3904284.403638270217925 ], [ 4974215.809195659123361, 3904296.864621627610177 ], [ 4974195.81232228782028, 3904361.640611778944731 ], [ 4974136.528740023262799, 3904343.317301927600056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973985.66707400791347, 3903007.751387338154018 ], [ 4973960.294754959642887, 3903023.359249704983085 ], [ 4973953.404120198450983, 3903012.785932275932282 ], [ 4973935.816365226171911, 3903023.675380531698465 ], [ 4973919.166046988219023, 3902997.061169996391982 ], [ 4973982.597259146161377, 3902957.859397945925593 ], [ 4973997.237445143982768, 3902981.556652667932212 ], [ 4973977.054322954267263, 3902994.261635539587587 ], [ 4973985.66707400791347, 3903007.751387338154018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973794.773233771324158, 3900486.863664935342968 ], [ 4973781.297024474479258, 3900456.250353217124939 ], [ 4973819.34580825548619, 3900439.574741385877132 ], [ 4973833.109982707537711, 3900470.188635337632149 ], [ 4973794.773233771324158, 3900486.863664935342968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973790.78060388378799, 3897519.92251008329913 ], [ 4973809.419355094432831, 3897562.562152430880815 ], [ 4973786.357645505107939, 3897572.348576712887734 ], [ 4973782.629609411582351, 3897563.96630169544369 ], [ 4973744.577495755627751, 3897580.277808187529445 ], [ 4973729.666711607947946, 3897546.020477378275245 ], [ 4973790.78060388378799, 3897519.92251008329913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973732.724927181378007, 3899225.030445313081145 ], [ 4973736.739337537437677, 3899234.141541965771466 ], [ 4973759.510880873538554, 3899224.718631627038121 ], [ 4973773.271481649950147, 3899257.517246219795197 ], [ 4973729.169942735694349, 3899275.637617144268006 ], [ 4973711.682894546538591, 3899233.728493419941515 ], [ 4973732.724927181378007, 3899225.030445313081145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973711.364549337886274, 3902642.719291697721928 ], [ 4973676.67237523663789, 3902711.83649326255545 ], [ 4973650.779385472647846, 3902699.041406244039536 ], [ 4973660.899027591571212, 3902678.305669285356998 ], [ 4973657.158885391429067, 3902676.477720157243311 ], [ 4973681.443385127000511, 3902628.095657458994538 ], [ 4973711.364549337886274, 3902642.719291697721928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973413.849733248353004, 3910817.630852984730154 ], [ 4973382.98270960804075, 3910849.978765253908932 ], [ 4973360.855530961416662, 3910829.180263162124902 ], [ 4973391.722551702521741, 3910796.832325905095786 ], [ 4973413.849733248353004, 3910817.630852984730154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973402.045287766493857, 3896424.591266227886081 ], [ 4973415.015012235380709, 3896420.611005751416087 ], [ 4973411.293058539740741, 3896408.951633106917143 ], [ 4973457.697063146159053, 3896394.112401821184903 ], [ 4973473.155213341116905, 3896443.664067080710083 ], [ 4973413.782284235581756, 3896462.119398685637861 ], [ 4973402.045287766493857, 3896424.591266227886081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973294.126153170131147, 3903662.203540246933699 ], [ 4973272.506865539588034, 3903673.449749513994902 ], [ 4973276.81084191147238, 3903681.468969608657062 ], [ 4973252.884329988621175, 3903694.531384443398565 ], [ 4973231.365805917419493, 3903653.70705027366057 ], [ 4973276.910945401526988, 3903629.762523620389402 ], [ 4973294.126153170131147, 3903662.203540246933699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973217.055026938207448, 3905246.390295014251024 ], [ 4973225.751244870945811, 3905216.548321496229619 ], [ 4973270.071448017843068, 3905229.01455736765638 ], [ 4973261.374480032362044, 3905259.220647018868476 ], [ 4973217.055026938207448, 3905246.390295014251024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972948.935486926697195, 3901823.403676613699645 ], [ 4972995.924099422991276, 3901799.097340839449316 ], [ 4973011.131942423060536, 3901827.892963854130358 ], [ 4972964.430650904774666, 3901852.563957119826227 ], [ 4972948.935486926697195, 3901823.403676613699645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972640.87982842233032, 3901926.954272092785686 ], [ 4972667.983105455525219, 3901909.891962089110166 ], [ 4972682.053236182779074, 3901931.402606171555817 ], [ 4972688.107877009548247, 3901927.772885162848979 ], [ 4972715.385507675819099, 3901970.064288948196918 ], [ 4972697.508197234943509, 3901981.682248323690146 ], [ 4972687.458731263875961, 3901966.0053844852373 ], [ 4972672.464752468280494, 3901975.808224769774824 ], [ 4972640.87982842233032, 3901926.954272092785686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972425.647259424440563, 3913019.09972429368645 ], [ 4972405.150560943409801, 3913049.647888211067766 ], [ 4972354.262838052585721, 3913015.686632704921067 ], [ 4972374.759504363872111, 3912985.138430612627417 ], [ 4972425.647259424440563, 3913019.09972429368645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972360.823922521434724, 3904571.468901760876179 ], [ 4972382.043986122123897, 3904618.118095944169909 ], [ 4972362.44638533052057, 3904626.819968396797776 ], [ 4972341.225602364167571, 3904580.534919562283903 ], [ 4972360.823922521434724, 3904571.468901760876179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972116.037889732979238, 3905191.848662106320262 ], [ 4972155.823195935226977, 3905166.434791197534651 ], [ 4972171.614887800998986, 3905190.497395443264395 ], [ 4972131.828912681899965, 3905216.275373619515449 ], [ 4972116.037889732979238, 3905191.848662106320262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972108.393101033754647, 3902232.175399260595441 ], [ 4972123.895831648260355, 3902257.693906112574041 ], [ 4972084.109014739282429, 3902281.651260707527399 ], [ 4972068.606948845088482, 3902255.768646806012839 ], [ 4972108.393101033754647, 3902232.175399260595441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972061.054475532844663, 3892538.220545960590243 ], [ 4972041.734893552027643, 3892547.65138890966773 ], [ 4972027.384979028254747, 3892518.858105027116835 ], [ 4972046.70457660779357, 3892509.42725192476064 ], [ 4972061.054475532844663, 3892538.220545960590243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971937.485984587110579, 3907646.124055034480989 ], [ 4971928.553499939851463, 3907649.748527176212519 ], [ 4971931.418994209729135, 3907657.036574426107109 ], [ 4971894.248787322081625, 3907671.895906406920403 ], [ 4971877.340240285731852, 3907629.988848000764847 ], [ 4971923.730913382954895, 3907611.505559282843024 ], [ 4971937.485984587110579, 3907646.124055034480989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971834.781621211208403, 3906530.594207122921944 ], [ 4971858.135223466902971, 3906514.252247196622193 ], [ 4971884.840467891655862, 3906552.900535587687045 ], [ 4971861.487568702548742, 3906568.878342112526298 ], [ 4971834.781621211208403, 3906530.594207122921944 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971233.902927419170737, 3898145.719312815461308 ], [ 4971243.364405252970755, 3898169.041229632683098 ], [ 4971196.380522215738893, 3898188.25277387117967 ], [ 4971178.604171052575111, 3898144.524146477691829 ], [ 4971214.346337820403278, 3898130.025362399406731 ], [ 4971222.661154647357762, 3898150.432100142817944 ], [ 4971233.902927419170737, 3898145.719312815461308 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970927.273612069897354, 3912255.976949410978705 ], [ 4970943.432933241128922, 3912235.25124640064314 ], [ 4970973.330037970095873, 3912257.882820146623999 ], [ 4970979.678762519732118, 3912249.519509282428771 ], [ 4971006.126059103757143, 3912269.595802037511021 ], [ 4970983.617991901934147, 3912298.684776426292956 ], [ 4970927.273612069897354, 3912255.976949410978705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970752.046844686381519, 3893603.404377616010606 ], [ 4970774.527317986823618, 3893597.619717249646783 ], [ 4970778.531502774916589, 3893613.284641900099814 ], [ 4970779.396394105628133, 3893612.922106316313148 ], [ 4970783.685963403433561, 3893630.044073784258217 ], [ 4970760.629368706606328, 3893635.827665525488555 ], [ 4970752.046844686381519, 3893603.404377616010606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970630.116578157991171, 3897721.120169493369758 ], [ 4970675.079975310713053, 3897704.452834038529545 ], [ 4970683.964026576839387, 3897728.865874610841274 ], [ 4970677.911391835659742, 3897731.039523289073259 ], [ 4970687.370150433853269, 3897756.181882041506469 ], [ 4970643.848314890637994, 3897772.123586491681635 ], [ 4970635.536285937763751, 3897749.896388989407569 ], [ 4970640.436127160675824, 3897748.084742406848818 ], [ 4970630.116578157991171, 3897721.120169493369758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970489.296985895372927, 3906508.431851321365684 ], [ 4970529.220492384396493, 3906562.760683160275221 ], [ 4970480.494810511358082, 3906597.992155984975398 ], [ 4970440.571258248761296, 3906543.663395366165787 ], [ 4970489.296985895372927, 3906508.431851321365684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970154.038804248906672, 3912257.835443167481571 ], [ 4970185.736086039803922, 3912240.77890602638945 ], [ 4970204.099633052013814, 3912273.948476822581142 ], [ 4970157.129181573167443, 3912299.716378754004836 ], [ 4970145.365479732863605, 3912278.211110907141119 ], [ 4970160.925895784050226, 3912269.864374261815101 ], [ 4970154.038804248906672, 3912257.835443167481571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970146.545176407322288, 3900395.136444402392954 ], [ 4970147.936819688417017, 3900421.720500797498971 ], [ 4970102.428763890638947, 3900423.822527300100774 ], [ 4970101.036413879133761, 3900397.602602495346218 ], [ 4970146.545176407322288, 3900395.136444402392954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970031.644065551459789, 3902768.695866568479687 ], [ 4970064.312934504821897, 3902698.477906669024378 ], [ 4970092.511433616280556, 3902711.27372504863888 ], [ 4970088.175912199541926, 3902720.004989344161004 ], [ 4970101.123575730249286, 3902726.218748627696186 ], [ 4970093.02914799656719, 3902743.318192331120372 ], [ 4970113.458867982029915, 3902752.458604945801198 ], [ 4970104.2079051239416, 3902772.104859677143395 ], [ 4970080.037824226543307, 3902761.137002609670162 ], [ 4970068.473826304078102, 3902785.876900960225612 ], [ 4970031.644065551459789, 3902768.695866568479687 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969648.21678376942873, 3905559.433072357438505 ], [ 4969654.50566996075213, 3905584.933612113352865 ], [ 4969606.974396992474794, 3905596.136114268563688 ], [ 4969600.685468375682831, 3905570.635585464071482 ], [ 4969648.21678376942873, 3905559.433072357438505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969112.174946174956858, 3902746.651262520812452 ], [ 4969133.123204946517944, 3902788.199509000405669 ], [ 4969098.53571273945272, 3902805.252060918137431 ], [ 4969077.586765893734992, 3902764.067970781587064 ], [ 4969112.174946174956858, 3902746.651262520812452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968932.462819726206362, 3902592.668545912019908 ], [ 4968975.428337882272899, 3902560.701291379984468 ], [ 4968989.793582974933088, 3902579.661613749805838 ], [ 4968978.258966117165983, 3902588.380268323700875 ], [ 4968992.048886996693909, 3902606.975439570844173 ], [ 4968946.776377310045063, 3902640.759228465612978 ], [ 4968929.251786411739886, 3902617.059620950371027 ], [ 4968943.092776720412076, 3902606.888514469843358 ], [ 4968932.462819726206362, 3902592.668545912019908 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968890.598615027964115, 3898266.360441475640982 ], [ 4968886.200175470672548, 3898310.412373708561063 ], [ 4968832.636247634887695, 3898305.583808025345206 ], [ 4968836.450816909782588, 3898265.900393314659595 ], [ 4968872.447965093888342, 3898269.241316820029169 ], [ 4968873.032399269752204, 3898264.508662590757012 ], [ 4968890.598615027964115, 3898266.360441475640982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968743.383926712907851, 3910505.646024904213846 ], [ 4968732.663688766770065, 3910544.225141988601536 ], [ 4968739.857128541916609, 3910546.42265249742195 ], [ 4968733.194423922337592, 3910569.71536912675947 ], [ 4968676.220131314359605, 3910553.592895744834095 ], [ 4968693.602962367236614, 3910491.721028613857925 ], [ 4968743.383926712907851, 3910505.646024904213846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968686.150858434848487, 3899380.60106582287699 ], [ 4968692.404203082434833, 3899427.584901310503483 ], [ 4968649.768914861604571, 3899432.971631909254938 ], [ 4968643.515496992506087, 3899385.987806188408285 ], [ 4968686.150858434848487, 3899380.60106582287699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968354.793156043626368, 3914080.384706089738756 ], [ 4968281.387791441753507, 3914081.712622663937509 ], [ 4968281.124162824824452, 3914067.875088261906058 ], [ 4968269.033644529990852, 3914068.218056684825569 ], [ 4968267.966992828063667, 3914019.7864357708022 ], [ 4968282.07251668907702, 3914019.446994652505964 ], [ 4968281.806337611749768, 3914007.065990248695016 ], [ 4968353.484776354394853, 3914005.735046371351928 ], [ 4968354.793156043626368, 3914080.384706089738756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967969.018422473222017, 3897878.400974087882787 ], [ 4968014.254622910171747, 3897869.376390873454511 ], [ 4968024.250056808814406, 3897918.551315939519554 ], [ 4967978.725908428430557, 3897927.575381877832115 ], [ 4967969.018422473222017, 3897878.400974087882787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967776.75941844470799, 3898793.490228533744812 ], [ 4967798.931758193299174, 3898796.441658892203122 ], [ 4967796.012483056634665, 3898819.012667588889599 ], [ 4967773.552143881097436, 3898816.060741076245904 ], [ 4967776.75941844470799, 3898793.490228533744812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967643.20546056330204, 3901412.813097441103309 ], [ 4967664.824827659875154, 3901401.198245557490736 ], [ 4967683.197683082893491, 3901435.094131291843951 ], [ 4967661.577706427313387, 3901447.073098188731819 ], [ 4967643.20546056330204, 3901412.813097441103309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967473.426394512876868, 3901836.368666239082813 ], [ 4967469.408376112580299, 3901828.350879954639822 ], [ 4967443.467153164558113, 3901841.414985397830606 ], [ 4967424.813171315938234, 3901803.513334406074136 ], [ 4967470.929714718833566, 3901781.016503229271621 ], [ 4967493.314302183687687, 3901826.571349801961333 ], [ 4967473.426394512876868, 3901836.368666239082813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967234.059355438686907, 3903380.601265462115407 ], [ 4967225.08996126614511, 3903405.346831415779889 ], [ 4967200.339607464149594, 3903396.565354795195162 ], [ 4967209.596950659528375, 3903371.820273184217513 ], [ 4967234.059355438686907, 3903380.601265462115407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967233.147335120476782, 3902398.90266372077167 ], [ 4967226.804314084351063, 3902403.26138153905049 ], [ 4967238.581556277349591, 3902420.759812999516726 ], [ 4967204.560793977230787, 3902443.641860815230757 ], [ 4967166.356656377203763, 3902386.772148798685521 ], [ 4967206.719861229881644, 3902359.895459225866944 ], [ 4967233.147335120476782, 3902398.90266372077167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967178.009571952745318, 3894386.128462470602244 ], [ 4967220.362007212825119, 3894382.195433135610074 ], [ 4967222.620449220761657, 3894409.144849012605846 ], [ 4967180.556120987050235, 3894413.078367020469159 ], [ 4967178.009571952745318, 3894386.128462470602244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967049.096367760561407, 3895656.355428687762469 ], [ 4967049.91151147056371, 3895685.123038041871041 ], [ 4967026.866168023087084, 3895685.81204254552722 ], [ 4967027.126935558393598, 3895701.834179266821593 ], [ 4967007.250169198960066, 3895702.528596628922969 ], [ 4967006.700718743726611, 3895686.870098099578172 ], [ 4966996.042202006094158, 3895687.216086986940354 ], [ 4966995.227000720798969, 3895658.448479217477143 ], [ 4967010.494354135356843, 3895658.110335267148912 ], [ 4967010.219319512136281, 3895650.463150315918028 ], [ 4967026.639504405669868, 3895649.762848651967943 ], [ 4967026.627722934819758, 3895656.681286607868969 ], [ 4967049.096367760561407, 3895656.355428687762469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966797.423805369064212, 3896796.017246939241886 ], [ 4966758.536022197455168, 3896797.407899935729802 ], [ 4966756.891006590798497, 3896748.247618347872049 ], [ 4966796.066900699399412, 3896746.857451074291021 ], [ 4966797.423805369064212, 3896796.017246939241886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966224.015240013599396, 3908450.152731269598007 ], [ 4966245.266642182134092, 3908482.59607458114624 ], [ 4966221.342950605787337, 3908498.577837408985943 ], [ 4966199.803617947734892, 3908466.134031031746417 ], [ 4966224.015240013599396, 3908450.152731269598007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966155.54879330471158, 3908415.809792813379318 ], [ 4966180.053220496512949, 3908396.915886035189033 ], [ 4966211.081022951751947, 3908437.022326493635774 ], [ 4966186.576610376127064, 3908455.916205448564142 ], [ 4966155.54879330471158, 3908415.809792813379318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966030.30277921166271, 3893206.599126878660172 ], [ 4965983.887103291228414, 3893227.6413245620206 ], [ 4965964.368078114464879, 3893185.369909120723605 ], [ 4966010.78441783413291, 3893163.963550457730889 ], [ 4966030.30277921166271, 3893206.599126878660172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965967.702842903323472, 3906933.84344594553113 ], [ 4965936.020165406167507, 3906939.980978800915182 ], [ 4965931.736929832957685, 3906918.490078629925847 ], [ 4965925.112702469341457, 3906919.571459628175944 ], [ 4965921.972704211249948, 3906903.180307488888502 ], [ 4965929.461334239691496, 3906901.736231210175902 ], [ 4965923.752960057929158, 3906871.503799800295383 ], [ 4965967.53247381746769, 3906863.201590656768531 ], [ 4965978.095625991933048, 3906917.474811902735382 ], [ 4965965.134492481127381, 3906920.002162641379982 ], [ 4965967.702842903323472, 3906933.84344594553113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965758.113391000777483, 3898398.631998483091593 ], [ 4965763.067658875137568, 3898363.683729354757816 ], [ 4965833.32946693059057, 3898373.267557874787599 ], [ 4965828.66252759937197, 3898408.580420875456184 ], [ 4965758.113391000777483, 3898398.631998483091593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965092.021221427246928, 3898863.987768545746803 ], [ 4965152.763117920607328, 3898882.2934166258201 ], [ 4965147.260464985854924, 3898900.855060592759401 ], [ 4965086.519200626760721, 3898882.185295678209513 ], [ 4965092.021221427246928, 3898863.987768545746803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964977.138363067992032, 3902735.963731844443828 ], [ 4964996.78235805220902, 3902698.126092025078833 ], [ 4965025.843629899434745, 3902713.102779652457684 ], [ 4965006.19960483815521, 3902750.940398563165218 ], [ 4964977.138363067992032, 3902735.963731844443828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964635.14991968870163, 3893199.213627867866307 ], [ 4964625.882075639441609, 3893229.785491879098117 ], [ 4964548.713638695888221, 3893207.085109571460634 ], [ 4964557.981989273801446, 3893176.149091531988233 ], [ 4964635.14991968870163, 3893199.213627867866307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964464.45970059838146, 3901353.258429046720266 ], [ 4964509.381537989713252, 3901356.243742448277771 ], [ 4964505.838914999738336, 3901410.129363033920527 ], [ 4964467.540351209230721, 3901407.518835640512407 ], [ 4964469.612495485693216, 3901372.565634204540402 ], [ 4964463.277878829278052, 3901371.827186957467347 ], [ 4964464.45970059838146, 3901353.258429046720266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964299.134755991399288, 3901724.042174425907433 ], [ 4964339.135700172744691, 3901742.312809542287141 ], [ 4964318.616892603226006, 3901787.067988087888807 ], [ 4964278.328598112799227, 3901768.432792246807367 ], [ 4964299.134755991399288, 3901724.042174425907433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964250.816546878777444, 3901144.268963990733027 ], [ 4964230.648316510021687, 3901149.698660416994244 ], [ 4964233.22569212410599, 3901158.806044884026051 ], [ 4964208.735259430482984, 3901165.685367545112967 ], [ 4964196.137482441961765, 3901119.420660772826523 ], [ 4964211.119524149224162, 3901115.439169896766543 ], [ 4964208.543882919475436, 3901105.239399099722505 ], [ 4964237.932003692723811, 3901097.275518326554447 ], [ 4964250.816546878777444, 3901144.268963990733027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964234.497576694004238, 3898202.435147608630359 ], [ 4964230.712502288632095, 3898227.918185080867261 ], [ 4964190.110419529490173, 3898222.027213072869927 ], [ 4964186.908999265171587, 3898242.777501091361046 ], [ 4964185.757485381327569, 3898242.411531805526465 ], [ 4964183.136189511045814, 3898260.613838112447411 ], [ 4964144.837754799053073, 3898255.090743869543076 ], [ 4964151.53378726541996, 3898210.313457474578172 ], [ 4964181.481328221037984, 3898214.730831914581358 ], [ 4964184.392978254705667, 3898195.072470296639949 ], [ 4964234.497576694004238, 3898202.435147608630359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963733.292417478747666, 3904423.172487897798419 ], [ 4963755.483587720431387, 3904411.555380558595061 ], [ 4963759.504052417352796, 3904418.480233191512525 ], [ 4963785.730682118795812, 3904404.320616296958178 ], [ 4963803.532174499705434, 3904437.120608715340495 ], [ 4963755.113844441249967, 3904463.261428437195718 ], [ 4963733.292417478747666, 3904423.172487897798419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963654.848907086998224, 3904315.994017626158893 ], [ 4963618.547152218408883, 3904327.953087694011629 ], [ 4963605.077373122796416, 3904287.149161491543055 ], [ 4963650.887002879753709, 3904271.927893040236086 ], [ 4963658.338316468521953, 3904294.515784188639373 ], [ 4963648.830497690476477, 3904297.777962085325271 ], [ 4963654.848907086998224, 3904315.994017626158893 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963504.96103654615581, 3893601.596468617208302 ], [ 4963512.220692111179233, 3893564.830866300035268 ], [ 4963546.490614468231797, 3893571.803210264071822 ], [ 4963544.747849142178893, 3893580.903689624741673 ], [ 4963565.482287744991481, 3893585.305864508263767 ], [ 4963559.965905093587935, 3893612.606846223585308 ], [ 4963504.96103654615581, 3893601.596468617208302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963483.560693614184856, 3903919.185462146997452 ], [ 4963508.321508363820612, 3903921.773305042181164 ], [ 4963502.483239945955575, 3903972.014217047020793 ], [ 4963458.432985611259937, 3903966.84715762687847 ], [ 4963462.813053902238607, 3903928.25614080671221 ], [ 4963482.103138780221343, 3903930.471235510893166 ], [ 4963483.560693614184856, 3903919.185462146997452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963128.297105855308473, 3894253.161961996462196 ], [ 4963116.654785359278321, 3894329.975045584142208 ], [ 4963055.310357376933098, 3894321.140483034309 ], [ 4963066.952506297267973, 3894244.327373268548399 ], [ 4963128.297105855308473, 3894253.161961996462196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963079.414190101437271, 3904004.852419019211084 ], [ 4963048.562595155090094, 3904030.293592120055109 ], [ 4963014.35908040124923, 3903989.093598504085094 ], [ 4963045.49865266866982, 3903963.652834631502628 ], [ 4963079.414190101437271, 3904004.852419019211084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962935.734260812401772, 3892667.445826848503202 ], [ 4962929.333759973756969, 3892707.854183204006404 ], [ 4962886.707598040811718, 3892701.233817187137902 ], [ 4962893.108036336489022, 3892660.825450823176652 ], [ 4962935.734260812401772, 3892667.445826848503202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962494.966365500353277, 3896984.972946660593152 ], [ 4962497.610107319429517, 3896951.477084303274751 ], [ 4962498.762258204631507, 3896951.478852302767336 ], [ 4962502.872463158331811, 3896900.871153001207858 ], [ 4962562.201070114970207, 3896905.695953817106783 ], [ 4962561.028771146200597, 3896918.802815725561231 ], [ 4962569.956831878051162, 3896919.544797474052757 ], [ 4962568.198938760906458, 3896938.840961363166571 ], [ 4962557.83125463873148, 3896937.732638261746615 ], [ 4962556.35917083080858, 3896958.485760543961078 ], [ 4962564.711143227294087, 3896959.22685532970354 ], [ 4962563.24185346160084, 3896978.159334013704211 ], [ 4962550.569325259886682, 3896977.41160090547055 ], [ 4962549.398713357746601, 3896989.42607776960358 ], [ 4962494.966365500353277, 3896984.972946660593152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962467.20687975268811, 3899497.062063619028777 ], [ 4962482.228110881522298, 3899467.954695117659867 ], [ 4962523.957238697446883, 3899489.138288831803948 ], [ 4962508.647963900119066, 3899518.245192268397659 ], [ 4962467.20687975268811, 3899497.062063619028777 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962451.175983747467399, 3899245.423602911643684 ], [ 4962431.835028149187565, 3899274.160236003343016 ], [ 4962393.855794809758663, 3899248.97709809243679 ], [ 4962413.196727802045643, 3899220.240438107866794 ], [ 4962451.175983747467399, 3899245.423602911643684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962306.216583020053804, 3898926.223896112293005 ], [ 4962293.790724167600274, 3898953.15053692786023 ], [ 4962248.891289691440761, 3898932.690732770133764 ], [ 4962261.317112926393747, 3898905.764071529265493 ], [ 4962306.216583020053804, 3898926.223896112293005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962296.366286946460605, 3897266.505246043670923 ], [ 4962310.469957763329148, 3897273.081119606271386 ], [ 4962315.093525996431708, 3897263.256683139596134 ], [ 4962335.817530502565205, 3897272.755721820518374 ], [ 4962334.950644871219993, 3897274.575044892728329 ], [ 4962366.612133772112429, 3897289.188641940243542 ], [ 4962362.278255916200578, 3897297.921123927459121 ], [ 4962372.640238304622471, 3897302.67065955279395 ], [ 4962348.942395158112049, 3897354.340822749305516 ], [ 4962272.378857916221023, 3897319.267422137316316 ], [ 4962296.366286946460605, 3897266.505246043670923 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962048.294424503110349, 3900161.324603588785976 ], [ 4962063.598965612240136, 3900134.766332468949258 ], [ 4962123.739666688255966, 3900169.085967969615012 ], [ 4962108.435085538774729, 3900195.644205389544368 ], [ 4962048.294424503110349, 3900161.324603588785976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961357.059408890083432, 3893421.703778444323689 ], [ 4961335.710327777080238, 3893442.791405643802136 ], [ 4961283.645692831836641, 3893391.007538161240518 ], [ 4961318.266897476278245, 3893356.102755290921777 ], [ 4961362.85243184864521, 3893400.592952879611403 ], [ 4961349.292774867266417, 3893414.045488527044654 ], [ 4961357.059408890083432, 3893421.703778444323689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961283.711428986862302, 3897795.514866893645376 ], [ 4961290.37622756883502, 3897768.57919590966776 ], [ 4961320.895898378454149, 3897776.2714002141729 ], [ 4961314.231613825075328, 3897802.842934858985245 ], [ 4961283.711428986862302, 3897795.514866893645376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961200.269265648908913, 3905293.202402332797647 ], [ 4961178.083176551386714, 3905302.636842687148601 ], [ 4961168.326473631896079, 3905280.046203318051994 ], [ 4961190.51257791928947, 3905270.611755041405559 ], [ 4961200.269265648908913, 3905293.202402332797647 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961146.617013949900866, 3896237.928993933834136 ], [ 4961177.719964096322656, 3896241.980598093476146 ], [ 4961166.077033040113747, 3896323.528287917375565 ], [ 4961132.094811107032001, 3896318.744166097138077 ], [ 4961136.463565673679113, 3896286.343133031390607 ], [ 4961128.111885639838874, 3896285.23835373390466 ], [ 4961130.440014287829399, 3896269.220114990137517 ], [ 4961141.959113670513034, 3896271.057854110375047 ], [ 4961146.617013949900866, 3896237.928993933834136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961111.524152982980013, 3898147.372427109628916 ], [ 4961135.988979255780578, 3898159.060872714966536 ], [ 4961123.565561738796532, 3898184.895655240863562 ], [ 4961099.10075362958014, 3898173.207220764830709 ], [ 4961111.524152982980013, 3898147.372427109628916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960930.06726426910609, 3891512.672362936194986 ], [ 4960976.438883560709655, 3891520.751666120719165 ], [ 4960966.27053789794445, 3891578.268925222102553 ], [ 4960941.212697679176927, 3891573.86238004732877 ], [ 4960939.178829110227525, 3891585.511485461611301 ], [ 4960917.577059966512024, 3891581.838321219664067 ], [ 4960930.06726426910609, 3891512.672362936194986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960871.359427907504141, 3899286.743925645481795 ], [ 4960878.003047024831176, 3899273.645039178431034 ], [ 4960895.846415312960744, 3899282.774603518657386 ], [ 4960873.606091355904937, 3899325.709150746930391 ], [ 4960837.34389606397599, 3899307.085085352417082 ], [ 4960852.652552099898458, 3899277.248975181020796 ], [ 4960871.359427907504141, 3899286.743925645481795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960694.681716723367572, 3893287.088504701852798 ], [ 4960693.216756771318614, 3893303.83627698244527 ], [ 4960683.42267941031605, 3893303.457780410535634 ], [ 4960681.073202560655773, 3893334.041148152202368 ], [ 4960624.616077992133796, 3893329.952984236646444 ], [ 4960628.142866182141006, 3893282.257285854779184 ], [ 4960694.681716723367572, 3893287.088504701852798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960500.273661119863391, 3895032.437973252497613 ], [ 4960531.076742745935917, 3895045.591613876167685 ], [ 4960517.491203219629824, 3895077.615126888733357 ], [ 4960486.400093770585954, 3895064.461081139743328 ], [ 4960500.273661119863391, 3895032.437973252497613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960422.970273093320429, 3898661.239691068883985 ], [ 4960428.478202656842768, 3898636.851017169188708 ], [ 4960458.42268640268594, 3898643.449019206222147 ], [ 4960453.202750320546329, 3898667.838107157964259 ], [ 4960422.970273093320429, 3898661.239691068883985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960397.906278759241104, 3908351.820020155981183 ], [ 4960346.064523190259933, 3908363.396761188283563 ], [ 4960338.912195083685219, 3908332.071001080796123 ], [ 4960390.754007953219116, 3908320.494246456306428 ], [ 4960397.906278759241104, 3908351.820020155981183 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960334.261307490058243, 3899056.555646498221904 ], [ 4960338.332706287503242, 3899029.615950020961463 ], [ 4960371.73507874365896, 3899034.762366750277579 ], [ 4960367.375632121227682, 3899061.70163908880204 ], [ 4960334.261307490058243, 3899056.555646498221904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960280.440380152314901, 3899228.710919062141329 ], [ 4960273.751046504825354, 3899273.489196724724025 ], [ 4960244.380076233297586, 3899269.077009108383209 ], [ 4960249.324374753050506, 3899235.948352263309062 ], [ 4960251.62795231398195, 3899236.315824819728732 ], [ 4960253.372940546832979, 3899224.666196948383003 ], [ 4960280.440380152314901, 3899228.710919062141329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959779.006843278184533, 3900435.078800628893077 ], [ 4959809.522346941754222, 3900443.861689588055015 ], [ 4959799.680198065005243, 3900478.804076008498669 ], [ 4959768.876730889081955, 3900470.020785300992429 ], [ 4959779.006843278184533, 3900435.078800628893077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959524.320322296582162, 3900703.07891713315621 ], [ 4959524.9481733571738, 3900666.666780829895288 ], [ 4959607.6014947546646, 3900668.24113646382466 ], [ 4959607.272442447021604, 3900697.00696096662432 ], [ 4959583.657159793190658, 3900696.609137922991067 ], [ 4959583.358775157481432, 3900703.8913185140118 ], [ 4959524.320322296582162, 3900703.07891713315621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959354.279378860257566, 3898960.838833321351558 ], [ 4959356.941734527237713, 3898911.320938740856946 ], [ 4959378.829455601982772, 3898912.444369041826576 ], [ 4959379.122637812048197, 3898908.803485814481974 ], [ 4959407.922244736924767, 3898910.300875743851066 ], [ 4959404.966092929244041, 3898963.823777495417744 ], [ 4959354.279378860257566, 3898960.838833321351558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959189.909180398099124, 3906242.492468657437712 ], [ 4959214.956713656894863, 3906244.712635005824268 ], [ 4959212.613082418218255, 3906273.111583319958299 ], [ 4959241.691199787892401, 3906275.701600864063948 ], [ 4959239.351146500557661, 3906301.551631687674671 ], [ 4959184.937636252492666, 3906296.741048082709312 ], [ 4959189.909180398099124, 3906242.492468657437712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958825.150822268798947, 3901462.760692747309804 ], [ 4958744.221234396100044, 3901465.924840052612126 ], [ 4958742.825481795705855, 3901434.243543087039143 ], [ 4958823.754655816592276, 3901431.443521398119628 ], [ 4958825.150822268798947, 3901462.760692747309804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958564.306863205507398, 3904727.194170458707958 ], [ 4958593.628621879965067, 3904762.919757816009223 ], [ 4958574.889862810261548, 3904778.551364757586271 ], [ 4958575.177310888655484, 3904778.915895211044699 ], [ 4958556.727032898925245, 3904794.183784444816411 ], [ 4958526.830361555330455, 3904757.729176795110106 ], [ 4958564.306863205507398, 3904727.194170458707958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958456.739894770085812, 3904426.636828273069113 ], [ 4958452.696893678046763, 3904435.006246332079172 ], [ 4958472.265396473929286, 3904444.13662204425782 ], [ 4958459.557454555295408, 3904471.428856529295444 ], [ 4958413.226065606810153, 3904449.881007201969624 ], [ 4958429.976965179666877, 3904414.219329130835831 ], [ 4958456.739894770085812, 3904426.636828273069113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958228.952040036208928, 3898784.848834628704935 ], [ 4958253.531830769963562, 3898713.513210320845246 ], [ 4958283.759761110879481, 3898723.750478052534163 ], [ 4958259.179398028180003, 3898795.450204335153103 ], [ 4958228.952040036208928, 3898784.848834628704935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957920.416619101539254, 3898834.311916433740407 ], [ 4957967.051087842322886, 3898852.217944830656052 ], [ 4957939.303504094481468, 3898923.913641423918307 ], [ 4957895.547819874249399, 3898907.10397468926385 ], [ 4957907.687232939526439, 3898875.805358301848173 ], [ 4957895.596968581900001, 3898871.055183357093483 ], [ 4957901.378165854141116, 3898855.769611205440015 ], [ 4957910.877770675346255, 3898859.423865381628275 ], [ 4957920.416619101539254, 3898834.311916433740407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957492.224896181374788, 3900261.849070497788489 ], [ 4957473.727480793371797, 3900310.253447719383985 ], [ 4957437.457402868196368, 3900296.731771705206484 ], [ 4957446.416355698369443, 3900273.803634474985301 ], [ 4957442.674289502203465, 3900272.342074390966445 ], [ 4957452.212692913599312, 3900246.865808529313654 ], [ 4957492.224896181374788, 3900261.849070497788489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957371.770422862842679, 3897956.016254798974842 ], [ 4957366.237731207162142, 3898000.796770236454904 ], [ 4957314.689297381788492, 3897994.537351784296334 ], [ 4957319.933877383358777, 3897949.75643938453868 ], [ 4957371.770422862842679, 3897956.016254798974842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957042.118027604185045, 3900663.245641715824604 ], [ 4957030.556904609315097, 3900694.181319762952626 ], [ 4956954.275751153938472, 3900665.313584649469703 ], [ 4956964.679966884665191, 3900638.017639512196183 ], [ 4956987.420689892023802, 3900646.422863779589534 ], [ 4956993.48995812330395, 3900630.409203829243779 ], [ 4957021.124224963597953, 3900640.641616291366518 ], [ 4957016.21081119030714, 3900653.743766244035214 ], [ 4957042.118027604185045, 3900663.245641715824604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956982.176643470302224, 3900908.225561043713242 ], [ 4956970.614726207219064, 3900939.889528781641275 ], [ 4956923.118269794620574, 3900922.712319445796311 ], [ 4956934.968133912421763, 3900891.048713994212449 ], [ 4956982.176643470302224, 3900908.225561043713242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956859.576407414861023, 3901495.405126915313303 ], [ 4956848.016332338564098, 3901525.97676919400692 ], [ 4956881.406607922166586, 3901538.40145202819258 ], [ 4956870.42298546154052, 3901568.609719282947481 ], [ 4956811.41382197290659, 3901547.047877864446491 ], [ 4956833.957918769679964, 3901485.903803958091885 ], [ 4956859.576407414861023, 3901495.405126915313303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955959.130903367884457, 3901196.732616328634322 ], [ 4955898.07889758516103, 3901194.833187706768513 ], [ 4955899.282505793496966, 3901154.780401351395994 ], [ 4955930.960290940478444, 3901155.91365103283897 ], [ 4955931.554131880402565, 3901142.077464380767196 ], [ 4955960.64046573266387, 3901142.843274714890867 ], [ 4955959.130903367884457, 3901196.732616328634322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955753.12693506013602, 3905303.498664369340986 ], [ 4955772.963083629496396, 3905328.649198018945754 ], [ 4955752.786622739396989, 3905344.280928605701774 ], [ 4955732.949999621137977, 3905319.494540272746235 ], [ 4955753.12693506013602, 3905303.498664369340986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955346.378528014756739, 3905206.484703316353261 ], [ 4955324.752782242372632, 3905229.761670898646116 ], [ 4955300.594133675098419, 3905206.790780019480735 ], [ 4955322.2194152334705, 3905183.877923959866166 ], [ 4955346.378528014756739, 3905206.484703316353261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954184.736853567883372, 3894437.711015976034105 ], [ 4954165.988574859686196, 3894457.35101189929992 ], [ 4954142.682532250881195, 3894435.110624848864973 ], [ 4954124.799366507679224, 3894454.023450255859643 ], [ 4954104.083199389278889, 3894433.971037178765982 ], [ 4954140.714194259606302, 3894395.782300372142345 ], [ 4954184.736853567883372, 3894437.711015976034105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953299.177945784293115, 3894960.258035699371248 ], [ 4953295.188525315374136, 3894923.840384529903531 ], [ 4953366.348344548605382, 3894916.278597672469914 ], [ 4953370.049610637128353, 3894952.695915047544986 ], [ 4953299.177945784293115, 3894960.258035699371248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953281.587298658676445, 3891833.100458804983646 ], [ 4953259.10003796685487, 3891846.546423260588199 ], [ 4953239.548746455460787, 3891813.751606914680451 ], [ 4953262.035591169260442, 3891800.669754126109183 ], [ 4953281.587298658676445, 3891833.100458804983646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953108.9192134141922, 3893376.435798561666161 ], [ 4953116.486881178803742, 3893310.901618293020874 ], [ 4953123.975581059232354, 3893312.002881813794374 ], [ 4953126.88700301386416, 3893286.153203281573951 ], [ 4953164.620334686711431, 3893290.203385823406279 ], [ 4953159.669865635223687, 3893334.985327515751123 ], [ 4953145.84392293356359, 3893333.512405941262841 ], [ 4953140.603689183481038, 3893379.750522915273905 ], [ 4953108.9192134141922, 3893376.435798561666161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952385.307521124370396, 3891355.039578294381499 ], [ 4952412.983469879254699, 3891339.050003299955279 ], [ 4952455.250174758955836, 3891411.196407221257687 ], [ 4952429.015604122541845, 3891426.459354447200894 ], [ 4952421.539437966421247, 3891414.070327003952116 ], [ 4952410.584575333632529, 3891420.247807262931019 ], [ 4952400.233334106393158, 3891402.757659120019525 ], [ 4952409.747293231077492, 3891396.942632876802236 ], [ 4952385.307521124370396, 3891355.039578294381499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952205.440000012516975, 3889685.30501657538116 ], [ 4952199.343467645347118, 3889725.352059159427881 ], [ 4952129.631309787742794, 3889715.076326492242515 ], [ 4952138.631904808804393, 3889655.005574633833021 ], [ 4952170.60732679348439, 3889659.775989034213126 ], [ 4952167.703557980246842, 3889679.435552002862096 ], [ 4952205.440000012516975, 3889685.30501657538116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952131.256283621303737, 3889805.381896141916513 ], [ 4952163.804407234303653, 3889813.065983615349978 ], [ 4952149.038188984617591, 3889876.043128873221576 ], [ 4952116.490137448534369, 3889868.359058992005885 ], [ 4952131.256283621303737, 3889805.381896141916513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952050.417179496027529, 3891208.638450543396175 ], [ 4952069.106482941657305, 3891241.067272224463522 ], [ 4952046.620169551111758, 3891253.785990845412016 ], [ 4952027.930847873911262, 3891221.357184558175504 ], [ 4952050.417179496027529, 3891208.638450543396175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951969.653243401087821, 3889275.390842569060624 ], [ 4951971.627646411769092, 3889312.534127480350435 ], [ 4951964.423825081437826, 3889313.254152931272984 ], [ 4951966.402392188087106, 3889346.756165551487356 ], [ 4951939.029404749162495, 3889348.181419727392495 ], [ 4951937.33310504257679, 3889319.777519647032022 ], [ 4951920.045104364864528, 3889320.486049684230238 ], [ 4951917.788325265981257, 3889278.244658129755408 ], [ 4951969.653243401087821, 3889275.390842569060624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951916.970600957982242, 3890752.961665672715753 ], [ 4951944.051558909006417, 3890753.720824353862554 ], [ 4951943.443758310750127, 3890781.39386189263314 ], [ 4951916.362828219309449, 3890780.634703811258078 ], [ 4951916.970600957982242, 3890752.961665672715753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951860.237523629330099, 3892250.556295518763363 ], [ 4951930.226309160701931, 3892265.20120805921033 ], [ 4951923.564558485522866, 3892296.508645995520055 ], [ 4951903.402993206866086, 3892292.480238661635667 ], [ 4951901.665334111079574, 3892300.489081562962383 ], [ 4951877.183698964305222, 3892295.36338375788182 ], [ 4951878.920936254784465, 3892287.718667197972536 ], [ 4951853.575436397455633, 3892282.227878437377512 ], [ 4951860.237523629330099, 3892250.556295518763363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951848.125320713035762, 3888970.477386621292681 ], [ 4951787.035335913300514, 3888977.32636251160875 ], [ 4951783.612591488286853, 3888946.735751753207296 ], [ 4951827.988993224687874, 3888942.052521709818393 ], [ 4951827.133318360894918, 3888934.404867777135223 ], [ 4951843.846560397185385, 3888932.603240934200585 ], [ 4951848.125320713035762, 3888970.477386621292681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951483.873860577121377, 3892101.20192478178069 ], [ 4951489.967567823827267, 3892062.247048479039222 ], [ 4951530.005531650036573, 3892068.118165535386652 ], [ 4951523.911357664503157, 3892107.437160758767277 ], [ 4951483.873860577121377, 3892101.20192478178069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950831.247361277230084, 3892718.037650210317224 ], [ 4950822.564814914949238, 3892754.440942517947406 ], [ 4950788.867541291750968, 3892746.757199501618743 ], [ 4950780.474743777886033, 3892781.704310483764857 ], [ 4950751.961778356693685, 3892775.118694020435214 ], [ 4950760.933504453860223, 3892737.623310684692115 ], [ 4950756.613460260443389, 3892736.526183586101979 ], [ 4950764.717357953079045, 3892702.307005793787539 ], [ 4950831.247361277230084, 3892718.037650210317224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950662.703487273305655, 3892205.159963024780154 ], [ 4950634.459264843724668, 3892215.688799573574215 ], [ 4950616.362590298056602, 3892167.239959138445556 ], [ 4950644.318767371587455, 3892156.710788883734494 ], [ 4950662.703487273305655, 3892205.159963024780154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950421.383556129410863, 3893972.740969296079129 ], [ 4950424.869239177554846, 3893946.163356890901923 ], [ 4950452.808066403493285, 3893949.834978936240077 ], [ 4950449.322356190532446, 3893976.412587767932564 ], [ 4950421.383556129410863, 3893972.740969296079129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947627.361033970490098, 3891069.207845579832792 ], [ 4947677.491996673867106, 3891067.800562659744173 ], [ 4947678.326590840704739, 3891098.024011266417801 ], [ 4947628.195684443227947, 3891099.43129264889285 ], [ 4947627.361033970490098, 3891069.207845579832792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946273.398193377070129, 3890329.826231695711613 ], [ 4946260.76002574339509, 3890288.303895197343081 ], [ 4946303.412390373647213, 3890275.235002173110843 ], [ 4946317.486289570108056, 3890321.856487223412842 ], [ 4946333.048578795976937, 3890317.137338657397777 ], [ 4946340.8030507536605, 3890343.361781056970358 ], [ 4946285.758724481798708, 3890360.06035229191184 ], [ 4946278.577709263190627, 3890336.749482373706996 ], [ 4946292.122544160112739, 3890332.756687888875604 ], [ 4946289.82513552159071, 3890324.743734961841255 ], [ 4946273.398193377070129, 3890329.826231695711613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946051.485366770997643, 3892278.434082499239594 ], [ 4946079.424838592298329, 3892283.921795698348433 ], [ 4946072.767217823304236, 3892318.14370695874095 ], [ 4946044.827780227176845, 3892312.656000566668808 ], [ 4946051.485366770997643, 3892278.434082499239594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944177.197806187905371, 3891249.564852089621127 ], [ 4944253.828665322624147, 3891253.635717611759901 ], [ 4944252.360133516602218, 3891286.40598551183939 ], [ 4944175.44126910623163, 3891282.334878446068615 ], [ 4944177.197806187905371, 3891249.564852089621127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943942.863849194720387, 3892744.476425821892917 ], [ 4943974.840424594469368, 3892745.231692733708769 ], [ 4943973.95370833389461, 3892771.812313526403159 ], [ 4943941.9774718740955, 3892770.692919549066573 ], [ 4943942.863849194720387, 3892744.476425821892917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943725.465814695693552, 3891930.102993201930076 ], [ 4943722.530418110080063, 3891995.279485223814845 ], [ 4943682.487311843782663, 3891993.425403114873916 ], [ 4943685.422611549496651, 3891928.248906785622239 ], [ 4943725.465814695693552, 3891930.102993201930076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943711.436562119051814, 3893549.734184934291989 ], [ 4943782.332717419601977, 3893514.108917584177107 ], [ 4943803.327640983276069, 3893555.273045716807246 ], [ 4943781.712926926091313, 3893566.17877708747983 ], [ 4943779.124533045105636, 3893561.078808411024511 ], [ 4943758.086286219768226, 3893571.62091337190941 ], [ 4943753.772797295823693, 3893562.514089031144977 ], [ 4943724.953521467745304, 3893576.69099297747016 ], [ 4943711.436562119051814, 3893549.734184934291989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943156.250641311518848, 3892570.863002896308899 ], [ 4943174.127034479752183, 3892552.307031224481761 ], [ 4943200.034455913119018, 3892577.088896131142974 ], [ 4943182.446145692840219, 3892595.64508585864678 ], [ 4943156.250641311518848, 3892570.863002896308899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943073.455398832447827, 3889872.971126176882535 ], [ 4943058.74920191988349, 3889888.252558862324804 ], [ 4943013.837700370699167, 3889845.977349965833127 ], [ 4943030.274348758161068, 3889828.512528409250081 ], [ 4943037.471888837404549, 3889835.072658993303776 ], [ 4943053.908263957127929, 3889817.97197947697714 ], [ 4943085.289050695486367, 3889847.127664304338396 ], [ 4943066.833809507079422, 3889866.77558087836951 ], [ 4943073.455398832447827, 3889872.971126176882535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942933.3814005414024, 3889935.851897773798555 ], [ 4942963.89843044616282, 3889964.278490823227912 ], [ 4942928.430048341862857, 3890002.11915747821331 ], [ 4942892.730223258957267, 3889969.683026331476867 ], [ 4942909.166717428714037, 3889952.218129488639534 ], [ 4942914.061113003641367, 3889956.591605741996318 ], [ 4942933.3814005414024, 3889935.851897773798555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989118.18572092987597, 3908005.920451386831701 ], [ 4989139.488986445590854, 3908007.066667542792857 ], [ 4989140.097946669906378, 3907993.959428708069026 ], [ 4989164.28041459992528, 3907995.112939521670341 ], [ 4989161.847291000187397, 3908046.4495022254996 ], [ 4989116.361633914522827, 3908044.149778823833913 ], [ 4989118.18572092987597, 3908005.920451386831701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989093.8413942521438, 3912743.232471554540098 ], [ 4989056.687056642957032, 3912750.785476241726428 ], [ 4989048.157604021951556, 3912708.52443061536178 ], [ 4989085.31107812281698, 3912701.335545782465488 ], [ 4989093.8413942521438, 3912743.232471554540098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988900.261314349249005, 3908679.380653044674546 ], [ 4988909.292036227881908, 3908637.528114889748394 ], [ 4988953.031797391362488, 3908646.741615755949169 ], [ 4988944.001010367646813, 3908688.594139437191188 ], [ 4988900.261314349249005, 3908679.380653044674546 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988563.24419876281172, 3904949.454073699656874 ], [ 4988558.552144638262689, 3904983.306597624439746 ], [ 4988445.137434073723853, 3904967.729214395396411 ], [ 4988449.541395709849894, 3904933.875950876623392 ], [ 4988563.24419876281172, 3904949.454073699656874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988326.439558702521026, 3907529.831575689837337 ], [ 4988293.018526786006987, 3907538.487346888519824 ], [ 4988283.31812659651041, 3907502.778152900747955 ], [ 4988317.028033343143761, 3907493.75895818322897 ], [ 4988326.439558702521026, 3907529.831575689837337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988278.453790492378175, 3913145.010032848920673 ], [ 4988254.832578201778233, 3913151.505514995660633 ], [ 4988255.401040568947792, 3913154.420003667473793 ], [ 4988203.837973268702626, 3913168.492662006989121 ], [ 4988191.85566498991102, 3913125.13087317859754 ], [ 4988217.781616359017789, 3913117.912813322618604 ], [ 4988220.919984928332269, 3913129.208786052186042 ], [ 4988233.018459692597389, 3913125.96174527797848 ], [ 4988230.164328774437308, 3913116.123015195596963 ], [ 4988254.937932644039392, 3913109.266251899767667 ], [ 4988257.221775840036571, 3913116.918759071268141 ], [ 4988269.608125098049641, 3913113.672452825587243 ], [ 4988278.453790492378175, 3913145.010032848920673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988252.566920406185091, 3906902.611095367465168 ], [ 4988255.652440086007118, 3906935.390708671882749 ], [ 4988215.332154548726976, 3906939.295649701729417 ], [ 4988211.958655118942261, 3906906.51532340887934 ], [ 4988252.566920406185091, 3906902.611095367465168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988235.838559007272124, 3908068.885982938110828 ], [ 4988241.803140413016081, 3908101.672796317841858 ], [ 4988209.829696648754179, 3908107.419219915289432 ], [ 4988204.152996091172099, 3908074.63313095876947 ], [ 4988235.838559007272124, 3908068.885982938110828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988082.370258300565183, 3913163.820592421106994 ], [ 4988065.660561577416956, 3913169.241034725680947 ], [ 4988058.803444613702595, 3913148.468351559713483 ], [ 4988075.513152837753296, 3913143.047905063722283 ], [ 4988082.370258300565183, 3913163.820592421106994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987816.000165925361216, 3908205.484742773231119 ], [ 4987848.551047185435891, 3908199.011016515083611 ], [ 4987844.567136281169951, 3908180.066241318825632 ], [ 4987873.085404940880835, 3908174.310815687291324 ], [ 4987883.037899315357208, 3908224.585809411015362 ], [ 4987822.256753797642887, 3908236.815657180733979 ], [ 4987816.000165925361216, 3908205.484742773231119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987111.781362596899271, 3908545.305808378849179 ], [ 4987136.841443771496415, 3908540.633522920310497 ], [ 4987135.420626963488758, 3908532.983250842429698 ], [ 4987159.329069116152823, 3908528.308162396308035 ], [ 4987167.861065071076155, 3908571.296759383287281 ], [ 4987118.603804354555905, 3908581.007544047664851 ], [ 4987111.781362596899271, 3908545.305808378849179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986969.180903515778482, 3906342.319077904336154 ], [ 4986927.137637961655855, 3906344.036944698076695 ], [ 4986925.22887544427067, 3906300.336408434435725 ], [ 4986885.776984904892743, 3906302.06067378539592 ], [ 4986884.687494547106326, 3906276.568755128420889 ], [ 4986960.136101516894996, 3906273.111829478293657 ], [ 4986960.675468532368541, 3906288.042570698540658 ], [ 4986973.92149215284735, 3906287.710833944845945 ], [ 4986975.559161776676774, 3906324.492197462823242 ], [ 4986968.647776413708925, 3906324.839425438083708 ], [ 4986969.180903515778482, 3906342.319077904336154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986952.409022956155241, 3908137.815245870500803 ], [ 4986948.434265106916428, 3908114.865168925374746 ], [ 4986994.232843994162977, 3908106.966273413039744 ], [ 4987001.895250392146409, 3908152.501606481615454 ], [ 4986943.999755663797259, 3908162.191572881303728 ], [ 4986940.31113170273602, 3908139.970461726654321 ], [ 4986952.409022956155241, 3908137.815245870500803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986775.279292344115674, 3909342.662251519970596 ], [ 4986780.386091477237642, 3909373.626006075181067 ], [ 4986795.074556455016136, 3909371.477037638891488 ], [ 4986800.183103917166591, 3909401.712534949649125 ], [ 4986789.814107570797205, 3909403.507904015481472 ], [ 4986795.49224435724318, 3909436.293721157126129 ], [ 4986783.68374206405133, 3909438.085580853745341 ], [ 4986786.521923993714154, 3909454.842619689181447 ], [ 4986756.856297390535474, 3909459.504003011621535 ], [ 4986759.97884585428983, 3909477.718264402355999 ], [ 4986742.985438771545887, 3909480.589899276848882 ], [ 4986740.714163978584111, 3909467.475576276890934 ], [ 4986726.60156302433461, 3909469.625977803487331 ], [ 4986718.652947370894253, 3909423.361722983885556 ], [ 4986741.695037016645074, 3909419.412417266983539 ], [ 4986735.449897075071931, 3909382.983900635503232 ], [ 4986706.935818024910986, 3909387.648145756218582 ], [ 4986698.985369555652142, 3909342.112160647287965 ], [ 4986709.642288387753069, 3909340.317458035424352 ], [ 4986707.088402747176588, 3909325.017652981448919 ], [ 4986723.506093927659094, 3909322.144592493772507 ], [ 4986725.774727631360292, 3909336.351305165328085 ], [ 4986758.60921592079103, 3909330.969347794074565 ], [ 4986760.877830299548805, 3909345.176063495222479 ], [ 4986775.279292344115674, 3909342.662251519970596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986645.604016178287566, 3905131.882740992121398 ], [ 4986690.006851096637547, 3905107.958125637378544 ], [ 4986724.695350672118366, 3905171.037457067053765 ], [ 4986689.806446162983775, 3905190.251467005815357 ], [ 4986685.220535606145859, 3905181.501131633296609 ], [ 4986664.748640227131546, 3905192.73938062088564 ], [ 4986652.135585277341306, 3905169.404231739696115 ], [ 4986663.091854534111917, 3905163.604788006283343 ], [ 4986645.604016178287566, 3905131.882740992121398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986246.77090804092586, 3910258.265460125636309 ], [ 4986281.911741671152413, 3910251.067834066227078 ], [ 4986293.864055004902184, 3910308.629802028648555 ], [ 4986258.723293351009488, 3910315.827412712853402 ], [ 4986246.77090804092586, 3910258.265460125636309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986080.204408040270209, 3909490.270587724633515 ], [ 4986061.779471374116838, 3909489.862002620473504 ], [ 4986061.476635610684752, 3909496.051532131619751 ], [ 4986043.915412558242679, 3909495.645042784977704 ], [ 4986043.92507208045572, 3909491.639603706542403 ], [ 4986019.166262164711952, 3909491.215773794334382 ], [ 4986020.432869775220752, 3909443.517412564251572 ], [ 4986062.752980467863381, 3909444.347733811475337 ], [ 4986062.44223852455616, 3909453.814440483693033 ], [ 4986081.15510365460068, 3909454.223720733076334 ], [ 4986080.204408040270209, 3909490.270587724633515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986052.443213024176657, 3909182.875441623851657 ], [ 4986026.242829603143036, 3909183.176394802052528 ], [ 4986026.266532592475414, 3909173.344864431768656 ], [ 4986003.23311450984329, 3909173.653475551865995 ], [ 4986003.04788373503834, 3909131.049484005197883 ], [ 4986052.281772879883647, 3909130.439919409807771 ], [ 4986052.443213024176657, 3909182.875441623851657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985964.127528805285692, 3910945.794902408961207 ], [ 4985909.39292277302593, 3910960.592579606454819 ], [ 4985897.692046834155917, 3910917.960829208604991 ], [ 4985926.499261402525008, 3910910.383364566136152 ], [ 4985922.789147650822997, 3910896.901502673514187 ], [ 4985948.716631338000298, 3910889.681263155303895 ], [ 4985964.127528805285692, 3910945.794902408961207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985791.846412063576281, 3909918.524994574487209 ], [ 4985837.722982546314597, 3909876.759942877106369 ], [ 4985862.418389783240855, 3909903.401031985413283 ], [ 4985816.540951023809612, 3909945.530173144303262 ], [ 4985791.846412063576281, 3909918.524994574487209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985544.850516645237803, 3910029.357491143513471 ], [ 4985581.71012615878135, 3910025.804393704980612 ], [ 4985586.767592774704099, 3910077.887530839070678 ], [ 4985549.908053994178772, 3910081.440621442627162 ], [ 4985544.850516645237803, 3910029.357491143513471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985522.549051352776587, 3911047.784588660579175 ], [ 4985519.401461757719517, 3911039.766126643866301 ], [ 4985541.878413330763578, 3911030.716573869343847 ], [ 4985557.332785832695663, 3911068.987555901054293 ], [ 4985517.566130115650594, 3911084.914263173472136 ], [ 4985504.971417631953955, 3911054.661075139418244 ], [ 4985522.549051352776587, 3911047.784588660579175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985426.577463086694479, 3900964.372005293611437 ], [ 4985461.716298782266676, 3900962.999410993419588 ], [ 4985463.888886902481318, 3901017.988387363031507 ], [ 4985430.478087754920125, 3901019.365105214528739 ], [ 4985429.658451598137617, 3901000.792465212289244 ], [ 4985422.745718236081302, 3901001.140089633408934 ], [ 4985421.925206698477268, 3900982.931579020339996 ], [ 4985427.397102600894868, 3900982.944644792936742 ], [ 4985426.577463086694479, 3900964.372005293611437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985241.830767514184117, 3907311.839741834904999 ], [ 4985239.78492967505008, 3907324.579504577443004 ], [ 4985205.822595385834575, 3907319.036659037228674 ], [ 4985211.956600368022919, 3907282.273885360918939 ], [ 4985277.29087111633271, 3907292.98932933062315 ], [ 4985273.490558059886098, 3907317.01301398454234 ], [ 4985241.830767514184117, 3907311.839741834904999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985207.933472497388721, 3909456.136303479317576 ], [ 4985169.583369308151305, 3909480.806076916400343 ], [ 4985154.379048985429108, 3909457.829535993747413 ], [ 4985192.730037457309663, 3909432.795610377099365 ], [ 4985207.933472497388721, 3909456.136303479317576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985166.072143488563597, 3909141.425885574892163 ], [ 4985178.060274372808635, 3909185.150347641203552 ], [ 4985147.811026597395539, 3909193.089313806965947 ], [ 4985135.822850115597248, 3909149.364865019917488 ], [ 4985166.072143488563597, 3909141.425885574892163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984964.064067197032273, 3900596.227548865135759 ], [ 4984987.985227117314935, 3900589.001649029552937 ], [ 4984995.701601865701377, 3900614.144983826670796 ], [ 4984971.492463800124824, 3900621.370194068644196 ], [ 4984964.064067197032273, 3900596.227548865135759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984883.065846073441207, 3900869.133871156722307 ], [ 4984910.171082839369774, 3900854.996951723936945 ], [ 4984935.975955093279481, 3900903.487508184276521 ], [ 4984908.869890997186303, 3900917.988530962727964 ], [ 4984883.065846073441207, 3900869.133871156722307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984714.822565331123769, 3909304.215976341627538 ], [ 4984716.339504591189325, 3909271.447602702304721 ], [ 4984771.037283960729837, 3909273.397528088185936 ], [ 4984769.519417218863964, 3909306.530029495246708 ], [ 4984714.822565331123769, 3909304.215976341627538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984610.003072234801948, 3915660.284335844684392 ], [ 4984629.486651076003909, 3915698.200268883723766 ], [ 4984582.801278211176395, 3915721.758886005729437 ], [ 4984563.317650797776878, 3915683.842986257746816 ], [ 4984610.003072234801948, 3915660.284335844684392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984524.64505257550627, 3915849.432981824036688 ], [ 4984493.511695733293891, 3915869.387051079887897 ], [ 4984474.870986832305789, 3915840.212420879397541 ], [ 4984506.00436348747462, 3915820.258330389391631 ], [ 4984524.64505257550627, 3915849.432981824036688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984439.969994138926268, 3915259.336121852975339 ], [ 4984455.155338656157255, 3915289.230853872839361 ], [ 4984432.677172257564962, 3915300.46613347902894 ], [ 4984417.491809164173901, 3915270.571413948200643 ], [ 4984439.969994138926268, 3915259.336121852975339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984369.949484085664153, 3909042.320329472888261 ], [ 4984374.196244863793254, 3909072.917461009696126 ], [ 4984329.555142764002085, 3909079.367007770575583 ], [ 4984325.309187056496739, 3909048.405752379447222 ], [ 4984369.949484085664153, 3909042.320329472888261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984373.260976783931255, 3900522.371420784387738 ], [ 4984403.747849399223924, 3900539.921323664486408 ], [ 4984390.734844763763249, 3900562.46686503989622 ], [ 4984360.247989328578115, 3900544.9169766837731 ], [ 4984373.260976783931255, 3900522.371420784387738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984093.100352552719414, 3909483.36448731739074 ], [ 4984061.418205730617046, 3909488.752394900191575 ], [ 4984053.749507814645767, 3909443.946124541573226 ], [ 4984085.143801954574883, 3909438.557534758467227 ], [ 4984093.100352552719414, 3909483.36448731739074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983878.255751635879278, 3908400.660294396802783 ], [ 4983905.647588798776269, 3908383.60992258740589 ], [ 4983916.260536294430494, 3908400.748906681779772 ], [ 4983888.8695586938411, 3908417.435137202963233 ], [ 4983878.255751635879278, 3908400.660294396802783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983289.079852059483528, 3909316.179613303393126 ], [ 4983332.865846556611359, 3909305.720901459921151 ], [ 4983339.993636501953006, 3909335.960396413691342 ], [ 4983296.207688425667584, 3909346.419096836820245 ], [ 4983289.079852059483528, 3909316.179613303393126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983133.713362017646432, 3916769.273236493114382 ], [ 4983142.53945754468441, 3916811.169042869005352 ], [ 4983114.318358817137778, 3916817.294316495303065 ], [ 4983105.204396054148674, 3916775.397856414783746 ], [ 4983133.713362017646432, 3916769.273236493114382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982788.699907549656928, 3915975.759946221951395 ], [ 4982765.372022001072764, 3915981.53266146639362 ], [ 4982757.385216202586889, 3915949.834685813635588 ], [ 4982830.249827977269888, 3915931.430781841743737 ], [ 4982839.377870460040867, 3915967.501007553655654 ], [ 4982789.841232106089592, 3915980.132172928191721 ], [ 4982788.699907549656928, 3915975.759946221951395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982088.570968272164464, 3908525.815388210583478 ], [ 4982030.928097483702004, 3908552.266609056852758 ], [ 4982027.202520236372948, 3908544.611396773252636 ], [ 4981975.8996018525213, 3908568.528149377554655 ], [ 4981962.145589637570083, 3908539.366458980832249 ], [ 4981999.901782988570631, 3908521.973434602841735 ], [ 4981992.165155907161534, 3908505.56997638521716 ], [ 4982011.763888398185372, 3908496.510975831188262 ], [ 4982008.613302655518055, 3908489.221199318766594 ], [ 4982025.906268193386495, 3908481.24939291505143 ], [ 4982028.485140438191593, 3908486.717215209733695 ], [ 4982063.071096852421761, 3908470.773639168590307 ], [ 4982088.570968272164464, 3908525.815388210583478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982080.689534178003669, 3905139.367892041336745 ], [ 4982056.758374879136682, 3905153.150739172007889 ], [ 4982061.060317885130644, 3905160.807242853101343 ], [ 4982045.491259683854878, 3905169.511178969871253 ], [ 4982030.576353764161468, 3905143.62407841347158 ], [ 4982098.909538509324193, 3905104.452486782334745 ], [ 4982127.593209133483469, 3905153.675251939333975 ], [ 4982098.47234786581248, 3905170.359360232949257 ], [ 4982080.689534178003669, 3905139.367892041336745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981413.000916517339647, 3895715.616527921054512 ], [ 4981363.128200050443411, 3895733.347312720026821 ], [ 4981345.950979179702699, 3895685.972037329804152 ], [ 4981408.508630316704512, 3895663.535919130779803 ], [ 4981420.246203302405775, 3895695.969737522769719 ], [ 4981433.796021764166653, 3895690.902253730688244 ], [ 4981445.81915685441345, 3895724.429112525656819 ], [ 4981419.585336595773697, 3895733.837753432337195 ], [ 4981413.000916517339647, 3895715.616527921054512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981276.677854232490063, 3905420.126173792406917 ], [ 4981204.326795601285994, 3905454.19304828485474 ], [ 4981207.480396354570985, 3905460.390326659660786 ], [ 4981181.249649121426046, 3905472.712296139448881 ], [ 4981172.07839932013303, 3905453.392853233963251 ], [ 4981112.698934786021709, 3905481.298661531414837 ], [ 4981080.312609657645226, 3905413.133871350437403 ], [ 4981160.446319091133773, 3905375.442695529200137 ], [ 4981164.459722021594644, 3905383.462544803507626 ], [ 4981241.999669602140784, 3905346.85822494700551 ], [ 4981276.677854232490063, 3905420.126173792406917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981025.924841943196952, 3906562.577553950250149 ], [ 4981045.531954122707248, 3906550.240686587523669 ], [ 4981055.000576796941459, 3906565.191176211461425 ], [ 4981037.412253929302096, 3906576.076000018510967 ], [ 4981049.17624379042536, 3906594.67291652970016 ], [ 4981023.225698565132916, 3906611.001123352441937 ], [ 4980973.874211460351944, 3906532.967111011501402 ], [ 4980997.51808132790029, 3906518.090256622992456 ], [ 4981025.924841943196952, 3906562.577553950250149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980932.118569735437632, 3916643.034422111697495 ], [ 4980907.924950759857893, 3916650.263364891055971 ], [ 4980895.923559421673417, 3916610.910194667521864 ], [ 4980919.829383407719433, 3916603.68060185899958 ], [ 4980932.118569735437632, 3916643.034422111697495 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980824.044698104262352, 3915148.023419057950377 ], [ 4980798.396827637217939, 3915161.439510598778725 ], [ 4980786.646933319047093, 3915138.108884861227125 ], [ 4980812.006169728003442, 3915125.056276337243617 ], [ 4980824.044698104262352, 3915148.023419057950377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980760.632143770344555, 3906739.321048001293093 ], [ 4980794.065436008386314, 3906724.465696081053466 ], [ 4980808.105549768544734, 3906755.448046017438173 ], [ 4980774.959414065815508, 3906770.668148989323527 ], [ 4980760.632143770344555, 3906739.321048001293093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980672.937237576581538, 3904859.841990408487618 ], [ 4980704.933854917995632, 3904844.619231084827334 ], [ 4980719.552580555900931, 3904874.874513394664973 ], [ 4980687.555990841239691, 3904890.09725559130311 ], [ 4980672.937237576581538, 3904859.841990408487618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980493.491870894096792, 3894952.179206082597375 ], [ 4980584.600538388825953, 3894915.238931922707707 ], [ 4980597.20602463837713, 3894946.581900731194764 ], [ 4980506.097445765510201, 3894983.522132849320769 ], [ 4980493.491870894096792, 3894952.179206082597375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980345.640869268216193, 3904287.069383598398417 ], [ 4980361.237918380647898, 3904265.619923068676144 ], [ 4980417.875313474796712, 3904306.891437253449112 ], [ 4980399.389839845709503, 3904332.339955396484584 ], [ 4980375.81488679535687, 3904315.173889434430748 ], [ 4980368.593486596830189, 3904325.353686839342117 ], [ 4980353.643659793771803, 3904314.396853944752365 ], [ 4980364.041416532360017, 3904300.218592022545636 ], [ 4980345.640869268216193, 3904287.069383598398417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980194.664431134238839, 3906557.464008432347327 ], [ 4980200.716653661802411, 3906554.92836089245975 ], [ 4980193.844558827579021, 3906537.434944413136691 ], [ 4980228.138395421206951, 3906524.037306431215256 ], [ 4980249.04013246204704, 3906577.610610833391547 ], [ 4980219.069365595467389, 3906589.197048814967275 ], [ 4980213.343436885625124, 3906574.255067050457001 ], [ 4980202.681068683043122, 3906578.237125360406935 ], [ 4980194.664431134238839, 3906557.464008432347327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979894.53936464805156, 3906997.043074533808976 ], [ 4979899.780920681543648, 3906970.108732829801738 ], [ 4979953.024968181736767, 3906980.784835604019463 ], [ 4979947.495430828072131, 3907007.718538114801049 ], [ 4979894.53936464805156, 3906997.043074533808976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979894.798765174113214, 3901732.064750496763736 ], [ 4979920.724703879095614, 3901728.844156861770898 ], [ 4979929.783649164251983, 3901800.597747920081019 ], [ 4979897.808489081449807, 3901804.533393466845155 ], [ 4979891.297639553435147, 3901752.812579366378486 ], [ 4979897.34694046434015, 3901752.097517414484173 ], [ 4979894.798765174113214, 3901732.064750496763736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979635.586623225361109, 3900416.987926334142685 ], [ 4979652.068329432047904, 3900386.80088529875502 ], [ 4979684.573639843612909, 3900404.713943284004927 ], [ 4979667.804699040018022, 3900434.536209719255567 ], [ 4979635.586623225361109, 3900416.987926334142685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979485.355285975150764, 3909137.980037164874375 ], [ 4979514.21390775218606, 3909106.727194012608379 ], [ 4979542.947773138061166, 3909133.00707135302946 ], [ 4979514.089145966805518, 3909164.259884154889733 ], [ 4979485.355285975150764, 3909137.980037164874375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979501.524405679665506, 3900216.425144356675446 ], [ 4979492.254661445505917, 3900241.165941594634205 ], [ 4979496.858755302615464, 3900242.996572514530271 ], [ 4979489.038503664545715, 3900263.370944293681532 ], [ 4979482.419974883086979, 3900260.807688669301569 ], [ 4979471.413574736565351, 3900289.550168678164482 ], [ 4979445.801900493912399, 3900280.027301992755383 ], [ 4979456.520274724811316, 3900251.28418793855235 ], [ 4979457.383493211120367, 3900251.650188095867634 ], [ 4979474.762238565832376, 3900206.171495773363858 ], [ 4979501.524405679665506, 3900216.425144356675446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979457.815989786759019, 3901780.636579691432416 ], [ 4979500.77483203727752, 3901758.153533074073493 ], [ 4979527.448586131446064, 3901808.461441516876221 ], [ 4979494.868325474672019, 3901825.869102362077683 ], [ 4979482.248247683048248, 3901802.17323779175058 ], [ 4979472.157702866010368, 3901807.249210286419839 ], [ 4979457.815989786759019, 3901780.636579691432416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979436.969022738747299, 3902763.381353676784784 ], [ 4979493.587334369309247, 3902815.574768513906747 ], [ 4979471.649966803379357, 3902839.195764851290733 ], [ 4979415.031662631779909, 3902787.002395483665168 ], [ 4979436.969022738747299, 3902763.381353676784784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979282.117424433119595, 3903126.449533042497933 ], [ 4979300.91659118141979, 3903088.984610017389059 ], [ 4979333.134822016581893, 3903105.076001955196261 ], [ 4979311.733651814050972, 3903147.268988199997693 ], [ 4979343.663835018873215, 3903163.359771169256419 ], [ 4979324.287144916132092, 3903201.551680643577129 ], [ 4979338.669940746389329, 3903208.865392255131155 ], [ 4979301.361263367347419, 3903283.067567717283964 ], [ 4979282.087725906632841, 3903273.558525946456939 ], [ 4979280.640799391083419, 3903276.83258355781436 ], [ 4979176.219947722740471, 3903224.536521359346807 ], [ 4979182.293231860734522, 3903212.533279017079622 ], [ 4979168.48555226996541, 3903205.585021966136992 ], [ 4979206.081940499134362, 3903131.383286556694657 ], [ 4979227.081864181905985, 3903141.624259754549712 ], [ 4979244.433226672001183, 3903107.79748671175912 ], [ 4979282.117424433119595, 3903126.449533042497933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979211.663430771790445, 3895734.812425413168967 ], [ 4979237.455251987092197, 3895796.405970863066614 ], [ 4979191.037588633596897, 3895815.604755160398781 ], [ 4979181.294899365864694, 3895791.915325664915144 ], [ 4979194.556979658082128, 3895786.481964079663157 ], [ 4979191.692174907773733, 3895779.193194738123566 ], [ 4979178.430091608315706, 3895784.626557712908834 ], [ 4979170.691964543424547, 3895766.403397967573255 ], [ 4979183.954055245034397, 3895760.97003123909235 ], [ 4979178.795826075598598, 3895748.578504910226911 ], [ 4979211.663430771790445, 3895734.812425413168967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979078.790082186460495, 3900993.659674956928939 ], [ 4979077.655340995639563, 3900985.646354968193918 ], [ 4979102.718699942342937, 3900982.058985590469092 ], [ 4979110.09210611321032, 3901035.23796131554991 ], [ 4979065.72850301489234, 3901040.96858332073316 ], [ 4979059.488974336534739, 3900996.167067915666848 ], [ 4979078.790082186460495, 3900993.659674956928939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978923.459796666167676, 3907615.058413490653038 ], [ 4978940.557515852153301, 3907563.752464020624757 ], [ 4978980.55078758019954, 3907576.947124463506043 ], [ 4978975.333737578243017, 3907592.957736963871866 ], [ 4978990.007673532702029, 3907597.72298577055335 ], [ 4978981.60312211420387, 3907623.194187742657959 ], [ 4978966.066210518591106, 3907618.062957425136119 ], [ 4978962.877153635025024, 3907628.251812031492591 ], [ 4978923.459796666167676, 3907615.058413490653038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978847.646937265992165, 3909402.422246008645743 ], [ 4978842.438902143388987, 3909414.427461048122495 ], [ 4978816.263027848675847, 3909403.447383135091513 ], [ 4978821.471053371205926, 3909391.442163105588406 ], [ 4978847.646937265992165, 3909402.422246008645743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978787.225015811622143, 3907502.249463835731149 ], [ 4978811.667409593239427, 3907516.867105757817626 ], [ 4978787.68312447797507, 3907557.234419074840844 ], [ 4978762.952830275520682, 3907542.616182323545218 ], [ 4978787.225015811622143, 3907502.249463835731149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978785.995248350314796, 3902024.614228778053075 ], [ 4978822.064931988716125, 3901991.191416566260159 ], [ 4978850.222561095841229, 3902021.47462829714641 ], [ 4978814.152882843278348, 3902054.897403327748179 ], [ 4978785.995248350314796, 3902024.614228778053075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978664.058119094930589, 3906258.838908082805574 ], [ 4978614.485366627573967, 3906280.945084806997329 ], [ 4978601.876725912094116, 3906252.515875169076025 ], [ 4978651.73668073490262, 3906230.774420996196568 ], [ 4978664.058119094930589, 3906258.838908082805574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978674.974865604192019, 3895217.688887839671224 ], [ 4978683.834593584761024, 3895250.479477456305176 ], [ 4978639.736380099318922, 3895262.401572685223073 ], [ 4978638.878431531600654, 3895259.486704414244741 ], [ 4978615.24464195407927, 3895265.626462917774916 ], [ 4978607.242788381874561, 3895235.750762796960771 ], [ 4978674.974865604192019, 3895217.688887839671224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978643.19455227535218, 3903354.480157948099077 ], [ 4978591.862239290028811, 3903388.963056543376297 ], [ 4978533.874178780242801, 3903303.632653225678951 ], [ 4978585.206579642370343, 3903269.149645659141243 ], [ 4978643.19455227535218, 3903354.480157948099077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978623.192600667476654, 3909754.42249873559922 ], [ 4978633.06676650326699, 3909714.388981097377837 ], [ 4978671.626039102673531, 3909723.574682539794594 ], [ 4978662.039719527587295, 3909763.608801452908665 ], [ 4978623.192600667476654, 3909754.42249873559922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978526.140991704538465, 3907471.832814031746238 ], [ 4978512.55109254270792, 3907498.749636190477759 ], [ 4978472.860134724527597, 3907478.637804563622922 ], [ 4978486.737929377704859, 3907451.721575988456607 ], [ 4978526.140991704538465, 3907471.832814031746238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978478.223295940086246, 3907799.449779246468097 ], [ 4978509.945097331888974, 3907775.848760005552322 ], [ 4978530.330097044818103, 3907802.838001758791506 ], [ 4978498.608309457078576, 3907826.438997330609709 ], [ 4978478.223295940086246, 3907799.449779246468097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978490.935362261720002, 3899937.878705026116222 ], [ 4978509.0044757835567, 3899973.237861020490527 ], [ 4978474.117841331288218, 3899991.005960539449006 ], [ 4978456.048694008029997, 3899955.646827628836036 ], [ 4978490.935362261720002, 3899937.878705026116222 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978406.404257320798934, 3907588.10017221281305 ], [ 4978443.489064419642091, 3907615.124873254913837 ], [ 4978425.297198343090713, 3907639.847152618691325 ], [ 4978388.212407228536904, 3907612.822476276662201 ], [ 4978406.404257320798934, 3907588.10017221281305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978362.403007023967803, 3907563.973879056051373 ], [ 4978349.429403334856033, 3907571.957216275390238 ], [ 4978345.98592265509069, 3907566.487914733588696 ], [ 4978326.381567249074578, 3907578.46262901974842 ], [ 4978308.018619918264449, 3907548.200649873819202 ], [ 4978340.596603527665138, 3907528.242574844509363 ], [ 4978362.403007023967803, 3907563.973879056051373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978315.541279355064034, 3907259.823892740067095 ], [ 4978340.913693672977388, 3907243.491840881295502 ], [ 4978365.019875868223608, 3907281.048688004724681 ], [ 4978339.935409074649215, 3907297.381329233758152 ], [ 4978315.541279355064034, 3907259.823892740067095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978289.435356283560395, 3906536.602063835132867 ], [ 4978315.951669968664646, 3906524.277874961495399 ], [ 4978325.411763621494174, 3906543.961097705643624 ], [ 4978298.894691877067089, 3906556.649407800287008 ], [ 4978289.435356283560395, 3906536.602063835132867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978281.619595202617347, 3904114.016791224014014 ], [ 4978302.063277933746576, 3904114.788448958192021 ], [ 4978301.45643400773406, 3904129.352420839946717 ], [ 4978281.012762344442308, 3904128.580763556063175 ], [ 4978281.619595202617347, 3904114.016791224014014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978251.211651375517249, 3907181.398925917688757 ], [ 4978293.287805448286235, 3907163.281608995050192 ], [ 4978305.897114048711956, 3907191.346559195313603 ], [ 4978263.820222668349743, 3907209.827987245749682 ], [ 4978251.211651375517249, 3907181.398925917688757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978070.789779025129974, 3905359.26450578821823 ], [ 4978065.588244389742613, 3905367.992670146748424 ], [ 4978081.118158628232777, 3905377.128804373554885 ], [ 4978068.403045671992004, 3905398.585691160522401 ], [ 4978020.950991741381586, 3905370.447251914069057 ], [ 4978039.1547861834988, 3905340.626911283936352 ], [ 4978070.789779025129974, 3905359.26450578821823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978057.149668126367033, 3907452.63057766854763 ], [ 4978027.463365104980767, 3907466.768989437725395 ], [ 4978006.824291271157563, 3907423.393649087287486 ], [ 4978036.510631206445396, 3907409.255214894656092 ], [ 4978057.149668126367033, 3907452.63057766854763 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978039.699548257514834, 3907671.437182549387217 ], [ 4978004.245812225155532, 3907689.933019768446684 ], [ 4977984.45757267717272, 3907652.749736334662884 ], [ 4978020.199267235584557, 3907634.254481762181967 ], [ 4978039.699548257514834, 3907671.437182549387217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977976.289750226773322, 3905793.474110686220229 ], [ 4978027.575913646258414, 3905778.288888167589903 ], [ 4978037.580049154348671, 3905813.266687770374119 ], [ 4977986.58265813998878, 3905828.088369234465063 ], [ 4977976.289750226773322, 3905793.474110686220229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977951.975853911601007, 3904625.288180972449481 ], [ 4977961.982828807085752, 3904659.173537804279476 ], [ 4977917.898818717338145, 3904671.825144921429455 ], [ 4977907.891793048940599, 3904637.939804240595549 ], [ 4977951.975853911601007, 3904625.288180972449481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977936.699791174381971, 3905451.106644889805466 ], [ 4977977.538248788565397, 3905474.861392789520323 ], [ 4977962.509704829193652, 3905501.047160430811346 ], [ 4977921.383327509276569, 3905477.291827719192952 ], [ 4977936.699791174381971, 3905451.106644889805466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977854.730474076233804, 3906635.819122180342674 ], [ 4977864.81660149153322, 3906631.834918716456741 ], [ 4977854.78877136670053, 3906608.145209199748933 ], [ 4977893.694436046294868, 3906591.841253154911101 ], [ 4977914.038724067620933, 3906638.857181611470878 ], [ 4977865.045460302382708, 3906659.873569189570844 ], [ 4977854.730474076233804, 3906635.819122180342674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977685.522372793406248, 3901927.24259648937732 ], [ 4977654.691228775307536, 3901935.18875349778682 ], [ 4977646.979073960334063, 3901904.949695525225252 ], [ 4977677.522265604697168, 3901897.002925157546997 ], [ 4977685.522372793406248, 3901927.24259648937732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977643.308406142517924, 3902281.817618031520396 ], [ 4977614.200218342244625, 3902292.316355352289975 ], [ 4977594.727477353066206, 3902239.840647587087005 ], [ 4977624.12369541451335, 3902229.342493596021086 ], [ 4977643.308406142517924, 3902281.817618031520396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977583.989747304469347, 3904339.763351015746593 ], [ 4977597.144982481375337, 3904383.122584987897426 ], [ 4977569.195495967753232, 3904391.439020054414868 ], [ 4977556.040219854563475, 3904348.079799557104707 ], [ 4977583.989747304469347, 3904339.763351015746593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977504.849107258021832, 3903078.610554001759738 ], [ 4977559.818963792175055, 3903094.38332156650722 ], [ 4977546.767930224537849, 3903138.415861199609935 ], [ 4977492.086127856746316, 3903122.643722578883171 ], [ 4977504.849107258021832, 3903078.610554001759738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977456.478163473308086, 3906378.634186280425638 ], [ 4977481.280343963764608, 3906359.751214269548655 ], [ 4977509.422684716060758, 3906395.85918793361634 ], [ 4977484.620517617091537, 3906414.742134375032037 ], [ 4977456.478163473308086, 3906378.634186280425638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977411.773029699921608, 3904347.77790594426915 ], [ 4977404.567980841733515, 3904350.675901204813272 ], [ 4977393.965250408276916, 3904325.892803417984396 ], [ 4977427.398907977156341, 3904311.397414559964091 ], [ 4977444.878354280255735, 3904352.580823606345803 ], [ 4977418.362586392089725, 3904363.813465799205005 ], [ 4977411.773029699921608, 3904347.77790594426915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977376.835060318931937, 3908528.668489830568433 ], [ 4977335.905714315362275, 3908550.430969977751374 ], [ 4977321.852669189684093, 3908524.184101545251906 ], [ 4977362.782043662853539, 3908502.421600336674601 ], [ 4977376.835060318931937, 3908528.668489830568433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977377.413123966194689, 3907976.280842387117445 ], [ 4977401.343170798383653, 3907960.67315038992092 ], [ 4977427.17372630443424, 3908000.053436767309904 ], [ 4977402.955780233256519, 3908015.66050442121923 ], [ 4977377.413123966194689, 3907976.280842387117445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977360.149132628925145, 3905075.205022499896586 ], [ 4977369.848200785927474, 3905118.921079922001809 ], [ 4977347.954103372059762, 3905123.609076957218349 ], [ 4977345.957455594092607, 3905114.50161632662639 ], [ 4977319.453876296058297, 3905120.272409650031477 ], [ 4977311.183844736777246, 3905081.65719547169283 ], [ 4977331.349505983293056, 3905077.329692956060171 ], [ 4977332.204998540692031, 3905081.3369269692339 ], [ 4977360.149132628925145, 3905075.205022499896586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977243.84995961561799, 3906579.19112949538976 ], [ 4977245.859430957585573, 3906582.108373172581196 ], [ 4977225.388772385194898, 3906595.174474744126201 ], [ 4977208.456758724525571, 3906568.193438383284956 ], [ 4977248.532797702588141, 3906542.787686258088797 ], [ 4977263.743251834064722, 3906566.852102541830391 ], [ 4977243.84995961561799, 3906579.19112949538976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977148.263921856880188, 3907820.682778328191489 ], [ 4977108.482341753318906, 3907843.90451424755156 ], [ 4977093.27550357952714, 3907818.383644040673971 ], [ 4977133.057108194567263, 3907795.161885976791382 ], [ 4977148.263921856880188, 3907820.682778328191489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977103.628363291732967, 3903668.394659678917378 ], [ 4977149.49823360145092, 3903628.435584118124098 ], [ 4977165.873665360733867, 3903647.040351337753236 ], [ 4977147.409760050475597, 3903663.387851247098297 ], [ 4977167.807598127052188, 3903686.370563625823706 ], [ 4977140.978333660401404, 3903709.619159295689315 ], [ 4977132.359818862751126, 3903699.769688712432981 ], [ 4977123.41623552609235, 3903707.761982653755695 ], [ 4977111.350454585626721, 3903693.899906562175602 ], [ 4977119.716593758203089, 3903686.634670917410403 ], [ 4977103.628363291732967, 3903668.394659678917378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976980.142162238247693, 3904337.776012048590928 ], [ 4977017.32282249443233, 3904321.467226819135249 ], [ 4977029.359647586010396, 3904349.166204071603715 ], [ 4976992.179773558862507, 3904365.110842970665544 ], [ 4976980.142162238247693, 3904337.776012048590928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976689.66297073662281, 3913232.932306320872158 ], [ 4976665.45241164881736, 3913247.447693917434663 ], [ 4976669.468973515555263, 3913254.010383036918938 ], [ 4976648.717304298654199, 3913266.348120553418994 ], [ 4976623.471685085445642, 3913224.420716302935034 ], [ 4976668.433954345062375, 3913197.567553200758994 ], [ 4976689.66297073662281, 3913232.932306320872158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976663.346058241091669, 3904496.974630224052817 ], [ 4976696.174643569625914, 3904496.314082263503224 ], [ 4976696.416019045747817, 3904518.890736158005893 ], [ 4976701.599989798851311, 3904518.537301247008145 ], [ 4976702.349647696129978, 3904573.886844536755234 ], [ 4976664.62590436078608, 3904574.537289897911251 ], [ 4976663.346058241091669, 3904496.974630224052817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976672.424743803218007, 3900094.284742527641356 ], [ 4976686.009000767953694, 3900071.00840118387714 ], [ 4976718.514408575370908, 3900090.010255593806505 ], [ 4976704.930132961831987, 3900113.286580777727067 ], [ 4976672.424743803218007, 3900094.284742527641356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976619.830754609778523, 3909264.10205080639571 ], [ 4976640.491658145561814, 3909297.280705134849995 ], [ 4976624.34794095158577, 3909307.443141512107104 ], [ 4976631.809460886754096, 3909319.110764591023326 ], [ 4976605.577078586444259, 3909335.07854073587805 ], [ 4976599.263421665877104, 3909325.233952603768557 ], [ 4976579.949032295495272, 3909337.21054729539901 ], [ 4976562.73170470725745, 3909309.501017132308334 ], [ 4976579.739863374270499, 3909298.976191319059581 ], [ 4976575.436278406530619, 3909291.684676823671907 ], [ 4976619.830754609778523, 3909264.10205080639571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976608.194567610509694, 3901075.484551607165486 ], [ 4976611.425501700490713, 3901044.904220973141491 ], [ 4976646.552496325224638, 3901048.982039923314005 ], [ 4976643.322273225523531, 3901079.198237177915871 ], [ 4976608.194567610509694, 3901075.484551607165486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976407.974976408295333, 3900825.643326460383832 ], [ 4976416.691099149174988, 3900788.519882230553776 ], [ 4976439.719611567445099, 3900794.029121562372893 ], [ 4976437.975182767026126, 3900802.036415333859622 ], [ 4976462.155664871446788, 3900807.548039457760751 ], [ 4976455.183916054666042, 3900836.66417638072744 ], [ 4976407.974976408295333, 3900825.643326460383832 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976381.135041110217571, 3907590.422755928710103 ], [ 4976354.323037371039391, 3907607.481970828492194 ], [ 4976329.066379747353494, 3907568.103905749041587 ], [ 4976355.87840658519417, 3907551.044666066300124 ], [ 4976381.135041110217571, 3907590.422755928710103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976310.133150325156748, 3900928.491702327504754 ], [ 4976364.266522677615285, 3900933.336357499007136 ], [ 4976361.318625008687377, 3900966.466210931539536 ], [ 4976307.185318890959024, 3900961.621561599895358 ], [ 4976310.133150325156748, 3900928.491702327504754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976166.671556789427996, 3901370.617091601248831 ], [ 4976168.758176328614354, 3901336.028926042374223 ], [ 4976195.249602016992867, 3901337.903726681135595 ], [ 4976192.874958167783916, 3901372.491301480680704 ], [ 4976166.671556789427996, 3901370.617091601248831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976155.593277322128415, 3901436.502140135969967 ], [ 4976160.247981400229037, 3901413.57140627456829 ], [ 4976185.868662779219449, 3901418.721596525982022 ], [ 4976181.213937712833285, 3901441.652326035313308 ], [ 4976155.593277322128415, 3901436.502140135969967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976093.352586774155498, 3901453.489207740407437 ], [ 4976126.180413357913494, 3901455.012740831822157 ], [ 4976124.077500828541815, 3901497.611757812090218 ], [ 4976091.249726173467934, 3901496.088227262254804 ], [ 4976093.352586774155498, 3901453.489207740407437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976035.489097335375845, 3909069.185652012936771 ], [ 4976031.95624686870724, 3909107.412366745993495 ], [ 4976028.790007174946368, 3909107.041778632439673 ], [ 4976027.613878784701228, 3909119.055755221750587 ], [ 4976000.84369046241045, 3909116.452262378763407 ], [ 4976005.840523137710989, 3909066.212152764201164 ], [ 4976035.489097335375845, 3909069.185652012936771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975786.568603802472353, 3910711.646115524694324 ], [ 4975792.88001249358058, 3910722.582915421575308 ], [ 4975771.55101656075567, 3910734.920141971670091 ], [ 4975766.961031821556389, 3910726.899903397541493 ], [ 4975750.820718887262046, 3910735.970479445066303 ], [ 4975735.040675749070942, 3910709.356769919395447 ], [ 4975794.704197349026799, 3910674.885207278653979 ], [ 4975808.76203575823456, 3910698.946523551363498 ], [ 4975786.568603802472353, 3910711.646115524694324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975641.977617115713656, 3905910.267709572333843 ], [ 4975658.15912427008152, 3905882.262317965738475 ], [ 4975695.835261495783925, 3905904.18653975520283 ], [ 4975679.653728139586747, 3905932.191909054294229 ], [ 4975641.977617115713656, 3905910.267709572333843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975565.377620242536068, 3906483.620496596675366 ], [ 4975577.985679961740971, 3906513.86893774010241 ], [ 4975539.081314721144736, 3906530.17624589195475 ], [ 4975526.18454805854708, 3906500.291371567640454 ], [ 4975565.377620242536068, 3906483.620496596675366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975373.76156750600785, 3905265.577064823824912 ], [ 4975337.737205892801285, 3905280.79806119017303 ], [ 4975319.397157525643706, 3905236.70121969981119 ], [ 4975355.420834553427994, 3905221.844329342246056 ], [ 4975373.76156750600785, 3905265.577064823824912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975312.122832777909935, 3911427.300930872093886 ], [ 4975310.144290531054139, 3911409.090296316891909 ], [ 4975387.890990239568055, 3911400.14352714503184 ], [ 4975389.58746815752238, 3911415.440534488297999 ], [ 4975352.153913666494191, 3911419.73472139146179 ], [ 4975353.569127898663282, 3911431.753962585702538 ], [ 4975328.805364301428199, 3911434.617167873308063 ], [ 4975327.672158136032522, 3911425.511560159735382 ], [ 4975312.122832777909935, 3911427.300930872093886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975162.166454317979515, 3902083.736369756516069 ], [ 4975092.685288581997156, 3902122.194960929453373 ], [ 4975084.937483710236847, 3902108.342462697997689 ], [ 4975038.520563714206219, 3902134.102821296080947 ], [ 4975035.077165982685983, 3902127.905703180935234 ], [ 4975023.833472221158445, 3902134.073430018965155 ], [ 4975028.711681796237826, 3902142.82233467604965 ], [ 4975010.548414647579193, 3902152.981662205420434 ], [ 4975003.087101958692074, 3902139.858022431377321 ], [ 4974942.543199807405472, 3902173.60117666143924 ], [ 4974847.845446219667792, 3902004.819514643866569 ], [ 4974886.190137282945216, 3901983.412288503255695 ], [ 4974848.023364057764411, 3901915.607790844049305 ], [ 4974910.585802350193262, 3901880.776065530255437 ], [ 4974891.071872877888381, 3901846.144673243165016 ], [ 4974982.46512555051595, 3901795.348916239105165 ], [ 4975025.797248516231775, 3901872.267208242788911 ], [ 4975041.942628570832312, 3901863.196246151346713 ], [ 4975051.41260480415076, 3901879.965224672108889 ], [ 4975048.817824962548912, 3901881.416553990915418 ], [ 4975162.166454317979515, 3902083.736369756516069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975035.37589206546545, 3908308.677108763717115 ], [ 4975005.63020683079958, 3908353.769993033260107 ], [ 4974974.288185760378838, 3908333.315894048195332 ], [ 4974982.66322957444936, 3908320.588008914608508 ], [ 4974949.30865044426173, 3908298.673385536298156 ], [ 4974970.391322313807905, 3908266.307750520296395 ], [ 4975035.37589206546545, 3908308.677108763717115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974950.567578858695924, 3910549.743643135763705 ], [ 4975004.756846090778708, 3910517.080053892917931 ], [ 4975022.835031635127962, 3910546.610992087982595 ], [ 4974996.604804268106818, 3910562.580351397860795 ], [ 4975006.648233451880515, 3910578.986424020025879 ], [ 4974978.688513519242406, 3910596.044739218894392 ], [ 4974950.567578858695924, 3910549.743643135763705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974945.944269098341465, 3905659.801690745633096 ], [ 4974981.148480963893235, 3905622.36649031098932 ], [ 4974994.657125216908753, 3905634.773984568659216 ], [ 4974996.67637949436903, 3905632.957364530768245 ], [ 4975015.933702433481812, 3905650.474212926346809 ], [ 4974978.996717536821961, 3905690.454826083034277 ], [ 4974945.944269098341465, 3905659.801690745633096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974916.048003070987761, 3900154.807320822961628 ], [ 4974902.55036839004606, 3900135.481454601977021 ], [ 4974941.483955726958811, 3900108.97767427470535 ], [ 4974965.606419165618718, 3900143.982405261602253 ], [ 4974935.613323261030018, 3900164.313788725063205 ], [ 4974924.988470542244613, 3900148.63495487999171 ], [ 4974916.048003070987761, 3900154.807320822961628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974871.199749103747308, 3905887.598929623607546 ], [ 4974904.070938035845757, 3905864.724240292795002 ], [ 4974923.020574826747179, 3905892.071969196666032 ], [ 4974889.862188273109496, 3905914.581930578220636 ], [ 4974871.199749103747308, 3905887.598929623607546 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974827.595593876205385, 3898583.04419310670346 ], [ 4974770.232438154518604, 3898606.59837360586971 ], [ 4974754.180151156149805, 3898567.968614691402763 ], [ 4974811.544100661762059, 3898544.050271744839847 ], [ 4974827.595593876205385, 3898583.04419310670346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974737.532427128404379, 3899552.179670646321028 ], [ 4974700.369018233381212, 3899557.203565069939941 ], [ 4974693.269413777627051, 3899506.575322051532567 ], [ 4974738.787366702221334, 3899500.47565163532272 ], [ 4974742.194936964660883, 3899524.879169645253569 ], [ 4974733.840468992479146, 3899525.954934927169234 ], [ 4974737.532427128404379, 3899552.179670646321028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974742.134939572773874, 3896805.191319825127721 ], [ 4974785.562877998687327, 3896838.41359003353864 ], [ 4974768.524357213638723, 3896860.591579859144986 ], [ 4974760.759635306894779, 3896854.385914486832917 ], [ 4974735.635054905898869, 3896887.107594394590706 ], [ 4974699.684557031840086, 3896859.726348329335451 ], [ 4974742.134939572773874, 3896805.191319825127721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974619.255016513168812, 3898633.972067453898489 ], [ 4974631.295436321757734, 3898662.398133208509535 ], [ 4974611.981510454788804, 3898670.73477692110464 ], [ 4974614.562117040157318, 3898676.565983685664833 ], [ 4974598.420030784793198, 3898683.088283699471503 ], [ 4974583.798970774747431, 3898648.831028334330767 ], [ 4974619.255016513168812, 3898633.972067453898489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974479.99410274066031, 3898562.690528068691492 ], [ 4974438.776193425990641, 3898578.266529886052012 ], [ 4974420.723835671320558, 3898531.258019964210689 ], [ 4974443.782794086262584, 3898522.564520584885031 ], [ 4974445.501550962217152, 3898527.3016143636778 ], [ 4974463.660560565069318, 3898520.419085827190429 ], [ 4974479.99410274066031, 3898562.690528068691492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974471.816666218452156, 3900074.179397220723331 ], [ 4974429.737784206867218, 3900089.389587050769478 ], [ 4974417.992283936589956, 3900057.686995353549719 ], [ 4974460.071929715573788, 3900042.112658344209194 ], [ 4974471.816666218452156, 3900074.179397220723331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974250.20899514015764, 3897511.721220307517797 ], [ 4974214.460774953477085, 3897528.036604639142752 ], [ 4974202.702412272803485, 3897502.160211895592511 ], [ 4974209.621632789261639, 3897498.896674136631191 ], [ 4974198.435730494558811, 3897474.842061328701675 ], [ 4974227.264777646400034, 3897461.7901875609532 ], [ 4974250.20899514015764, 3897511.721220307517797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974180.876405626535416, 3902880.325132957194 ], [ 4974124.069550292566419, 3902918.811206216458231 ], [ 4974100.810987489297986, 3902884.537130434066057 ], [ 4974120.131044085137546, 3902871.466412023175508 ], [ 4974124.725020631216466, 3902878.393941424787045 ], [ 4974162.211852938868105, 3902852.978544507175684 ], [ 4974180.876405626535416, 3902880.325132957194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974167.729759566485882, 3899172.720346948131919 ], [ 4974209.528368704020977, 3899154.23202779982239 ], [ 4974222.718888520263135, 3899183.752576047554612 ], [ 4974180.920316095463932, 3899202.240875011775643 ], [ 4974167.729759566485882, 3899172.720346948131919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974053.283338034525514, 3900545.267069951165468 ], [ 4974085.240513104014099, 3900550.791832996532321 ], [ 4974079.413249989971519, 3900585.008655208162963 ], [ 4974047.456114448606968, 3900579.483898966107517 ], [ 4974053.283338034525514, 3900545.267069951165468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974046.262262831442058, 3902946.332201082725078 ], [ 4974020.312473987229168, 3902962.667134170420468 ], [ 4974002.800424826331437, 3902934.958787254523486 ], [ 4974045.762143217027187, 3902907.733319309074432 ], [ 4974047.771522073075175, 3902911.014447006862611 ], [ 4974066.802128537558019, 3902898.671383715234697 ], [ 4974081.156446585431695, 3902921.275728176347911 ], [ 4974064.144527208991349, 3902932.166224078740925 ], [ 4974071.034423558041453, 3902943.103699101135135 ], [ 4974051.716588575392962, 3902955.082064198330045 ], [ 4974046.262262831442058, 3902946.332201082725078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973681.6504165539518, 3904440.74142356775701 ], [ 4973746.521939422003925, 3904399.357088701333851 ], [ 4973761.450212234631181, 3904422.690668189898133 ], [ 4973740.980323968455195, 3904435.395276839379221 ], [ 4973745.860663979314268, 3904443.051570654381067 ], [ 4973701.171823489479721, 3904471.366561386734247 ], [ 4973681.6504165539518, 3904440.74142356775701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973430.813960906118155, 3901932.117708185222 ], [ 4973468.769879351370037, 3901962.050163534935564 ], [ 4973446.540653980337083, 3901990.045060301665217 ], [ 4973408.584043811075389, 3901960.476765355095267 ], [ 4973430.813960906118155, 3901932.117708185222 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973337.187622551806271, 3903582.542223257478327 ], [ 4973360.735222727991641, 3903616.452081175055355 ], [ 4973318.347029524855316, 3903645.86455124989152 ], [ 4973288.193803461268544, 3903602.838656483683735 ], [ 4973318.759167016483843, 3903581.778248379006982 ], [ 4973325.364760257303715, 3903590.894329164642841 ], [ 4973337.187622551806271, 3903582.542223257478327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973256.856843212619424, 3898813.730670290533453 ], [ 4973297.50401356164366, 3898794.874578836839646 ], [ 4973317.00811786390841, 3898836.787327570840716 ], [ 4973276.360997044481337, 3898855.64338999800384 ], [ 4973256.856843212619424, 3898813.730670290533453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973211.295498307794333, 3903906.375352372415364 ], [ 4973233.405975110828876, 3903938.825801579747349 ], [ 4973188.713320976123214, 3903968.962285669986159 ], [ 4973157.415433672256768, 3903922.293003363534808 ], [ 4973178.175509112887084, 3903908.496120729483664 ], [ 4973187.36358817666769, 3903922.350867032073438 ], [ 4973211.295498307794333, 3903906.375352372415364 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972928.013725131750107, 3904316.569271034561098 ], [ 4972882.191895478405058, 3904335.416024902835488 ], [ 4972863.845770819112659, 3904292.049144903197885 ], [ 4972897.275615434162319, 3904278.276380451861769 ], [ 4972905.014817525632679, 3904296.861956888344139 ], [ 4972917.406856384128332, 3904291.787940210197121 ], [ 4972928.013725131750107, 3904316.569271034561098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972772.291612070053816, 3903381.909353095572442 ], [ 4972814.383267889730632, 3903356.865032058674842 ], [ 4972831.893468531779945, 3903386.029131078626961 ], [ 4972769.62031218316406, 3903423.415188302285969 ], [ 4972756.128370172344148, 3903401.177323076874018 ], [ 4972776.597180921584368, 3903389.200231961905956 ], [ 4972772.291612070053816, 3903381.909353095572442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972756.074558371677995, 3899672.477970595937222 ], [ 4972792.679577448405325, 3899657.982927850447595 ], [ 4972797.551981625147164, 3899670.372704890556633 ], [ 4972825.222466486506164, 3899659.137745980173349 ], [ 4972838.980487359687686, 3899693.756535993423313 ], [ 4972818.516525438986719, 3899701.728133332449943 ], [ 4972815.651113539002836, 3899694.075897650793195 ], [ 4972771.551636459305882, 3899711.833715572021902 ], [ 4972756.074558371677995, 3899672.477970595937222 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972635.445128856226802, 3906726.559854511637241 ], [ 4972677.535611643455923, 3906699.330484216101468 ], [ 4972700.216103606857359, 3906733.966435875277966 ], [ 4972657.837719282135367, 3906761.19522035960108 ], [ 4972635.445128856226802, 3906726.559854511637241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972384.70791953522712, 3903672.109912825282663 ], [ 4972379.252505351789296, 3903663.724514165893197 ], [ 4972400.300345297902822, 3903649.927580663003027 ], [ 4972426.141696483828127, 3903689.667084918823093 ], [ 4972378.281227021478117, 3903720.163010172080249 ], [ 4972358.181834288872778, 3903689.537752015981823 ], [ 4972384.70791953522712, 3903672.109912825282663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971366.209029488265514, 3912295.390310210641474 ], [ 4971328.990561933256686, 3912339.745151265989989 ], [ 4971280.41532608307898, 3912299.235863987822086 ], [ 4971307.823671834543347, 3912266.879069622606039 ], [ 4971329.093058309517801, 3912284.761234446428716 ], [ 4971339.191032213158906, 3912272.763665946666151 ], [ 4971366.209029488265514, 3912295.390310210641474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971304.755323651246727, 3908041.841943167150021 ], [ 4971327.235391766764224, 3908029.867468612734228 ], [ 4971343.591786650940776, 3908059.392665795981884 ], [ 4971320.823138748295605, 3908071.730721285566688 ], [ 4971304.755323651246727, 3908041.841943167150021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970911.884253646247089, 3892223.650727317668498 ], [ 4970938.115101875737309, 3892215.68836183892563 ], [ 4970954.148423637263477, 3892269.609051953535527 ], [ 4970940.888977538794279, 3892273.589957557618618 ], [ 4970937.740200306288898, 3892262.660275679081678 ], [ 4970924.481426022946835, 3892266.277061864733696 ], [ 4970911.884253646247089, 3892223.650727317668498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970884.370550662279129, 3896514.86238310020417 ], [ 4970892.177956164814532, 3896498.490966424811631 ], [ 4970921.820099744945765, 3896512.746781057678163 ], [ 4970914.012680284678936, 3896529.118189267814159 ], [ 4970884.370550662279129, 3896514.86238310020417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970843.111838079988956, 3902327.397827701177448 ], [ 4970835.623683254234493, 3902327.748141446150839 ], [ 4970836.445968639105558, 3902350.325775288045406 ], [ 4970801.598390308208764, 3902351.353893528226763 ], [ 4970800.239054495468736, 3902307.655677912756801 ], [ 4970842.286869790405035, 3902306.276712635997683 ], [ 4970843.111838079988956, 3902327.397827701177448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970754.297502669505775, 3897073.925745165441185 ], [ 4970728.644165235571563, 3897083.71001587016508 ], [ 4970709.151495775207877, 3897032.69597605150193 ], [ 4970740.857673304155469, 3897020.738052092026919 ], [ 4970752.897555882111192, 3897052.075381273869425 ], [ 4970746.844092834740877, 3897054.613142064772546 ], [ 4970754.297502669505775, 3897073.925745165441185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970478.177108063362539, 3901575.52499499451369 ], [ 4970491.248657939955592, 3901514.374978719744831 ], [ 4970558.612656622193754, 3901528.33545465907082 ], [ 4970545.540960085578263, 3901589.485438691917807 ], [ 4970478.177108063362539, 3901575.52499499451369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970456.680390079505742, 3898373.323009801562876 ], [ 4970431.319087277166545, 3898381.651583857368678 ], [ 4970430.174992683343589, 3898377.279930022079498 ], [ 4970404.237657164223492, 3898385.60747567564249 ], [ 4970389.91642384044826, 3898341.885685569606721 ], [ 4970441.21514034550637, 3898325.229537893086672 ], [ 4970456.680390079505742, 3898373.323009801562876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970206.982318354770541, 3898521.432108405046165 ], [ 4970175.816408631391823, 3898554.14706644276157 ], [ 4970143.901767309755087, 3898523.502067029010504 ], [ 4970169.58400394115597, 3898496.967302596196532 ], [ 4970183.959871093742549, 3898510.830413077492267 ], [ 4970189.73089924454689, 3898505.014839203096926 ], [ 4970206.982318354770541, 3898521.432108405046165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970058.295269888825715, 3890784.507979179732502 ], [ 4970044.980375725775957, 3890818.711881585884839 ], [ 4969974.445844605565071, 3890790.546075971797109 ], [ 4969988.048106824047863, 3890756.706788644660264 ], [ 4970058.295269888825715, 3890784.507979179732502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969610.062677077017725, 3897317.630377687513828 ], [ 4969631.066860755905509, 3897330.048587927594781 ], [ 4969601.887035124003887, 3897379.153605280444026 ], [ 4969555.85081139113754, 3897351.761098779737949 ], [ 4969579.540915000252426, 3897312.113535747863352 ], [ 4969604.57365895435214, 3897326.723747555166483 ], [ 4969610.062677077017725, 3897317.630377687513828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969564.41970366705209, 3897071.396580702159554 ], [ 4969539.006428611464798, 3897108.128018129151314 ], [ 4969491.539296654984355, 3897075.271110562141985 ], [ 4969507.711826526559889, 3897051.631707729306072 ], [ 4969514.903589277528226, 3897056.742436268832535 ], [ 4969524.144302173517644, 3897043.650359949097037 ], [ 4969564.41970366705209, 3897071.396580702159554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969362.932369592599571, 3896993.839679551310837 ], [ 4969386.909887492656708, 3896954.556599258910865 ], [ 4969427.766207323409617, 3896979.754745651036501 ], [ 4969406.966191921383142, 3897013.945666552521288 ], [ 4969385.674924433231354, 3897000.798860846552998 ], [ 4969382.49738700594753, 3897005.890986858401448 ], [ 4969362.932369592599571, 3896993.839679551310837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969331.076711412519217, 3893063.371123669203371 ], [ 4969373.088068407028913, 3893090.391828922554851 ], [ 4969359.799287742003798, 3893111.123391019180417 ], [ 4969348.864668510854244, 3893104.18537665065378 ], [ 4969326.620728372596204, 3893138.73783243726939 ], [ 4969295.255954425781965, 3893118.654672467615455 ], [ 4969331.076711412519217, 3893063.371123669203371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969290.513564853928983, 3904151.059073401615024 ], [ 4969353.070099747739732, 3904112.57306292373687 ], [ 4969369.149621680378914, 3904138.455170742236078 ], [ 4969306.593123806640506, 3904176.941144397016615 ], [ 4969290.513564853928983, 3904151.059073401615024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969217.486526310443878, 3898923.104173080995679 ], [ 4969235.324052828364074, 3898934.059916181024164 ], [ 4969240.523302773013711, 3898925.694205888081342 ], [ 4969264.40200845617801, 3898940.66618689475581 ], [ 4969228.87394202966243, 3898997.771175557747483 ], [ 4969200.966941774822772, 3898980.607257871422917 ], [ 4969203.566881333477795, 3898976.242334668990225 ], [ 4969189.757699192501605, 3898967.478577789384872 ], [ 4969217.486526310443878, 3898923.104173080995679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969021.996855332516134, 3897909.018053494393826 ], [ 4969007.012310846708715, 3897912.996854763478041 ], [ 4968999.858199366368353, 3897886.766792000737041 ], [ 4969050.863708924502134, 3897873.020513635128736 ], [ 4969053.438474710099399, 3897882.856599817518145 ], [ 4969062.947924154810607, 3897880.3246043426916 ], [ 4969073.534334873780608, 3897920.033596908673644 ], [ 4969028.292035657912493, 3897932.333556490018964 ], [ 4969021.996855332516134, 3897909.018053494393826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968984.634438183158636, 3899322.868679037317634 ], [ 4969016.614158531650901, 3899317.099410379771143 ], [ 4969026.596208146773279, 3899372.464944715145975 ], [ 4968994.904563182033598, 3899378.234713294543326 ], [ 4968984.634438183158636, 3899322.868679037317634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968922.448495963588357, 3897522.499532290734351 ], [ 4968937.059295409359038, 3897566.949287590570748 ], [ 4968889.507054516114295, 3897582.158419766463339 ], [ 4968875.184216274879873, 3897537.709200243931264 ], [ 4968922.448495963588357, 3897522.499532290734351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968794.626684175804257, 3902370.304494983050972 ], [ 4968829.226790136657655, 3902346.333091633860022 ], [ 4968840.428990241140127, 3902362.738815532997251 ], [ 4968805.829539669677615, 3902386.346074959728867 ], [ 4968794.626684175804257, 3902370.304494983050972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968764.829040945507586, 3893485.482157622464001 ], [ 4968792.766506939195096, 3893488.808710139244795 ], [ 4968788.969378511421382, 3893518.296440326143056 ], [ 4968761.320017253980041, 3893514.97040082514286 ], [ 4968764.829040945507586, 3893485.482157622464001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968581.469493387266994, 3897983.977739325258881 ], [ 4968607.405364982783794, 3897976.376694304402918 ], [ 4968622.865112328901887, 3898029.566904114559293 ], [ 4968593.759717918001115, 3898037.890611350070685 ], [ 4968597.19486434571445, 3898049.912949529942125 ], [ 4968579.616304942406714, 3898054.979809712152928 ], [ 4968564.444513319991529, 3898001.790130972862244 ], [ 4968584.904652285389602, 3897996.000075545161963 ], [ 4968581.469493387266994, 3897983.977739325258881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968323.621542640961707, 3899171.317092211451381 ], [ 4968329.675575567409396, 3899168.050524402409792 ], [ 4968319.914984615519643, 3899149.826921542175114 ], [ 4968352.491853083483875, 3899132.04161389451474 ], [ 4968392.396838372573256, 3899205.665867892093956 ], [ 4968353.766008333303034, 3899226.717689087614417 ], [ 4968323.621542640961707, 3899171.317092211451381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968295.619522896595299, 3901840.708399830851704 ], [ 4968357.604661938734353, 3901801.854988217819482 ], [ 4968375.410613957792521, 3901829.924271754920483 ], [ 4968313.425513697788119, 3901868.777642954140902 ], [ 4968295.619522896595299, 3901840.708399830851704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968282.258596173487604, 3908979.847890140488744 ], [ 4968284.646008627489209, 3908931.786601982079446 ], [ 4968325.81385484803468, 3908933.679362441878766 ], [ 4968323.426368900574744, 3908981.740646990016103 ], [ 4968282.258596173487604, 3908979.847890140488744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968261.773403080180287, 3897481.645758678670973 ], [ 4968271.310309445485473, 3897463.455950662959367 ], [ 4968293.180366399697959, 3897475.146370776928961 ], [ 4968283.644086489453912, 3897492.9720424762927 ], [ 4968261.773403080180287, 3897481.645758678670973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968135.269082533195615, 3906263.894346660003066 ], [ 4968100.391769765876234, 3906284.953153859823942 ], [ 4968086.036138758994639, 3906261.259566155727953 ], [ 4968063.553505815565586, 3906274.693261792417616 ], [ 4968041.446335721760988, 3906237.87745304685086 ], [ 4968063.64041558559984, 3906224.807368179317564 ], [ 4968062.49183398950845, 3906222.984708626288921 ], [ 4968097.657135828398168, 3906201.926355041563511 ], [ 4968135.269082533195615, 3906263.894346660003066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968058.842847726307809, 3891615.17086979560554 ], [ 4968027.054844218306243, 3891671.191339149605483 ], [ 4967980.141674323938787, 3891644.528373930137604 ], [ 4967992.856453424319625, 3891622.338636075146496 ], [ 4968002.930274250917137, 3891627.818080239929259 ], [ 4968021.714712377637625, 3891594.35092740971595 ], [ 4968058.842847726307809, 3891615.17086979560554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967983.474194782786071, 3902981.714047577697784 ], [ 4968018.93480914644897, 3902958.835484096314758 ], [ 4968037.028316738083959, 3902986.905064228456467 ], [ 4968001.567723879590631, 3903009.783604231663048 ], [ 4967983.474194782786071, 3902981.714047577697784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967842.021323466673493, 3911151.495778368320316 ], [ 4967854.295546900480986, 3911211.96311635710299 ], [ 4967806.778130106627941, 3911221.348183390684426 ], [ 4967794.503804124891758, 3911160.880866752471775 ], [ 4967842.021323466673493, 3911151.495778368320316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967842.298043565824628, 3896375.781852688174695 ], [ 4967809.160382287576795, 3896383.007026526145637 ], [ 4967796.303076878190041, 3896322.539256634190679 ], [ 4967830.881662838160992, 3896314.952434445731342 ], [ 4967838.883169258013368, 3896351.743384197354317 ], [ 4967837.44231744389981, 3896352.105016531888396 ], [ 4967842.298043565824628, 3896375.781852688174695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967409.295236462727189, 3913348.655944666359574 ], [ 4967367.258630701340735, 3913353.681613418273628 ], [ 4967363.57393063697964, 3913320.175024043768644 ], [ 4967405.322100109420717, 3913315.512987281661481 ], [ 4967409.295236462727189, 3913348.655944666359574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967231.416538945399225, 3895497.906273894477636 ], [ 4967164.583198359236121, 3895500.70507211657241 ], [ 4967162.36024259403348, 3895453.000332447234541 ], [ 4967188.575003187172115, 3895451.952730621211231 ], [ 4967189.134931638836861, 3895461.421050111763179 ], [ 4967229.75361570995301, 3895459.669849110301584 ], [ 4967231.416538945399225, 3895497.906273894477636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967015.443985099904239, 3902224.112388966605067 ], [ 4967029.812652692198753, 3902241.97927057556808 ], [ 4967004.147625055164099, 3902262.326888904906809 ], [ 4966989.778951345942914, 3902244.460020812693983 ], [ 4967015.443985099904239, 3902224.112388966605067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966322.854207168333232, 3891913.33877009851858 ], [ 4966343.566273181699216, 3891931.579929708503187 ], [ 4966316.72310128621757, 3891961.757590754888952 ], [ 4966295.722949030809104, 3891943.515968803782016 ], [ 4966322.854207168333232, 3891913.33877009851858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966017.809658036567271, 3894653.991009724792093 ], [ 4965988.980396035127342, 3894667.779922373592854 ], [ 4965970.894870498217642, 3894630.244529191404581 ], [ 4966000.01222612336278, 3894616.456076979637146 ], [ 4966017.809658036567271, 3894653.991009724792093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965811.927321973256767, 3894082.694560839328915 ], [ 4965839.763060759752989, 3894147.191551917698234 ], [ 4965808.053275083191693, 3894160.611748530995101 ], [ 4965780.505542593076825, 3894096.115266947075725 ], [ 4965811.927321973256767, 3894082.694560839328915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965544.733760074712336, 3901516.691134553868324 ], [ 4965535.187529019080102, 3901542.528676193207502 ], [ 4965508.13339760620147, 3901532.288453172892332 ], [ 4965517.679606241174042, 3901506.450902073644102 ], [ 4965544.733760074712336, 3901516.691134553868324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965443.724112552590668, 3904798.437273869290948 ], [ 4965394.147635192610323, 3904827.850425066892058 ], [ 4965377.491786437109113, 3904800.149087546393275 ], [ 4965427.068296520039439, 3904770.735906118061393 ], [ 4965443.724112552590668, 3904798.437273869290948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965397.723590047098696, 3893532.1764603019692 ], [ 4965357.075831772759557, 3893549.952055124100298 ], [ 4965343.873990437015891, 3893519.707701481413096 ], [ 4965384.521785611286759, 3893501.932087008841336 ], [ 4965397.723590047098696, 3893532.1764603019692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965218.827058619819582, 3892124.161618315149099 ], [ 4965218.509789370000362, 3892142.003399808425456 ], [ 4965202.08929696213454, 3892141.61242163926363 ], [ 4965202.694644767791033, 3892123.771110925357789 ], [ 4965218.827058619819582, 3892124.161618315149099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964938.648967535234988, 3897713.815835676155984 ], [ 4964931.969846781343222, 3897747.30491947196424 ], [ 4964873.230210846289992, 3897735.921502157580107 ], [ 4964879.621231499128044, 3897702.431936468463391 ], [ 4964938.648967535234988, 3897713.815835676155984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964870.283911009319127, 3906648.016738782636821 ], [ 4964840.88985163718462, 3906663.262570668477565 ], [ 4964815.628438566811383, 3906615.884476999286562 ], [ 4964845.023126071318984, 3906600.27448715781793 ], [ 4964870.283911009319127, 3906648.016738782636821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964806.009905975311995, 3903134.773307413328439 ], [ 4964817.289198994636536, 3903104.932853045407683 ], [ 4964831.103577508591115, 3903110.053085283376276 ], [ 4964835.73061384446919, 3903098.044268113560975 ], [ 4964869.978578682988882, 3903110.84441826865077 ], [ 4964854.072190259583294, 3903152.69366413494572 ], [ 4964806.009905975311995, 3903134.773307413328439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964793.489124083891511, 3903397.655584050342441 ], [ 4964806.528567299246788, 3903347.790767669677734 ], [ 4964823.799042788334191, 3903352.552467904984951 ], [ 4964820.032420079223812, 3903366.747469876427203 ], [ 4964867.239829316735268, 3903378.84037127206102 ], [ 4964857.966920468024909, 3903414.510161421727389 ], [ 4964793.489124083891511, 3903397.655584050342441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964778.867454251274467, 3899801.477974207606167 ], [ 4964820.596619958989322, 3899821.208620632067323 ], [ 4964807.30345106869936, 3899848.860971585381776 ], [ 4964765.574908182956278, 3899828.766216207295656 ], [ 4964778.867454251274467, 3899801.477974207606167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964358.467333180829883, 3900821.821824249811471 ], [ 4964312.083601421676576, 3900831.943118690513074 ], [ 4964305.223026896826923, 3900799.888649529311806 ], [ 4964351.60622737929225, 3900790.131472936365753 ], [ 4964358.467333180829883, 3900821.821824249811471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964169.546775061637163, 3891978.635283106472343 ], [ 4964188.788972240872681, 3892016.171246738173068 ], [ 4964160.821517474018037, 3892030.327606577891856 ], [ 4964141.579291479662061, 3891992.79166264180094 ], [ 4964169.546775061637163, 3891978.635283106472343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964101.371496644802392, 3907088.835485346615314 ], [ 4964148.845497388392687, 3907110.395014546345919 ], [ 4964132.665111596696079, 3907145.689973878208548 ], [ 4964085.191740855574608, 3907123.766341909766197 ], [ 4964101.371496644802392, 3907088.835485346615314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964084.506404123269022, 3901772.856873237993568 ], [ 4964064.36478269007057, 3901761.900859609246254 ], [ 4964088.337284252047539, 3901718.243384968023747 ], [ 4964128.908543179742992, 3901740.155922225210816 ], [ 4964109.846273604780436, 3901774.71792564727366 ], [ 4964089.705244297161698, 3901763.397763304878026 ], [ 4964084.506404123269022, 3901772.856873237993568 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963938.643802839331329, 3901680.499742622021586 ], [ 4963952.223743423819542, 3901652.483259458560497 ], [ 4963994.814017935656011, 3901672.578148119617254 ], [ 4963981.521450876258314, 3901700.959197694901377 ], [ 4963938.643802839331329, 3901680.499742622021586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963902.122812150977552, 3901828.27879225416109 ], [ 4963923.994096326641738, 3901838.145039164926857 ], [ 4963928.040347324684262, 3901829.048198218923062 ], [ 4963949.048243872821331, 3901838.548963842913508 ], [ 4963927.95418959017843, 3901883.303528182674199 ], [ 4963885.651029459200799, 3901863.937459266744554 ], [ 4963902.122812150977552, 3901828.27879225416109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963912.004900889471173, 3892878.715436515398324 ], [ 4963956.11027061752975, 3892860.579027216881514 ], [ 4963974.764973180368543, 3892905.032369812019169 ], [ 4963930.6590855717659, 3892923.53287678770721 ], [ 4963912.004900889471173, 3892878.715436515398324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963809.447795650921762, 3893060.61724941432476 ], [ 4963841.739226430654526, 3893043.918466350063682 ], [ 4963858.970907604321837, 3893077.445616293232888 ], [ 4963826.679506292566657, 3893094.144378992728889 ], [ 4963809.447795650921762, 3893060.61724941432476 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963297.207571575418115, 3894555.65271029016003 ], [ 4963342.997677846811712, 3894563.371080166194588 ], [ 4963338.056134517304599, 3894591.765409690327942 ], [ 4963350.151929532177746, 3894593.604995264671743 ], [ 4963343.754676148295403, 3894631.828529404010624 ], [ 4963285.86947132460773, 3894621.906467616092414 ], [ 4963297.207571575418115, 3894555.65271029016003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963255.309334705583751, 3898140.441521365661174 ], [ 4963235.666757976636291, 3898176.823814695235342 ], [ 4963198.829729223623872, 3898157.467418468557298 ], [ 4963218.472838658839464, 3898120.720969696994871 ], [ 4963255.309334705583751, 3898140.441521365661174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963104.894439334049821, 3892817.365531566087157 ], [ 4963117.80822813604027, 3892849.428963638376445 ], [ 4963079.469569911248982, 3892864.662689628079534 ], [ 4963066.555742788128555, 3892832.599275685381144 ], [ 4963104.894439334049821, 3892817.365531566087157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962790.683617237024009, 3893320.104086459148675 ], [ 4962793.197531166486442, 3893371.086000955663621 ], [ 4962766.980920223519206, 3893372.137887773569673 ], [ 4962766.708026921376586, 3893362.305989043787122 ], [ 4962745.10062721464783, 3893363.365015634801239 ], [ 4962742.299106589518487, 3893312.018533345777541 ], [ 4962765.635570148006082, 3893310.598045757506043 ], [ 4962766.194854097440839, 3893321.522772794123739 ], [ 4962790.683617237024009, 3893320.104086459148675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962748.729630625806749, 3895677.774762021377683 ], [ 4962777.881884036585689, 3895639.586207925807685 ], [ 4962804.351689061149955, 3895659.654223188757896 ], [ 4962811.279001025483012, 3895650.561700618825853 ], [ 4962831.994500509463251, 3895666.251295790076256 ], [ 4962802.264971047639847, 3895705.167158108670264 ], [ 4962780.110915756784379, 3895688.382975092623383 ], [ 4962773.760851306840777, 3895696.748138965573162 ], [ 4962748.729630625806749, 3895677.774762021377683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962559.532327013090253, 3900516.040148694068193 ], [ 4962595.492496320977807, 3900541.948697342071682 ], [ 4962564.900205510668457, 3900583.776641956996173 ], [ 4962529.227502682246268, 3900558.232705400791019 ], [ 4962559.532327013090253, 3900516.040148694068193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962343.619415708817542, 3894053.136631135828793 ], [ 4962356.052585667930543, 3894022.932938808575273 ], [ 4962389.159915050491691, 3894036.456352712586522 ], [ 4962368.053466380573809, 3894087.037982874549925 ], [ 4962343.007099066860974, 3894076.804075539577752 ], [ 4962351.392262300476432, 3894056.425674237776548 ], [ 4962343.619415708817542, 3894053.136631135828793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962309.165736608207226, 3893789.454665167722851 ], [ 4962329.687259399332106, 3893744.69816534826532 ], [ 4962365.383137350901961, 3893761.138533755205572 ], [ 4962354.11047425121069, 3893785.882058662828058 ], [ 4962359.868009334430099, 3893788.439764541108161 ], [ 4962350.331027816981077, 3893808.452270275913179 ], [ 4962309.165736608207226, 3893789.454665167722851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962233.508282843977213, 3897121.12162355799228 ], [ 4962234.143204771913588, 3897082.524856308475137 ], [ 4962267.266269898973405, 3897083.30363885499537 ], [ 4962267.872903063893318, 3897063.277438032440841 ], [ 4962292.067415009252727, 3897063.678498374763876 ], [ 4962290.82575961202383, 3897122.301464587915689 ], [ 4962233.508282843977213, 3897121.12162355799228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962221.557607733644545, 3900047.979538058396429 ], [ 4962243.518707297742367, 3900000.311966765671968 ], [ 4962276.61594338901341, 3900015.655936608090997 ], [ 4962258.411632788367569, 3900054.954218050930649 ], [ 4962239.416665827855468, 3900046.186117379460484 ], [ 4962235.371830815449357, 3900054.554944051429629 ], [ 4962221.557607733644545, 3900047.979538058396429 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962117.329660194925964, 3899649.462445750832558 ], [ 4962130.612403589300811, 3899626.906577689107507 ], [ 4962163.991521771997213, 3899646.620394910685718 ], [ 4962150.420751431025565, 3899669.175808468367904 ], [ 4962117.329660194925964, 3899649.462445750832558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962046.43371251411736, 3900059.001185090281069 ], [ 4962022.466373547911644, 3900100.47566110920161 ], [ 4961993.115359234623611, 3900083.681161307729781 ], [ 4962017.082667767070234, 3900042.206659529358149 ], [ 4962046.43371251411736, 3900059.001185090281069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962008.337809518910944, 3895552.47388756275177 ], [ 4962018.122766023501754, 3895558.314793357159942 ], [ 4961999.355185536667705, 3895587.416676845867187 ], [ 4961952.735365768894553, 3895557.851578081957996 ], [ 4961976.123348645865917, 3895521.109948301222175 ], [ 4962013.246301095932722, 3895544.834616334643215 ], [ 4962008.337809518910944, 3895552.47388756275177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961468.957813804969192, 3893723.369601417332888 ], [ 4961471.289631622843444, 3893705.16664821235463 ], [ 4961529.181839665398002, 3893712.171773265581578 ], [ 4961522.767878283746541, 3893763.140202005393803 ], [ 4961454.219294043257833, 3893754.662636211607605 ], [ 4961458.300772081129253, 3893722.26127351121977 ], [ 4961468.957813804969192, 3893723.369601417332888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961416.097898432053626, 3909234.522611460648477 ], [ 4961452.070360411889851, 3909245.136247690301389 ], [ 4961440.78428937215358, 3909283.717381375841796 ], [ 4961454.885668721050024, 3909287.743933738674968 ], [ 4961447.361990079283714, 3909313.221934493631124 ], [ 4961396.136617807671428, 3909298.580053763464093 ], [ 4961406.845174171961844, 3909261.090434652753174 ], [ 4961394.758026532828808, 3909257.795181595254689 ], [ 4961399.387917830608785, 3909242.144413194619119 ], [ 4961412.913513235747814, 3909246.17008297983557 ], [ 4961416.097898432053626, 3909234.522611460648477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961364.743209455162287, 3895415.321434965822846 ], [ 4961365.617153021506965, 3895408.768413590732962 ], [ 4961384.336873898282647, 3895411.34525999147445 ], [ 4961383.169435413554311, 3895421.539134596474469 ], [ 4961394.688881103880703, 3895423.376981100533158 ], [ 4961388.865816694684327, 3895464.87901499774307 ], [ 4961325.218987979926169, 3895456.044953759294003 ], [ 4961326.966853671707213, 3895442.938908161595464 ], [ 4961294.999381510540843, 3895438.521717482246459 ], [ 4961299.368472347036004, 3895406.120727722067386 ], [ 4961364.743209455162287, 3895415.321434965822846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961275.905155695043504, 3899749.424398855771869 ], [ 4961262.334098799154162, 3899772.708520885556936 ], [ 4961235.572154363617301, 3899757.375227892305702 ], [ 4961248.854645959101617, 3899734.454793274402618 ], [ 4961275.905155695043504, 3899749.424398855771869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961182.138438633643091, 3899084.383435832802206 ], [ 4961209.186392690055072, 3899101.537743574939668 ], [ 4961183.781590311788023, 3899141.554286024533212 ], [ 4961156.733119792304933, 3899124.764132626354694 ], [ 4961182.138438633643091, 3899084.383435832802206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960912.407032685354352, 3898014.170509709045291 ], [ 4960937.745822966098785, 3898019.305727749597281 ], [ 4960929.914284160360694, 3898056.435400390531868 ], [ 4960904.864090556278825, 3898050.936485579237342 ], [ 4960912.407032685354352, 3898014.170509709045291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960556.499249381013215, 3897359.306673464365304 ], [ 4960559.119239771738648, 3897340.375765692442656 ], [ 4960623.050954439677298, 3897348.480187066365033 ], [ 4960620.430919789709151, 3897367.411088691093028 ], [ 4960556.499249381013215, 3897359.306673464365304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960495.627306604757905, 3899792.69760514004156 ], [ 4960481.770535485818982, 3899814.889313290826976 ], [ 4960455.872741738334298, 3899799.193928106687963 ], [ 4960469.729499508626759, 3899777.002206812147051 ], [ 4960495.627306604757905, 3899792.69760514004156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960021.322237436659634, 3906748.365630600135773 ], [ 4959983.289395904168487, 3906766.153230989351869 ], [ 4959963.481856780126691, 3906724.613677302375436 ], [ 4960000.650419191457331, 3906707.188934484496713 ], [ 4959995.195965303108096, 3906695.892987988423556 ], [ 4960021.127300865016878, 3906683.914047413505614 ], [ 4960050.407124871388078, 3906745.858691452536732 ], [ 4960025.628091938793659, 3906757.475135311018676 ], [ 4960021.322237436659634, 3906748.365630600135773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959798.548585500568151, 3892832.084292130544782 ], [ 4959814.188055463135242, 3892774.21027258457616 ], [ 4959866.88727439660579, 3892788.122805672232062 ], [ 4959854.722980079241097, 3892833.257283496204764 ], [ 4959827.941295673139393, 3892826.300395681988448 ], [ 4959824.466026344336569, 3892839.039910613093525 ], [ 4959798.548585500568151, 3892832.084292130544782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959671.258391700685024, 3908516.451188610401005 ], [ 4959693.146092030219734, 3908512.112911724951118 ], [ 4959689.71561042778194, 3908494.993797580245882 ], [ 4959742.418483423069119, 3908484.873551762197167 ], [ 4959753.276774657890201, 3908542.421973317395896 ], [ 4959678.68686253670603, 3908556.516337823588401 ], [ 4959671.258391700685024, 3908516.451188610401005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959371.028189226053655, 3889382.087831308599561 ], [ 4959399.647532124072313, 3889314.764765942934901 ], [ 4959446.294966959394515, 3889334.493896993808448 ], [ 4959417.387409426271915, 3889401.816504477988929 ], [ 4959371.028189226053655, 3889382.087831308599561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958843.544930633157492, 3906018.064786921255291 ], [ 4958795.989454951137304, 3906050.405998405069113 ], [ 4958775.874320682138205, 3906021.247381855268031 ], [ 4958823.42982360906899, 3905988.906135356519371 ], [ 4958843.544930633157492, 3906018.064786921255291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958491.21178310457617, 3907187.528985312674195 ], [ 4958451.14693452604115, 3907218.424682939425111 ], [ 4958427.866103783249855, 3907188.533659141510725 ], [ 4958434.207071107812226, 3907183.808720991015434 ], [ 4958418.399233726784587, 3907163.395473383832723 ], [ 4958427.623015466146171, 3907156.125599587801844 ], [ 4958404.916954781860113, 3907126.963655622210354 ], [ 4958427.975432909093797, 3907109.517227991949767 ], [ 4958450.968907821923494, 3907139.043720787856728 ], [ 4958470.857162985019386, 3907123.777731138747185 ], [ 4958489.252303228713572, 3907147.107648497447371 ], [ 4958470.805209554731846, 3907161.283225864171982 ], [ 4958491.21178310457617, 3907187.528985312674195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958452.734420456923544, 3899623.020684355404228 ], [ 4958460.267523140646517, 3899590.623538088053465 ], [ 4958543.762977510690689, 3899610.402284850366414 ], [ 4958536.230284782126546, 3899642.435278728604317 ], [ 4958452.734420456923544, 3899623.020684355404228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958425.973366263322532, 3897106.846888113301247 ], [ 4958463.987067982554436, 3897111.997302402276546 ], [ 4958466.024998248554766, 3897096.342555140145123 ], [ 4958480.136248828843236, 3897098.182743753772229 ], [ 4958478.971496202982962, 3897107.284368177875876 ], [ 4958478.683460150845349, 3897107.283969245385379 ], [ 4958473.445865289308131, 3897145.510314347222447 ], [ 4958483.813130840659142, 3897146.981191037688404 ], [ 4958482.357821672223508, 3897157.903060703538358 ], [ 4958420.441264761611819, 3897149.806519807316363 ], [ 4958425.973366263322532, 3897106.846888113301247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958329.553498039953411, 3906864.684741510078311 ], [ 4958349.099658321589231, 3906888.744410479441285 ], [ 4958317.679990900680423, 3906914.190264501608908 ], [ 4958297.845387817360461, 3906890.494351976085454 ], [ 4958329.553498039953411, 3906864.684741510078311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958197.478817574679852, 3900309.053862113505602 ], [ 4958208.456431808881462, 3900284.672232214827091 ], [ 4958232.921570662409067, 3900295.629791335668415 ], [ 4958221.943938665091991, 3900320.011411392129958 ], [ 4958197.478817574679852, 3900309.053862113505602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958066.604368638247252, 3907754.261157727334648 ], [ 4958100.327693851664662, 3907727.725762348156422 ], [ 4958104.064190298318863, 3907732.464601004961878 ], [ 4958123.952309436164796, 3907716.834217837546021 ], [ 4958140.048465585336089, 3907736.883563325740397 ], [ 4958086.724460571072996, 3907779.413831554818898 ], [ 4958066.604368638247252, 3907754.261157727334648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957683.979272915050387, 3900940.11885579302907 ], [ 4957701.827059837989509, 3900945.969141853973269 ], [ 4957713.105299257673323, 3900911.756190316751599 ], [ 4957746.210417388938367, 3900922.360904012341052 ], [ 4957725.96624843776226, 3900984.599707651417702 ], [ 4957675.013428843580186, 3900968.144738286267966 ], [ 4957683.979272915050387, 3900940.11885579302907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957221.956230640411377, 3901644.088811004068702 ], [ 4957179.895947431214154, 3901654.592331217136234 ], [ 4957161.27505511790514, 3901581.01308931550011 ], [ 4957203.335933210328221, 3901570.145410622935742 ], [ 4957221.956230640411377, 3901644.088811004068702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957055.52772428561002, 3895785.017596582882106 ], [ 4957095.59049716219306, 3895767.228658941108733 ], [ 4957113.397642192430794, 3895806.214234403800219 ], [ 4957073.334430270828307, 3895824.367274462245405 ], [ 4957055.52772428561002, 3895785.017596582882106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956776.741270349361002, 3899890.209332545287907 ], [ 4956781.690809331834316, 3899849.797436971217394 ], [ 4956815.957820166833699, 3899854.212320653256029 ], [ 4956810.720706040970981, 3899894.259699530899525 ], [ 4956776.741270349361002, 3899890.209332545287907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956737.348496953956783, 3891550.142570717260242 ], [ 4956769.905223982408643, 3891548.729050265159458 ], [ 4956771.030184655450284, 3891569.485849122982472 ], [ 4956777.944955253973603, 3891569.130857490934432 ], [ 4956779.628294738940895, 3891603.36114191217348 ], [ 4956741.88544238358736, 3891605.131932075601071 ], [ 4956741.039903800003231, 3891590.929812229704112 ], [ 4956732.108473193831742, 3891591.282151793595403 ], [ 4956731.270137175917625, 3891571.618117479607463 ], [ 4956738.184906683862209, 3891571.263115616515279 ], [ 4956737.348496953956783, 3891550.142570717260242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956159.247670722194016, 3894129.236515785101801 ], [ 4956094.703927926719189, 3894141.897287983912975 ], [ 4956083.826236432418227, 3894088.720382921397686 ], [ 4956121.285046962089837, 3894081.122241395059973 ], [ 4956119.567971419543028, 3894072.380922600161284 ], [ 4956146.653507289476693, 3894066.954136304557323 ], [ 4956159.247670722194016, 3894129.236515785101801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956047.89386740885675, 3900927.026826768647879 ], [ 4956048.524547535926104, 3900884.788529760669917 ], [ 4956122.249996738508344, 3900885.976479310076684 ], [ 4956121.629122331738472, 3900920.56805130187422 ], [ 4956097.725993706844747, 3900920.172917507123202 ], [ 4956097.716078938916326, 3900927.81964082736522 ], [ 4956047.89386740885675, 3900927.026826768647879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955906.958158566616476, 3905921.627485658973455 ], [ 4955881.883305210620165, 3905940.165858493186533 ], [ 4955836.466833280399442, 3905879.297420945949852 ], [ 4955861.54171193856746, 3905860.75900642387569 ], [ 4955906.958158566616476, 3905921.627485658973455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955774.233805054798722, 3896940.908505625557154 ], [ 4955760.361239866353571, 3896977.303634242620319 ], [ 4955715.736912733875215, 3896960.496426107827574 ], [ 4955725.852789294905961, 3896933.563821281306446 ], [ 4955752.915266185067594, 3896943.794168419670314 ], [ 4955756.671911085024476, 3896934.331625672057271 ], [ 4955774.233805054798722, 3896940.908505625557154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954996.094562670215964, 3895223.051050454378128 ], [ 4954978.78743068408221, 3895241.964039735496044 ], [ 4954955.481371818110347, 3895220.815323202870786 ], [ 4954972.788500965572894, 3895201.902319150511175 ], [ 4954996.094562670215964, 3895223.051050454378128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954958.913561379536986, 3896159.180420157499611 ], [ 4954995.504115356132388, 3896152.307874356396496 ], [ 4954996.648986388929188, 3896158.135379464365542 ], [ 4955010.190360032953322, 3896155.603478196077049 ], [ 4955015.338144312612712, 3896185.104412637185305 ], [ 4954965.206734212115407, 3896194.144720058422536 ], [ 4954958.913561379536986, 3896159.180420157499611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954791.795955589041114, 3892505.666653385851532 ], [ 4954821.772747584618628, 3892492.959573823027313 ], [ 4954847.050554305315018, 3892551.979961880948395 ], [ 4954817.073816066607833, 3892564.687013700138777 ], [ 4954791.795955589041114, 3892505.666653385851532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954631.977944038808346, 3896161.321332866791636 ], [ 4954647.289631865918636, 3896124.927428799681365 ], [ 4954710.051151845604181, 3896151.222782566677779 ], [ 4954696.184154040180147, 3896183.977156620007008 ], [ 4954655.878989895805717, 3896166.812963470350951 ], [ 4954654.145735705271363, 3896170.816231170669198 ], [ 4954631.977944038808346, 3896161.321332866791636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954499.744365102611482, 3894081.616666104644537 ], [ 4954506.955536655150354, 3894073.978881543502212 ], [ 4954512.997767602093518, 3894079.812417650595307 ], [ 4954506.940220920369029, 3894086.359241382684559 ], [ 4954519.025125237181783, 3894097.662186823785305 ], [ 4954494.218830333091319, 3894123.84877243032679 ], [ 4954440.989186101593077, 3894072.804969193413854 ], [ 4954464.641401122324169, 3894048.073424459435046 ], [ 4954499.744365102611482, 3894081.616666104644537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954203.030938216485083, 3891733.350536551792175 ], [ 4954232.435250727459788, 3891718.09320522332564 ], [ 4954260.889026180841029, 3891773.111498271580786 ], [ 4954231.484757580794394, 3891788.368798970244825 ], [ 4954203.030938216485083, 3891733.350536551792175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954159.942305547185242, 3900336.214313941542059 ], [ 4954138.617721911519766, 3900346.383854704443365 ], [ 4954146.374593711458147, 3900362.050943665206432 ], [ 4954126.20248537324369, 3900371.857774892356247 ], [ 4954120.457159982062876, 3900359.834453102666885 ], [ 4954101.725955087691545, 3900368.914804679807276 ], [ 4954086.212599241174757, 3900337.216525192372501 ], [ 4954146.440555041655898, 3900308.159764751791954 ], [ 4954159.942305547185242, 3900336.214313941542059 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953061.685851193033159, 3899451.876667963340878 ], [ 4953082.132902041077614, 3899453.357396039646119 ], [ 4953078.625026552006602, 3899497.048833126667887 ], [ 4953057.890429217368364, 3899495.20363741600886 ], [ 4953061.685851193033159, 3899451.876667963340878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953020.66535141505301, 3900286.778268269263208 ], [ 4953048.873605412431061, 3900300.284441552590579 ], [ 4953026.931220556609333, 3900346.138883837498724 ], [ 4952998.723003736697137, 3900332.6327332155779 ], [ 4953020.66535141505301, 3900286.778268269263208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953021.434760560281575, 3892080.763147823512554 ], [ 4952994.106632942333817, 3892046.502803147304803 ], [ 4953018.617111134342849, 3892027.23295323131606 ], [ 4953068.095414911396801, 3892089.193281513173133 ], [ 4953043.873047205619514, 3892108.463427708018571 ], [ 4953033.517748491838574, 3892094.978434924967587 ], [ 4953023.136619423516095, 3892103.341116212308407 ], [ 4953011.342149776406586, 3892088.762046215124428 ], [ 4953021.434760560281575, 3892080.763147823512554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952846.734314100816846, 3894877.065165250562131 ], [ 4952854.015436793677509, 3894809.345744403079152 ], [ 4952893.762666472233832, 3894813.762049443088472 ], [ 4952886.481444801203907, 3894881.481459696311504 ], [ 4952846.734314100816846, 3894877.065165250562131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952531.62115787807852, 3893617.903401914518327 ], [ 4952554.952986627817154, 3893619.751204255968332 ], [ 4952555.243604166433215, 3893617.566770731005818 ], [ 4952608.532094724476337, 3893621.998420796822757 ], [ 4952605.029346907511353, 3893661.320230894256383 ], [ 4952528.409137012436986, 3893655.04078805912286 ], [ 4952531.62115787807852, 3893617.903401914518327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951876.94013350456953, 3888968.325426723342389 ], [ 4951877.557442000135779, 3888932.277491275221109 ], [ 4951932.876767583191395, 3888932.704688576515764 ], [ 4951932.868872771039605, 3888939.623105111997575 ], [ 4951954.477724937722087, 3888940.011899966746569 ], [ 4951953.869876903481781, 3888967.684908358380198 ], [ 4951930.820430583320558, 3888967.29447012161836 ], [ 4951930.515272410586476, 3888982.223356334958225 ], [ 4951910.635192565619946, 3888981.836551962886006 ], [ 4951910.65014034230262, 3888968.727972948458046 ], [ 4951876.94013350456953, 3888968.325426723342389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951626.657746775075793, 3899589.67827158421278 ], [ 4951594.977118245325983, 3899589.278355217538774 ], [ 4951595.605348610319197, 3899543.034564038272947 ], [ 4951627.28603164292872, 3899543.434481129981577 ], [ 4951626.657746775075793, 3899589.67827158421278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951404.561950608156621, 3893976.738843453582376 ], [ 4951409.428087301552296, 3894004.418084912933409 ], [ 4951366.785264264792204, 3894012.01698204362765 ], [ 4951361.060586427338421, 3893979.238984539173543 ], [ 4951378.924572618678212, 3893975.981841007247567 ], [ 4951379.783067977055907, 3893981.0806051986292 ], [ 4951404.561950608156621, 3893976.738843453582376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951157.459159508347511, 3892885.897657856345177 ], [ 4951157.147178965620697, 3892907.380891312845051 ], [ 4951119.697046207264066, 3892906.975127731915563 ], [ 4951120.009401392191648, 3892885.127765811048448 ], [ 4951157.459159508347511, 3892885.897657856345177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951097.846044838428497, 3890792.093920871149749 ], [ 4951099.250180398114026, 3890824.867003394756466 ], [ 4951066.117081224918365, 3890825.922623422928154 ], [ 4951064.71250154543668, 3890793.51367020001635 ], [ 4951097.846044838428497, 3890792.093920871149749 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950541.350225645117462, 3893589.443933541886508 ], [ 4950540.159448214806616, 3893624.763112795073539 ], [ 4950536.126421051099896, 3893624.758719017263502 ], [ 4950535.235624729655683, 3893649.154366947710514 ], [ 4950508.157941482961178, 3893648.032497842796147 ], [ 4950510.527523627504706, 3893588.31798196490854 ], [ 4950541.350225645117462, 3893589.443933541886508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950518.957086480222642, 3895371.101818442344666 ], [ 4950558.459877266548574, 3895335.096087440848351 ], [ 4950606.22054819110781, 3895386.854520220309496 ], [ 4950576.521539840847254, 3895413.767650433816016 ], [ 4950566.163501841947436, 3895402.832482024095953 ], [ 4950556.360127763822675, 3895411.560888865962625 ], [ 4950518.957086480222642, 3895371.101818442344666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950463.770945956930518, 3894200.003323385026306 ], [ 4950464.971887816675007, 3894155.216792723163962 ], [ 4950493.777467959560454, 3894156.340498798992485 ], [ 4950493.174001845531166, 3894181.464725709985942 ], [ 4950499.223417312838137, 3894181.471306933090091 ], [ 4950498.625889205373824, 3894201.133609280921519 ], [ 4950463.770945956930518, 3894200.003323385026306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947934.774693541228771, 3900054.758651008829474 ], [ 4947963.289669183082879, 3900052.238067280035466 ], [ 4947968.701303016394377, 3900113.05315419100225 ], [ 4947940.186391377821565, 3900115.573732278775424 ], [ 4947934.774693541228771, 3900054.758651008829474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946849.955283026210964, 3891183.884978477843106 ], [ 4946789.168012734502554, 3891182.0065270611085 ], [ 4946790.057907971553504, 3891155.061896139290184 ], [ 4946850.84523912332952, 3891156.940349540207535 ], [ 4946849.955283026210964, 3891183.884978477843106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946849.953910739161074, 3890882.751096523366868 ], [ 4946867.822526404634118, 3890876.213812272064388 ], [ 4946882.766727800481021, 3890915.189751747995615 ], [ 4946864.898134374059737, 3890921.727026217617095 ], [ 4946849.953910739161074, 3890882.751096523366868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946656.859339509159327, 3889122.738224189728498 ], [ 4946663.466519477777183, 3889143.499743050895631 ], [ 4946641.274295371957123, 3889150.7613295763731 ], [ 4946634.378978537395597, 3889129.999544076155871 ], [ 4946656.859339509159327, 3889122.738224189728498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944196.737833402119577, 3892659.121755143627524 ], [ 4944199.071720824576914, 3892624.895683518145233 ], [ 4944206.273511974141002, 3892625.265960396267474 ], [ 4944208.898919395171106, 3892587.034727606922388 ], [ 4944240.298260356299579, 3892589.246330398600549 ], [ 4944239.128797214478254, 3892609.272388483397663 ], [ 4944250.363459941931069, 3892610.010254342574626 ], [ 4944248.904971642419696, 3892631.12844998948276 ], [ 4944236.806065624579787, 3892630.389845754485577 ], [ 4944234.762704773806036, 3892661.703135904856026 ], [ 4944196.737833402119577, 3892659.121755143627524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942828.637733449228108, 3890133.489010892342776 ], [ 4942833.845065956935287, 3890106.911861921660602 ], [ 4942843.063157866708934, 3890108.739902370143682 ], [ 4942848.560960778966546, 3890079.249967639800161 ], [ 4942886.585800015367568, 3890086.563095876015723 ], [ 4942875.8808722961694, 3890142.266035366803408 ], [ 4942828.637733449228108, 3890133.489010892342776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990360.24899885058403, 3911710.500136971008033 ], [ 4990395.676929644308984, 3911703.308625652454793 ], [ 4990397.955598930828273, 3911712.781963910441846 ], [ 4990442.312494335696101, 3911703.792829567100853 ], [ 4990449.423196295276284, 3911737.311435032635927 ], [ 4990438.189339905977249, 3911739.831436547450721 ], [ 4990441.603564734570682, 3911755.497974507510662 ], [ 4990372.762987354770303, 3911769.886108026374131 ], [ 4990360.24899885058403, 3911710.500136971008033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989409.404275715351105, 3908295.050752526149154 ], [ 4989446.285271310247481, 3908284.220352208707482 ], [ 4989459.130578107200563, 3908327.948892714921385 ], [ 4989440.113348295912147, 3908333.726746910251677 ], [ 4989438.68578290566802, 3908328.989397634752095 ], [ 4989420.822068962268531, 3908334.041927353944629 ], [ 4989409.404275715351105, 3908295.050752526149154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989227.78708288166672, 3907816.484383437782526 ], [ 4989226.551567194052041, 3907849.6173309199512 ], [ 4989198.913919383659959, 3907848.455026542302221 ], [ 4989198.307690024375916, 3907860.46987181622535 ], [ 4989174.700023429468274, 3907859.681916520930827 ], [ 4989176.848947462625802, 3907806.888111677020788 ], [ 4989191.81901868339628, 3907807.654226254671812 ], [ 4989191.511761792004108, 3907815.300235331524163 ], [ 4989227.78708288166672, 3907816.484383437782526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988735.816624655388296, 3907665.949848251417279 ], [ 4988767.324659330770373, 3907616.506967421155423 ], [ 4988822.518049101345241, 3907651.602444504387677 ], [ 4988791.009953525848687, 3907701.045261684805155 ], [ 4988735.816624655388296, 3907665.949848251417279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988434.977979835122824, 3905345.672877442091703 ], [ 4988434.053140449337661, 3905370.06741535756737 ], [ 4988412.458897330798209, 3905369.28517041169107 ], [ 4988413.38371713925153, 3905344.890631761867553 ], [ 4988434.977979835122824, 3905345.672877442091703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988310.572540378198028, 3907080.816568543203175 ], [ 4988315.103973755612969, 3907111.050873792730272 ], [ 4988297.821882231160998, 3907113.556672123726457 ], [ 4988298.95542517118156, 3907120.842150267679244 ], [ 4988275.047347664833069, 3907124.787960080895573 ], [ 4988269.094390723854303, 3907087.267466343007982 ], [ 4988310.572540378198028, 3907080.816568543203175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988248.955546640790999, 3905348.48561503784731 ], [ 4988310.001376436091959, 3905348.273757070302963 ], [ 4988309.920501478016376, 3905380.681311219930649 ], [ 4988295.235184231773019, 3905380.644667154643685 ], [ 4988295.225190638564527, 3905384.650095249060541 ], [ 4988248.865666500292718, 3905384.534467656631023 ], [ 4988248.955546640790999, 3905348.48561503784731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988159.088148154318333, 3906862.687728296499699 ], [ 4988255.594238796271384, 3906843.265059076249599 ], [ 4988263.55824895016849, 3906882.611221582628787 ], [ 4988227.260751971043646, 3906889.80336966458708 ], [ 4988225.55131693277508, 3906882.516460205428302 ], [ 4988165.631681065075099, 3906894.383543857373297 ], [ 4988159.088148154318333, 3906862.687728296499699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986779.088533031754196, 3908607.12318605510518 ], [ 4986844.187944319099188, 3908594.537387961521745 ], [ 4986850.156770319677889, 3908626.231511283200234 ], [ 4986785.34534540399909, 3908638.817997418344021 ], [ 4986779.088533031754196, 3908607.12318605510518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986669.118442752398551, 3908956.422696934547275 ], [ 4986705.430470234714448, 3908941.945821151137352 ], [ 4986707.146393236704171, 3908946.683728424832225 ], [ 4986744.035160756669939, 3908931.844177066348493 ], [ 4986757.772244293242693, 3908965.742020583711565 ], [ 4986720.595606765709817, 3908980.580851831007749 ], [ 4986718.591779454611242, 3908975.842242074664682 ], [ 4986682.855607994832098, 3908990.320502671413124 ], [ 4986669.118442752398551, 3908956.422696934547275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986434.231015073135495, 3908224.673249734565616 ], [ 4986443.064554939046502, 3908262.564479527063668 ], [ 4986403.021202131174505, 3908271.934799942187965 ], [ 4986393.613540998660028, 3908233.313925930298865 ], [ 4986406.864779243245721, 3908230.432995507027954 ], [ 4986404.013865877874196, 3908218.773836825508624 ], [ 4986419.570214916951954, 3908215.170237075071782 ], [ 4986422.419355475343764, 3908227.557658437173814 ], [ 4986434.231015073135495, 3908224.673249734565616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985958.09277705848217, 3906159.255653088446707 ], [ 4985900.938041251152754, 3906218.471626872662455 ], [ 4985872.784878632053733, 3906191.458122864365578 ], [ 4985913.197067216038704, 3906149.680139997508377 ], [ 4985920.379771766252816, 3906156.251805048435926 ], [ 4985937.121437991969287, 3906139.177889720071107 ], [ 4985958.09277705848217, 3906159.255653088446707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985825.270427397452295, 3905713.966660372912884 ], [ 4985762.4287373367697, 3905742.946284423116595 ], [ 4985743.521472877822816, 3905702.482237184885889 ], [ 4985806.651181125082076, 3905673.503261411562562 ], [ 4985825.270427397452295, 3905713.966660372912884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985807.751433806493878, 3906653.749750500079244 ], [ 4985809.132486750371754, 3906678.149932614061981 ], [ 4985820.3636430259794, 3906677.448654458858073 ], [ 4985821.465500266291201, 3906698.206843603868037 ], [ 4985807.642953190952539, 3906698.901895206421614 ], [ 4985809.032752346247435, 3906719.660775896627456 ], [ 4985792.330011594109237, 3906720.713047831784934 ], [ 4985793.439760421402752, 3906738.194064454175532 ], [ 4985766.945566708222032, 3906739.951099181547761 ], [ 4985764.725158979184926, 3906705.353198517579585 ], [ 4985769.045031329616904, 3906704.999438404571265 ], [ 4985766.282853026874363, 3906656.199077920988202 ], [ 4985807.751433806493878, 3906653.749750500079244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985766.259033004753292, 3901508.468858326319605 ], [ 4985802.310120133683085, 3901486.707555921282619 ], [ 4985811.776147902011871, 3901502.387933515012264 ], [ 4985805.71875873953104, 3901506.378825548104942 ], [ 4985823.504080271348357, 3901535.55204480746761 ], [ 4985793.797530164010823, 3901553.687243844382465 ], [ 4985766.259033004753292, 3901508.468858326319605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985618.221670703031123, 3910528.03139766305685 ], [ 4985651.622407584451139, 3910525.926642565522343 ], [ 4985654.674872737377882, 3910573.635405033361167 ], [ 4985621.274194900877774, 3910575.740156395360827 ], [ 4985618.221670703031123, 3910528.03139766305685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985487.682855910621583, 3906244.062168302945793 ], [ 4985506.466753548011184, 3906215.704768886324018 ], [ 4985523.428992725908756, 3906226.669301851186901 ], [ 4985532.099373135715723, 3906213.217151225544512 ], [ 4985573.210072852671146, 3906240.261312420945615 ], [ 4985547.779153784736991, 3906278.798461272846907 ], [ 4985516.155638835392892, 3906257.967274161521345 ], [ 4985514.13223519269377, 3906261.23962470702827 ], [ 4985487.682855910621583, 3906244.062168302945793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985417.167451511137187, 3906110.985441444907337 ], [ 4985445.397708260454237, 3906105.955019096843898 ], [ 4985447.103597542271018, 3906115.062398643232882 ], [ 4985479.942629758268595, 3906109.314759398810565 ], [ 4985483.919816836714745, 3906131.900460723321885 ], [ 4985472.397021257318556, 3906134.057711427100003 ], [ 4985480.064325344748795, 3906178.864295060746372 ], [ 4985438.872543855570257, 3906185.684376487508416 ], [ 4985430.350922191515565, 3906136.870310201775283 ], [ 4985421.9972042767331, 3906138.306887604296207 ], [ 4985417.167451511137187, 3906110.985441444907337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985324.855077136307955, 3910046.310312559362501 ], [ 4985318.503967787139118, 3910053.577827541157603 ], [ 4985330.569600702263415, 3910064.53059403039515 ], [ 4985314.693577154539526, 3910081.971119236666709 ], [ 4985278.207887966185808, 3910049.476302172988653 ], [ 4985300.722912302240729, 3910024.768921436276287 ], [ 4985324.855077136307955, 3910046.310312559362501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985278.598207876086235, 3904085.71722534392029 ], [ 4985317.538088342174888, 3904058.500155267771333 ], [ 4985372.92873234860599, 3904136.556454746052623 ], [ 4985334.276868751272559, 3904163.774132559541613 ], [ 4985278.598207876086235, 3904085.71722534392029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984868.191362300887704, 3904232.57998307235539 ], [ 4984912.844956277869642, 3904224.310702370014042 ], [ 4984909.148058706894517, 3904204.638831450603902 ], [ 4984930.178630189038813, 3904200.683210043702275 ], [ 4984932.451246023178101, 3904213.797337540891021 ], [ 4984949.736608284525573, 3904210.561119862832129 ], [ 4984959.120155507698655, 3904260.83354310831055 ], [ 4984909.857533616945148, 3904269.820091589353979 ], [ 4984910.143767714500427, 3904270.549033130053431 ], [ 4984876.437011811882257, 3904277.023576163221151 ], [ 4984868.191362300887704, 3904232.57998307235539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984466.783519956283271, 3900922.771137205418199 ], [ 4984413.765024684369564, 3900934.298673484940082 ], [ 4984408.92130677588284, 3900912.075300393626094 ], [ 4984425.922443578019738, 3900908.109817611053586 ], [ 4984420.22244690079242, 3900882.607251284178346 ], [ 4984456.52873160969466, 3900874.681729197036475 ], [ 4984466.783519956283271, 3900922.771137205418199 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984320.338450998999178, 3906750.353695003781468 ], [ 4984332.321349019184709, 3906797.354887691326439 ], [ 4984325.11876982357353, 3906799.15864085033536 ], [ 4984327.684515836648643, 3906810.088632282800972 ], [ 4984241.542459768243134, 3906831.370357546024024 ], [ 4984227.851453451439738, 3906775.990158903412521 ], [ 4984250.899709046818316, 3906770.218072244897485 ], [ 4984252.897307266481221, 3906777.869533698540181 ], [ 4984269.318849481642246, 3906773.90258734067902 ], [ 4984269.604219935834408, 3906774.995653447229415 ], [ 4984299.567137903533876, 3906767.419165152125061 ], [ 4984296.71429801825434, 3906756.124370847363025 ], [ 4984320.338450998999178, 3906750.353695003781468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984288.738682613708079, 3917270.095295751467347 ], [ 4984305.706384934484959, 3917275.961278298869729 ], [ 4984308.025186796672642, 3917269.048163190484047 ], [ 4984333.907606874592602, 3917278.212305938825011 ], [ 4984331.010593929328024, 3917286.216464953031391 ], [ 4984345.101790028624237, 3917291.34744772920385 ], [ 4984330.322927245870233, 3917333.916493438184261 ], [ 4984297.825841685757041, 3917322.552018180023879 ], [ 4984294.060258126817644, 3917332.73895071214065 ], [ 4984269.902230652980506, 3917324.671295803505927 ], [ 4984288.738682613708079, 3917270.095295751467347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984229.295811704359949, 3909107.898301056586206 ], [ 4984185.795344319194555, 3909119.084486693143845 ], [ 4984177.806429794058204, 3909088.114486949052662 ], [ 4984221.306943904608488, 3909076.928288594353944 ], [ 4984229.295811704359949, 3909107.898301056586206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984222.396148804575205, 3904803.474043167661875 ], [ 4984220.88982498459518, 3904831.872796514071524 ], [ 4984230.391429733484983, 3904832.25919554522261 ], [ 4984227.095938716083765, 3904886.871248959563673 ], [ 4984179.013808679766953, 3904884.209684798959643 ], [ 4984183.815485424362123, 3904801.198870097752661 ], [ 4984222.396148804575205, 3904803.474043167661875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983948.222637118771672, 3907412.203683575615287 ], [ 4983977.33202762901783, 3907399.891121934168041 ], [ 4984006.543970222584903, 3907466.959697326179594 ], [ 4983977.722563669085503, 3907479.272899996954948 ], [ 4983967.698737722821534, 3907456.309158517979085 ], [ 4983960.205035186372697, 3907459.568859916180372 ], [ 4983950.467412817291915, 3907437.334057990461588 ], [ 4983957.672345162369311, 3907434.437812398653477 ], [ 4983948.222637118771672, 3907412.203683575615287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983743.820642285048962, 3908267.438873658422381 ], [ 4983752.102456545457244, 3908296.588745255023241 ], [ 4983750.662028768099844, 3908296.94952717423439 ], [ 4983756.659983037039638, 3908317.719038309995085 ], [ 4983715.748832143843174, 3908329.276138401590288 ], [ 4983701.756908782757819, 3908279.357446698471904 ], [ 4983743.820642285048962, 3908267.438873658422381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983640.697958138771355, 3908660.098332450259477 ], [ 4983665.764087859541178, 3908652.509763516485691 ], [ 4983685.476039756089449, 3908718.827710738405585 ], [ 4983660.409966203384101, 3908726.416261598002166 ], [ 4983640.697958138771355, 3908660.098332450259477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983539.12171958014369, 3909256.31208888720721 ], [ 4983581.744459227658808, 3909250.948945097625256 ], [ 4983585.417961646802723, 3909280.816358389332891 ], [ 4983542.795268598943949, 3909286.179496449418366 ], [ 4983539.12171958014369, 3909256.31208888720721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983403.320586144924164, 3909590.271547671873122 ], [ 4983367.810105335898697, 3909632.792971342336386 ], [ 4983337.063511166721582, 3909607.232600471470505 ], [ 4983372.286074250005186, 3909564.710471154656261 ], [ 4983403.320586144924164, 3909590.271547671873122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983289.260430503636599, 3918087.79958901880309 ], [ 4983272.235843678936362, 3918106.69528215425089 ], [ 4983227.431429870426655, 3918065.80875709746033 ], [ 4983245.898431205190718, 3918045.459826113656163 ], [ 4983254.228158026002347, 3918052.761750480160117 ], [ 4983275.003569413907826, 3918029.86922495951876 ], [ 4983304.012835773639381, 3918055.789803428575397 ], [ 4983281.218535396270454, 3918080.49831831920892 ], [ 4983289.260430503636599, 3918087.79958901880309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983126.617018606513739, 3917100.98347088880837 ], [ 4983108.939129355363548, 3917153.37813540128991 ], [ 4983080.17879840452224, 3917143.84441543277353 ], [ 4983085.394790603779256, 3917128.562769504263997 ], [ 4983044.555132032372057, 3917114.9958017449826 ], [ 4983052.67027366347611, 3917090.617454940918833 ], [ 4983077.403680498711765, 3917099.049471563659608 ], [ 4983081.750346089713275, 3917086.314766455441713 ], [ 4983126.617018606513739, 3917100.98347088880837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982519.932810258120298, 3914808.82376102777198 ], [ 4982560.866833672858775, 3914782.699506988283247 ], [ 4982587.542616626247764, 3914823.907552837394178 ], [ 4982546.608629784546793, 3914850.031766908243299 ], [ 4982519.932810258120298, 3914808.82376102777198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982058.516294124536216, 3906793.933632699772716 ], [ 4982113.163212923333049, 3906820.639008113183081 ], [ 4982100.146078105084598, 3906847.191178612411022 ], [ 4982045.498376685194671, 3906820.849959593266249 ], [ 4982058.516294124536216, 3906793.933632699772716 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981860.978435289114714, 3905268.86649515433237 ], [ 4981877.903321703895926, 3905297.306961258407682 ], [ 4981855.412969063967466, 3905310.729107388295233 ], [ 4981838.19929794035852, 3905282.652135976590216 ], [ 4981860.978435289114714, 3905268.86649515433237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981102.444026838056743, 3907628.927114668302238 ], [ 4981123.99364753626287, 3907649.002406161744148 ], [ 4981085.319513000547886, 3907690.427346350159496 ], [ 4981055.436343339271843, 3907663.050887865945697 ], [ 4981076.794529723934829, 3907639.793963059782982 ], [ 4981085.127273792400956, 3907647.459297637920827 ], [ 4981102.444026838056743, 3907628.927114668302238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980947.683567996136844, 3901083.316679993644357 ], [ 4980961.721627429127693, 3901116.483778728172183 ], [ 4980921.653398550115526, 3901133.144809287507087 ], [ 4980907.615298507735133, 3901099.977731151040643 ], [ 4980947.683567996136844, 3901083.316679993644357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980936.725478244014084, 3902516.148098308127373 ], [ 4980941.357390845194459, 3902505.234449130482972 ], [ 4980979.046118472702801, 3902521.704091538209468 ], [ 4980957.628147925250232, 3902570.085952465888113 ], [ 4980932.310386156663299, 3902559.105778310913593 ], [ 4980936.073504187166691, 3902550.37498597567901 ], [ 4980907.016044630669057, 3902537.565874413587153 ], [ 4980905.5680724484846, 3902541.203972499351948 ], [ 4980879.675114313140512, 3902529.858440202195197 ], [ 4980893.85795693192631, 3902497.482234047725797 ], [ 4980936.725478244014084, 3902516.148098308127373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980909.891104004345834, 3903707.162184006068856 ], [ 4980944.019839737564325, 3903640.237779934890568 ], [ 4980972.496109205298126, 3903654.866308506112546 ], [ 4980938.656094840727746, 3903721.427186910994351 ], [ 4980909.891104004345834, 3903707.162184006068856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980895.429060685448349, 3904644.040668911766261 ], [ 4980911.477755842730403, 3904678.668806569185108 ], [ 4980877.753095244057477, 3904693.887484665494412 ], [ 4980861.992320981808007, 3904659.260005604941398 ], [ 4980895.429060685448349, 3904644.040668911766261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980827.415827208198607, 3909863.361869005020708 ], [ 4980917.493554237298667, 3909879.219478612300009 ], [ 4980911.370046440511942, 3909914.16263611568138 ], [ 4980821.004534106701612, 3909898.304408362135291 ], [ 4980827.415827208198607, 3909863.361869005020708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980488.396552855148911, 3904189.432296186219901 ], [ 4980507.205498341470957, 3904147.962765001226217 ], [ 4980537.123677607625723, 3904161.501622254028916 ], [ 4980518.314695285633206, 3904202.971132826991379 ], [ 4980488.396552855148911, 3904189.432296186219901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980187.779589245095849, 3903920.042220013681799 ], [ 4980215.683241568505764, 3903933.212166951503605 ], [ 4980199.482234991155565, 3903967.404986276756972 ], [ 4980171.577811961062253, 3903954.599185663741082 ], [ 4980187.779589245095849, 3903920.042220013681799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979965.767546481452882, 3902202.677057291846722 ], [ 4979980.410834643989801, 3902222.736265916842967 ], [ 4979957.912503490224481, 3902239.073010165244341 ], [ 4979943.26841227710247, 3902219.377942990977317 ], [ 4979965.767546481452882, 3902202.677057291846722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979805.164328263141215, 3901103.379285531584173 ], [ 4979800.581027999520302, 3901092.08124288264662 ], [ 4979814.993391060270369, 3901086.286550660151988 ], [ 4979819.578273325227201, 3901096.856337420642376 ], [ 4979838.603294470347464, 3901088.886925101745874 ], [ 4979856.93879271671176, 3901132.986739221494645 ], [ 4979829.266869457438588, 3901144.214468422345817 ], [ 4979825.54200981836766, 3901135.467208517715335 ], [ 4979800.463623736985028, 3901145.972358257509768 ], [ 4979786.140120399184525, 3901110.984592436812818 ], [ 4979805.164328263141215, 3901103.379285531584173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979637.470348104834557, 3902863.95231222268194 ], [ 4979593.611287099309266, 3902903.911498465575278 ], [ 4979574.36286842636764, 3902882.750103555154055 ], [ 4979617.933960547670722, 3902842.790260959416628 ], [ 4979637.470348104834557, 3902863.95231222268194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979584.837509832344949, 3906547.394008672330528 ], [ 4979632.010572201572359, 3906569.708518140017986 ], [ 4979619.284496767446399, 3906595.898381585255265 ], [ 4979572.399404563009739, 3906573.584519060794264 ], [ 4979584.837509832344949, 3906547.394008672330528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979402.932747005484998, 3908377.128568393643945 ], [ 4979422.002166526392102, 3908346.218586559873074 ], [ 4979401.299824664369226, 3908333.429136258084327 ], [ 4979418.345977402292192, 3908306.156098503153771 ], [ 4979463.488050012849271, 3908334.292065456043929 ], [ 4979427.085305564105511, 3908392.110285642556846 ], [ 4979402.932747005484998, 3908377.128568393643945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979023.894478031434119, 3906299.664689301047474 ], [ 4979027.333286668173969, 3906307.318855428602546 ], [ 4979003.412563323043287, 3906317.463128295261413 ], [ 4978988.513368469662964, 3906283.202700597699732 ], [ 4979024.827970111742616, 3906267.258947727736086 ], [ 4979036.575476318597794, 3906294.229977085255086 ], [ 4979023.894478031434119, 3906299.664689301047474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978929.540064727887511, 3895253.918594080023468 ], [ 4978899.570536507293582, 3895259.316249902360141 ], [ 4978898.716520397923887, 3895254.580733773298562 ], [ 4978882.867200316861272, 3895257.459785914048553 ], [ 4978877.458147271536291, 3895227.589563789311796 ], [ 4978922.988993578590453, 3895219.312227815855294 ], [ 4978929.540064727887511, 3895253.918594080023468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978720.118078579194844, 3907646.30223413137719 ], [ 4978737.713330483995378, 3907631.410449345596135 ], [ 4978754.657942713238299, 3907651.473984737414867 ], [ 4978736.775550630874932, 3907666.001011958345771 ], [ 4978720.118078579194844, 3907646.30223413137719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978707.546239596791565, 3904503.816601203288883 ], [ 4978707.427897932007909, 3904559.164352564141154 ], [ 4978666.826851700432599, 3904558.713440589141101 ], [ 4978666.878200586885214, 3904534.68086403934285 ], [ 4978676.956676758825779, 3904534.702399976085871 ], [ 4978677.017372457310557, 3904506.300264535471797 ], [ 4978687.095859277993441, 3904506.321804267819971 ], [ 4978687.101307284086943, 3904503.77289469493553 ], [ 4978707.546239596791565, 3904503.816601203288883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978645.030011810362339, 3908426.841579551342875 ], [ 4978634.85811654292047, 3908471.244015823118389 ], [ 4978605.216937003657222, 3908464.626341034192592 ], [ 4978615.388785721734166, 3908420.223893732298166 ], [ 4978645.030011810362339, 3908426.841579551342875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978632.67495823930949, 3907066.78095890302211 ], [ 4978605.573070162907243, 3907083.83730684639886 ], [ 4978592.085470577701926, 3907062.688854192849249 ], [ 4978619.187371343374252, 3907045.63249287661165 ], [ 4978632.67495823930949, 3907066.78095890302211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978485.469729894772172, 3904667.566044172272086 ], [ 4978444.842494136653841, 3904679.495886931195855 ], [ 4978447.128307496197522, 3904687.875779702328146 ], [ 4978420.620195659808815, 3904695.466135364957154 ], [ 4978409.756143399514258, 3904658.665729633532465 ], [ 4978477.179518572054803, 3904639.146121143829077 ], [ 4978485.469729894772172, 3904667.566044172272086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978321.093598903156817, 3905323.381766175385565 ], [ 4978343.853870281018317, 3905317.604006422683597 ], [ 4978340.426343456842005, 3905304.487980496603996 ], [ 4978363.763305489905179, 3905298.347331083845347 ], [ 4978378.044600894674659, 3905352.997454864904284 ], [ 4978332.234618448652327, 3905365.280584600754082 ], [ 4978321.093598903156817, 3905323.381766175385565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978171.622189012356102, 3908189.876668534241617 ], [ 4978176.290583457797766, 3908160.75596627779305 ], [ 4978220.328079940751195, 3908167.403686451725662 ], [ 4978215.946784093976021, 3908196.889122372493148 ], [ 4978171.622189012356102, 3908189.876668534241617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978095.273487256839871, 3916920.541624376084656 ], [ 4978154.302039518021047, 3916909.014312759973109 ], [ 4978152.023361946456134, 3916897.721318853553385 ], [ 4978166.42073389980942, 3916894.838747632224113 ], [ 4978175.820146014913917, 3916941.467870816588402 ], [ 4978102.393549527972937, 3916956.241866106633097 ], [ 4978095.273487256839871, 3916920.541624376084656 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978075.654488082043827, 3906326.773203315213323 ], [ 4978086.542959925718606, 3906351.921339748427272 ], [ 4978048.21347420476377, 3906367.862101027276367 ], [ 4978037.61214059125632, 3906343.078718762844801 ], [ 4978075.654488082043827, 3906326.773203315213323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977863.687277712859213, 3908670.973314303439111 ], [ 4977834.274228354915977, 3908692.759305722545832 ], [ 4977817.335723080672324, 3908669.783290685620159 ], [ 4977846.460104338824749, 3908648.360805449541658 ], [ 4977863.687277712859213, 3908670.973314303439111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977816.237488965503871, 3906729.6841333466582 ], [ 4977790.291343836113811, 3906744.923072341829538 ], [ 4977769.345778831280768, 3906709.922328227199614 ], [ 4977795.579879065975547, 3906694.683975261636078 ], [ 4977816.237488965503871, 3906729.6841333466582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977807.748189523816109, 3908984.373625626787543 ], [ 4977816.40385178476572, 3908975.652665421832353 ], [ 4977794.567223964259028, 3908954.487011493649334 ], [ 4977817.361107243224978, 3908931.230506858788431 ], [ 4977856.724903090856969, 3908969.183198632672429 ], [ 4977825.562497009523213, 3909001.525362283922732 ], [ 4977807.748189523816109, 3908984.373625626787543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977794.460610698908567, 3908594.723845382221043 ], [ 4977831.506297189742327, 3908639.954262885730714 ], [ 4977807.568938097916543, 3908659.202887270133942 ], [ 4977770.523238058201969, 3908613.972502211574465 ], [ 4977794.460610698908567, 3908594.723845382221043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977768.82695896551013, 3904081.618093234486878 ], [ 4977785.187130254693329, 3904107.141710570082068 ], [ 4977743.66485898848623, 3904133.635987106245011 ], [ 4977727.304664555937052, 3904108.112394628114998 ], [ 4977768.82695896551013, 3904081.618093234486878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977744.122536453418434, 3905559.57649355288595 ], [ 4977713.062680506147444, 3905541.304621587507427 ], [ 4977735.892289485782385, 3905502.39049866469577 ], [ 4977778.169043026864529, 3905526.876231157686561 ], [ 4977770.077455927617848, 3905540.696219135075808 ], [ 4977789.058886488899589, 3905551.660104524344206 ], [ 4977777.499700320884585, 3905571.298903689254075 ], [ 4977747.590131595730782, 3905553.757675029337406 ], [ 4977744.122536453418434, 3905559.57649355288595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977550.08684151712805, 3905815.153935822658241 ], [ 4977584.372638978995383, 3905805.394232294056565 ], [ 4977593.519621438346803, 3905837.45701406756416 ], [ 4977559.233861486427486, 3905847.216706128790975 ], [ 4977550.08684151712805, 3905815.153935822658241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977465.910331185907125, 3907925.851456798613071 ], [ 4977443.423623248003423, 3907939.641447940841317 ], [ 4977431.085700755007565, 3907919.224237004760653 ], [ 4977453.571657710708678, 3907905.798366446513683 ], [ 4977465.910331185907125, 3907925.851456798613071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977431.2396110733971, 3904127.154903510119766 ], [ 4977466.122481346130371, 3904108.293016091920435 ], [ 4977481.040833812206984, 3904134.905826442874968 ], [ 4977446.157226032577455, 3904154.131824701558799 ], [ 4977431.2396110733971, 3904127.154903510119766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977322.651728426106274, 3900965.177506195381284 ], [ 4977319.448082885704935, 3900982.284969332162291 ], [ 4977344.494486920535564, 3900986.706802744418383 ], [ 4977339.538546543568373, 3901015.462791845202446 ], [ 4977292.900194929912686, 3901007.354622075799853 ], [ 4977301.347713817842305, 3900961.491759464610368 ], [ 4977322.651728426106274, 3900965.177506195381284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977255.93154211062938, 3913766.470211477484554 ], [ 4977295.579912416636944, 3913802.966267509851605 ], [ 4977267.306888783350587, 3913833.130389931611717 ], [ 4977247.194863271899521, 3913814.881774964276701 ], [ 4977242.001293367706239, 3913820.697087988723069 ], [ 4977222.177098518237472, 3913802.44909188663587 ], [ 4977255.93154211062938, 3913766.470211477484554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977217.270091936923563, 3912979.861140451394022 ], [ 4977241.43944900482893, 3912985.373506594449282 ], [ 4977235.6290104361251, 3913010.850740244146436 ], [ 4977211.459675129503012, 3913005.338379226624966 ], [ 4977217.270091936923563, 3912979.861140451394022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976918.391373072750866, 3907734.998585276771337 ], [ 4976938.001777002587914, 3907719.745666163042188 ], [ 4976957.240482445806265, 3907744.910673073958606 ], [ 4976900.430089706555009, 3907788.124691516160965 ], [ 4976882.627201953902841, 3907764.783358857501298 ], [ 4976905.120555153116584, 3907747.715723446104676 ], [ 4976895.070431480184197, 3907734.586146377958357 ], [ 4976909.48916887678206, 3907723.692042569629848 ], [ 4976918.391373072750866, 3907734.998585276771337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976910.442600174807012, 3909070.255715731997043 ], [ 4976923.350919240154326, 3909093.222812402062118 ], [ 4976903.174004607833922, 3909104.469121247064322 ], [ 4976912.928158015012741, 3909121.239426208660007 ], [ 4976892.462607452645898, 3909132.84927786886692 ], [ 4976884.430611804127693, 3909118.631474268157035 ], [ 4976855.893872651271522, 3909134.958365876227617 ], [ 4976841.263345555402339, 3909109.438809643499553 ], [ 4976910.442600174807012, 3909070.255715731997043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976849.535796225070953, 3903301.915775339584798 ], [ 4976871.795377439819276, 3903260.45087187550962 ], [ 4976888.191581044346094, 3903269.223963352385908 ], [ 4976905.248173685744405, 3903237.215729767922312 ], [ 4976895.755707305856049, 3903232.098234943579882 ], [ 4976909.342354128137231, 3903207.001313866581768 ], [ 4976915.958137474022806, 3903210.656329485122114 ], [ 4976922.028905420564115, 3903199.380835845135152 ], [ 4976983.874655589461327, 3903232.280840985476971 ], [ 4976961.614878099411726, 3903273.745650902856141 ], [ 4976945.218701136298478, 3903264.972514597699046 ], [ 4976927.874108594842255, 3903296.980126732494682 ], [ 4976937.653761034831405, 3903302.462359551806003 ], [ 4976923.778411874547601, 3903327.922800922766328 ], [ 4976917.162658522836864, 3903324.267783111426979 ], [ 4976911.380644114688039, 3903335.179745421744883 ], [ 4976849.535796225070953, 3903301.915775339584798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976817.732911084778607, 3892495.56089871795848 ], [ 4976822.108385579660535, 3892469.352659100666642 ], [ 4976814.620413795113564, 3892468.244795249775052 ], [ 4976821.621028576977551, 3892426.38443773239851 ], [ 4976830.836023357696831, 3892428.224131698254496 ], [ 4976834.918164930306375, 3892404.564191175159067 ], [ 4976886.756393186748028, 3892413.046383597422391 ], [ 4976880.631986721418798, 3892449.082474165130407 ], [ 4976887.255703299306333, 3892450.188567813485861 ], [ 4976883.17427590675652, 3892473.484373627696186 ], [ 4976875.687061158008873, 3892472.012365386355668 ], [ 4976870.434471921995282, 3892504.408973848447204 ], [ 4976817.732911084778607, 3892495.56089871795848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976779.261649027466774, 3909158.468495380599052 ], [ 4976793.026982619427145, 3909184.714495147112757 ], [ 4976751.235389260575175, 3909206.476089319679886 ], [ 4976737.470026129856706, 3909180.230110597331077 ], [ 4976779.261649027466774, 3909158.468495380599052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976753.937597847543657, 3912497.151359479874372 ], [ 4976714.165521933697164, 3912519.281351681798697 ], [ 4976698.677612541243434, 3912491.575245481915772 ], [ 4976738.448964459821582, 3912469.809362521860749 ], [ 4976753.937597847543657, 3912497.151359479874372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976749.313855617307127, 3913202.468260506168008 ], [ 4976728.272742453031242, 3913215.533605377189815 ], [ 4976701.875743607059121, 3913173.60375087056309 ], [ 4976746.552568882703781, 3913145.657729343045503 ], [ 4976767.210311361588538, 3913178.836561527103186 ], [ 4976743.574636759236455, 3913193.717199985403568 ], [ 4976749.313855617307127, 3913202.468260506168008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976651.417883592657745, 3901343.209766611922532 ], [ 4976672.726939773187041, 3901344.346093908883631 ], [ 4976671.528422241099179, 3901366.919735042843968 ], [ 4976680.167383437044919, 3901367.301682044751942 ], [ 4976681.365157191641629, 3901345.092170582618564 ], [ 4976712.177149964496493, 3901346.612261547707021 ], [ 4976709.466512964107096, 3901404.139342966489494 ], [ 4976681.245745210908353, 3901402.988730067387223 ], [ 4976682.142760615795851, 3901386.968822409398854 ], [ 4976649.315631614997983, 3901385.080480980221182 ], [ 4976651.417883592657745, 3901343.209766611922532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976606.166022968478501, 3909608.179246650077403 ], [ 4976556.058315646834671, 3909614.266310081351548 ], [ 4976552.662702447734773, 3909585.49283846328035 ], [ 4976602.770462621934712, 3909579.405768800992519 ], [ 4976606.166022968478501, 3909608.179246650077403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976530.412750481627882, 3912842.981319755781442 ], [ 4976493.522288541309536, 3912864.025171601213515 ], [ 4976478.319973807781935, 3912837.41217404184863 ], [ 4976514.922592535614967, 3912816.367709477897733 ], [ 4976530.412750481627882, 3912842.981319755781442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976428.141558250412345, 3909797.162051448598504 ], [ 4976442.479712134227157, 3909824.865589363966137 ], [ 4976382.820945451036096, 3909855.694383061025292 ], [ 4976368.481999679468572, 3909828.355007640551776 ], [ 4976428.141558250412345, 3909797.162051448598504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976375.201951549388468, 3900656.619438613764942 ], [ 4976396.842895803041756, 3900636.636646463070065 ], [ 4976429.026930009946227, 3900671.65924919443205 ], [ 4976407.098739507608116, 3900691.277295645326376 ], [ 4976375.201951549388468, 3900656.619438613764942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976265.357707464136183, 3912948.400032461620867 ], [ 4976310.244700196199119, 3912958.323597449809313 ], [ 4976302.979392932727933, 3912991.808984648901969 ], [ 4976257.8038419932127, 3912982.248974064830691 ], [ 4976265.357707464136183, 3912948.400032461620867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976171.54821517970413, 3912508.699085647240281 ], [ 4976197.667020360939205, 3912546.622362697031349 ], [ 4976172.010803304612637, 3912564.048299370333552 ], [ 4976145.89197900146246, 3912526.125046839471906 ], [ 4976171.54821517970413, 3912508.699085647240281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976172.323786608874798, 3908749.392531468067318 ], [ 4976183.856617258861661, 3908741.405193943995982 ], [ 4976197.347495484165847, 3908761.460066750179976 ], [ 4976185.815413908101618, 3908769.083267618902028 ], [ 4976172.323786608874798, 3908749.392531468067318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976124.692459426820278, 3900491.155605300329626 ], [ 4976098.797743644565344, 3900478.7223059409298 ], [ 4976119.330483402125537, 3900437.253323530312628 ], [ 4976145.225229756906629, 3900449.68664236785844 ], [ 4976124.692459426820278, 3900491.155605300329626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976087.384353891946375, 3906635.795509536750615 ], [ 4976134.931387082673609, 3906617.32185372011736 ], [ 4976146.675685298629105, 3906647.204669304657727 ], [ 4976099.415887135080993, 3906666.043022919911891 ], [ 4976087.384353891946375, 3906635.795509536750615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976043.552806569263339, 3903843.544283345807344 ], [ 4976094.275319649837911, 3903823.620526635088027 ], [ 4976114.044481811113656, 3903872.818616634234786 ], [ 4976049.199962582439184, 3903898.539637759327888 ], [ 4976035.448247320950031, 3903863.919117117766291 ], [ 4976049.569604094140232, 3903858.485938745550811 ], [ 4976043.552806569263339, 3903843.544283345807344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976027.313532677479088, 3905594.255789573304355 ], [ 4976017.577575496397913, 3905567.654325704090297 ], [ 4976048.986642966046929, 3905556.430275081191212 ], [ 4976067.598363318480551, 3905607.81081563886255 ], [ 4976038.206446747295558, 3905618.310693892650306 ], [ 4976029.042687926441431, 3905593.531050949823111 ], [ 4976027.313532677479088, 3905594.255789573304355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976001.614517949521542, 3912552.412346821743995 ], [ 4976023.708534915931523, 3912587.778319458477199 ], [ 4975997.479698551818728, 3912603.7467220434919 ], [ 4975975.385660318657756, 3912568.380770621821284 ], [ 4976001.614517949521542, 3912552.412346821743995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975989.231862094253302, 3907043.423271384090185 ], [ 4975960.420368843711913, 3907052.467894825153053 ], [ 4975946.975889241322875, 3907009.108805138617754 ], [ 4975975.787424368783832, 3907000.064167520962656 ], [ 4975989.231862094253302, 3907043.423271384090185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975948.689971508458257, 3901498.346619664691389 ], [ 4975944.280470957048237, 3901542.397480345331132 ], [ 4975913.759612114168704, 3901539.422337872907519 ], [ 4975918.169063096866012, 3901495.371472261846066 ], [ 4975948.689971508458257, 3901498.346619664691389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975933.982045001350343, 3907310.219619000796229 ], [ 4975967.653899419121444, 3907317.934942532330751 ], [ 4975957.487501502037048, 3907361.610100597143173 ], [ 4975923.815698972903192, 3907353.894789597485214 ], [ 4975933.982045001350343, 3907310.219619000796229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975873.158454429358244, 3909469.400990490335971 ], [ 4975886.652898871339858, 3909487.635060661006719 ], [ 4975862.433486957103014, 3909505.06418696558103 ], [ 4975848.939034905284643, 3909486.830128759611398 ], [ 4975873.158454429358244, 3909469.400990490335971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975745.836876516230404, 3911064.044164271559566 ], [ 4975764.042439817450941, 3911030.216730963438749 ], [ 4975754.840402654372156, 3911025.100198821164668 ], [ 4975762.064173493534327, 3911012.006067651323974 ], [ 4975772.129135810770094, 3911017.488486410584301 ], [ 4975783.688224047422409, 3910996.028100992552936 ], [ 4975795.766919553279877, 3911002.242882129270583 ], [ 4975759.065618225373328, 3911070.989528022240847 ], [ 4975745.836876516230404, 3911064.044164271559566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975696.338208486326039, 3904092.632708471268415 ], [ 4975721.362047303467989, 3904106.884545691311359 ], [ 4975725.984925226308405, 3904099.247156610712409 ], [ 4975748.419308792799711, 3904112.401375703513622 ], [ 4975720.09875401481986, 3904161.865831993054599 ], [ 4975672.352624975144863, 3904134.459237453527749 ], [ 4975696.338208486326039, 3904092.632708471268415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975594.82879083044827, 3905304.257063133176416 ], [ 4975563.374724871478975, 3905337.693585672881454 ], [ 4975534.920849899761379, 3905311.418607413303107 ], [ 4975549.926528283394873, 3905295.427130821626633 ], [ 4975544.465810541063547, 3905290.318253229372203 ], [ 4975560.914192822761834, 3905272.873171225655824 ], [ 4975594.82879083044827, 3905304.257063133176416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975567.951042921282351, 3907916.849709894973785 ], [ 4975606.564764493145049, 3907900.905977869406343 ], [ 4975624.903979704715312, 3907944.274825872853398 ], [ 4975586.289573051966727, 3907960.58266277378425 ], [ 4975567.951042921282351, 3907916.849709894973785 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975448.463190914131701, 3906061.355545261409134 ], [ 4975439.318133775144815, 3906027.108707066159695 ], [ 4975485.413597008213401, 3906014.82122175488621 ], [ 4975494.272129580378532, 3906048.339233375154436 ], [ 4975474.393230885267258, 3906053.761089264415205 ], [ 4975477.824263255111873, 3906065.784364468883723 ], [ 4975460.82698461227119, 3906070.119650329928845 ], [ 4975457.68241619784385, 3906058.825218872632831 ], [ 4975448.463190914131701, 3906061.355545261409134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975365.797638940624893, 3898637.649534774944186 ], [ 4975417.918922404758632, 3898642.852346956264228 ], [ 4975414.385640441440046, 3898681.07890046807006 ], [ 4975361.97641121968627, 3898675.875515164807439 ], [ 4975365.797638940624893, 3898637.649534774944186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975330.597838194109499, 3909542.950605904217809 ], [ 4975367.37898529227823, 3909577.981400121003389 ], [ 4975338.527899746783078, 3909608.146312768105417 ], [ 4975301.746756570413709, 3909573.115557400509715 ], [ 4975330.597838194109499, 3909542.950605904217809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975353.089684306643903, 3898082.689588063862175 ], [ 4975396.579349178820848, 3898083.869551225565374 ], [ 4975395.614048099145293, 3898134.117561426479369 ], [ 4975370.844627095386386, 3898133.703546602744609 ], [ 4975370.858557401224971, 3898126.78510255087167 ], [ 4975352.138389977626503, 3898126.019155742134899 ], [ 4975353.089684306643903, 3898082.689588063862175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974942.525165469385684, 3898290.148747358936816 ], [ 4974945.104282452724874, 3898296.708241899497807 ], [ 4974961.823459303937852, 3898289.823174017947167 ], [ 4974978.448750323615968, 3898329.910716761369258 ], [ 4974938.092807939276099, 3898346.215935298707336 ], [ 4974919.176368403248489, 3898299.569499915931374 ], [ 4974942.525165469385684, 3898290.148747358936816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974645.575639927759767, 3899738.067474708426744 ], [ 4974649.522383191622794, 3899781.042708352673799 ], [ 4974611.210169589146972, 3899784.607921891380101 ], [ 4974607.263365627266467, 3899741.63269377220422 ], [ 4974645.575639927759767, 3899738.067474708426744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974543.220422922633588, 3899358.804583521559834 ], [ 4974573.183776710182428, 3899353.766186648514122 ], [ 4974580.300266295671463, 3899396.019427886698395 ], [ 4974550.336958226747811, 3899401.05781695432961 ], [ 4974543.220422922633588, 3899358.804583521559834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974405.630790893919766, 3898735.505206373985857 ], [ 4974453.482962539419532, 3898714.844460932537913 ], [ 4974465.811539472080767, 3898743.271024044603109 ], [ 4974434.678880359046161, 3898756.682221397291869 ], [ 4974431.811665043234825, 3898750.122204153332859 ], [ 4974415.380208582617342, 3898757.372302099131048 ], [ 4974405.630790893919766, 3898735.505206373985857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974381.977880043908954, 3908220.713601347059011 ], [ 4974344.494708769023418, 3908247.949429939966649 ], [ 4974327.552941949106753, 3908224.975621347315609 ], [ 4974365.036127961240709, 3908197.739769516978413 ], [ 4974381.977880043908954, 3908220.713601347059011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974290.615842314437032, 3900243.141887844074517 ], [ 4974331.25007684994489, 3900230.113409471698105 ], [ 4974342.127999972552061, 3900263.634905408602208 ], [ 4974301.493810745887458, 3900276.663367602042854 ], [ 4974290.615842314437032, 3900243.141887844074517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974278.128003539517522, 3900733.601158170960844 ], [ 4974300.584597131237388, 3900737.286781818605959 ], [ 4974292.718843890354037, 3900782.787588834762573 ], [ 4974251.548964140936732, 3900775.787885523866862 ], [ 4974257.667994007468224, 3900739.75101856701076 ], [ 4974276.381341505795717, 3900743.065108894370496 ], [ 4974278.128003539517522, 3900733.601158170960844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973843.780952848494053, 3898401.949102421291173 ], [ 4973861.653295350261033, 3898394.337346631567925 ], [ 4973857.352916425094008, 3898384.133285973686725 ], [ 4973901.745451699011028, 3898365.285441803745925 ], [ 4973916.081654156558216, 3898398.44936982775107 ], [ 4973853.528811411932111, 3898424.908376229926944 ], [ 4973843.780952848494053, 3898401.949102421291173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973798.383914181031287, 3896724.67777821328491 ], [ 4973771.884220230393112, 3896724.625987054780126 ], [ 4973771.919082513079047, 3896706.783696802332997 ], [ 4973746.571532294154167, 3896706.734181848820299 ], [ 4973746.559443054720759, 3896712.924364168196917 ], [ 4973730.429187513887882, 3896712.892867107409984 ], [ 4973730.503833406604826, 3896674.659388365689665 ], [ 4973747.498233953490853, 3896674.692573093809187 ], [ 4973747.519568257965147, 3896663.768722199834883 ], [ 4973776.611689429730177, 3896663.825554917566478 ], [ 4973776.576824089512229, 3896681.667844709940255 ], [ 4973798.467910605482757, 3896681.710630656220019 ], [ 4973798.383914181031287, 3896724.67777821328491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973783.768710401840508, 3903464.340594595763832 ], [ 4973752.74287033919245, 3903426.046182431746274 ], [ 4973791.679821808822453, 3903394.806995918042958 ], [ 4973848.846611986868083, 3903465.92441556788981 ], [ 4973824.619551445357502, 3903485.175963412504643 ], [ 4973798.477859431877732, 3903452.717153172008693 ], [ 4973783.768710401840508, 3903464.340594595763832 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973720.318406612612307, 3911181.268171499948949 ], [ 4973774.430153108201921, 3911186.835903220809996 ], [ 4973768.564252729527652, 3911242.172648088540882 ], [ 4973714.453327628783882, 3911236.240796415135264 ], [ 4973720.318406612612307, 3911181.268171499948949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973689.743338669650257, 3910326.588629535865039 ], [ 4973683.111818572506309, 3910331.673545473720878 ], [ 4973665.309255405329168, 3910307.606045088265091 ], [ 4973672.227962210774422, 3910302.885817944537848 ], [ 4973689.743338669650257, 3910326.588629535865039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973691.781884059309959, 3904118.504890667740256 ], [ 4973714.311792564578354, 3904083.228123059496284 ], [ 4973767.805702063255012, 3904117.560962243471295 ], [ 4973745.276463172398508, 3904152.473555741365999 ], [ 4973691.781884059309959, 3904118.504890667740256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973697.842868917621672, 3899389.185131261125207 ], [ 4973744.240472059696913, 3899375.074626103974879 ], [ 4973753.973121996037662, 3899405.680585201364011 ], [ 4973707.574855801649392, 3899420.155202769674361 ], [ 4973697.842868917621672, 3899389.185131261125207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973650.179844842292368, 3902415.746293421369046 ], [ 4973616.977806354872882, 3902459.013166350778192 ], [ 4973609.788270808756351, 3902453.901323893107474 ], [ 4973597.08457937836647, 3902470.626602814998478 ], [ 4973576.955856278538704, 3902455.293900655582547 ], [ 4973623.149541328661144, 3902395.302267419174314 ], [ 4973650.179844842292368, 3902415.746293421369046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973563.789808915928006, 3900638.255533294286579 ], [ 4973576.385165627114475, 3900677.606158856768161 ], [ 4973543.245581808499992, 3900687.737316275481135 ], [ 4973530.937471209093928, 3900648.75139546347782 ], [ 4973563.789808915928006, 3900638.255533294286579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973205.976805138401687, 3896676.189343428239226 ], [ 4973221.538041546940804, 3896672.578128176275641 ], [ 4973210.966407952830195, 3896628.133863129653037 ], [ 4973253.327482306398451, 3896618.384279415011406 ], [ 4973257.614285349845886, 3896635.870800117496401 ], [ 4973253.868342103436589, 3896636.591812291648239 ], [ 4973266.154052667319775, 3896688.322006287053227 ], [ 4973211.977794716134667, 3896700.961765638552606 ], [ 4973205.976805138401687, 3896676.189343428239226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973189.365609519183636, 3902737.47183795645833 ], [ 4973212.719101210124791, 3902723.315871459431946 ], [ 4973225.636465537361801, 3902744.824583453591913 ], [ 4973202.282985667698085, 3902758.980538901872933 ], [ 4973189.365609519183636, 3902737.47183795645833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973119.720262864604592, 3902266.51593403192237 ], [ 4973135.288096244446933, 3902257.806842305697501 ], [ 4973122.373235379345715, 3902234.841661710757762 ], [ 4973146.588961728848517, 3902221.779698386788368 ], [ 4973157.494270937517285, 3902241.463830477092415 ], [ 4973164.413553106598556, 3902237.471755178645253 ], [ 4973178.476078639738262, 3902262.623959350399673 ], [ 4973175.016791249625385, 3902264.437930205371231 ], [ 4973187.069762335158885, 3902286.309078071732074 ], [ 4973155.070163835771382, 3902303.725542292930186 ], [ 4973139.285378676839173, 3902275.656976719852537 ], [ 4973128.330163857899606, 3902281.826053156517446 ], [ 4973119.720262864604592, 3902266.51593403192237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973054.9275286430493, 3899575.465393492486328 ], [ 4972976.81245403084904, 3899608.814938120078295 ], [ 4972964.195395359769464, 3899580.024360124953091 ], [ 4973042.598547691479325, 3899546.67533439071849 ], [ 4973054.9275286430493, 3899575.465393492486328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973034.055081398226321, 3898150.947795087471604 ], [ 4972971.511644621379673, 3898172.675177046563476 ], [ 4972959.765680606476963, 3898139.880872767884284 ], [ 4972978.499918493442237, 3898133.362579359207302 ], [ 4972973.056170750409365, 3898118.422771505080163 ], [ 4973017.154184185899794, 3898102.850073337554932 ], [ 4973034.055081398226321, 3898150.947795087471604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972873.100065520964563, 3903521.929197175428271 ], [ 4972866.783668236806989, 3903512.08552127936855 ], [ 4972881.776163584552705, 3903502.646910137496889 ], [ 4972887.518721810542047, 3903511.397093195933849 ], [ 4972912.314020986668766, 3903495.787106156814843 ], [ 4972926.955554906278849, 3903519.119655683636665 ], [ 4972908.50324612762779, 3903530.736378136090934 ], [ 4972913.096021183766425, 3903538.391962959431112 ], [ 4972872.731658485718071, 3903563.803581020329148 ], [ 4972854.071148419752717, 3903533.908980568870902 ], [ 4972873.100065520964563, 3903521.929197175428271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972733.376703823916614, 3897237.860552044585347 ], [ 4972699.984896196983755, 3897227.236851395107806 ], [ 4972721.429158663377166, 3897159.549755818676203 ], [ 4972754.82104205340147, 3897170.173482678364962 ], [ 4972733.376703823916614, 3897237.860552044585347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972713.796526847407222, 3905055.345076696015894 ], [ 4972723.349822784774005, 3905028.781770472414792 ], [ 4972769.96649634372443, 3905045.257025208789855 ], [ 4972760.701110798865557, 3905071.820867090020329 ], [ 4972713.796526847407222, 3905055.345076696015894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972711.115098275244236, 3904801.540262223687023 ], [ 4972709.351117306388915, 3904820.471722627058625 ], [ 4972720.579207552596927, 3904821.585620863363147 ], [ 4972718.52447830606252, 3904841.973050074651837 ], [ 4972679.945025632157922, 3904838.622002745978534 ], [ 4972683.4764310028404, 3904798.938427148386836 ], [ 4972711.115098275244236, 3904801.540262223687023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971774.927329101599753, 3898852.414972418919206 ], [ 4971744.08826657012105, 3898863.645055141765624 ], [ 4971720.302490469068289, 3898799.877601660322398 ], [ 4971751.43031826429069, 3898788.283904348500073 ], [ 4971774.927329101599753, 3898852.414972418919206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971719.825414416380227, 3911472.383288389537483 ], [ 4971768.803034513257444, 3911452.448028547689319 ], [ 4971782.27186269313097, 3911485.24532756768167 ], [ 4971733.582174025475979, 3911505.181104230694473 ], [ 4971719.825414416380227, 3911472.383288389537483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971612.213300463743508, 3910981.69429452624172 ], [ 4971630.014519835822284, 3911007.216970957815647 ], [ 4971586.198371954262257, 3911037.722003095783293 ], [ 4971568.109244283288717, 3911012.198816013056785 ], [ 4971612.213300463743508, 3910981.69429452624172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971603.161700650118291, 3910281.449975846800953 ], [ 4971571.487807457335293, 3910284.30369367543608 ], [ 4971568.955404302105308, 3910252.983537959866226 ], [ 4971600.341438913717866, 3910250.129277653060853 ], [ 4971603.161700650118291, 3910281.449975846800953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971605.469554089009762, 3891987.528941940516233 ], [ 4971590.152327924966812, 3892013.353395016398281 ], [ 4971525.402069562114775, 3891975.726977505721152 ], [ 4971540.719254761002958, 3891949.902488104533404 ], [ 4971605.469554089009762, 3891987.528941940516233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971532.947232755832374, 3908264.388672356959432 ], [ 4971516.22968312073499, 3908274.188962742686272 ], [ 4971511.064216744154692, 3908265.075993379577994 ], [ 4971493.193648198619485, 3908275.602405762765557 ], [ 4971466.214576104655862, 3908230.035439070314169 ], [ 4971520.402898362837732, 3908198.093131224159151 ], [ 4971537.049620981328189, 3908226.162464045919478 ], [ 4971526.097195622511208, 3908232.332216141745448 ], [ 4971533.847099359147251, 3908245.091347206383944 ], [ 4971524.623544914647937, 3908250.536071025766432 ], [ 4971532.947232755832374, 3908264.388672356959432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971482.171933310106397, 3907856.82976192003116 ], [ 4971481.025014960207045, 3907854.278692668303847 ], [ 4971455.66960615105927, 3907864.062871903646737 ], [ 4971439.90878174547106, 3907823.978890146594495 ], [ 4971492.637174505740404, 3907803.321902369149029 ], [ 4971494.928970418870449, 3907809.516434380784631 ], [ 4971521.148890690878034, 3907799.369777698069811 ], [ 4971535.476817976683378, 3907835.809803454205394 ], [ 4971482.171933310106397, 3907856.82976192003116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971447.982257714495063, 3905659.958047125022858 ], [ 4971464.634721109643579, 3905685.842508892994374 ], [ 4971421.392112082801759, 3905713.071611647959799 ], [ 4971405.026888522319496, 3905687.551844083238393 ], [ 4971447.982257714495063, 3905659.958047125022858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971186.35233074426651, 3902345.147568959277123 ], [ 4971198.104013758711517, 3902375.028143558651209 ], [ 4971172.1669100522995, 3902385.175616635475308 ], [ 4971160.414526456966996, 3902355.659182859584689 ], [ 4971186.35233074426651, 3902345.147568959277123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970911.924844422377646, 3900464.996324938721955 ], [ 4970859.111609258688986, 3900680.099931125994772 ], [ 4970828.597280077636242, 3900672.761013408191502 ], [ 4970881.12228496465832, 3900457.656816365197301 ], [ 4970911.924844422377646, 3900464.996324938721955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970791.448614901863039, 3903795.479024279396981 ], [ 4970817.974248494021595, 3903777.685507485643029 ], [ 4970844.683049541898072, 3903816.696827568113804 ], [ 4970818.444728946313262, 3903834.854979592375457 ], [ 4970791.448614901863039, 3903795.479024279396981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970738.149419859051704, 3898335.241982758045197 ], [ 4970698.947491412051022, 3898351.919815933797508 ], [ 4970677.72487625759095, 3898302.359096460975707 ], [ 4970731.050736592151225, 3898279.881149300839752 ], [ 4970741.948696096427739, 3898305.390315404161811 ], [ 4970727.824834172613919, 3898311.190393299795687 ], [ 4970738.149419859051704, 3898335.241982758045197 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970592.377954144962132, 3904626.78870981791988 ], [ 4970604.717906915582716, 3904649.751650155987591 ], [ 4970586.270722125656903, 3904659.549324177205563 ], [ 4970573.93075813818723, 3904636.586392169818282 ], [ 4970592.377954144962132, 3904626.78870981791988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970558.608627162873745, 3898861.808257292024791 ], [ 4970579.833689397200942, 3898909.912383510731161 ], [ 4970526.795885409228504, 3898933.119425055105239 ], [ 4970512.167775548994541, 3898899.956766461022198 ], [ 4970542.434251882135868, 3898886.539440055377781 ], [ 4970535.836568936705589, 3898871.9621352837421 ], [ 4970558.608627162873745, 3898861.808257292024791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970518.916764844208956, 3903387.87932603713125 ], [ 4970545.916361155919731, 3903425.798478151205927 ], [ 4970517.658747432753444, 3903445.773871568962932 ], [ 4970490.659131471067667, 3903407.854747384320945 ], [ 4970518.916764844208956, 3903387.87932603713125 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970538.796659256331623, 3891758.700089615304023 ], [ 4970499.313193776644766, 3891766.638563377317041 ], [ 4970481.322009201161563, 3891679.943002505227923 ], [ 4970513.312476073391736, 3891673.447286127600819 ], [ 4970520.452106450684369, 3891707.688458481337875 ], [ 4970527.945217776112258, 3891706.24567703763023 ], [ 4970538.796659256331623, 3891758.700089615304023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970395.757069520652294, 3903180.463210773188621 ], [ 4970418.816732517443597, 3903168.489065203815699 ], [ 4970430.582232371903956, 3903191.086721621453762 ], [ 4970407.522583471611142, 3903203.060857246629894 ], [ 4970395.757069520652294, 3903180.463210773188621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970321.632824892178178, 3905766.752905211877078 ], [ 4970333.373981451615691, 3905802.095120701473206 ], [ 4970275.174973868764937, 3905820.92372364224866 ], [ 4970263.433749128133059, 3905785.581533178221434 ], [ 4970321.632824892178178, 3905766.752905211877078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970303.654724512249231, 3898420.016077347565442 ], [ 4970330.782648206688464, 3898390.571066225413233 ], [ 4970372.475341982208192, 3898429.245014471467584 ], [ 4970336.401453227736056, 3898468.141026787925512 ], [ 4970316.273850487545133, 3898449.533644095528871 ], [ 4970325.508494363166392, 3898439.718991953413934 ], [ 4970303.654724512249231, 3898420.016077347565442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970149.848755952902138, 3891770.006090197246522 ], [ 4970116.023378856480122, 3891835.12361212214455 ], [ 4970085.802102555520833, 3891819.411168671678752 ], [ 4970097.077412745915353, 3891797.583934743423015 ], [ 4970084.988752854056656, 3891791.37178740510717 ], [ 4970096.264074062928557, 3891769.544553495943546 ], [ 4970110.65550138335675, 3891776.853276547975838 ], [ 4970121.642094185575843, 3891755.389657296705991 ], [ 4970149.848755952902138, 3891770.006090197246522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969719.967988745309412, 3903135.54012774862349 ], [ 4969755.14388286229223, 3903111.570944155566394 ], [ 4969779.270381833426654, 3903146.571083172224462 ], [ 4969744.094511834904552, 3903170.540235699620098 ], [ 4969719.967988745309412, 3903135.54012774862349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969642.465618763118982, 3897398.161379523575306 ], [ 4969669.903522914275527, 3897356.699993439018726 ], [ 4969705.578308125957847, 3897379.704457542859018 ], [ 4969678.427748883143067, 3897421.530455347150564 ], [ 4969642.465618763118982, 3897398.161379523575306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969502.831424005329609, 3894475.042948614340276 ], [ 4969577.775262329727411, 3894448.960272675380111 ], [ 4969595.543585115112364, 3894499.970306045841426 ], [ 4969557.495582390576601, 3894513.010558171197772 ], [ 4969556.923380624502897, 3894510.824754841160029 ], [ 4969520.027667013928294, 3894523.867130662314594 ], [ 4969502.831424005329609, 3894475.042948614340276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969383.348945974372327, 3897173.75631902879104 ], [ 4969403.203162838704884, 3897185.079901301302016 ], [ 4969406.381987837143242, 3897179.259520029649138 ], [ 4969425.374043298885226, 3897189.489184893202037 ], [ 4969403.413573010824621, 3897228.411719630006701 ], [ 4969364.855371504090726, 3897206.85901702195406 ], [ 4969383.348945974372327, 3897173.75631902879104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969339.108045010827482, 3912716.62863403512165 ], [ 4969378.770006303675473, 3912752.384715974796563 ], [ 4969360.886950826272368, 3912772.015877432189882 ], [ 4969343.930106681771576, 3912756.691919788718224 ], [ 4969313.643993011675775, 3912790.137973437085748 ], [ 4969290.938235386274755, 3912770.07003231626004 ], [ 4969339.108045010827482, 3912716.62863403512165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969221.813959756866097, 3898112.194299024995416 ], [ 4969254.705419656820595, 3898080.573716124519706 ], [ 4969291.217639841139317, 3898118.144334987737238 ], [ 4969246.785030904226005, 3898161.032291592098773 ], [ 4969229.822769210673869, 3898143.523769924882799 ], [ 4969241.36327125877142, 3898132.620473871473223 ], [ 4969221.813959756866097, 3898112.194299024995416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969130.286250123754144, 3891930.208241027779877 ], [ 4969097.425022925250232, 3891940.709468066226691 ], [ 4969072.50162014644593, 3891861.649213476106524 ], [ 4969105.65037830453366, 3891851.512596721295267 ], [ 4969130.286250123754144, 3891930.208241027779877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968512.943078103475273, 3898625.454176443163306 ], [ 4968524.938718486577272, 3898683.007820459548384 ], [ 4968486.618730807676911, 3898690.587180092465132 ], [ 4968474.623011838644743, 3898633.033552923705429 ], [ 4968512.943078103475273, 3898625.454176443163306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968490.835668380372226, 3902354.111141797620803 ], [ 4968438.077817373909056, 3902386.79023268353194 ], [ 4968418.549535810016096, 3902355.804827583488077 ], [ 4968437.000702645629644, 3902344.185030568856746 ], [ 4968431.543787078931928, 3902335.800440106540918 ], [ 4968448.265173872001469, 3902325.27000673301518 ], [ 4968452.285383892245591, 3902331.831422826740891 ], [ 4968470.159341811202466, 3902320.938896612264216 ], [ 4968490.835668380372226, 3902354.111141797620803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968500.68561436701566, 3892489.488367468584329 ], [ 4968513.87289403937757, 3892526.288549865595996 ], [ 4968477.263693425804377, 3892538.968720509670675 ], [ 4968464.364455351606011, 3892502.169061726890504 ], [ 4968500.68561436701566, 3892489.488367468584329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967972.02930570114404, 3905257.878524450119585 ], [ 4968005.468103163875639, 3905236.817058820743114 ], [ 4968034.759015399031341, 3905282.748607523273677 ], [ 4968026.39963654614985, 3905287.83189583523199 ], [ 4968035.301311789080501, 3905302.048521243967116 ], [ 4968009.933987056836486, 3905318.026153462473303 ], [ 4967972.02930570114404, 3905257.878524450119585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967968.413768736645579, 3901705.773375884629786 ], [ 4967989.460234122350812, 3901692.337133853696287 ], [ 4968000.087880179286003, 3901708.377369727939367 ], [ 4968027.477042601443827, 3901690.94675361039117 ], [ 4968047.29424696508795, 3901721.932363575324416 ], [ 4967998.858025864697993, 3901753.163308013230562 ], [ 4967968.413768736645579, 3901705.773375884629786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967933.509331424720585, 3891787.914011139888316 ], [ 4967928.938407212495804, 3891765.694232163950801 ], [ 4967943.636856649070978, 3891762.442598921712488 ], [ 4967939.065304059535265, 3891740.586946003139019 ], [ 4967973.937280976213515, 3891733.364956127945334 ], [ 4967985.935936993919313, 3891791.646381265483797 ], [ 4967949.046749344095588, 3891799.228980357758701 ], [ 4967946.190485234372318, 3891785.023005099967122 ], [ 4967933.509331424720585, 3891787.914011139888316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967905.351071418263018, 3900374.766634075902402 ], [ 4967917.687064241617918, 3900402.46196261793375 ], [ 4967851.396384466439486, 3900431.477373329456896 ], [ 4967838.486860105767846, 3900402.324558975175023 ], [ 4967865.86714054364711, 3900390.719861019402742 ], [ 4967866.441247578710318, 3900391.813248016871512 ], [ 4967905.351071418263018, 3900374.766634075902402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967872.866298482753336, 3891704.423339750617743 ], [ 4967855.867493192665279, 3891705.122124010231346 ], [ 4967854.768769452348351, 3891674.169293113518506 ], [ 4967871.76696284674108, 3891673.834635626059026 ], [ 4967872.866298482753336, 3891704.423339750617743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967788.880049447529018, 3905265.571599846705794 ], [ 4967749.385720061138272, 3905291.7206966499798 ], [ 4967731.290953144431114, 3905265.107792418450117 ], [ 4967771.073883202858269, 3905238.595037549268454 ], [ 4967788.880049447529018, 3905265.571599846705794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967482.718584284186363, 3902796.233515616506338 ], [ 4967492.52164195664227, 3902789.331894170027226 ], [ 4967479.019380645826459, 3902770.373855826910585 ], [ 4967511.888062119483948, 3902747.490167992189527 ], [ 4967550.957388367503881, 3902802.905352565459907 ], [ 4967517.223563044331968, 3902826.515765761956573 ], [ 4967502.572571501135826, 3902805.73508276604116 ], [ 4967493.634695104323328, 3902811.90992746502161 ], [ 4967482.718584284186363, 3902796.233515616506338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967252.323986888863146, 3896746.542016806080937 ], [ 4967260.048087070696056, 3896777.506253891158849 ], [ 4967235.554132424294949, 3896783.654543125070632 ], [ 4967227.541965981945395, 3896752.689820275176316 ], [ 4967252.323986888863146, 3896746.542016806080937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966983.600341163575649, 3907058.994021879974753 ], [ 4966976.109219151549041, 3907061.894327780231833 ], [ 4966984.13715451117605, 3907081.935243649408221 ], [ 4966953.883533734828234, 3907094.264251295942813 ], [ 4966946.142889537848532, 3907074.587964801583439 ], [ 4966937.787369145080447, 3907077.850943262688816 ], [ 4966918.863258363679051, 3907031.209893463179469 ], [ 4966965.251536767929792, 3907012.718050895258784 ], [ 4966983.600341163575649, 3907058.994021879974753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966712.569101030938327, 3897918.849684994202107 ], [ 4966727.456575975753367, 3897972.037828477099538 ], [ 4966693.164766922593117, 3897981.811337479390204 ], [ 4966678.277229629456997, 3897928.623212669510394 ], [ 4966712.569101030938327, 3897918.849684994202107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966616.31178532820195, 3892660.660197850782424 ], [ 4966674.220300309360027, 3892658.573206007946283 ], [ 4966675.860205558128655, 3892711.010513724759221 ], [ 4966617.951803379692137, 3892713.09750210121274 ], [ 4966616.31178532820195, 3892660.660197850782424 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966373.20984110981226, 3906360.285561569500715 ], [ 4966362.837999386712909, 3906363.909463461022824 ], [ 4966367.710915633477271, 3906377.026386308018118 ], [ 4966344.949859607033432, 3906385.36320784734562 ], [ 4966340.937688913196325, 3906374.068391978275031 ], [ 4966315.007503383792937, 3906383.492316133808345 ], [ 4966302.395068529061973, 3906349.606918468605727 ], [ 4966361.17089790571481, 3906327.857626522425562 ], [ 4966373.20984110981226, 3906360.285561569500715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966227.828588702715933, 3907720.074283047579229 ], [ 4966262.090735781937838, 3907720.495789833832532 ], [ 4966261.10863118711859, 3907791.13575496012345 ], [ 4966223.967358455061913, 3907790.709430019836873 ], [ 4966224.277221610769629, 3907777.601196029223502 ], [ 4966215.639570235274732, 3907777.586739578749985 ], [ 4966215.958570080809295, 3907759.016540716402233 ], [ 4966227.187524622306228, 3907759.035334778949618 ], [ 4966227.828588702715933, 3907720.074283047579229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966184.871031304821372, 3907581.996385781560093 ], [ 4966188.846545222215354, 3907615.139044220093638 ], [ 4966159.18434349540621, 3907618.730770715046674 ], [ 4966150.67138056550175, 3907544.06948969187215 ], [ 4966179.469281894154847, 3907540.840440543368459 ], [ 4966181.741012731567025, 3907559.779101425316185 ], [ 4966197.867804945446551, 3907557.985413968097419 ], [ 4966200.134038922376931, 3907580.201255155727267 ], [ 4966184.871031304821372, 3907581.996385781560093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966006.158688661642373, 3904935.553259313106537 ], [ 4966000.133523027412593, 3904922.434495476540178 ], [ 4966011.083595636300743, 3904917.719024991616607 ], [ 4966001.616339301690459, 3904896.583637594711035 ], [ 4966038.790140391327441, 3904879.895527881104499 ], [ 4966058.299888974055648, 3904922.531422707252204 ], [ 4966024.872545877471566, 3904937.405091060325503 ], [ 4966020.855169142596424, 3904929.023375895339996 ], [ 4966006.158688661642373, 3904935.553259313106537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965719.959821542724967, 3894649.491224555298686 ], [ 4965747.03648057859391, 3894650.264287686906755 ], [ 4965746.1114197447896, 3894687.03979864763096 ], [ 4965719.034797731786966, 3894686.266736430581659 ], [ 4965719.959821542724967, 3894649.491224555298686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965681.684565012343228, 3898112.299447217956185 ], [ 4965690.169744402170181, 3898032.204905232414603 ], [ 4965721.271145488135517, 3898035.533513059373945 ], [ 4965712.497849177569151, 3898115.627568931784481 ], [ 4965681.684565012343228, 3898112.299447217956185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965395.002634897828102, 3903606.191644686739892 ], [ 4965373.356727110221982, 3903635.65071238623932 ], [ 4965347.758217860013247, 3903617.038009936455637 ], [ 4965341.120654841884971, 3903625.766264575533569 ], [ 4965294.2376653496176, 3903591.825195733457804 ], [ 4965322.521091843023896, 3903553.637804547324777 ], [ 4965395.002634897828102, 3903606.191644686739892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965336.685214585624635, 3898780.638058392331004 ], [ 4965374.40542626939714, 3898786.890164959710091 ], [ 4965368.295485517010093, 3898824.385526759084314 ], [ 4965355.913714081980288, 3898822.544555933680385 ], [ 4965352.13303885050118, 3898844.750283483415842 ], [ 4965326.506055577658117, 3898840.702816418837756 ], [ 4965336.685214585624635, 3898780.638058392331004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965300.636583285406232, 3902323.203552329912782 ], [ 4965340.662838469259441, 3902325.089843405876309 ], [ 4965339.173355987295508, 3902355.310255086049438 ], [ 4965299.147145714610815, 3902353.423966194037348 ], [ 4965300.636583285406232, 3902323.203552329912782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965187.502337412908673, 3904410.94556222204119 ], [ 4965149.75190912373364, 3904427.998034212272614 ], [ 4965131.9621607568115, 3904389.006935776676983 ], [ 4965169.71263240557164, 3904371.954439192544669 ], [ 4965187.502337412908673, 3904410.94556222204119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964882.523547330871224, 3900882.384892784524709 ], [ 4964897.259813549928367, 3900852.550123434048146 ], [ 4964930.352713220752776, 3900868.989757362753153 ], [ 4964915.616419191472232, 3900898.824508861172944 ], [ 4964882.523547330871224, 3900882.384892784524709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964872.702903009951115, 3904270.970444283913821 ], [ 4964890.852616899646819, 3904265.902076042257249 ], [ 4964901.446781229227781, 3904303.060665904544294 ], [ 4964857.656931376084685, 3904315.37003168463707 ], [ 4964844.773805624805391, 3904269.104465412907302 ], [ 4964870.126045881770551, 3904261.862981334794313 ], [ 4964872.702903009951115, 3904270.970444283913821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964793.83810982760042, 3901049.376948511693627 ], [ 4964837.298600601963699, 3901065.833269403316081 ], [ 4964819.94460378959775, 3901111.68557346239686 ], [ 4964776.771580269560218, 3901095.593876138795167 ], [ 4964793.83810982760042, 3901049.376948511693627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964737.300351964309812, 3904130.924611188471317 ], [ 4964746.16171561088413, 3904171.357512904331088 ], [ 4964722.828679957427084, 3904176.417592968326062 ], [ 4964724.542892832309008, 3904184.795383277814835 ], [ 4964697.465213457122445, 3904190.577689977362752 ], [ 4964686.888968106359243, 3904142.131146233994514 ], [ 4964737.300351964309812, 3904130.924611188471317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964679.621710010804236, 3900620.246480791829526 ], [ 4964704.426074427552521, 3900597.71048921206966 ], [ 4964728.000141000375152, 3900623.601872497238219 ], [ 4964703.483778737485409, 3900646.138308306690305 ], [ 4964679.621710010804236, 3900620.246480791829526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964643.541115831583738, 3903880.614955575671047 ], [ 4964653.33069761749357, 3903881.359027330297977 ], [ 4964654.797568994574249, 3903864.611365453340113 ], [ 4964693.378810492344201, 3903868.315019482281059 ], [ 4964689.278453851118684, 3903910.911731561180204 ], [ 4964641.195663726888597, 3903906.464477486442775 ], [ 4964643.541115831583738, 3903880.614955575671047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964335.781044354662299, 3901319.915950533002615 ], [ 4964294.004866668023169, 3901330.772925905417651 ], [ 4964280.263511537574232, 3901279.408515786286443 ], [ 4964302.736169260926545, 3901273.618417178746313 ], [ 4964306.457306701689959, 3901287.825469090137631 ], [ 4964326.049466290511191, 3901282.394905935041606 ], [ 4964335.781044354662299, 3901319.915950533002615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963802.719799188897014, 3903677.17764786304906 ], [ 4963799.504324269481003, 3903707.395433824509382 ], [ 4963756.316436601802707, 3903702.957515077199787 ], [ 4963759.531863461248577, 3903672.739724032580853 ], [ 4963802.719799188897014, 3903677.17764786304906 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963751.816283376887441, 3893434.850466162897646 ], [ 4963762.472770066000521, 3893436.323830987326801 ], [ 4963758.977864779531956, 3893460.350807121489197 ], [ 4963748.609462575986981, 3893458.877899058628827 ], [ 4963751.816283376887441, 3893434.850466162897646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963542.283943644724786, 3893865.284469328820705 ], [ 4963565.322155967354774, 3893870.054398429580033 ], [ 4963563.870339597575366, 3893877.334691516123712 ], [ 4963586.332969998009503, 3893881.73960381327197 ], [ 4963576.171382891014218, 3893931.9733940763399 ], [ 4963561.484393778257072, 3893929.037242755759507 ], [ 4963563.228288820944726, 3893919.208506587892771 ], [ 4963532.414511962793767, 3893912.969832689035684 ], [ 4963542.283943644724786, 3893865.284469328820705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963485.198272640816867, 3899945.066039787139744 ], [ 4963512.044061527587473, 3899906.146305812522769 ], [ 4963549.732167148031294, 3899932.058838949538767 ], [ 4963523.174354750663042, 3899970.978988870978355 ], [ 4963485.198272640816867, 3899945.066039787139744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963434.04839207418263, 3901156.083264255430549 ], [ 4963417.889951824210584, 3901175.720953381154686 ], [ 4963390.566066991537809, 3901153.102006363216788 ], [ 4963406.724500796757638, 3901133.46430106787011 ], [ 4963434.04839207418263, 3901156.083264255430549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962728.662542978301644, 3903266.943434231448919 ], [ 4962755.156349648721516, 3903266.620208482723683 ], [ 4962755.694609820842743, 3903291.017812709324062 ], [ 4962729.488234953954816, 3903291.705612470861524 ], [ 4962728.662542978301644, 3903266.943434231448919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962726.872136325575411, 3900695.085874407552183 ], [ 4962762.540532687678933, 3900723.178981950040907 ], [ 4962753.595184803009033, 3900734.453208385035396 ], [ 4962746.40368830319494, 3900728.980148263275623 ], [ 4962727.647340567782521, 3900752.619670173618942 ], [ 4962699.170455733314157, 3900729.999653996434063 ], [ 4962726.872136325575411, 3900695.085874407552183 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962579.980808478780091, 3896394.849613498430699 ], [ 4962555.167087150737643, 3896422.12118067080155 ], [ 4962503.390246676281095, 3896375.797231670934707 ], [ 4962537.148428189568222, 3896338.707859737798572 ], [ 4962560.160074475221336, 3896359.498591151088476 ], [ 4962551.216162253171206, 3896368.952212749049067 ], [ 4962579.980808478780091, 3896394.849613498430699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962492.899821533821523, 3897017.741436413954943 ], [ 4962530.630992319434881, 3897018.891743671614677 ], [ 4962531.223283484578133, 3897008.332895874045789 ], [ 4962548.50439129024744, 3897009.087700118776411 ], [ 4962547.897547943517566, 3897029.113893953152001 ], [ 4962562.010795875452459, 3897029.499710501171649 ], [ 4962561.406181364320219, 3897048.069389428943396 ], [ 4962559.389924561604857, 3897048.066290756687522 ], [ 4962556.095621790736914, 3897129.990384270902723 ], [ 4962550.910977240651846, 3897129.982417592778802 ], [ 4962550.013861074112356, 3897151.464685198385268 ], [ 4962561.534724564291537, 3897151.846518646925688 ], [ 4962560.93011287599802, 3897170.4161989223212 ], [ 4962551.425504987128079, 3897170.037463668268174 ], [ 4962550.8175437618047, 3897190.791916833724827 ], [ 4962561.474284926429391, 3897191.172422581817955 ], [ 4962560.869114461354911, 3897210.106232046149671 ], [ 4962546.75596134737134, 3897209.720416061580181 ], [ 4962546.446108883246779, 3897223.920994801912457 ], [ 4962491.434813748113811, 3897221.651757711544633 ], [ 4962494.125460716895759, 3897157.569075980689377 ], [ 4962501.90186073910445, 3897157.945138684008271 ], [ 4962502.501402463763952, 3897142.6526158307679 ], [ 4962491.268569906242192, 3897142.271249612793326 ], [ 4962493.671746179461479, 3897077.824000214692205 ], [ 4962501.736205643042922, 3897078.20050481101498 ], [ 4962502.335748910903931, 3897062.907982659060508 ], [ 4962491.102883024141192, 3897062.526616543531418 ], [ 4962492.899821533821523, 3897017.741436413954943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962430.681819532066584, 3900026.815459182485938 ], [ 4962447.635588797740638, 3900051.966426096390933 ], [ 4962409.579961039125919, 3900077.397236417513341 ], [ 4962392.626172316260636, 3900052.246293120551854 ], [ 4962430.681819532066584, 3900026.815459182485938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962332.541255684569478, 3899604.638402194716036 ], [ 4962316.079661473631859, 3899634.107785732019693 ], [ 4962291.907480509020388, 3899620.598049181513488 ], [ 4962287.575668406672776, 3899628.238167516887188 ], [ 4962271.173046856187284, 3899619.109875184018165 ], [ 4962291.67840969748795, 3899581.999906467273831 ], [ 4962332.541255684569478, 3899604.638402194716036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961898.791329797357321, 3894466.474972771946341 ], [ 4961896.414691464975476, 3894514.172279604244977 ], [ 4961869.338891418650746, 3894512.674838605802506 ], [ 4961871.714931606315076, 3894465.341657593846321 ], [ 4961898.791329797357321, 3894466.474972771946341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961878.36636486556381, 3896354.089907590299845 ], [ 4961889.145107290707529, 3896273.99773269938305 ], [ 4961924.855522075667977, 3896278.78542651841417 ], [ 4961919.027413037605584, 3896323.200395061634481 ], [ 4961916.723608285188675, 3896322.832780227530748 ], [ 4961911.772873344831169, 3896358.509972910862416 ], [ 4961878.36636486556381, 3896354.089907590299845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961835.38859941996634, 3897728.614063385874033 ], [ 4961846.675641230307519, 3897692.946397340856493 ], [ 4961872.586214321665466, 3897700.99639666127041 ], [ 4961869.403030665591359, 3897710.823088084813207 ], [ 4961917.193354282528162, 3897725.824667965527624 ], [ 4961909.089423591271043, 3897751.665617700200528 ], [ 4961835.38859941996634, 3897728.614063385874033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961159.652093593031168, 3892890.146206060890108 ], [ 4961163.666309850290418, 3892902.896668457891792 ], [ 4961176.059745808131993, 3892898.909656021744013 ], [ 4961180.934410131536424, 3892914.210299572441727 ], [ 4961210.044661406427622, 3892904.786207491531968 ], [ 4961218.646492777392268, 3892932.108644105028361 ], [ 4961128.433994741179049, 3892961.104969944804907 ], [ 4961115.242766788229346, 3892920.302995557896793 ], [ 4961118.41273686196655, 3892919.579439019784331 ], [ 4961113.825039190240204, 3892905.007489634677768 ], [ 4961159.652093593031168, 3892890.146206060890108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960992.656603156588972, 3907240.998434165492654 ], [ 4961008.746057997457683, 3907264.326671049464494 ], [ 4961022.004184184595942, 3907255.242997353896499 ], [ 4961030.91106235794723, 3907268.00079524051398 ], [ 4961039.26903853751719, 3907262.551193682476878 ], [ 4961078.63032912183553, 3907319.77820175467059 ], [ 4961040.008798983879387, 3907346.30260336631909 ], [ 4961029.090778501704335, 3907330.628769889473915 ], [ 4961014.39197725430131, 3907340.438571993727237 ], [ 4960960.664904205128551, 3907262.434910382609814 ], [ 4960992.656603156588972, 3907240.998434165492654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960364.838729588314891, 3893481.051322585437447 ], [ 4960378.091235338710248, 3893480.34235032973811 ], [ 4960377.52568484749645, 3893473.058951898943633 ], [ 4960392.21856989338994, 3893472.352083030622452 ], [ 4960391.377141525968909, 3893456.69332116143778 ], [ 4960408.951318054459989, 3893455.626527842134237 ], [ 4960412.87987254653126, 3893527.365617868024856 ], [ 4960380.900962649844587, 3893529.139695176389068 ], [ 4960381.180026742629707, 3893535.330290570855141 ], [ 4960367.639473689720035, 3893536.038842168170959 ], [ 4960364.838729588314891, 3893481.051322585437447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959770.533775141462684, 3907751.552078989800066 ], [ 4959745.180989366024733, 3907762.439700896851718 ], [ 4959733.9890650017187, 3907736.5703055979684 ], [ 4959759.341870605945587, 3907725.682673296891153 ], [ 4959770.533775141462684, 3907751.552078989800066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959741.26588552352041, 3898634.037460771854967 ], [ 4959738.899157639592886, 3898677.729655503295362 ], [ 4959718.739375446923077, 3898676.608405380044132 ], [ 4959718.148223956115544, 3898687.167325582355261 ], [ 4959690.78796964418143, 3898686.035792119801044 ], [ 4959693.458262323401868, 3898631.42013139417395 ], [ 4959741.26588552352041, 3898634.037460771854967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959605.808041742071509, 3907977.078206418082118 ], [ 4959557.4354765471071, 3907978.465725535526872 ], [ 4959556.609095379710197, 3907952.247049079742283 ], [ 4959566.974728923290968, 3907951.897697171662003 ], [ 4959566.148356171324849, 3907925.679020849987864 ], [ 4959603.867971667088568, 3907924.276308862026781 ], [ 4959605.808041742071509, 3907977.078206418082118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959186.587143156677485, 3899007.938514858018607 ], [ 4959146.282916159369051, 3898995.13711085729301 ], [ 4959158.434018178842962, 3898956.556473833043128 ], [ 4959199.025799307972193, 3898969.722431625239551 ], [ 4959186.587143156677485, 3899007.938514858018607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958806.756954832933843, 3905557.02296850644052 ], [ 4958822.852882103994489, 3905577.800957737956196 ], [ 4958807.86395016964525, 3905589.068076344206929 ], [ 4958823.385494891554117, 3905608.752869387622923 ], [ 4958852.211581669747829, 3905586.217045915313065 ], [ 4958863.708491876721382, 3905601.16252283193171 ], [ 4958808.650934005156159, 3905644.053014758974314 ], [ 4958765.536011047661304, 3905589.008948589675128 ], [ 4958806.756954832933843, 3905557.02296850644052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958661.179511635564268, 3899676.10887317918241 ], [ 4958675.653964796103537, 3899622.966035273391753 ], [ 4958711.065888015553355, 3899632.482749618589878 ], [ 4958702.960536473430693, 3899661.965988852083683 ], [ 4958725.99259939417243, 3899668.188304401468486 ], [ 4958719.623413983732462, 3899691.847878922242671 ], [ 4958661.179511635564268, 3899676.10887317918241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958626.912322549149394, 3905676.57143512647599 ], [ 4958604.424326539970934, 3905696.931522721424699 ], [ 4958563.884897548705339, 3905653.179432006552815 ], [ 4958586.661349952220917, 3905632.45558043057099 ], [ 4958626.912322549149394, 3905676.57143512647599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958635.792912951670587, 3898256.69514953205362 ], [ 4958628.554341832175851, 3898283.994814470876008 ], [ 4958638.631616762839258, 3898286.557738503441215 ], [ 4958630.525942967273295, 3898316.040975878946483 ], [ 4958557.682885547168553, 3898296.640893447678536 ], [ 4958566.078530916012824, 3898265.701518074609339 ], [ 4958599.189105965197086, 3898274.486620401032269 ], [ 4958606.137601684778929, 3898248.643063630443066 ], [ 4958635.792912951670587, 3898256.69514953205362 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958053.091194793581963, 3907319.833412077277899 ], [ 4958069.755012702196836, 3907346.073727476410568 ], [ 4958015.57752885017544, 3907380.592059279326349 ], [ 4957998.913679580204189, 3907354.351776916533709 ], [ 4958053.091194793581963, 3907319.833412077277899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957853.62868893891573, 3899022.111902799922973 ], [ 4957861.146852031350136, 3899000.274347905535251 ], [ 4957848.768123883754015, 3898995.88793059438467 ], [ 4957854.550755552016199, 3898979.509959552437067 ], [ 4957870.38419327698648, 3898984.993475869763643 ], [ 4957882.527512311004102, 3898950.781812905333936 ], [ 4957914.769939471036196, 3898962.113802642561495 ], [ 4957896.266406418755651, 3899013.795014447998255 ], [ 4957891.084607184864581, 3899011.967300401069224 ], [ 4957883.855927301570773, 3899032.712851912714541 ], [ 4957853.62868893891573, 3899022.111902799922973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957736.691115085035563, 3901570.135950140189379 ], [ 4957717.182522166520357, 3901515.125772720668465 ], [ 4957767.60480893868953, 3901497.351845362223685 ], [ 4957774.203318466432393, 3901515.931465045548975 ], [ 4957766.424157334491611, 3901518.469807378016412 ], [ 4957784.784654305316508, 3901570.565416305325925 ], [ 4957756.83644169382751, 3901580.358960413374007 ], [ 4957751.38543844409287, 3901565.058076926507056 ], [ 4957736.691115085035563, 3901570.135950140189379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957548.734665775671601, 3899790.012690658681095 ], [ 4957591.070262440480292, 3899791.162289932370186 ], [ 4957589.87195447832346, 3899825.388896937482059 ], [ 4957520.177226742729545, 3899823.109974840655923 ], [ 4957521.078593613579869, 3899795.437305470462888 ], [ 4957548.437806691043079, 3899796.566631048452109 ], [ 4957548.734665775671601, 3899790.012690658681095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957489.695750289596617, 3893805.83007840346545 ], [ 4957457.131418376229703, 3893814.889419674873352 ], [ 4957434.765268439427018, 3893738.028134447522461 ], [ 4957467.330176365561783, 3893728.604638390708715 ], [ 4957489.695750289596617, 3893805.83007840346545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957326.767829231917858, 3905302.652232049964368 ], [ 4957343.434590391814709, 3905328.163803283590823 ], [ 4957303.08670081757009, 3905354.327092351391912 ], [ 4957283.259814335033298, 3905323.349338743835688 ], [ 4957300.551350272260606, 3905312.448592518921942 ], [ 4957303.712428499013186, 3905317.18654025811702 ], [ 4957326.767829231917858, 3905302.652232049964368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957317.418633501045406, 3907333.7652452965267 ], [ 4957289.173024418763816, 3907355.211118521634489 ], [ 4957267.90406677685678, 3907327.14445599168539 ], [ 4957296.149688296951354, 3907305.698560770135373 ], [ 4957317.418633501045406, 3907333.7652452965267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956691.919077731668949, 3905461.661049968097359 ], [ 4956718.655329063534737, 3905494.104013388976455 ], [ 4956694.729859601706266, 3905513.735535184387118 ], [ 4956667.993599004112184, 3905481.29259517788887 ], [ 4956691.919077731668949, 3905461.661049968097359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956539.839275512844324, 3896502.398562199436128 ], [ 4956543.901991054415703, 3896479.463747816160321 ], [ 4956570.10814250446856, 3896483.86772099789232 ], [ 4956566.044926857575774, 3896507.166660193819553 ], [ 4956539.839275512844324, 3896502.398562199436128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956196.19184482190758, 3894074.301063594873995 ], [ 4956232.157768973149359, 3894107.119434778578579 ], [ 4956209.368181593716145, 3894131.850549002643675 ], [ 4956173.401789790950716, 3894099.396336034405977 ], [ 4956196.19184482190758, 3894074.301063594873995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955959.605709093622863, 3904619.56208062870428 ], [ 4955940.004988944157958, 3904634.830277232918888 ], [ 4955900.619425720535219, 3904584.89350145868957 ], [ 4955920.220159804448485, 3904569.625276595819741 ], [ 4955959.605709093622863, 3904619.56208062870428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955700.834084874950349, 3905663.921554111409932 ], [ 4955664.229708863422275, 3905691.548631648067385 ], [ 4955650.431235324591398, 3905673.688527862075716 ], [ 4955660.230665821582079, 3905666.418448030017316 ], [ 4955635.796401507221162, 3905634.343612644821405 ], [ 4955662.601370483636856, 3905613.986572472378612 ], [ 4955700.834084874950349, 3905663.921554111409932 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955688.542954708449543, 3893905.05431676004082 ], [ 4955659.435729953460395, 3893914.484392915852368 ], [ 4955647.097628335468471, 3893876.23508286755532 ], [ 4955676.204890123568475, 3893866.804993567056954 ], [ 4955688.542954708449543, 3893905.05431676004082 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955036.170795361511409, 3894964.933919538278133 ], [ 4955019.77110112272203, 3894949.25576666276902 ], [ 4955039.672815084457397, 3894928.889552 ], [ 4955058.661379620432854, 3894947.484004464931786 ], [ 4955063.852857423946261, 3894942.392728357575834 ], [ 4955078.813609444536269, 3894956.976710315328091 ], [ 4955074.198249690234661, 3894962.068708471488208 ], [ 4955099.229125000536442, 3894986.132728257682174 ], [ 4955079.615466693416238, 3895006.499262023251504 ], [ 4955060.626500444486737, 3894988.268922517076135 ], [ 4955054.56902439147234, 3894994.815626324620098 ], [ 4955030.113777592778206, 3894971.116500355303288 ], [ 4955036.170795361511409, 3894964.933919538278133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954959.962089826352894, 3896241.839074677787721 ], [ 4954927.118992232717574, 3896246.531588170677423 ], [ 4954921.410083644092083, 3896205.013701490592211 ], [ 4954954.253230940550566, 3896200.321181144099683 ], [ 4954959.962089826352894, 3896241.839074677787721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954623.784849622286856, 3895336.194512777030468 ], [ 4954594.728780425153673, 3895305.935743734706193 ], [ 4954624.14523596316576, 3895277.934311861172318 ], [ 4954661.83210036624223, 3895316.942935473285615 ], [ 4954640.49068446829915, 3895337.307645487599075 ], [ 4954632.148393445648253, 3895328.194058174267411 ], [ 4954623.784849622286856, 3895336.194512777030468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954464.135725586675107, 3894457.353597705252469 ], [ 4954481.108571864664555, 3894475.94514579186216 ], [ 4954459.190948744304478, 3894495.945149165578187 ], [ 4954442.218099983409047, 3894477.353614700958133 ], [ 4954464.135725586675107, 3894457.353597705252469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953267.661916229873896, 3893849.627527405507863 ], [ 4953279.216424126178026, 3893823.059894934296608 ], [ 4953312.327680331654847, 3893837.300384580623358 ], [ 4953314.927269164472818, 3893831.477425644174218 ], [ 4953352.356952223926783, 3893847.907888157758862 ], [ 4953337.62534720543772, 3893881.390143090393394 ], [ 4953316.318979696370661, 3893872.261502253357321 ], [ 4953313.140647447668016, 3893880.268543268088251 ], [ 4953295.865524741820991, 3893872.601241861470044 ], [ 4953299.90936747379601, 3893863.502844509668648 ], [ 4953267.661916229873896, 3893849.627527405507863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953002.78382848855108, 3891529.450897186528891 ], [ 4953024.651138546876609, 3891553.145066757686436 ], [ 4953001.578121237456799, 3891574.601373346056789 ], [ 4952979.710808363743126, 3891550.90722225420177 ], [ 4953002.78382848855108, 3891529.450897186528891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952837.700727663934231, 3892268.436879008542746 ], [ 4952808.873557722195983, 3892284.060544840525836 ], [ 4952769.488356339745224, 3892213.373437287285924 ], [ 4952798.316006330773234, 3892197.385601999703795 ], [ 4952837.700727663934231, 3892268.436879008542746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952439.1846829270944, 3890607.547040992416441 ], [ 4952475.197472550906241, 3890607.952969135250896 ], [ 4952473.94652062561363, 3890692.793346957769245 ], [ 4952437.934267007745802, 3890692.023292928934097 ], [ 4952439.1846829270944, 3890607.547040992416441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993931.586197759024799, 3908669.215275494381785 ], [ 4993970.21964546199888, 3908649.65662703383714 ], [ 4994020.624957391992211, 3908748.473150406498462 ], [ 4993997.560503728687763, 3908760.06294968072325 ], [ 4993985.531321355141699, 3908736.725867769215256 ], [ 4993969.963407750241458, 3908744.330522145610303 ], [ 4993931.586197759024799, 3908669.215275494381785 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952108.366649749688804, 3891423.540516025852412 ], [ 4952138.6381655940786, 3891405.004740190226585 ], [ 4952142.089055625721812, 3891410.470627846196294 ], [ 4952160.828763443976641, 3891398.840064771007746 ], [ 4952200.513661630451679, 3891461.879896939266473 ], [ 4952154.38514831662178, 3891490.592961342539638 ], [ 4952125.052438175305724, 3891444.3149792579934 ], [ 4952122.457895074039698, 3891445.76851261453703 ], [ 4952108.366649749688804, 3891423.540516025852412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951747.690792831592262, 3888356.080019411630929 ], [ 4951777.666216470301151, 3888347.374973930884153 ], [ 4951796.035382627509534, 3888410.025772544555366 ], [ 4951766.060022815130651, 3888418.730797860305756 ], [ 4951747.690792831592262, 3888356.080019411630929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951607.869033712893724, 3894804.268312566913664 ], [ 4951615.036002435721457, 3894834.863234708085656 ], [ 4951583.629201034083962, 3894842.110355355776846 ], [ 4951576.462198531255126, 3894811.51544145680964 ], [ 4951607.869033712893724, 3894804.268312566913664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992531.751077640801668, 3912574.073161884211004 ], [ 4992529.883763242512941, 3912626.867618248797953 ], [ 4992474.329728483222425, 3912624.899603935424238 ], [ 4992475.57871476188302, 3912588.125394641421735 ], [ 4992501.197227837517858, 3912588.92159670079127 ], [ 4992501.527591823600233, 3912572.900582916103303 ], [ 4992531.751077640801668, 3912574.073161884211004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951177.8496537739411, 3894495.368993673473597 ], [ 4951145.870495892129838, 3894498.974699170794338 ], [ 4951148.435128364712, 3894524.102440475020558 ], [ 4951087.358342385850847, 3894530.588899989146739 ], [ 4951081.940895500592887, 3894480.33310978487134 ], [ 4951149.932146796956658, 3894473.126070055179298 ], [ 4951149.07564870454371, 3894466.206669881939888 ], [ 4951174.428554337471724, 3894463.321849018801004 ], [ 4951177.8496537739411, 3894495.368993673473597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950866.465061662718654, 3890822.424803778529167 ], [ 4950879.985455724410713, 3890841.010230684187263 ], [ 4950891.230312125757337, 3890833.011808470822871 ], [ 4950902.448670200072229, 3890849.0458126636222 ], [ 4950892.645536663010716, 3890855.953435599803925 ], [ 4950900.987674480304122, 3890867.614731865469366 ], [ 4950868.694876662455499, 3890890.519205007236451 ], [ 4950850.860172832384706, 3890865.374728069640696 ], [ 4950828.370517805218697, 3890881.371611311566085 ], [ 4950813.124693713150918, 3890859.871288280468434 ], [ 4950866.465061662718654, 3890822.424803778529167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950788.473478172905743, 3893367.595879528205842 ], [ 4950787.291968561708927, 3893394.175967766903341 ], [ 4950767.127859161235392, 3893393.061435136944056 ], [ 4950768.309348882175982, 3893366.481346019543707 ], [ 4950788.473478172905743, 3893367.595879528205842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950545.127346155233681, 3890651.660843402612954 ], [ 4950567.592803993262351, 3890657.875506892800331 ], [ 4950564.122043843381107, 3890670.252074599731714 ], [ 4950541.656595553271472, 3890664.037413976155221 ], [ 4950545.127346155233681, 3890651.660843402612954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950499.392725208774209, 3895084.875152519438416 ], [ 4950555.309664378874004, 3895053.985092275310308 ], [ 4950580.034187819808722, 3895098.43578760093078 ], [ 4950524.117312527261674, 3895129.325797227676958 ], [ 4950499.392725208774209, 3895084.875152519438416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950480.960603735409677, 3893227.070263602770865 ], [ 4950506.30985015630722, 3893228.554352102335542 ], [ 4950504.552855306304991, 3893254.769695506431162 ], [ 4950479.203633513301611, 3893253.285608638077974 ], [ 4950480.960603735409677, 3893227.070263602770865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950105.342971237376332, 3890240.813056790269911 ], [ 4950113.383069050498307, 3890265.946512513794005 ], [ 4950088.885571518912911, 3890273.566911425441504 ], [ 4950080.845062652602792, 3890248.797590415459126 ], [ 4950105.342971237376332, 3890240.813056790269911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989458.627713750116527, 3908526.035867290105671 ], [ 4989437.894231474027038, 3908527.439772543031722 ], [ 4989438.446956078521907, 3908536.544496211223304 ], [ 4989413.682693098671734, 3908537.938190897461027 ], [ 4989410.928261721506715, 3908488.773270845878869 ], [ 4989456.425158560276031, 3908486.339797233697027 ], [ 4989458.627713750116527, 3908526.035867290105671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989219.841841783374548, 3908680.915470988024026 ], [ 4989243.740383420139551, 3908680.247672780882567 ], [ 4989243.995122171007097, 3908693.357100603636354 ], [ 4989271.060684370808303, 3908692.69734145514667 ], [ 4989272.387776197865605, 3908737.124911738559604 ], [ 4989254.535424250178039, 3908737.807986766565591 ], [ 4989254.547405369579792, 3908733.07428968232125 ], [ 4989221.434822308830917, 3908734.082899845205247 ], [ 4989219.841841783374548, 3908680.915470988024026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949529.553717236034572, 3890653.122363277245313 ], [ 4949510.821902816183865, 3890657.836331207770854 ], [ 4949505.945162191055715, 3890637.80416648555547 ], [ 4949524.964712196961045, 3890633.454625773243606 ], [ 4949529.553717236034572, 3890653.122363277245313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988890.820897310972214, 3907625.920886658132076 ], [ 4988911.082811727188528, 3907583.368385883979499 ], [ 4988954.50792340002954, 3907603.869197506923229 ], [ 4988934.245955425314605, 3907646.421666081529111 ], [ 4988890.820897310972214, 3907625.920886658132076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949336.44937701150775, 3892102.514054617378861 ], [ 4949364.104463252238929, 3892103.999472964555025 ], [ 4949362.633173727430403, 3892133.492326156236231 ], [ 4949334.978117749094963, 3892132.006909292191267 ], [ 4949336.44937701150775, 3892102.514054617378861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949075.528154042549431, 3888676.52722896495834 ], [ 4949049.874363930895925, 3888686.696265159640461 ], [ 4949037.80391716491431, 3888656.825328058563173 ], [ 4949063.457731178961694, 3888646.65628053015098 ], [ 4949075.528154042549431, 3888676.52722896495834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988081.201209855265915, 3908773.097813397180289 ], [ 4988084.006047705188394, 3908802.963683886453509 ], [ 4988030.154976584017277, 3908807.563512087333947 ], [ 4988027.637990388087928, 3908777.698362693656236 ], [ 4988081.201209855265915, 3908773.097813397180289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987944.515800539404154, 3905495.565912558697164 ], [ 4987941.854698239825666, 3905523.597480372525752 ], [ 4987949.627428939566016, 3905524.34503666497767 ], [ 4987947.265115147456527, 3905548.007760652340949 ], [ 4987938.052663175389171, 3905547.256631966214627 ], [ 4987935.98372873198241, 3905568.735292608384043 ], [ 4987906.908471168018878, 3905565.750096445437521 ], [ 4987908.977382579818368, 3905544.271433604881167 ], [ 4987892.856038762256503, 3905542.774918507318944 ], [ 4987894.921328261494637, 3905522.752774378284812 ], [ 4987875.057577009312809, 3905520.882856516167521 ], [ 4987878.015584649518132, 3905489.21069744694978 ], [ 4987944.515800539404154, 3905495.565912558697164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987887.660875228233635, 3907521.457151771057397 ], [ 4987853.09820665512234, 3907526.105180359445512 ], [ 4987842.075813128612936, 3907442.69150719512254 ], [ 4987876.637684076093137, 3907438.407594966702163 ], [ 4987887.660875228233635, 3907521.457151771057397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987218.89927560929209, 3905255.99651755252853 ], [ 4987224.003681725822389, 3905288.05266801500693 ], [ 4987234.949297069571912, 3905286.623015098739415 ], [ 4987238.350132665596902, 3905308.843420634511858 ], [ 4987227.116578034125268, 3905310.27236519055441 ], [ 4987229.667878355830908, 3905326.664571378845721 ], [ 4987185.595755527727306, 3905333.110771687235683 ], [ 4987174.827039591036737, 3905262.442735239397734 ], [ 4987218.89927560929209, 3905255.99651755252853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986986.193489498458803, 3908803.896665806882083 ], [ 4986995.698998156934977, 3908802.099259672686458 ], [ 4987000.244976686313748, 3908826.871415680274367 ], [ 4986957.902546643279493, 3908834.778753514401615 ], [ 4986953.355640025809407, 3908810.370735188946128 ], [ 4986966.02994270529598, 3908807.852802040986717 ], [ 4986964.041285552084446, 3908796.923953646793962 ], [ 4986984.204840242862701, 3908792.967815953306854 ], [ 4986986.193489498458803, 3908803.896665806882083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948253.107366790063679, 3891365.136913802474737 ], [ 4948249.628621228970587, 3891386.61697919247672 ], [ 4948218.807318083010614, 3891381.488251244649291 ], [ 4948222.286039671860635, 3891360.008181928656995 ], [ 4948253.107366790063679, 3891365.136913802474737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986908.872148969210684, 3908398.427829808555543 ], [ 4986957.846204604022205, 3908386.895304925739765 ], [ 4986967.824376770295203, 3908427.338441305793822 ], [ 4986941.608109653927386, 3908433.828721124213189 ], [ 4986942.747304393909872, 3908438.929364645853639 ], [ 4986919.988699299283326, 3908444.335721419658512 ], [ 4986908.872148969210684, 3908398.427829808555543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986822.536694605834782, 3908736.132191134151071 ], [ 4986863.724036611616611, 3908729.678350563161075 ], [ 4986868.541164089925587, 3908761.369668270461261 ], [ 4986877.18205682747066, 3908759.934241469949484 ], [ 4986880.581844940781593, 3908782.518779842182994 ], [ 4986874.245136070996523, 3908783.595700483303517 ], [ 4986886.154151729308069, 3908858.636150731239468 ], [ 4986883.274160953238606, 3908858.993248207960278 ], [ 4986888.659944475628436, 3908893.599023963790387 ], [ 4986845.169569998979568, 3908900.047203725203872 ], [ 4986836.096898809075356, 3908842.492068719584495 ], [ 4986838.976890712976456, 3908842.134966196492314 ], [ 4986822.536694605834782, 3908736.132191134151071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986752.464089530520141, 3895665.830818700604141 ], [ 4986789.882375062443316, 3895677.574180003255606 ], [ 4986784.658390946686268, 3895693.583160417154431 ], [ 4986747.239238269627094, 3895682.203934037126601 ], [ 4986752.464089530520141, 3895665.830818700604141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986590.169753093272448, 3902823.8810188700445 ], [ 4986617.526472847908735, 3902824.311677454505116 ], [ 4986616.866383571177721, 3902858.902561980765313 ], [ 4986589.509699020534754, 3902858.471904060337692 ], [ 4986590.169753093272448, 3902823.8810188700445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948006.156287406571209, 3891706.078095930628479 ], [ 4948007.891374197788537, 3891699.525515384506434 ], [ 4947983.985365505330265, 3891693.67568241385743 ], [ 4947992.373776996508241, 3891659.820104105398059 ], [ 4948019.160032506100833, 3891666.401068394072354 ], [ 4948020.02757865563035, 3891663.124778598081321 ], [ 4948055.742569711059332, 3891671.899440322071314 ], [ 4948044.751438433304429, 3891715.583866173401475 ], [ 4948006.156287406571209, 3891706.078095930628479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986497.768534042872488, 3904586.782026183791459 ], [ 4986500.178884322755039, 3904661.434911176096648 ], [ 4986475.412977705709636, 3904662.103051091078669 ], [ 4986474.888328894041479, 3904640.982129139825702 ], [ 4986445.22628032322973, 3904642.002545291557908 ], [ 4986445.499217518605292, 3904648.193449227605015 ], [ 4986424.188763041049242, 3904648.870019904337823 ], [ 4986422.574952381663024, 3904601.893095576670021 ], [ 4986436.973622771911323, 3904601.563887997996062 ], [ 4986436.716582456603646, 3904588.818649470806122 ], [ 4986497.768534042872488, 3904586.782026183791459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986345.421563737094402, 3910536.337898056488484 ], [ 4986322.488087798468769, 3910495.863558538258076 ], [ 4986345.55125586129725, 3910482.810634396970272 ], [ 4986348.41783092264086, 3910487.915444505400956 ], [ 4986376.092599425464869, 3910472.688921951223165 ], [ 4986395.011413835920393, 3910506.599174557253718 ], [ 4986376.849473085254431, 3910516.750871512107551 ], [ 4986384.875147419050336, 3910531.335655125323683 ], [ 4986367.866560697555542, 3910540.761888070497662 ], [ 4986360.700144430622458, 3910527.999857789836824 ], [ 4986345.421563737094402, 3910536.337898056488484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986182.946828065440059, 3909983.190648928284645 ], [ 4986202.244802271015942, 3909979.595964998006821 ], [ 4986200.259444740600884, 3909967.210641470272094 ], [ 4986219.556552230380476, 3909963.980100946500897 ], [ 4986221.543662241660058, 3909975.637164019513875 ], [ 4986237.097208990715444, 3909972.761716508772224 ], [ 4986243.910751136019826, 3910012.468702004291117 ], [ 4986216.261119346134365, 3910017.135559098795056 ], [ 4986217.964731727726758, 3910026.971271430607885 ], [ 4986191.466709656640887, 3910031.640938809141517 ], [ 4986182.946828065440059, 3909983.190648928284645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985906.836078432388604, 3910707.149689305108041 ], [ 4985931.320782066322863, 3910701.382494116667658 ], [ 4985928.471683104522526, 3910688.995105813257396 ], [ 4985949.49909033998847, 3910684.312003922648728 ], [ 4985963.465393705293536, 3910742.606955837458372 ], [ 4985943.0129325510934, 3910747.655564519111067 ], [ 4985945.294130547903478, 3910756.764388278592378 ], [ 4985920.23369484487921, 3910762.530184965580702 ], [ 4985906.836078432388604, 3910707.149689305108041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985840.710307735949755, 3910071.214170571416616 ], [ 4985864.658313536085188, 3910049.423770463559777 ], [ 4985868.965388845652342, 3910054.167859070468694 ], [ 4985884.834781310521066, 3910039.640709332656115 ], [ 4985915.846201123669744, 3910073.579707481432706 ], [ 4985876.029687494039536, 3910109.533077375497669 ], [ 4985840.710307735949755, 3910071.214170571416616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985739.928949528373778, 3908638.837369336746633 ], [ 4985684.626175038516521, 3908648.536271908320487 ], [ 4985680.364246205426753, 3908624.857423536945134 ], [ 4985830.431493131443858, 3908598.271880232263356 ], [ 4985832.989449875429273, 3908612.115072530694306 ], [ 4985869.570135021582246, 3908605.648636125493795 ], [ 4985885.195110608823597, 3908693.078078525606543 ], [ 4985850.918710737489164, 3908699.185901184100658 ], [ 4985854.893441186286509, 3908722.499954752624035 ], [ 4985839.91591121070087, 3908725.012874838896096 ], [ 4985841.618870168924332, 3908735.212686087936163 ], [ 4985789.197119458578527, 3908744.190034240018576 ], [ 4985787.777679449878633, 3908735.811571124941111 ], [ 4985772.224340418353677, 3908738.323145850095898 ], [ 4985765.976849419996142, 3908702.259000561200082 ], [ 4985751.863051940687001, 3908704.774043702054769 ], [ 4985739.928949528373778, 3908638.837369336746633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985531.163920741528273, 3909733.284601000603288 ], [ 4985536.225899457000196, 3909783.547064599581063 ], [ 4985494.469919454306364, 3909787.816782110836357 ], [ 4985489.119962776079774, 3909737.553637881297618 ], [ 4985531.163920741528273, 3909733.284601000603288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985318.976999227888882, 3900797.343286395072937 ], [ 4985281.50708962418139, 3900809.998574385419488 ], [ 4985270.066164809279144, 3900776.835400053299963 ], [ 4985271.219886485487223, 3900776.10988632729277 ], [ 4985264.928190264850855, 3900757.524220075458288 ], [ 4985304.703877292573452, 3900744.146142567973584 ], [ 4985314.713469579815865, 3900773.664609383326024 ], [ 4985311.254904645495117, 3900774.748758396599442 ], [ 4985318.976999227888882, 3900797.343286395072937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985290.704337793402374, 3899730.008335777558386 ], [ 4985273.329316987656057, 3899769.657193989492953 ], [ 4985216.93790537212044, 3899745.126165085472167 ], [ 4985234.600866803899407, 3899705.477956620045006 ], [ 4985290.704337793402374, 3899730.008335777558386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985189.479701898060739, 3904869.844914029818028 ], [ 4985211.290450261905789, 3904900.848029154352844 ], [ 4985229.461803397163749, 3904888.146670856047422 ], [ 4985246.679995393380523, 3904912.948639119509608 ], [ 4985192.74278362840414, 3904950.689957342110574 ], [ 4985153.713797185570002, 3904894.884936503134668 ], [ 4985189.479701898060739, 3904869.844914029818028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984858.606402997858822, 3904997.234096819069237 ], [ 4984887.051515430212021, 3905023.518940766341984 ], [ 4984834.800517795607448, 3905079.107435228303075 ], [ 4984806.6433644015342, 3905052.823326748795807 ], [ 4984858.606402997858822, 3904997.234096819069237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984837.375485825352371, 3903747.483661217615008 ], [ 4984791.762521232478321, 3903795.805276778526604 ], [ 4984763.316871137358248, 3903769.156423725187778 ], [ 4984790.164739797823131, 3903740.817624094430357 ], [ 4984785.279666037298739, 3903736.436494745314121 ], [ 4984804.044755115173757, 3903716.45362796029076 ], [ 4984837.375485825352371, 3903747.483661217615008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984725.051858030259609, 3915209.757741918321699 ], [ 4984689.610304398462176, 3915225.331787314265966 ], [ 4984662.981982816010714, 3915165.550903164315969 ], [ 4984698.423599638976157, 3915149.976823236327618 ], [ 4984725.051858030259609, 3915209.757741918321699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984204.988014766946435, 3909774.932756879366934 ], [ 4984180.214088992215693, 3909781.064978614915162 ], [ 4984173.93742146063596, 3909756.653370379004627 ], [ 4984198.711368274874985, 3909750.521142951678485 ], [ 4984204.988014766946435, 3909774.932756879366934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984182.92892802786082, 3907392.725094246212393 ], [ 4984190.339940120466053, 3907424.78610543301329 ], [ 4984128.689799848012626, 3907439.207061626948416 ], [ 4984120.991644621826708, 3907406.78126302594319 ], [ 4984182.92892802786082, 3907392.725094246212393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983819.490333559922874, 3916942.005202325060964 ], [ 4983860.109945947304368, 3916926.44206760963425 ], [ 4983881.853787465952337, 3916982.569486855063587 ], [ 4983849.012254710309207, 3916995.237638466991484 ], [ 4983835.85045715700835, 3916961.706585025880486 ], [ 4983828.360264576040208, 3916964.602210124954581 ], [ 4983819.490333559922874, 3916942.005202325060964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983598.735976240597665, 3906146.759137103799731 ], [ 4983644.547054446302354, 3906134.484979929402471 ], [ 4983642.548388918861747, 3906127.197696865536273 ], [ 4983672.224756339564919, 3906119.255713344551623 ], [ 4983685.64030815474689, 3906169.901245533954352 ], [ 4983673.252166510559618, 3906172.785521015524864 ], [ 4983677.531489947810769, 3906189.909672355744988 ], [ 4983637.195551275275648, 3906200.375824196264148 ], [ 4983633.769875817000866, 3906187.623246526811272 ], [ 4983611.296287210658193, 3906193.761327093467116 ], [ 4983598.735976240597665, 3906146.759137103799731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983546.687479235231876, 3909221.737013429868966 ], [ 4983572.322114557959139, 3909217.06273650797084 ], [ 4983575.163167206570506, 3909233.455302922520787 ], [ 4983549.528547005727887, 3909238.129577178042382 ], [ 4983546.687479235231876, 3909221.737013429868966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983515.69981480948627, 3916751.949288044124842 ], [ 4983491.490405309945345, 3916765.730290528852493 ], [ 4983474.289208450354636, 3916736.19554030103609 ], [ 4983463.336650141514838, 3916742.724591421429068 ], [ 4983438.68228267878294, 3916700.063760182820261 ], [ 4983477.014612566679716, 3916677.94033147348091 ], [ 4983509.982129169628024, 3916735.185846143402159 ], [ 4983507.10049594938755, 3916736.635705010034144 ], [ 4983515.69981480948627, 3916751.949288044124842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983392.404544268734753, 3917419.486616231966764 ], [ 4983403.973734999075532, 3917395.116361795924604 ], [ 4983437.899240991100669, 3917411.216813453938812 ], [ 4983426.330869233235717, 3917435.222920788917691 ], [ 4983392.404544268734753, 3917419.486616231966764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983380.69793354999274, 3915761.191083977464586 ], [ 4983403.326616023667157, 3915808.945027354173362 ], [ 4983372.206680391915143, 3915823.438410353846848 ], [ 4983349.866632820107043, 3915775.321025837678462 ], [ 4983380.69793354999274, 3915761.191083977464586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982706.48644622694701, 3915048.121874353848398 ], [ 4982728.003061268478632, 3915079.48664358118549 ], [ 4982675.533948842436075, 3915115.051754487678409 ], [ 4982654.017301315441728, 3915083.68702657148242 ], [ 4982706.48644622694701, 3915048.121874353848398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982719.25231687631458, 3907958.111658559646457 ], [ 4982712.765371078625321, 3908150.722918746992946 ], [ 4982721.97873792424798, 3908150.743995928671211 ], [ 4982720.132938352413476, 3908202.446593976579607 ], [ 4982649.310309381224215, 3908200.099865351803601 ], [ 4982657.641645208001137, 3907956.15011829091236 ], [ 4982719.25231687631458, 3907958.111658559646457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945746.192461250349879, 3892822.526043946389109 ], [ 4945749.391559064388275, 3892789.39327547326684 ], [ 4945770.707990190945566, 3892791.233351318631321 ], [ 4945769.833448088727891, 3892802.5205337558873 ], [ 4945797.775092141702771, 3892805.094931210856885 ], [ 4945795.7382373502478, 3892827.304903485812247 ], [ 4945746.192461250349879, 3892822.526043946389109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982307.98196162097156, 3915863.601964023895562 ], [ 4982341.390704985707998, 3915854.938703051302582 ], [ 4982344.527076480910182, 3915868.054670669138432 ], [ 4982354.60710046812892, 3915865.528659074101597 ], [ 4982362.025364923290908, 3915894.312144288793206 ], [ 4982395.43325883243233, 3915886.013082772959024 ], [ 4982402.851473807357252, 3915914.796579636633396 ], [ 4982349.859276353381574, 3915928.148957547731698 ], [ 4982345.863552177324891, 3915913.210362683050334 ], [ 4982321.960039475932717, 3915918.982153424527496 ], [ 4982307.98196162097156, 3915863.601964023895562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982132.955355864018202, 3905201.752804747782648 ], [ 4982149.026053004898131, 3905225.8219233318232 ], [ 4982114.99610455147922, 3905248.685131132602692 ], [ 4982098.637441668659449, 3905224.615380538627505 ], [ 4982132.955355864018202, 3905201.752804747782648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981701.534422948025167, 3909072.597314693033695 ], [ 4981690.58163829986006, 3909078.034664466045797 ], [ 4981678.257293023169041, 3909053.245918898377568 ], [ 4981689.210085248574615, 3909047.80856418190524 ], [ 4981701.534422948025167, 3909072.597314693033695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981086.92059113457799, 3894682.581176787614822 ], [ 4981059.265015607699752, 3894683.247892156708986 ], [ 4981057.942171338014305, 3894630.446168139576912 ], [ 4981048.723358392715454, 3894630.789789268281311 ], [ 4981048.196641798131168, 3894608.576717186719179 ], [ 4981085.359177829697728, 3894607.567019804380834 ], [ 4981086.92059113457799, 3894682.581176787614822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981029.30195258744061, 3904526.723608431406319 ], [ 4981056.10865425132215, 3904514.766909370198846 ], [ 4981066.71036668587476, 3904538.459064946509898 ], [ 4981039.903683859854937, 3904550.415753609035164 ], [ 4981029.30195258744061, 3904526.723608431406319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981003.411100222729146, 3908011.409861159976572 ], [ 4981023.608377523720264, 3907992.155765029601753 ], [ 4981044.003656671382487, 3908013.320826785638928 ], [ 4981023.806380566209555, 3908032.574907843023539 ], [ 4981003.411100222729146, 3908011.409861159976572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980920.897093717940152, 3895246.248869255185127 ], [ 4980835.283929813653231, 3895273.368689425755292 ], [ 4980825.558629241771996, 3895242.396114562172443 ], [ 4980910.883825440891087, 3895215.275624610483646 ], [ 4980920.897093717940152, 3895246.248869255185127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980863.355411606840789, 3904174.603809922467917 ], [ 4980904.570111927576363, 3904158.309348324779421 ], [ 4980916.025470362044871, 3904186.737044442910701 ], [ 4980874.810806577093899, 3904203.031488751061261 ], [ 4980863.355411606840789, 3904174.603809922467917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980830.603908230550587, 3903231.066496312618256 ], [ 4980853.61489176005125, 3903243.133858256042004 ], [ 4980838.867043516598642, 3903270.775138413067907 ], [ 4980815.856077120639384, 3903258.707788904197514 ], [ 4980830.603908230550587, 3903231.066496312618256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980766.040490080602467, 3905077.434695827309042 ], [ 4980795.297687008045614, 3905128.842093677725643 ], [ 4980762.14149197936058, 3905147.703497371636331 ], [ 4980743.210966262035072, 3905114.161453796550632 ], [ 4980750.418591470457613, 3905110.171962323598564 ], [ 4980740.092686975374818, 3905091.942510826978832 ], [ 4980766.040490080602467, 3905077.434695827309042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980763.490515440702438, 3899206.542673272080719 ], [ 4980736.678660031408072, 3899218.499625748489052 ], [ 4980718.909643918275833, 3899178.770081060007215 ], [ 4980745.721530941314995, 3899166.813111140392721 ], [ 4980763.490515440702438, 3899206.542673272080719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980718.037753007374704, 3906470.133103627245873 ], [ 4980752.929581035859883, 3906446.905892067588866 ], [ 4980768.713633531704545, 3906470.609435585793108 ], [ 4980733.822628580965102, 3906493.472496662288904 ], [ 4980718.037753007374704, 3906470.133103627245873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980639.074770348146558, 3901940.52559039928019 ], [ 4980612.545633516274393, 3901956.124615995679051 ], [ 4980584.430917207151651, 3901907.268964393995702 ], [ 4980611.247266260907054, 3901892.034676904324442 ], [ 4980639.074770348146558, 3901940.52559039928019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980627.624437306076288, 3905428.151567102875561 ], [ 4980690.7452154122293, 3905400.98122799070552 ], [ 4980676.707472858019173, 3905368.542444794438779 ], [ 4980696.8823272716254, 3905360.212036421988159 ], [ 4980711.77905720192939, 3905394.837521946523339 ], [ 4980744.636484632268548, 3905380.709106624126434 ], [ 4980756.094710638746619, 3905407.680235452018678 ], [ 4980750.618071669712663, 3905410.217031289357692 ], [ 4980760.359887922182679, 3905432.086515794042498 ], [ 4980752.578066355548799, 3905435.346469989512116 ], [ 4980764.897681010887027, 3905463.411906581837684 ], [ 4980755.097823607735336, 3905467.759786282666028 ], [ 4980762.260195613838732, 3905484.161582240369171 ], [ 4980684.440602507442236, 3905517.489481698721647 ], [ 4980678.99701027944684, 3905505.096958110108972 ], [ 4980667.180754748173058, 3905509.804542425554246 ], [ 4980653.715714077465236, 3905478.823562852106988 ], [ 4980650.257138267159462, 3905480.272444874979556 ], [ 4980627.624437306076288, 3905428.151567102875561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980435.379610396921635, 3916488.63471542019397 ], [ 4980444.533143174834549, 3916514.50842690654099 ], [ 4980410.831592248752713, 3916526.086477741599083 ], [ 4980401.677229143679142, 3916500.57691014977172 ], [ 4980435.379610396921635, 3916488.63471542019397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980439.238607342354953, 3903628.561437230557203 ], [ 4980449.075980975292623, 3903607.463481583166867 ], [ 4980468.350472122430801, 3903616.245102823711932 ], [ 4980444.627350793220103, 3903666.07884715963155 ], [ 4980384.504201799631119, 3903637.908357408363372 ], [ 4980398.101921218447387, 3903609.171897395979613 ], [ 4980439.238607342354953, 3903628.561437230557203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980417.713191357441247, 3907126.728680245112628 ], [ 4980407.567544549703598, 3907157.657581802923232 ], [ 4980354.626372247934341, 3907140.426861952990294 ], [ 4980364.771964491344988, 3907109.497940731234848 ], [ 4980417.713191357441247, 3907126.728680245112628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980215.648182260803878, 3898567.378734305035323 ], [ 4980228.909904890693724, 3898561.581745463889092 ], [ 4980234.640748403966427, 3898575.067143791820854 ], [ 4980222.53271003998816, 3898580.138400362804532 ], [ 4980231.416592474095523, 3898600.549192854668945 ], [ 4980187.596824280917645, 3898619.023719507269561 ], [ 4980176.707152080722153, 3898593.874849381390959 ], [ 4980185.355739823542535, 3898590.25250792875886 ], [ 4980173.894004158675671, 3898563.281733377370983 ], [ 4980207.623546401970088, 3898549.154614232946187 ], [ 4980215.648182260803878, 3898567.378734305035323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980173.371906509622931, 3909439.161324520595372 ], [ 4980196.485705567523837, 3909402.070485095493495 ], [ 4980206.835878051817417, 3909408.647584294900298 ], [ 4980220.416128927841783, 3909386.465290134306997 ], [ 4980246.867359711788595, 3909402.909332895185798 ], [ 4980232.998391774483025, 3909425.455112868919969 ], [ 4980258.587464215233922, 3909441.169009463395923 ], [ 4980235.473612705245614, 3909478.259796369820833 ], [ 4980219.947603688575327, 3909468.758263112511486 ], [ 4980216.769475894980133, 3909473.849146462511271 ], [ 4980194.343356742523611, 3909459.962892090436071 ], [ 4980197.810983465053141, 3909454.144375784322619 ], [ 4980173.371906509622931, 3909439.161324520595372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980132.984268096275628, 3906454.279393000993878 ], [ 4980175.062833678908646, 3906436.165031018666923 ], [ 4980197.123676897026598, 3906486.463644823525101 ], [ 4980154.75723962765187, 3906504.577341629657894 ], [ 4980132.984268096275628, 3906454.279393000993878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980127.487701015546918, 3908568.419567388948053 ], [ 4980147.888034308329225, 3908587.399171634111553 ], [ 4980117.298249266110361, 3908619.73993164440617 ], [ 4980096.897919068112969, 3908600.760350236669183 ], [ 4980127.487701015546918, 3908568.419567388948053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980096.490864744409919, 3901291.543002321384847 ], [ 4980072.566872868686914, 3901300.958033920731395 ], [ 4980064.546948658302426, 3901280.913280811626464 ], [ 4980052.729743859730661, 3901285.256993995979428 ], [ 4980038.12263447791338, 3901248.447814963757992 ], [ 4980073.864684460684657, 3901234.324914859607816 ], [ 4980096.490864744409919, 3901291.543002321384847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979996.591829091310501, 3904042.335913492366672 ], [ 4979997.458898417651653, 3904040.881282842718065 ], [ 4980031.399357352405787, 3904058.79794730246067 ], [ 4980018.676491722464561, 3904082.802802498452365 ], [ 4979959.137710873968899, 3904050.993218807503581 ], [ 4979971.281431696377695, 3904028.443596586119384 ], [ 4979996.591829091310501, 3904042.335913492366672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979995.884218729101121, 3900281.95227475464344 ], [ 4979986.739772871136665, 3900249.160525438841432 ], [ 4980027.948799883946776, 3900237.962563656736165 ], [ 4980038.807672209106386, 3900276.948298886418343 ], [ 4980013.736364079639316, 3900283.81195449642837 ], [ 4980012.02268202137202, 3900277.253854977432638 ], [ 4979995.884218729101121, 3900281.95227475464344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979951.171957151964307, 3909673.904706859495491 ], [ 4979982.690916134044528, 3909610.978616614360362 ], [ 4980029.855870258063078, 3909634.386259706690907 ], [ 4980014.530970423482358, 3909664.575758552178741 ], [ 4980050.766712347045541, 3909682.861677942797542 ], [ 4980056.259949818253517, 3909672.313849529251456 ], [ 4980091.920648059807718, 3909690.234433163423091 ], [ 4980052.8842329448089, 3909767.709257456939667 ], [ 4980014.059891168028116, 3909748.325273654423654 ], [ 4980033.144982075318694, 3909710.133077952079475 ], [ 4979999.784295918419957, 3909693.674132583197206 ], [ 4979998.048926771618426, 3909697.311666013207287 ], [ 4979951.171957151964307, 3909673.904706859495491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979915.837933928705752, 3900273.402426827698946 ], [ 4979960.207760041579604, 3900265.488436968065798 ], [ 4979965.330547844059765, 3900293.537692210637033 ], [ 4979920.672764646820724, 3900301.451045055408031 ], [ 4979915.837933928705752, 3900273.402426827698946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979593.280766366049647, 3906371.900685515720397 ], [ 4979677.823330409824848, 3906423.062869570683688 ], [ 4979657.018313709646463, 3906456.881920634768903 ], [ 4979572.475816876627505, 3906405.719800984021276 ], [ 4979593.280766366049647, 3906371.900685515720397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979432.836139541119337, 3908927.397590854205191 ], [ 4979467.758387365378439, 3908888.146915602032095 ], [ 4979496.49411154538393, 3908913.698477915022522 ], [ 4979477.156825014390051, 3908935.504521126393229 ], [ 4979483.191082319244742, 3908940.979588175192475 ], [ 4979467.894809304736555, 3908958.060672954190522 ], [ 4979432.836139541119337, 3908927.397590854205191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979400.972955897450447, 3899568.419053953140974 ], [ 4979360.086603049188852, 3899563.232797724660486 ], [ 4979363.603342371992767, 3899535.202350426930934 ], [ 4979404.777747196145356, 3899540.389235083479434 ], [ 4979400.972955897450447, 3899568.419053953140974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979395.103932140395045, 3901615.549484406597912 ], [ 4979424.070889505557716, 3901670.960080586839467 ], [ 4979390.04980724491179, 3901688.728879525791854 ], [ 4979372.840676658786833, 3901656.283997618593276 ], [ 4979379.183485604822636, 3901653.020536887459457 ], [ 4979367.137624456547201, 3901630.054233184084296 ], [ 4979395.103932140395045, 3901615.549484406597912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979390.949964337982237, 3900340.718414616305381 ], [ 4979344.292162797413766, 3900341.345784316305071 ], [ 4979344.070274760946631, 3900310.75832596141845 ], [ 4979390.728129388764501, 3900310.130955890286714 ], [ 4979390.949964337982237, 3900340.718414616305381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943746.616072913631797, 3891442.917243871372193 ], [ 4943745.682926572859287, 3891525.209410937037319 ], [ 4943713.992685429751873, 3891524.818785672541708 ], [ 4943714.301774393767118, 3891499.69420547131449 ], [ 4943701.049656, 3891499.319007818121463 ], [ 4943701.356300544925034, 3891477.107450501527637 ], [ 4943714.608734138309956, 3891477.118520475924015 ], [ 4943714.925734790042043, 3891442.526617515366524 ], [ 4943746.616072913631797, 3891442.917243871372193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979227.714777121320367, 3895905.259748893324286 ], [ 4979178.126418339088559, 3895925.544107101857662 ], [ 4979166.950573929585516, 3895898.574425220023841 ], [ 4979198.375388834625483, 3895885.897609340492636 ], [ 4979194.936852129176259, 3895877.515213205013424 ], [ 4979213.099656712263823, 3895870.271776335313916 ], [ 4979227.714777121320367, 3895905.259748893324286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979137.01627595257014, 3900033.936406155582517 ], [ 4979114.797581463120878, 3900053.551615424919873 ], [ 4979086.926966838538647, 3900022.904653114266694 ], [ 4979108.857661159709096, 3900003.288801161106676 ], [ 4979137.01627595257014, 3900033.936406155582517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979062.47741084266454, 3908441.209447807632387 ], [ 4979106.493060868233442, 3908457.690153372939676 ], [ 4979097.225705908611417, 3908482.795342011377215 ], [ 4979052.922177103348076, 3908466.314031970221549 ], [ 4979062.47741084266454, 3908441.209447807632387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979072.371613664552569, 3896613.885890460107476 ], [ 4979021.061126353219151, 3896631.982060147449374 ], [ 4979003.02327851112932, 3896581.32924590120092 ], [ 4979065.576098489575088, 3896559.251791583839804 ], [ 4979080.750664234161377, 3896601.887629681266844 ], [ 4979069.508431432768703, 3896605.868874175939709 ], [ 4979072.371613664552569, 3896613.885890460107476 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978976.622654999606311, 3906322.867542244493961 ], [ 4978935.986755018122494, 3906339.894479358568788 ], [ 4978924.527887068688869, 3906312.559980891644955 ], [ 4978964.875883422791958, 3906295.532408295664936 ], [ 4978976.622654999606311, 3906322.867542244493961 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978918.859126939438283, 3909624.331834811717272 ], [ 4978916.252378766424954, 3909631.608894902281463 ], [ 4978892.085810467600822, 3909623.546115855686367 ], [ 4978902.805378877557814, 3909592.253699346445501 ], [ 4978940.205308202654123, 3909605.07862517144531 ], [ 4978932.093234314583242, 3909628.729837110266089 ], [ 4978918.859126939438283, 3909624.331834811717272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978869.114472745917737, 3901134.856237312313169 ], [ 4978871.592428267002106, 3901188.024656720459461 ], [ 4978841.926097737625241, 3901189.417592339683324 ], [ 4978839.448083673603833, 3901136.24917562212795 ], [ 4978869.114472745917737, 3901134.856237312313169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978777.81077969353646, 3907864.905091246124357 ], [ 4978756.716967965476215, 3907900.180775807704777 ], [ 4978715.59652860276401, 3907875.6959313233383 ], [ 4978736.689526298083365, 3907840.784345707856119 ], [ 4978777.81077969353646, 3907864.905091246124357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978740.1769551737234, 3914014.303504148498178 ], [ 4978730.638786193914711, 3914032.489780766423792 ], [ 4978712.23633780144155, 3914022.982932503800839 ], [ 4978721.774497656151652, 3914004.796649469528347 ], [ 4978740.1769551737234, 3914014.303504148498178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978695.626069536432624, 3901997.475214377511293 ], [ 4978722.325229004025459, 3902036.49431982031092 ], [ 4978692.90813319478184, 3902056.458635615650564 ], [ 4978666.208951035514474, 3902017.439558925572783 ], [ 4978695.626069536432624, 3901997.475214377511293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978647.783494486473501, 3901610.301736655645072 ], [ 4978656.698671611025929, 3901616.146873608231544 ], [ 4978667.96520069707185, 3901599.785048323683441 ], [ 4978694.70993950497359, 3901617.68461739551276 ], [ 4978666.686447080224752, 3901659.135663760825992 ], [ 4978638.791336257942021, 3901640.505403659772128 ], [ 4978647.4581787744537, 3901627.779328092001379 ], [ 4978639.406188983470201, 3901622.300168343819678 ], [ 4978647.783494486473501, 3901610.301736655645072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978574.62115025985986, 3904046.547624837607145 ], [ 4978530.566115777939558, 3904044.997158317826688 ], [ 4978531.783160693943501, 3904014.412707226816565 ], [ 4978547.332334319129586, 3904014.809987341519445 ], [ 4978547.93776105158031, 3904000.974281699862331 ], [ 4978576.44368664547801, 3904002.127470698207617 ], [ 4978574.62115025985986, 3904046.547624837607145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978373.160097414627671, 3906973.374302044976503 ], [ 4978384.329762489534914, 3907001.436225248035043 ], [ 4978341.103895434178412, 3907018.458559179678559 ], [ 4978329.934192406944931, 3906990.396653641946614 ], [ 4978373.160097414627671, 3906973.374302044976503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978363.337196413427591, 3907124.468267714604735 ], [ 4978373.934822036884725, 3907150.708312516100705 ], [ 4978356.356484037823975, 3907157.589459206908941 ], [ 4978361.797712446190417, 3907171.43804700486362 ], [ 4978337.590854995884001, 3907181.218175488058478 ], [ 4978321.551956369541585, 3907141.129563919268548 ], [ 4978363.337196413427591, 3907124.468267714604735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978255.682053220458329, 3915250.597925855312496 ], [ 4978279.635528229176998, 3915221.153914405964315 ], [ 4978300.899484227411449, 3915238.313366671092808 ], [ 4978276.946001095697284, 3915267.757359488401562 ], [ 4978255.682053220458329, 3915250.597925855312496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978011.282421612180769, 3906130.734149981290102 ], [ 4978006.984097398817539, 3906120.893508228007704 ], [ 4978026.581676813773811, 3906112.55987481912598 ], [ 4978045.494100134819746, 3906155.931543770246208 ], [ 4978026.184485401958227, 3906164.265771994832903 ], [ 4978023.03254312556237, 3906156.976473338901997 ], [ 4978004.876230279915035, 3906164.58488970156759 ], [ 4977993.414033685810864, 3906138.343182193581015 ], [ 4978011.282421612180769, 3906130.734149981290102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977929.933730944059789, 3904836.43802572786808 ], [ 4977934.489519977942109, 3904860.844456325285137 ], [ 4977914.3251339988783, 3904864.44324555573985 ], [ 4977910.058048245497048, 3904839.673295439686626 ], [ 4977929.933730944059789, 3904836.43802572786808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977793.499191818758845, 3902756.960196076426655 ], [ 4977817.378165721893311, 3902767.934383702930063 ], [ 4977806.385291046462953, 3902791.579774843063205 ], [ 4977782.505567744374275, 3902780.969726413954049 ], [ 4977793.499191818758845, 3902756.960196076426655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977466.456957772374153, 3906150.708454743493348 ], [ 4977489.226251211948693, 3906140.19627377577126 ], [ 4977500.120683475397527, 3906162.795257311314344 ], [ 4977477.350642927922308, 3906173.671559537295252 ], [ 4977466.456957772374153, 3906150.708454743493348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977391.672841457650065, 3914103.213090157136321 ], [ 4977409.484767491929233, 3914120.000473635271192 ], [ 4977373.136075978167355, 3914157.794417243916541 ], [ 4977349.866342136636376, 3914135.533652835991234 ], [ 4977339.192190276458859, 3914146.799509373493493 ], [ 4977328.562136358581483, 3914136.945705113466829 ], [ 4977365.77663701120764, 3914098.061109185218811 ], [ 4977382.152357121929526, 3914113.388939348049462 ], [ 4977391.672841457650065, 3914103.213090157136321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977192.250016145408154, 3900797.769741741474718 ], [ 4977225.3908487027511, 3900787.643083142116666 ], [ 4977239.120624632574618, 3900832.823894186876714 ], [ 4977205.979842505417764, 3900842.950536137912422 ], [ 4977192.250016145408154, 3900797.769741741474718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977112.370619579218328, 3912620.243109342176467 ], [ 4977160.1122977565974, 3912641.826296598650515 ], [ 4977139.58113559614867, 3912686.207849671598524 ], [ 4977116.573566453531384, 3912675.600125185679644 ], [ 4977120.043142907321453, 3912668.32467266311869 ], [ 4977095.597717558033764, 3912656.985709243454039 ], [ 4977112.370619579218328, 3912620.243109342176467 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977102.536269992589951, 3913335.016660844907165 ], [ 4977075.750711590051651, 3913341.879521694499999 ], [ 4977078.891465104185045, 3913354.266589515376836 ], [ 4977053.545997770503163, 3913360.768331855069846 ], [ 4977041.267760017886758, 3913312.677200755570084 ], [ 4977093.398861299268901, 3913299.312577214557678 ], [ 4977102.536269992589951, 3913335.016660844907165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976896.589415719732642, 3911866.403489840216935 ], [ 4976881.849582144990563, 3911894.411220206879079 ], [ 4976845.328311242163181, 3911875.4006905737333 ], [ 4976859.779485213570297, 3911847.756476249545813 ], [ 4976896.589415719732642, 3911866.403489840216935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976801.050539654679596, 3905024.885636591818184 ], [ 4976814.741187469102442, 3905088.272852822672576 ], [ 4976788.813598432578146, 3905094.045360242947936 ], [ 4976781.967501118779182, 3905062.715887563303113 ], [ 4976731.84150687046349, 3905073.53629735764116 ], [ 4976723.569113240577281, 3905035.649525337386876 ], [ 4976766.492633099667728, 3905026.634877580683678 ], [ 4976767.633153476752341, 3905032.099208831787109 ], [ 4976801.050539654679596, 3905024.885636591818184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976759.828121432103217, 3900864.237332552671432 ], [ 4976756.601509736850858, 3900892.632866832893342 ], [ 4976709.092773295938969, 3900887.436959962360561 ], [ 4976712.319335381500423, 3900859.041420069523156 ], [ 4976759.828121432103217, 3900864.237332552671432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976734.053896572440863, 3911391.965955974068493 ], [ 4976709.849175338633358, 3911402.839971265289932 ], [ 4976698.385716596618295, 3911377.691125704906881 ], [ 4976750.541459579020739, 3911354.130170158110559 ], [ 4976756.847810343839228, 3911367.25199010130018 ], [ 4976728.608934074640274, 3911379.938319251406938 ], [ 4976734.053896572440863, 3911391.965955974068493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976713.756114488467574, 3900721.038839615881443 ], [ 4976692.402247750200331, 3900741.386100858915597 ], [ 4976658.77715115249157, 3900707.088470874819905 ], [ 4976680.131770504638553, 3900686.377054176758975 ], [ 4976713.756114488467574, 3900721.038839615881443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976681.139145403169096, 3912341.516120270360261 ], [ 4976714.585767408832908, 3912315.731687918305397 ], [ 4976743.297858607955277, 3912352.204312948975712 ], [ 4976710.13837493211031, 3912378.353436204604805 ], [ 4976681.139145403169096, 3912341.516120270360261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976543.600689932703972, 3912869.226067377254367 ], [ 4976523.134401636198163, 3912882.65688707632944 ], [ 4976509.073109848424792, 3912861.144087359309196 ], [ 4976529.539407437667251, 3912847.713257131166756 ], [ 4976543.600689932703972, 3912869.226067377254367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976405.140736513771117, 3900522.680773365311325 ], [ 4976404.180344019085169, 3900569.651658274233341 ], [ 4976375.957940606400371, 3900568.86549563659355 ], [ 4976376.917536924593151, 3900522.258738866541535 ], [ 4976405.140736513771117, 3900522.680773365311325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976254.953583680093288, 3908749.925696909893304 ], [ 4976272.540034580044448, 3908738.309466252569109 ], [ 4976288.900263451971114, 3908763.103983633220196 ], [ 4976246.231276902370155, 3908791.418945663608611 ], [ 4976222.407687364146113, 3908755.685208285693079 ], [ 4976247.490250521339476, 3908738.986444508191198 ], [ 4976254.953583680093288, 3908749.925696909893304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976194.503114708699286, 3906209.979939120355994 ], [ 4976214.456527197733521, 3906168.145577091258019 ], [ 4976236.606218252331018, 3906178.750718651805073 ], [ 4976241.233359941281378, 3906168.928626243025064 ], [ 4976262.232775427401066, 3906178.803171135485172 ], [ 4976242.568725146353245, 3906219.909826455637813 ], [ 4976218.980867626145482, 3906208.573473759926856 ], [ 4976213.77637436427176, 3906219.122653064318001 ], [ 4976194.503114708699286, 3906209.979939120355994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976186.069499257951975, 3903997.134567795321345 ], [ 4976218.625616467557847, 3903989.190250057727098 ], [ 4976216.913483430631459, 3903981.539988207165152 ], [ 4976242.843511183746159, 3903975.03867313824594 ], [ 4976255.411750101484358, 3904024.950400336179882 ], [ 4976196.637736322358251, 3904039.395419471431524 ], [ 4976186.069499257951975, 3903997.134567795321345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976151.263107127510011, 3908770.4691730318591 ], [ 4976171.369245832785964, 3908793.814743645954877 ], [ 4976152.333648753352463, 3908810.161801978480071 ], [ 4976131.939594933763146, 3908786.81565727153793 ], [ 4976151.263107127510011, 3908770.4691730318591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976141.972509219311178, 3912753.700391157064587 ], [ 4976166.651776546612382, 3912791.620702920015901 ], [ 4976140.42156542558223, 3912808.317231757100672 ], [ 4976115.741532882675529, 3912770.761075565125793 ], [ 4976141.972509219311178, 3912753.700391157064587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976157.336547278799117, 3901006.103088811039925 ], [ 4976189.585206716321409, 3901009.446168429683894 ], [ 4976187.238082540221512, 3901030.56095481896773 ], [ 4976208.544427116401494, 3901033.153430848382413 ], [ 4976206.19282259978354, 3901056.452991376165301 ], [ 4976152.637145738117397, 3901050.881572369951755 ], [ 4976157.336547278799117, 3901006.103088811039925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976127.003091274760664, 3905846.80252872640267 ], [ 4976135.648057093843818, 3905843.54299858585 ], [ 4976126.478516710922122, 3905821.676361429970711 ], [ 4976156.738538429141045, 3905808.993561679497361 ], [ 4976172.212281052023172, 3905845.802498415578157 ], [ 4976133.30658786278218, 3905862.108939485624433 ], [ 4976127.003091274760664, 3905846.80252872640267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975936.858007172122598, 3910848.137328992597759 ], [ 4975959.995147881098092, 3910796.113423962146044 ], [ 4975971.500339224934578, 3910801.23471654066816 ], [ 4975948.363180587999523, 3910853.258611827157438 ], [ 4975936.858007172122598, 3910848.137328992597759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975873.718884345144033, 3906219.521620288025588 ], [ 4975892.638405657373369, 3906261.071124780923128 ], [ 4975860.64769025426358, 3906275.571366356220096 ], [ 4975841.728129823692143, 3906234.021884027402848 ], [ 4975873.718884345144033, 3906219.521620288025588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975872.432251718826592, 3904869.318458957597613 ], [ 4975856.472012992016971, 3904929.731869071722031 ], [ 4975832.584551485255361, 3904923.493100901599973 ], [ 4975835.776435586623847, 3904911.483241168782115 ], [ 4975811.3137874212116, 3904904.879192023072392 ], [ 4975823.793358457274735, 3904856.839161545503885 ], [ 4975872.432251718826592, 3904869.318458957597613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975767.888678191229701, 3906438.514114554971457 ], [ 4975735.568219538778067, 3906473.769358553923666 ], [ 4975711.138705388642848, 3906451.507784638553858 ], [ 4975743.747094883583486, 3906416.253095677588135 ], [ 4975767.888678191229701, 3906438.514114554971457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975550.815763918682933, 3903145.232706926763058 ], [ 4975579.550326952710748, 3903176.241936119738966 ], [ 4975559.643533014692366, 3903194.408260100055486 ], [ 4975530.908231088891625, 3903163.763181585818529 ], [ 4975550.815763918682933, 3903145.232706926763058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975533.946171065792441, 3910354.284289353527129 ], [ 4975558.918615509755909, 3910391.112173589412123 ], [ 4975516.540136873722076, 3910419.793036498129368 ], [ 4975491.56839638762176, 3910382.60105964820832 ], [ 4975533.946171065792441, 3910354.284289353527129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975291.545718802139163, 3909778.10172863304615 ], [ 4975318.371739371679723, 3909752.666412342339754 ], [ 4975342.216900325380266, 3909777.839564952533692 ], [ 4975334.42893273755908, 3909785.106540333013982 ], [ 4975347.356580945663154, 3909798.969609475694597 ], [ 4975328.319264333695173, 3909816.773786735255271 ], [ 4975291.545718802139163, 3909778.10172863304615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975264.996263718232512, 3909522.791344339028001 ], [ 4975254.849394109100103, 3909557.727679831907153 ], [ 4975195.287910326384008, 3909540.493790892418474 ], [ 4975206.0156340431422, 3909503.009671518113464 ], [ 4975221.553630503825843, 3909507.410471253097057 ], [ 4975219.235044957138598, 3909515.052598969545215 ], [ 4975241.966218014247715, 3909521.652656321879476 ], [ 4975248.05389554426074, 3909500.909330727532506 ], [ 4975264.454863932915032, 3909505.676022293046117 ], [ 4975259.816937453113496, 3909521.324401709251106 ], [ 4975264.996263718232512, 3909522.791344339028001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975233.396779208444059, 3913069.747720501385629 ], [ 4975274.316081859171391, 3913048.710239856038243 ], [ 4975280.338548460043967, 3913060.010488419327885 ], [ 4975239.418526450172067, 3913081.412092008627951 ], [ 4975233.396779208444059, 3913069.747720501385629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975165.901194078847766, 3911128.782135315705091 ], [ 4975100.800319243222475, 3911147.950615301262587 ], [ 4975092.222861726768315, 3911118.43865136615932 ], [ 4975157.035915708169341, 3911099.269573307130486 ], [ 4975165.901194078847766, 3911128.782135315705091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975141.229756638407707, 3903476.860049911774695 ], [ 4975082.999719338491559, 3903506.966236891690642 ], [ 4975068.368799122050405, 3903479.262955230660737 ], [ 4975126.598879870027304, 3903449.156737050041556 ], [ 4975141.229756638407707, 3903476.860049911774695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975091.991005971096456, 3906923.995752774644643 ], [ 4975048.772214879281819, 3906938.474468120839447 ], [ 4975034.745971828699112, 3906897.299468360841274 ], [ 4975040.508239435963333, 3906895.490342855453491 ], [ 4975035.069617421366274, 3906879.457646600902081 ], [ 4975062.153393851593137, 3906870.408572059590369 ], [ 4975072.744130422361195, 3906901.745138722006232 ], [ 4975083.116945109330118, 3906898.124597793444991 ], [ 4975091.991005971096456, 3906923.995752774644643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974986.520416807383299, 3898470.481093969196081 ], [ 4974999.410750988870859, 3898505.827495110686868 ], [ 4974962.517131429165602, 3898519.226560592651367 ], [ 4974949.626755263656378, 3898483.880176857579499 ], [ 4974986.520416807383299, 3898470.481093969196081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974909.92067086044699, 3905242.434793401043862 ], [ 4974954.877810220234096, 3905223.953890456352383 ], [ 4974962.041601206175983, 3905241.446528349537402 ], [ 4974973.280343669466674, 3905237.099415000993758 ], [ 4974979.298876750282943, 3905251.312583047430962 ], [ 4974968.923985449597239, 3905255.661420802585781 ], [ 4974976.3735232334584, 3905274.247029122896492 ], [ 4974941.503375551663339, 3905288.378468998707831 ], [ 4974927.461549430154264, 3905254.486171087715775 ], [ 4974916.798719082027674, 3905258.834453786723316 ], [ 4974909.92067086044699, 3905242.434793401043862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974875.431404000148177, 3900447.487229378893971 ], [ 4974867.279500286094844, 3900491.530768992844969 ], [ 4974840.21695892047137, 3900486.743096449412405 ], [ 4974848.368819690309465, 3900442.699548751115799 ], [ 4974875.431404000148177, 3900447.487229378893971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974772.943650015629828, 3903608.303682387806475 ], [ 4974787.853339201770723, 3903640.741067207418382 ], [ 4974717.814561286009848, 3903672.281049176119268 ], [ 4974705.773601066321135, 3903645.311378449201584 ], [ 4974735.460912784561515, 3903631.897589770611376 ], [ 4974728.866676749661565, 3903617.319214362185448 ], [ 4974752.500936175696552, 3903606.806449957191944 ], [ 4974756.51506579387933, 3903615.553593087475747 ], [ 4974772.943650015629828, 3903608.303682387806475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974749.345966449007392, 3899983.697766366414726 ], [ 4974749.332195146940649, 3899990.61621841462329 ], [ 4974770.358021606691182, 3899989.929817921482027 ], [ 4974770.883275075815618, 3900015.419999008998275 ], [ 4974712.99139501247555, 3900016.761302032973617 ], [ 4974712.191843269392848, 3899984.352097094990313 ], [ 4974749.345966449007392, 3899983.697766366414726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974433.738981055095792, 3898358.321946282405406 ], [ 4974407.800379822030663, 3898366.645628361497074 ], [ 4974406.36962852999568, 3898361.909107049927115 ], [ 4974383.889468929730356, 3898369.147261555772275 ], [ 4974375.302050325088203, 3898342.184657444711775 ], [ 4974423.720138434320688, 3898326.98693299619481 ], [ 4974433.738981055095792, 3898358.321946282405406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974410.92130910884589, 3901739.592659371905029 ], [ 4974341.834062325768173, 3901724.526724117808044 ], [ 4974370.019938911311328, 3901597.500751325394958 ], [ 4974439.106776211410761, 3901612.930887314025313 ], [ 4974410.92130910884589, 3901739.592659371905029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974371.031031081452966, 3899337.344157312531024 ], [ 4974405.884102464653552, 3899335.592411584686488 ], [ 4974407.832492469809949, 3899369.824517945293337 ], [ 4974364.625684322789311, 3899372.288012196309865 ], [ 4974363.238153084181249, 3899345.703754629008472 ], [ 4974371.591942319646478, 3899344.992003197781742 ], [ 4974371.031031081452966, 3899337.344157312531024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974069.872906844131649, 3894887.083788656629622 ], [ 4974098.38796781282872, 3894888.596349521540105 ], [ 4974096.588742186315358, 3894924.641621317248791 ], [ 4974068.073003923520446, 3894923.493190316017717 ], [ 4974069.872906844131649, 3894887.083788656629622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973901.382609535008669, 3897521.231318288948387 ], [ 4973865.635327381081879, 3897537.183038091752678 ], [ 4973861.334098841063678, 3897527.343110534362495 ], [ 4973835.100432428531349, 3897538.943934312090278 ], [ 4973819.040461786091328, 3897503.227786696050316 ], [ 4973833.454874151386321, 3897496.701642361469567 ], [ 4973835.175941889174283, 3897500.346308604348451 ], [ 4973882.45451711025089, 3897479.319306295365095 ], [ 4973901.382609535008669, 3897521.231318288948387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973805.988985375501215, 3894750.018079202622175 ], [ 4973807.164723306894302, 3894738.004109614994377 ], [ 4973800.828795257024467, 3894737.263464431744069 ], [ 4973805.836181280203164, 3894680.833206993062049 ], [ 4973866.607296369969845, 3894686.049895482603461 ], [ 4973863.957724940031767, 3894715.175056231208146 ], [ 4973853.876991043798625, 3894714.427069517783821 ], [ 4973850.342589882202446, 3894754.110251550097018 ], [ 4973805.988985375501215, 3894750.018079202622175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973670.784294652752578, 3909714.808690760750324 ], [ 4973655.561766723170877, 3909696.20823031058535 ], [ 4973683.243625367991626, 3909674.050148549489677 ], [ 4973716.27264528721571, 3909714.897481348365545 ], [ 4973697.240617401897907, 3909730.51802592119202 ], [ 4973679.14692309871316, 3909707.906488317530602 ], [ 4973670.784294652752578, 3909714.808690760750324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973643.255418067798018, 3901092.845392206683755 ], [ 4973645.892790797166526, 3901069.546168399974704 ], [ 4973689.370587161742151, 3901074.364664510823786 ], [ 4973686.733177181333303, 3901097.663884117268026 ], [ 4973643.255418067798018, 3901092.845392206683755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973586.024081368930638, 3896910.333792561665177 ], [ 4973590.870389076881111, 3896936.196444811299443 ], [ 4973561.191857510246336, 3896941.600618415512145 ], [ 4973556.345522249117494, 3896915.737971425056458 ], [ 4973586.024081368930638, 3896910.333792561665177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973512.205837128683925, 3905393.343623823020607 ], [ 4973522.050584811717272, 3905365.324635004624724 ], [ 4973546.222589643672109, 3905373.382562712300569 ], [ 4973536.377111141569912, 3905401.765673080459237 ], [ 4973512.205837128683925, 3905393.343623823020607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973510.946612549945712, 3904560.208152998238802 ], [ 4973497.141706596128643, 3904551.442153826355934 ], [ 4973492.520248064771295, 3904558.715798340272158 ], [ 4973462.033679652959108, 3904539.721710704732686 ], [ 4973490.053226518444717, 3904494.623864540364593 ], [ 4973534.632700896821916, 3904522.384554683696479 ], [ 4973510.946612549945712, 3904560.208152998238802 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973349.922848641872406, 3904143.329133680555969 ], [ 4973368.379872671328485, 3904129.163799950387329 ], [ 4973400.839592692442238, 3904170.373618927784264 ], [ 4973360.46441665943712, 3904201.610594476107508 ], [ 4973333.751178897917271, 3904166.966325306333601 ], [ 4973355.380686509422958, 3904150.258211789652705 ], [ 4973349.922848641872406, 3904143.329133680555969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973215.82351712603122, 3899628.210767137352377 ], [ 4973211.240714983083308, 3899615.093213357031345 ], [ 4973234.296943192370236, 3899607.126928746700287 ], [ 4973238.021342660300434, 3899617.329782995395362 ], [ 4973249.83746728207916, 3899613.347206888254732 ], [ 4973261.00711368676275, 3899645.776423050090671 ], [ 4973217.488911502994597, 3899660.621591235511005 ], [ 4973207.465623766183853, 3899631.107652029022574 ], [ 4973215.82351712603122, 3899628.210767137352377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973072.113496689125896, 3905150.343773908913136 ], [ 4973061.404589812271297, 3905178.72538853995502 ], [ 4973016.804675447754562, 3905161.889379577245563 ], [ 4973027.224890165030956, 3905133.871322881896049 ], [ 4973072.113496689125896, 3905150.343773908913136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973049.975933328270912, 3904086.673055734019727 ], [ 4973048.214476089924574, 3904104.14796559792012 ], [ 4973062.034501551650465, 3904105.267001614905894 ], [ 4973060.273037638515234, 3904122.741910892538726 ], [ 4973045.877099323086441, 3904121.62176571553573 ], [ 4973044.997074677608907, 3904129.995090919081122 ], [ 4972997.491956992074847, 3904125.533995069097728 ], [ 4973001.60755714122206, 3904081.846157521009445 ], [ 4973049.975933328270912, 3904086.673055734019727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972968.208079595118761, 3901984.750733668915927 ], [ 4972993.228316692635417, 3902002.641307750716805 ], [ 4972994.094370712526143, 3902001.55058251414448 ], [ 4973027.454869458451867, 3902025.283342372160405 ], [ 4973008.685459556989372, 3902051.464612768497318 ], [ 4972950.016767794266343, 3902009.840764154680073 ], [ 4972968.208079595118761, 3901984.750733668915927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972904.240594256669283, 3910989.97347577335313 ], [ 4972927.599388384260237, 3910969.262821463402361 ], [ 4972961.49792448990047, 3911006.833736582659185 ], [ 4972938.1391367232427, 3911027.544361907523125 ], [ 4972904.240594256669283, 3910989.97347577335313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972891.699972555972636, 3900136.276255785487592 ], [ 4972978.95595052279532, 3900141.177748441230506 ], [ 4972973.884700777940452, 3900232.200612345244735 ], [ 4972886.341014864854515, 3900227.298582586459816 ], [ 4972891.699972555972636, 3900136.276255785487592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972829.164157025516033, 3904057.846084496937692 ], [ 4972842.515251031145453, 3904003.252012733835727 ], [ 4972880.796727911569178, 3904012.42881836835295 ], [ 4972871.797158585861325, 3904050.281188400927931 ], [ 4972861.722696769982576, 3904048.077049688901752 ], [ 4972857.659765473566949, 3904064.4551573083736 ], [ 4972829.164157025516033, 3904057.846084496937692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972610.941280256025493, 3901920.706815316807479 ], [ 4972589.603300994262099, 3901934.86714874021709 ], [ 4972596.208852525800467, 3901944.347170758061111 ], [ 4972578.042897155508399, 3901956.328788775485009 ], [ 4972554.781527483835816, 3901922.05607093591243 ], [ 4972594.286181310191751, 3901895.549961479380727 ], [ 4972610.941280256025493, 3901920.706815316807479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972590.835918493568897, 3902344.880912574473768 ], [ 4972557.971447770483792, 3902363.024697214830667 ], [ 4972533.8631426775828, 3902320.011228651739657 ], [ 4972534.151122872717679, 3902320.011778192594647 ], [ 4972505.164431249722838, 3902267.885754322167486 ], [ 4972535.434374283999205, 3902251.19347846833989 ], [ 4972570.16116323042661, 3902313.526161844842136 ], [ 4972580.828256259672344, 3902307.356307704932988 ], [ 4972591.447355578653514, 3902326.311401840765029 ], [ 4972583.086890168488026, 3902331.029133747331798 ], [ 4972590.835918493568897, 3902344.880912574473768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972546.810714514926076, 3907002.40252830600366 ], [ 4972507.313594919629395, 3907028.908790294546634 ], [ 4972482.333829841576517, 3906992.083819184917957 ], [ 4972521.830978720448911, 3906965.577521075028926 ], [ 4972546.810714514926076, 3907002.40252830600366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972318.946095468476415, 3908272.789618932642043 ], [ 4972292.425274475477636, 3908289.853441378101707 ], [ 4972268.884594396688044, 3908253.759636797942221 ], [ 4972295.405435932800174, 3908236.695791496895254 ], [ 4972318.946095468476415, 3908272.789618932642043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972278.972893737256527, 3898845.356324825435877 ], [ 4972254.472756083123386, 3898855.141336921602488 ], [ 4972246.444886979646981, 3898835.82720454595983 ], [ 4972270.94503927603364, 3898826.042185252532363 ], [ 4972278.972893737256527, 3898845.356324825435877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972084.594458527863026, 3903242.958120153751224 ], [ 4972104.123382036574185, 3903271.033166592009366 ], [ 4972024.251807052642107, 3903325.865946344099939 ], [ 4972005.01012228615582, 3903298.155630745925009 ], [ 4972084.594458527863026, 3903242.958120153751224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971954.605177416466177, 3892462.644905775785446 ], [ 4971966.649142120033503, 3892492.162057116162032 ], [ 4971905.239589798264205, 3892517.171168943401426 ], [ 4971893.194883115589619, 3892488.018172189593315 ], [ 4971954.605177416466177, 3892462.644905775785446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971437.412112385034561, 3904227.444960752502084 ], [ 4971425.301485556177795, 3904236.161498148925602 ], [ 4971410.36496546305716, 3904216.106389778666198 ], [ 4971448.716004073619843, 3904188.139889174606651 ], [ 4971482.608180615119636, 3904234.812033335212618 ], [ 4971456.656433873809874, 3904253.698365272488445 ], [ 4971437.412112385034561, 3904227.444960752502084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971378.164027335122228, 3893687.585995140951127 ], [ 4971331.469795317389071, 3893701.700000300537795 ], [ 4971322.593125679530203, 3893672.917270225472748 ], [ 4971369.287402944639325, 3893658.803249876946211 ], [ 4971378.164027335122228, 3893687.585995140951127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971133.499286895617843, 3899013.618946427479386 ], [ 4971131.225571204908192, 3898997.228868070989847 ], [ 4971174.439438981004059, 3898991.118887281510979 ], [ 4971185.813272286206484, 3899070.156268929131329 ], [ 4971144.904324468225241, 3899075.906379927881062 ], [ 4971143.199892145581543, 3899063.158658763859421 ], [ 4971103.154988013207912, 3899068.910437208600342 ], [ 4971105.717404866591096, 3899084.936919157393277 ], [ 4971062.215014053508639, 3899091.41060598148033 ], [ 4971050.555509663186967, 3899010.916226209141314 ], [ 4971091.752551606856287, 3899005.166505927685648 ], [ 4971093.742326658219099, 3899019.37127325637266 ], [ 4971133.499286895617843, 3899013.618946427479386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970780.548567776568234, 3902834.881016360595822 ], [ 4970772.229509945958853, 3902817.387396279722452 ], [ 4970792.1165571808815, 3902808.32077481597662 ], [ 4970797.279295090585947, 3902819.618354248814285 ], [ 4970828.406776308082044, 3902805.474651371594518 ], [ 4970841.887845714576542, 3902834.630006614141166 ], [ 4970784.820535037666559, 3902860.7421929044649 ], [ 4970774.207756705582142, 3902837.782378865871578 ], [ 4970780.548567776568234, 3902834.881016360595822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970598.942429510876536, 3903560.988460722845048 ], [ 4970627.481259563937783, 3903544.654979932587594 ], [ 4970650.446333800442517, 3903584.023353234864771 ], [ 4970622.194828959181905, 3903600.721469041425735 ], [ 4970598.942429510876536, 3903560.988460722845048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970577.501095719635487, 3912572.12829975457862 ], [ 4970599.33576269634068, 3912595.837059118319303 ], [ 4970546.278131075203419, 3912644.533497026655823 ], [ 4970524.155587280169129, 3912620.824252051301301 ], [ 4970577.501095719635487, 3912572.12829975457862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970502.31634933128953, 3897045.788997024763376 ], [ 4970555.0230598077178, 3897048.070401758421212 ], [ 4970552.90528529137373, 3897103.414240673184395 ], [ 4970528.712256117723882, 3897102.277487736195326 ], [ 4970529.023656675592065, 3897089.533516918774694 ], [ 4970500.510070225223899, 3897088.388868881389499 ], [ 4970502.31634933128953, 3897045.788997024763376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970301.51601898856461, 3891225.181917988695204 ], [ 4970306.39377158973366, 3891236.114672747906297 ], [ 4970324.847392106428742, 3891227.773394239135087 ], [ 4970337.761323343031108, 3891255.470735845621675 ], [ 4970321.325737647712231, 3891263.087431762367487 ], [ 4970328.212853591889143, 3891278.029271936044097 ], [ 4970294.477429430931807, 3891293.26110908202827 ], [ 4970269.798564037308097, 3891239.689210452605039 ], [ 4970301.51601898856461, 3891225.181917988695204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970252.195356142707169, 3893784.553133504930884 ], [ 4970247.318711331114173, 3893773.256244538817555 ], [ 4970268.651957555674016, 3893764.556037785485387 ], [ 4970294.751573820598423, 3893827.597965647466481 ], [ 4970260.445211918093264, 3893841.736433577723801 ], [ 4970238.934106776490808, 3893789.990900196135044 ], [ 4970252.195356142707169, 3893784.553133504930884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969861.071530687622726, 3897882.484422299079597 ], [ 4969863.384972461499274, 3897877.390787438023835 ], [ 4969891.589951724745333, 3897889.458100677002221 ], [ 4969877.41664966661483, 3897922.568278803024441 ], [ 4969825.611873727291822, 3897900.26268283650279 ], [ 4969837.759713258594275, 3897872.246635335031897 ], [ 4969861.071530687622726, 3897882.484422299079597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969613.982513919472694, 3902341.907792180776596 ], [ 4969637.022221840918064, 3902341.22100271191448 ], [ 4969637.293811646290123, 3902350.324763860087842 ], [ 4969667.533009889535606, 3902349.65096401469782 ], [ 4969669.154610726051033, 3902408.643090433906764 ], [ 4969616.16315311845392, 3902410.368324344512075 ], [ 4969613.982513919472694, 3902341.907792180776596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969569.554090899415314, 3898541.398189231287688 ], [ 4969593.144935481250286, 3898556.369941090233624 ], [ 4969587.0788240050897, 3898566.190542941447347 ], [ 4969607.79271003510803, 3898579.336483986582607 ], [ 4969587.862994275987148, 3898610.615820886567235 ], [ 4969543.270279574207962, 3898582.497648049611598 ], [ 4969569.554090899415314, 3898541.398189231287688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969540.600955481640995, 3902953.151700193062425 ], [ 4969489.006001386791468, 3902979.640602272935212 ], [ 4969474.36968485172838, 3902951.576245611067861 ], [ 4969526.252651960588992, 3902925.087833202444017 ], [ 4969540.600955481640995, 3902953.151700193062425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969256.086546069942415, 3891661.341540310066193 ], [ 4969219.453728035092354, 3891686.401025958359241 ], [ 4969182.961202842183411, 3891632.809040387161076 ], [ 4969231.708345513790846, 3891599.760294769424945 ], [ 4969254.983580837026238, 3891633.665799703449011 ], [ 4969242.868653250858188, 3891642.019127790350467 ], [ 4969256.086546069942415, 3891661.341540310066193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969195.735419207252562, 3891093.193370897322893 ], [ 4969204.965026646852493, 3891087.38377642352134 ], [ 4969215.021262618713081, 3891102.695109950844198 ], [ 4969170.31313207000494, 3891132.109791906084865 ], [ 4969132.673835032619536, 3891074.874564920552075 ], [ 4969168.439855388365686, 3891051.634065912105143 ], [ 4969195.735419207252562, 3891093.193370897322893 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969141.108871000818908, 3903316.567863561213017 ], [ 4969113.142104506492615, 3903335.452855890151113 ], [ 4969096.482672334648669, 3903311.390538109466434 ], [ 4969090.428180921822786, 3903315.385201229713857 ], [ 4969065.439620103687048, 3903278.927620193455368 ], [ 4969099.461564300581813, 3903255.683786637149751 ], [ 4969141.108871000818908, 3903316.567863561213017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969037.985076682642102, 3895720.263048695866019 ], [ 4969001.178595249541104, 3895684.148828486446291 ], [ 4969041.578930296935141, 3895643.074000262189656 ], [ 4969065.44577234890312, 3895666.420725594740361 ], [ 4969068.620168389752507, 3895663.149207479320467 ], [ 4969080.122792628593743, 3895674.093554268591106 ], [ 4969078.679296210408211, 3895675.911632993258536 ], [ 4969103.696336755529046, 3895700.352827650494874 ], [ 4969084.361921763978899, 3895719.98140507703647 ], [ 4969060.782547366805375, 3895696.999302810523659 ], [ 4969037.985076682642102, 3895720.263048695866019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968985.838609190657735, 3897833.943056193646044 ], [ 4968980.679317792877555, 3897819.732828655745834 ], [ 4969016.417489383369684, 3897807.051768385339528 ], [ 4969031.893355988897383, 3897850.77486081328243 ], [ 4968990.96749834343791, 3897865.267335707321763 ], [ 4968980.362839178182185, 3897835.753981563728303 ], [ 4968985.838609190657735, 3897833.943056193646044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968973.177081579342484, 3894744.645454565063119 ], [ 4968973.706661337055266, 3894770.863698769826442 ], [ 4968928.767839940264821, 3894771.512215673457831 ], [ 4968928.526277730241418, 3894745.294483248144388 ], [ 4968973.177081579342484, 3894744.645454565063119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968526.61559590883553, 3898712.141174827236682 ], [ 4968542.04560340102762, 3898782.081293238326907 ], [ 4968506.605932236649096, 3898789.66569262649864 ], [ 4968496.319851123727858, 3898742.674830115400255 ], [ 4968502.658179162070155, 3898741.593582055531442 ], [ 4968497.802829090505838, 3898718.280722327530384 ], [ 4968526.61559590883553, 3898712.141174827236682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968397.469737914390862, 3907476.183961572125554 ], [ 4968432.65924278832972, 3907440.560795304365456 ], [ 4968461.402510698884726, 3907468.649446988012642 ], [ 4968426.213004302233458, 3907504.272576228249818 ], [ 4968397.469737914390862, 3907476.183961572125554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968380.846531008370221, 3902342.994100481271744 ], [ 4968359.223779912106693, 3902356.79316143039614 ], [ 4968343.714345874264836, 3902333.097473522648215 ], [ 4968365.337746382690966, 3902318.934270564001054 ], [ 4968380.846531008370221, 3902342.994100481271744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968124.049689105711877, 3898663.006816002074629 ], [ 4968083.706672724336386, 3898674.588652381207794 ], [ 4968066.81501470785588, 3898616.298418814782053 ], [ 4968107.15811116900295, 3898604.716557485517114 ], [ 4968124.049689105711877, 3898663.006816002074629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967938.935768792405725, 3908063.092429403215647 ], [ 4967973.686543599702418, 3908113.403069917112589 ], [ 4967942.554685866460204, 3908134.468615063466132 ], [ 4967908.091166329570115, 3908084.522645158227533 ], [ 4967938.935768792405725, 3908063.092429403215647 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967850.397494700737298, 3905159.351819431874901 ], [ 4967899.117264366708696, 3905127.02865143166855 ], [ 4967914.914051122032106, 3905150.360492653679103 ], [ 4967866.194304608739913, 3905182.683632482308894 ], [ 4967850.397494700737298, 3905159.351819431874901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967758.130643092095852, 3913213.800016723573208 ], [ 4967790.377028145827353, 3913210.578663120046258 ], [ 4967793.205823521129787, 3913239.350093864835799 ], [ 4967760.960103090852499, 3913242.207311932463199 ], [ 4967758.130643092095852, 3913213.800016723573208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967711.173112008720636, 3904909.680707963649184 ], [ 4967695.902821390889585, 3904914.752150154206902 ], [ 4967699.339367755688727, 3904925.682032432407141 ], [ 4967665.053549979813397, 3904936.910864014178514 ], [ 4967657.034279451705515, 3904911.771946548018605 ], [ 4967669.423152615316212, 3904907.787898948881775 ], [ 4967665.69989710021764, 3904896.129262612201273 ], [ 4967703.154505845159292, 3904884.177646852564067 ], [ 4967711.173112008720636, 3904909.680707963649184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967667.413847122341394, 3899735.305909178219736 ], [ 4967621.035781506448984, 3899740.323677616193891 ], [ 4967617.631826338358223, 3899710.094993096310645 ], [ 4967664.0105722527951, 3899704.713089707773179 ], [ 4967667.413847122341394, 3899735.305909178219736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967616.74355885013938, 3904898.593665902968496 ], [ 4967636.85623877402395, 3904924.117575451731682 ], [ 4967614.942336234264076, 3904941.1939328443259 ], [ 4967595.117600739002228, 3904915.670536040794104 ], [ 4967616.74355885013938, 3904898.593665902968496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966968.769404311664402, 3896649.199772560503334 ], [ 4966970.085122490301728, 3896722.392058097291738 ], [ 4966936.095143950544298, 3896723.062526145018637 ], [ 4966934.779333263635635, 3896649.87024223478511 ], [ 4966968.769404311664402, 3896649.199772560503334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966940.256073651835322, 3899358.641691560856998 ], [ 4966940.877903640270233, 3899331.697116340976208 ], [ 4966955.565907422453165, 3899332.086219415534288 ], [ 4966956.193945368751884, 3899301.500353936105967 ], [ 4966979.522341492585838, 3899301.904164609033614 ], [ 4966977.675322039052844, 3899371.814013882074505 ], [ 4966950.602833301760256, 3899371.403838290367275 ], [ 4966950.911895795725286, 3899359.023937996011227 ], [ 4966940.256073651835322, 3899358.641691560856998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966890.84406716376543, 3906914.64009394031018 ], [ 4966902.602218232117593, 3906942.334088448435068 ], [ 4966870.33049145527184, 3906956.116287990473211 ], [ 4966858.572313226759434, 3906928.422307369299233 ], [ 4966890.84406716376543, 3906914.64009394031018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966629.329807910136878, 3896382.81002150150016 ], [ 4966601.672072633169591, 3896386.040510295890272 ], [ 4966596.850269518792629, 3896341.608575075399131 ], [ 4966589.93536482937634, 3896342.689299297984689 ], [ 4966587.948534353636205, 3896325.207731866277754 ], [ 4966597.743887885473669, 3896324.131866300944239 ], [ 4966594.905826310627162, 3896299.002143053803593 ], [ 4966637.832481187768281, 3896294.340906340163201 ], [ 4966645.499617115594447, 3896359.533034849446267 ], [ 4966626.773064872249961, 3896361.686193513218313 ], [ 4966629.329807910136878, 3896382.81002150150016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966441.010436864569783, 3897374.017720887903124 ], [ 4966435.877256983891129, 3897343.422194516286254 ], [ 4966459.79138847719878, 3897339.092849077656865 ], [ 4966458.081559514626861, 3897328.166081758216023 ], [ 4966512.823901554569602, 3897318.790833989623934 ], [ 4966520.238575797528028, 3897362.863016913644969 ], [ 4966487.969652426429093, 3897368.270635566208512 ], [ 4966489.966886927373707, 3897379.562018513213843 ], [ 4966467.494177034124732, 3897383.165502447169274 ], [ 4966465.211962716653943, 3897370.052993138786405 ], [ 4966441.010436864569783, 3897374.017720887903124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966349.26232132781297, 3896607.006600933149457 ], [ 4966292.79400123283267, 3896614.19451057119295 ], [ 4966287.391375647857785, 3896572.310559236444533 ], [ 4966313.320630119182169, 3896569.076849378179759 ], [ 4966311.61191241722554, 3896557.421839306131005 ], [ 4966342.151077502407134, 3896553.467626446858048 ], [ 4966349.26232132781297, 3896607.006600933149457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966112.814270017668605, 3894342.454879383090883 ], [ 4966136.74439306370914, 3894330.114437108393759 ], [ 4966166.32208713516593, 3894385.875588098075241 ], [ 4966142.680065100081265, 3894398.216485494747758 ], [ 4966112.814270017668605, 3894342.454879383090883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966000.811462390236557, 3908146.093854074832052 ], [ 4965992.135729348286986, 3908169.019727933220565 ], [ 4965980.626302966848016, 3908164.630979713518173 ], [ 4965972.817375495098531, 3908185.737642575521022 ], [ 4965942.316913516260684, 3908174.398797281552106 ], [ 4965958.513604557141662, 3908130.365759426727891 ], [ 4966000.811462390236557, 3908146.093854074832052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965914.44155206065625, 3897226.393325665500015 ], [ 4965920.433400124311447, 3897260.631473200861365 ], [ 4965841.776447948999703, 3897274.701929593924433 ], [ 4965835.784502922557294, 3897240.463799310848117 ], [ 4965914.44155206065625, 3897226.393325665500015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965623.077178718522191, 3891564.431982857175171 ], [ 4965629.74845365434885, 3891537.133359403349459 ], [ 4965649.907338029704988, 3891541.900313078425825 ], [ 4965685.081491636112332, 3891525.936771794222295 ], [ 4965707.831430584192276, 3891531.800436750520021 ], [ 4965703.772802706807852, 3891547.087121222168207 ], [ 4965708.940460038371384, 3891558.019520167261362 ], [ 4965708.071958628483117, 3891560.566983278375119 ], [ 4965725.870028149336576, 3891599.194038317073137 ], [ 4965690.119756121188402, 3891615.156574491877109 ], [ 4965682.368273666128516, 3891598.757981352508068 ], [ 4965682.077771496959031, 3891600.214015169069171 ], [ 4965668.297936838120222, 3891570.69683925434947 ], [ 4965660.802043615840375, 3891573.961612351704389 ], [ 4965623.077178718522191, 3891564.431982857175171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965406.155882647261024, 3900498.354231575503945 ], [ 4965406.470204942859709, 3900482.333011183422059 ], [ 4965428.357597700320184, 3900482.733110010158271 ], [ 4965427.120009625330567, 3900534.801720993127674 ], [ 4965394.000685470178723, 3900534.383172617293894 ], [ 4965394.636492165736854, 3900497.97117819217965 ], [ 4965406.155882647261024, 3900498.354231575503945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965363.218192263506353, 3891737.693640711251646 ], [ 4965339.817523100413382, 3891777.345262040384114 ], [ 4965309.885073912329972, 3891759.45389512181282 ], [ 4965333.573211104609072, 3891720.166848048102111 ], [ 4965363.218192263506353, 3891737.693640711251646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965263.878579715266824, 3892585.222176976501942 ], [ 4965265.369078865274787, 3892554.637808684725314 ], [ 4965303.105209029279649, 3892556.520260137040168 ], [ 4965301.903348179534078, 3892586.740970712155104 ], [ 4965263.878579715266824, 3892585.222176976501942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965254.016728487797081, 3894562.061754396185279 ], [ 4965222.627951486967504, 3894555.820197799243033 ], [ 4965217.690376427955925, 3894580.572900298051536 ], [ 4965203.003919761627913, 3894577.635851075407118 ], [ 4965207.942672657780349, 3894552.15488967904821 ], [ 4965181.737826317548752, 3894546.650116275064647 ], [ 4965188.417445415630937, 3894513.525285973213613 ], [ 4965260.698221300728619, 3894527.844557423144579 ], [ 4965254.016728487797081, 3894562.061754396185279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965056.297398870810866, 3898693.152551412116736 ], [ 4965060.084972616285086, 3898666.577236140146852 ], [ 4965054.038346691988409, 3898665.474991281982511 ], [ 4965056.371580874547362, 3898647.636425128672272 ], [ 4965062.130784718319774, 3898648.374072015751153 ], [ 4965065.917183227837086, 3898622.527016274631023 ], [ 4965098.456293949857354, 3898626.949639210477471 ], [ 4965096.123624074272811, 3898644.42407248634845 ], [ 4965102.17084710393101, 3898645.16219779709354 ], [ 4965098.965801730751991, 3898667.733027429785579 ], [ 4965091.479080937802792, 3898666.628424844704568 ], [ 4965087.108311556279659, 3898697.572344382293522 ], [ 4965056.297398870810866, 3898693.152551412116736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964911.173517198301852, 3893171.986702614929527 ], [ 4964930.548711476847529, 3893126.502077593002468 ], [ 4964986.109989658929408, 3893149.896652305498719 ], [ 4964966.734718039631844, 3893195.381237897556275 ], [ 4964911.173517198301852, 3893171.986702614929527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964874.163676341995597, 3896983.26694872835651 ], [ 4964842.754019766114652, 3896991.590972815640271 ], [ 4964846.18920667283237, 3897004.705210038460791 ], [ 4964819.677984526380897, 3897011.94481741450727 ], [ 4964805.361093441024423, 3896959.486951646860689 ], [ 4964840.229000009596348, 3896950.076103031169623 ], [ 4964837.652012209407985, 3896940.60455459728837 ], [ 4964860.993120145983994, 3896934.452210463117808 ], [ 4964874.163676341995597, 3896983.26694872835651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964849.032178682275116, 3900934.037067146971822 ], [ 4964857.665531075559556, 3900938.056508869398385 ], [ 4964865.471533085219562, 3900919.498521791305393 ], [ 4964900.582700331695378, 3900934.484873335342854 ], [ 4964882.659025013446808, 3900976.330773106776178 ], [ 4964838.913965583778918, 3900957.689135579392314 ], [ 4964849.032178682275116, 3900934.037067146971822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964784.847359802573919, 3894330.440039922017604 ], [ 4964779.613237546756864, 3894360.654274431057274 ], [ 4964733.247652280144393, 3894352.568398443050683 ], [ 4964738.481134899891913, 3894322.718283122871071 ], [ 4964784.847359802573919, 3894330.440039922017604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964705.049377555958927, 3906445.291783411987126 ], [ 4964677.700755091384053, 3906441.970384140498936 ], [ 4964676.826942725107074, 3906448.159210537560284 ], [ 4964639.114387894980609, 3906443.728707881178707 ], [ 4964644.078101014718413, 3906401.133317159954458 ], [ 4964709.139962802641094, 3906408.521099308505654 ], [ 4964705.049377555958927, 3906445.291783411987126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964198.000502428971231, 3900674.456234306097031 ], [ 4964215.925639252178371, 3900631.153367707971483 ], [ 4964244.994243853725493, 3900643.216156665701419 ], [ 4964227.357648111879826, 3900686.155335241928697 ], [ 4964198.000502428971231, 3900674.456234306097031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964193.302853249013424, 3901992.237153747584671 ], [ 4964185.793170921504498, 3902006.062121266964823 ], [ 4964201.330898270942271, 3902014.461954784579575 ], [ 4964184.000117767602205, 3902046.841894289944321 ], [ 4964145.442926132120192, 3902026.389006356243044 ], [ 4964170.283347077667713, 3901980.184068530797958 ], [ 4964193.302853249013424, 3901992.237153747584671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964161.433914214372635, 3897241.0158571745269 ], [ 4964181.329239414073527, 3897227.938958443235606 ], [ 4964186.21419757604599, 3897235.229353876318783 ], [ 4964211.876055379398167, 3897218.520393043290824 ], [ 4964229.691714168526232, 3897245.130337893031538 ], [ 4964165.103951211087406, 3897287.630312013905495 ], [ 4964137.519488163292408, 3897245.711375845130533 ], [ 4964156.261496933177114, 3897233.360877732746303 ], [ 4964161.433914214372635, 3897241.0158571745269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964128.442127114161849, 3900588.410400445107371 ], [ 4964115.974551463499665, 3900640.825287602841854 ], [ 4964082.867526731453836, 3900632.761636229697615 ], [ 4964091.564356920309365, 3900597.090720409993082 ], [ 4964099.625416601076722, 3900598.924222968984395 ], [ 4964103.684104749001563, 3900582.180696831550449 ], [ 4964128.442127114161849, 3900588.410400445107371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963251.394467236474156, 3907278.298486997839063 ], [ 4963238.990842675790191, 3907292.844374855048954 ], [ 4963206.785104344598949, 3907265.84831066057086 ], [ 4963227.266048979014158, 3907241.483466257341206 ], [ 4963249.982721243053675, 3907260.45382021414116 ], [ 4963241.617466349154711, 3907270.272305455524474 ], [ 4963251.394467236474156, 3907278.298486997839063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963063.03589300531894, 3903796.908082013484091 ], [ 4963048.954523890279233, 3903778.315492106135935 ], [ 4963087.875659126788378, 3903748.881443241145462 ], [ 4963116.325752226635814, 3903786.431249568238854 ], [ 4963082.306265881285071, 3903811.867445863317698 ], [ 4963068.224917953833938, 3903793.274845691863447 ], [ 4963063.03589300531894, 3903796.908082013484091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962838.905865697190166, 3895481.284322564490139 ], [ 4962895.320345927961171, 3895509.773742609191686 ], [ 4962881.740680084563792, 3895536.334143618587404 ], [ 4962825.326804502867162, 3895507.480623257812113 ], [ 4962838.905865697190166, 3895481.284322564490139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962611.150365337729454, 3900473.152157487813383 ], [ 4962655.016677713021636, 3900414.594719900749624 ], [ 4962680.331543643958867, 3900433.568506882060319 ], [ 4962636.465767603367567, 3900491.761774354148656 ], [ 4962611.150365337729454, 3900473.152157487813383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962562.690001577138901, 3895463.01607174333185 ], [ 4962584.846618136391044, 3895478.343559855595231 ], [ 4962547.315752323716879, 3895532.905262439046055 ], [ 4962533.2162577630952, 3895523.052115875296295 ], [ 4962526.28732989076525, 3895533.237094593700022 ], [ 4962507.871503377333283, 3895520.464300035499036 ], [ 4962515.666263942606747, 3895509.188258058857173 ], [ 4962497.825963779352605, 3895496.780483343172818 ], [ 4962520.055822117254138, 3895464.407100671902299 ], [ 4962548.543485041707754, 3895483.74970093742013 ], [ 4962562.690001577138901, 3895463.01607174333185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962502.243152726441622, 3895246.266363932751119 ], [ 4962521.331436816602945, 3895196.409965509083122 ], [ 4962575.166100525297225, 3895217.248034039512277 ], [ 4962571.984047728590667, 3895225.982242839876562 ], [ 4962582.060416468419135, 3895229.639025643933564 ], [ 4962570.492833281867206, 3895259.115706500597298 ], [ 4962555.810377259738743, 3895253.631204050499946 ], [ 4962554.365062283352017, 3895256.906145954504609 ], [ 4962530.182347424328327, 3895247.765770036261529 ], [ 4962527.001431069336832, 3895255.771727659739554 ], [ 4962502.243152726441622, 3895246.266363932751119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962383.583903219550848, 3897115.524787369184196 ], [ 4962349.019030855037272, 3897115.836045623291284 ], [ 4962349.009566161781549, 3897122.026234089862555 ], [ 4962329.71060479991138, 3897122.360862816218287 ], [ 4962329.200753837823868, 3897079.028663592413068 ], [ 4962359.733164254575968, 3897078.711212319787592 ], [ 4962359.469630929641426, 3897062.689107997342944 ], [ 4962382.801146996207535, 3897062.360671054571867 ], [ 4962383.583903219550848, 3897115.524787369184196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962048.226818010210991, 3895651.577554211951792 ], [ 4962044.15872935205698, 3895674.875653302762657 ], [ 4962059.709635397419333, 3895677.448162110056728 ], [ 4962055.931802738457918, 3895699.290183331351727 ], [ 4962045.56472476106137, 3895697.453801754396409 ], [ 4962042.659347644075751, 3895713.835209993179888 ], [ 4962035.747781469486654, 3895712.732334713917226 ], [ 4962032.260786052793264, 3895732.754154555499554 ], [ 4962002.311233149841428, 3895727.610924250911921 ], [ 4962016.837471339851618, 3895646.067993692588061 ], [ 4962048.226818010210991, 3895651.577554211951792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962017.851676686666906, 3897066.538373745977879 ], [ 4962014.045907163992524, 3897106.950984315481037 ], [ 4961954.718750796280801, 3897101.399135322775692 ], [ 4961956.182091197930276, 3897086.107909325975925 ], [ 4961945.813887742348015, 3897085.36395092587918 ], [ 4961947.279429136775434, 3897068.616209674626589 ], [ 4961960.239415653981268, 3897069.728223361074924 ], [ 4961961.116209308616817, 3897061.354571295902133 ], [ 4962017.851676686666906, 3897066.538373745977879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961717.114592053927481, 3895744.658282347489148 ], [ 4961741.010729622095823, 3895752.70511026494205 ], [ 4961731.462289363145828, 3895781.092813184950501 ], [ 4961707.566174206323922, 3895773.045993617270142 ], [ 4961717.114592053927481, 3895744.658282347489148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961634.36175221670419, 3900016.86801985045895 ], [ 4961663.242724364623427, 3899963.384292189497501 ], [ 4961690.293321019969881, 3899977.990187498275191 ], [ 4961661.412858098745346, 3900031.10975718125701 ], [ 4961634.36175221670419, 3900016.86801985045895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961377.64812059700489, 3893524.054690222255886 ], [ 4961372.39104591589421, 3893572.111845285166055 ], [ 4961304.128374026156962, 3893564.727477045729756 ], [ 4961307.926508045755327, 3893529.048514040187001 ], [ 4961332.697105620987713, 3893531.634336515795439 ], [ 4961332.988980355672538, 3893529.085870136972517 ], [ 4961358.335724256001413, 3893531.672575273085386 ], [ 4961359.214072237722576, 3893522.20653705811128 ], [ 4961377.64812059700489, 3893524.054690222255886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961249.05217423196882, 3899408.194522611331195 ], [ 4961244.719541103579104, 3899416.563066563103348 ], [ 4961226.589451705105603, 3899406.704582998529077 ], [ 4961232.942494670860469, 3899395.426001205574721 ], [ 4961216.251361976377666, 3899386.297925489023328 ], [ 4961229.824739545583725, 3899361.557268605567515 ], [ 4961291.409920627251267, 3899394.784780158195645 ], [ 4961276.103555028326809, 3899422.799996229819953 ], [ 4961249.05217423196882, 3899408.194522611331195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961209.052022540941834, 3894347.827216894831508 ], [ 4961191.685310220345855, 3894403.51314099971205 ], [ 4961131.795335401780903, 3894384.853646815288812 ], [ 4961149.161935545504093, 3894329.16768462350592 ], [ 4961209.052022540941834, 3894347.827216894831508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961159.5166474301368, 3898995.866252166684717 ], [ 4961146.522425037808716, 3899018.423019151668996 ], [ 4961119.183630901388824, 3899003.088993915356696 ], [ 4961131.889821725897491, 3898980.531786561012268 ], [ 4961159.5166474301368, 3898995.866252166684717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961109.876598270609975, 3908577.172149202786386 ], [ 4961130.314648206345737, 3908579.751401787158102 ], [ 4961131.191359160467982, 3908571.013532952871174 ], [ 4961154.795915964059532, 3908573.961636500433087 ], [ 4961153.340126551687717, 3908584.883437129668891 ], [ 4961176.368842709809542, 3908587.830704469699413 ], [ 4961173.456166861578822, 3908610.402566299773753 ], [ 4961179.501253138296306, 3908611.139813474845141 ], [ 4961174.842164218425751, 3908646.453703822102398 ], [ 4961146.920068183913827, 3908642.770906766876578 ], [ 4961148.378014793619514, 3908630.392580214422196 ], [ 4961103.759667455218732, 3908624.864379642531276 ], [ 4961109.876598270609975, 3908577.172149202786386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960874.859060373157263, 3909021.793992605991662 ], [ 4960871.05933281686157, 3909060.386401056312025 ], [ 4960805.425965770147741, 3909053.735315235331655 ], [ 4960808.055202172137797, 3909027.885800847318023 ], [ 4960820.433650852181017, 3909028.996425148099661 ], [ 4960823.646229745820165, 3908998.049921296071261 ], [ 4960884.386357139796019, 3909003.965568151324987 ], [ 4960882.631512382999063, 3909022.533720866311342 ], [ 4960874.859060373157263, 3909021.793992605991662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960727.682944695465267, 3909646.792418184690177 ], [ 4960710.912982475943863, 3909695.561514428816736 ], [ 4960654.512125393375754, 3909676.543854875955731 ], [ 4960670.99409506097436, 3909627.774301582016051 ], [ 4960727.682944695465267, 3909646.792418184690177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960644.70571652520448, 3898688.509377525188029 ], [ 4960611.582452626898885, 3898689.189110140316188 ], [ 4960610.493830201216042, 3898645.856059605255723 ], [ 4960643.61714746709913, 3898645.176325670909137 ], [ 4960644.70571652520448, 3898688.509377525188029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960545.340739558450878, 3898884.265816952567548 ], [ 4960506.432383884675801, 3898902.051328623667359 ], [ 4960491.789777297526598, 3898870.350642678327858 ], [ 4960530.698169078677893, 3898852.565110148862004 ], [ 4960545.340739558450878, 3898884.265816952567548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960507.08100513741374, 3901809.996464028488845 ], [ 4960509.746281642466784, 3901759.750339478254318 ], [ 4960539.40673064161092, 3901761.250206362456083 ], [ 4960536.741398822516203, 3901811.496328017674387 ], [ 4960507.08100513741374, 3901809.996464028488845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959463.567928027361631, 3905755.30820148717612 ], [ 4959485.192696465179324, 3905734.947603028267622 ], [ 4959478.004984938539565, 3905727.290616812650114 ], [ 4959505.10797839332372, 3905701.839988935273141 ], [ 4959529.834329018369317, 3905727.728532203938812 ], [ 4959480.81862784922123, 3905773.539310454856604 ], [ 4959463.567928027361631, 3905755.30820148717612 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959288.401818732731044, 3900940.521089248359203 ], [ 4959282.571325484663248, 3900990.398697322234511 ], [ 4959241.970800719223917, 3900985.607579121831805 ], [ 4959246.926938558928668, 3900943.011333422269672 ], [ 4959259.88413639832288, 3900944.850306933745742 ], [ 4959260.758935899473727, 3900937.204806685447693 ], [ 4959288.401818732731044, 3900940.521089248359203 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959242.217223130166531, 3904477.985942278988659 ], [ 4959175.628221358172596, 3904528.141979181673378 ], [ 4959157.807790625840425, 3904504.812441755551845 ], [ 4959183.175229660235345, 3904485.549288000911474 ], [ 4959176.851996025070548, 3904477.165346815716475 ], [ 4959218.073588679544628, 3904446.272410680074245 ], [ 4959242.217223130166531, 3904477.985942278988659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958976.243478250689805, 3905022.715620059985667 ], [ 4959005.362365033477545, 3904997.267329005990177 ], [ 4959028.074188138358295, 3905023.152567496988922 ], [ 4958998.9553077891469, 3905048.600834334269166 ], [ 4958976.243478250689805, 3905022.715620059985667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958892.830842210911214, 3898376.488459507469088 ], [ 4958897.459091985598207, 3898362.293879909440875 ], [ 4958913.581214503385127, 3898367.414283079095185 ], [ 4958908.952957085333765, 3898381.608859949745238 ], [ 4958892.830842210911214, 3898376.488459507469088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958757.723332803696394, 3905203.747094738297164 ], [ 4958783.883486754260957, 3905234.734781549777836 ], [ 4958740.928796941414475, 3905270.723816434387118 ], [ 4958714.481187428347766, 3905239.371638719923794 ], [ 4958727.742072741501033, 3905228.466191389132291 ], [ 4958720.268091649748385, 3905219.352486297953874 ], [ 4958738.430222189985216, 3905204.084303665906191 ], [ 4958746.192150574177504, 3905213.198415513150394 ], [ 4958757.723332803696394, 3905203.747094738297164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957992.647985031828284, 3898668.3673464236781 ], [ 4958004.499100705608726, 3898637.432513662148267 ], [ 4958013.711247236467898, 3898640.722280708607286 ], [ 4958020.070592992939055, 3898623.981007512193173 ], [ 4958050.873256403952837, 3898635.311188273131847 ], [ 4958033.818303668871522, 3898680.439942212309688 ], [ 4958026.909828825853765, 3898677.517449955455959 ], [ 4958019.683445460163057, 3898696.442314997315407 ], [ 4957995.21427346020937, 3898687.305606231559068 ], [ 4958001.284083815291524, 3898671.656321850605309 ], [ 4957992.647985031828284, 3898668.3673464236781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957943.320177585817873, 3905263.068485658150166 ], [ 4957968.959052059799433, 3905254.728488064836711 ], [ 4957978.995948906987906, 3905284.965101728681475 ], [ 4957953.357100129127502, 3905293.305089898873121 ], [ 4957943.320177585817873, 3905263.068485658150166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957872.88533051777631, 3901165.408164348918945 ], [ 4957880.988826064392924, 3901136.288777865935117 ], [ 4957938.854020025581121, 3901152.025314553175122 ], [ 4957930.749969489872456, 3901181.508813581895083 ], [ 4957872.88533051777631, 3901165.408164348918945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957708.163348475471139, 3898397.795650358311832 ], [ 4957707.266684943810105, 3898421.826999273616821 ], [ 4957685.66602473333478, 3898421.069450023584068 ], [ 4957686.562668975442648, 3898397.038100401870906 ], [ 4957708.163348475471139, 3898397.795650358311832 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957570.656384088099003, 3900831.090508047956973 ], [ 4957559.963139029219747, 3900858.749962305650115 ], [ 4957528.875315613113344, 3900847.05581070529297 ], [ 4957539.568533284589648, 3900819.396344269160181 ], [ 4957570.656384088099003, 3900831.090508047956973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957178.735624518245459, 3907475.954962830990553 ], [ 4957198.853832761757076, 3907503.291754234582186 ], [ 4957172.338476912118495, 3907522.919408241286874 ], [ 4957151.932818269357085, 3907495.218120525591075 ], [ 4957178.735624518245459, 3907475.954962830990553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956617.252980157732964, 3904872.034195379819721 ], [ 4956645.788610093295574, 3904850.588027836754918 ], [ 4956669.934432407841086, 3904882.663386663421988 ], [ 4956687.228403061628342, 3904869.941595998592675 ], [ 4956697.00198932364583, 3904882.699077725410461 ], [ 4956681.149225538596511, 3904894.330368839204311 ], [ 4956694.084519564174116, 3904911.461592830717564 ], [ 4956663.819762733764946, 3904933.997824616264552 ], [ 4956617.252980157732964, 3904872.034195379819721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956150.57297498267144, 3905466.050340828485787 ], [ 4956165.807169776409864, 3905486.825615357607603 ], [ 4956143.614503038115799, 3905502.818565756082535 ], [ 4956128.092353885993361, 3905482.042929865419865 ], [ 4956150.57297498267144, 3905466.050340828485787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956063.391116944141686, 3905859.563231582287699 ], [ 4956093.368275103159249, 3905835.569414332509041 ], [ 4956133.902936644852161, 3905885.872136723715812 ], [ 4956110.555071459151804, 3905904.776669417973608 ], [ 4956096.756531930528581, 3905887.280464892741293 ], [ 4956090.126784898340702, 3905892.733839104883373 ], [ 4956063.391116944141686, 3905859.563231582287699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955970.327422138303518, 3905681.746717153582722 ], [ 4956008.278118955902755, 3905726.583935761358589 ], [ 4955988.38882118742913, 3905742.944127226248384 ], [ 4955975.451597122475505, 3905727.269757208414376 ], [ 4955971.992508818395436, 3905730.178338136989623 ], [ 4955947.26696902140975, 3905701.015892149880528 ], [ 4955970.327422138303518, 3905681.746717153582722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954986.426177512854338, 3895582.070186481811106 ], [ 4955012.543361747637391, 3895658.205963637679815 ], [ 4954980.84398072771728, 3895669.090042558498681 ], [ 4954955.015226237475872, 3895592.590528334025294 ], [ 4954986.426177512854338, 3895582.070186481811106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954683.410582543350756, 3905293.043168998789042 ], [ 4954735.737318710424006, 3905357.195422850549221 ], [ 4954621.018842765130103, 3905449.90618441440165 ], [ 4954568.692014094442129, 3905385.754150305408984 ], [ 4954683.410582543350756, 3905293.043168998789042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954296.295801400206983, 3894843.123391755856574 ], [ 4954315.275534714572132, 3894869.364014636259526 ], [ 4954291.056561934761703, 3894887.176554861944169 ], [ 4954297.958359339274466, 3894896.652391689363867 ], [ 4954275.470016594044864, 3894912.646429005078971 ], [ 4954249.588907464407384, 3894876.565879032481462 ], [ 4954296.295801400206983, 3894843.123391755856574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954140.859766966663301, 3894983.122413361445069 ], [ 4954127.934529243968427, 3894952.519768562167883 ], [ 4954148.397423153743148, 3894943.805708082858473 ], [ 4954147.24875106010586, 3894940.891270628198981 ], [ 4954179.816397819668055, 3894927.094244619365782 ], [ 4954200.210147842764854, 3894974.820128987543285 ], [ 4954169.660297356545925, 3894987.527214590925723 ], [ 4954163.628004716709256, 3894973.68292712746188 ], [ 4954140.859766966663301, 3894983.122413361445069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953790.390481189824641, 3901087.329099270049483 ], [ 4953792.45008422061801, 3901051.282694546505809 ], [ 4953801.665444445796311, 3901051.657984690740705 ], [ 4953803.13584550935775, 3901026.534776241984218 ], [ 4953863.034190139733255, 3901030.248696558643132 ], [ 4953860.391434478573501, 3901072.120472573209554 ], [ 4953861.255415174178779, 3901072.121520912274718 ], [ 4953859.201464868150651, 3901103.434233922045678 ], [ 4953803.046754313632846, 3901100.088986227754503 ], [ 4953803.924847947433591, 3901088.437880424782634 ], [ 4953790.390481189824641, 3901087.329099270049483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953245.017179193906486, 3890607.76565280649811 ], [ 4953274.427814481779933, 3890587.773626027163118 ], [ 4953282.768135906197131, 3890600.163914452306926 ], [ 4953289.111669974401593, 3890595.801936567761004 ], [ 4953310.682699685916305, 3890626.778533031232655 ], [ 4953303.762524400837719, 3890631.503946459386498 ], [ 4953310.665331571362913, 3890641.343633843585849 ], [ 4953281.831371853128076, 3890660.972180561162531 ], [ 4953245.017179193906486, 3890607.76565280649811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952480.634072359651327, 3888903.84098935034126 ], [ 4952483.417605184018612, 3888987.957714565563947 ], [ 4952450.282186236232519, 3888989.011627671308815 ], [ 4952447.498127383179963, 3888905.259033001493663 ], [ 4952480.634072359651327, 3888903.84098935034126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951715.58478529099375, 3901174.109009524807334 ], [ 4951766.561106761917472, 3901172.7103217151016 ], [ 4951768.220010735094547, 3901233.521963061299175 ], [ 4951717.244217302650213, 3901234.55651795072481 ], [ 4951715.58478529099375, 3901174.109009524807334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951725.115967074409127, 3891241.039286373183131 ], [ 4951754.80792005173862, 3891225.415448585990816 ], [ 4951792.468237305991352, 3891296.463193103671074 ], [ 4951767.100706187076867, 3891309.543000939302146 ], [ 4951759.051311574876308, 3891294.240483060944825 ], [ 4951734.548089258372784, 3891307.321302379015833 ], [ 4951723.623882593587041, 3891286.553613405674696 ], [ 4951743.802749073132873, 3891276.016776301898062 ], [ 4951725.115967074409127, 3891241.039286373183131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951065.230368688702583, 3893703.627976269926876 ], [ 4951092.023942804895341, 3893701.10880468506366 ], [ 4951095.720375615172088, 3893744.808347163256258 ], [ 4951068.927248579449952, 3893746.963386915624142 ], [ 4951065.230368688702583, 3893703.627976269926876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950989.250519506633282, 3893639.093047313392162 ], [ 4951055.230185711756349, 3893629.334643652196974 ], [ 4951059.805038790218532, 3893660.290650598704815 ], [ 4950993.825446862727404, 3893670.049043197184801 ], [ 4950989.250519506633282, 3893639.093047313392162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950357.242640525102615, 3891752.944324953015894 ], [ 4950334.762687074020505, 3891760.930817619431764 ], [ 4950328.443931264802814, 3891743.081699479371309 ], [ 4950350.635804131627083, 3891735.094889773987234 ], [ 4950357.242640525102615, 3891752.944324953015894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949748.115496852435172, 3894290.267330201808363 ], [ 4949754.187281055375934, 3894269.154299578163773 ], [ 4949794.216533903032541, 3894280.484764371067286 ], [ 4949787.856268128380179, 3894301.961608649697155 ], [ 4949748.115496852435172, 3894290.267330201808363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948873.59157901443541, 3888637.357364064082503 ], [ 4948843.614806552417576, 3888648.614538611378521 ], [ 4948829.248061034828424, 3888610.002278454136103 ], [ 4948859.224870475940406, 3888598.745088132098317 ], [ 4948873.59157901443541, 3888637.357364064082503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948744.335383526049554, 3890217.539178039412946 ], [ 4948766.141180178150535, 3890306.044563261326402 ], [ 4948748.56206641998142, 3890310.396113232709467 ], [ 4948745.11890972033143, 3890296.555731705855578 ], [ 4948685.465477527119219, 3890311.059910776093602 ], [ 4948667.102627659216523, 3890236.394961216952652 ], [ 4948744.335383526049554, 3890217.539178039412946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946586.549758575856686, 3890965.52276882249862 ], [ 4946591.416944787837565, 3890997.934749316889793 ], [ 4946518.228892862796783, 3891008.789706286042929 ], [ 4946513.361620424315333, 3890976.37773883389309 ], [ 4946586.549758575856686, 3890965.52276882249862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945426.962606511078775, 3891259.398723589722067 ], [ 4945436.493776654824615, 3891232.825947967357934 ], [ 4945457.805889778770506, 3891240.855945993680507 ], [ 4945460.694420546293259, 3891232.483601685147732 ], [ 4945497.558942340314388, 3891245.989561521913856 ], [ 4945484.851411202922463, 3891280.570269817020744 ], [ 4945426.962606511078775, 3891259.398723589722067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944904.93557670339942, 3891904.897649141494185 ], [ 4944920.221753594465554, 3891885.248180878348649 ], [ 4944932.889462313614786, 3891894.726669610943645 ], [ 4944949.041225675493479, 3891873.621467582415789 ], [ 4944984.165000015869737, 3891900.233809448778629 ], [ 4944972.051327032037079, 3891915.880630498751998 ], [ 4944965.429715140722692, 3891910.776994051877409 ], [ 4944946.105424277484417, 3891935.884800453670323 ], [ 4944904.93557670339942, 3891904.897649141494185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944626.453082328662276, 3890461.614667911548167 ], [ 4944644.887828321196139, 3890466.36436471156776 ], [ 4944635.926099794916809, 3890501.312845498323441 ], [ 4944617.491376200690866, 3890496.563154738396406 ], [ 4944626.453082328662276, 3890461.614667911548167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943965.343033741228282, 3891370.275539033580571 ], [ 4943977.730303968302906, 3891371.378391898237169 ], [ 4943980.937858746387064, 3891325.865095850545913 ], [ 4944015.219362845644355, 3891328.442997874692082 ], [ 4944009.679536432027817, 3891406.361713838297874 ], [ 4943963.298357731662691, 3891403.40946593740955 ], [ 4943965.343033741228282, 3891370.275539033580571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942875.328442220576108, 3889754.469531899318099 ], [ 4942907.861661469563842, 3889783.990063011646271 ], [ 4942894.308260729536414, 3889798.908385705202818 ], [ 4942900.642085422761738, 3889804.739528781268746 ], [ 4942885.070142135955393, 3889821.840997342951596 ], [ 4942846.203105706721544, 3889786.489361459389329 ], [ 4942875.328442220576108, 3889754.469531899318099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942177.860662187449634, 3890049.225204211659729 ], [ 4942155.937560358084738, 3890083.436159615404904 ], [ 4942102.08728945069015, 3890049.166331829037517 ], [ 4942123.721955867484212, 3890015.319237056188285 ], [ 4942177.860662187449634, 3890049.225204211659729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993378.226784042082727, 3907485.020516120828688 ], [ 4993382.14629480894655, 3907526.542170663829893 ], [ 4993356.803084303624928, 3907528.658944486640394 ], [ 4993353.171459532342851, 3907487.138066206593066 ], [ 4993378.226784042082727, 3907485.020516120828688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992184.550390910357237, 3910730.637931465171278 ], [ 4992201.986671420745552, 3910778.021320392843336 ], [ 4992172.305209362879395, 3910788.866953432094306 ], [ 4992154.869844701141119, 3910741.119452549610287 ], [ 4992184.550390910357237, 3910730.637931465171278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988913.079932478256524, 3907819.331361084710807 ], [ 4988884.577560354024172, 3907818.531335255596787 ], [ 4988884.272224155254662, 3907825.449087205342948 ], [ 4988858.936991030350327, 3907824.657060951460153 ], [ 4988860.77263637073338, 3907781.694026727695018 ], [ 4988914.609403303824365, 3907783.650212455540895 ], [ 4988913.079932478256524, 3907819.331361084710807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988390.044705536216497, 3906849.062657290138304 ], [ 4988341.667640245519578, 3906850.762484292965382 ], [ 4988339.773037129081786, 3906802.328142249956727 ], [ 4988388.438121658749878, 3906800.629031330812722 ], [ 4988390.044705536216497, 3906849.062657290138304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988134.481394650414586, 3913507.692674827761948 ], [ 4988182.88003184273839, 3913492.519595632795244 ], [ 4988198.303803202696145, 3913540.987842425704002 ], [ 4988179.289623526856303, 3913547.130739653948694 ], [ 4988175.006197246722877, 3913533.282978501170874 ], [ 4988145.620897699147463, 3913542.677269426174462 ], [ 4988134.481394650414586, 3913507.692674827761948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987981.793640748597682, 3907992.878372982610017 ], [ 4987936.564989338628948, 3908002.961796331685036 ], [ 4987934.856451557949185, 3907995.310769936069846 ], [ 4987910.657672863453627, 3908000.712713259272277 ], [ 4987903.821679173968732, 3907970.836876041255891 ], [ 4987973.537114426493645, 3907955.35220415238291 ], [ 4987981.793640748597682, 3907992.878372982610017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987909.627836068160832, 3905746.366384328342974 ], [ 4987906.671624465845525, 3905777.310285043437034 ], [ 4987913.005470351316035, 3905777.690129624679685 ], [ 4987910.636886788532138, 3905803.901770042721182 ], [ 4987902.576293062418699, 3905803.153510672505945 ], [ 4987900.210431315936148, 3905828.27276259008795 ], [ 4987866.240426081232727, 3905825.275469032581896 ], [ 4987868.613478249870241, 3905797.243174691684544 ], [ 4987851.340512284077704, 3905795.743828857317567 ], [ 4987853.118711711838841, 3905775.356834810692817 ], [ 4987872.4072927525267, 3905776.86117900069803 ], [ 4987875.369784751906991, 3905743.368365061003715 ], [ 4987909.627836068160832, 3905746.366384328342974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987707.649683005176485, 3903353.15545682515949 ], [ 4987705.241478282958269, 3903395.388770373538136 ], [ 4987719.350141852162778, 3903396.151926284190267 ], [ 4987717.83554726652801, 3903426.371105962432921 ], [ 4987675.509601697325706, 3903424.081662787124515 ], [ 4987677.023248731158674, 3903394.226610174868256 ], [ 4987670.112900310195982, 3903393.845398273784667 ], [ 4987672.521949950605631, 3903351.247952219098806 ], [ 4987707.649683005176485, 3903353.15545682515949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987594.648602940142155, 3913195.019571443088353 ], [ 4987638.133113220334053, 3913188.208455636631697 ], [ 4987644.658583355136216, 3913226.82276984071359 ], [ 4987600.88537123426795, 3913233.997295882087201 ], [ 4987594.648602940142155, 3913195.019571443088353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986885.438061605207622, 3908444.615430721081793 ], [ 4986860.089131570421159, 3908449.651377887930721 ], [ 4986861.513587993569672, 3908455.845112765207887 ], [ 4986837.029305108822882, 3908460.519060381222516 ], [ 4986827.640997992828488, 3908414.251288237981498 ], [ 4986877.474287639372051, 3908404.541377657093108 ], [ 4986885.438061605207622, 3908444.615430721081793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985408.746338410302997, 3910119.701259006280452 ], [ 4985362.390638659708202, 3910121.41126615088433 ], [ 4985361.316384984180331, 3910089.00086038839072 ], [ 4985383.774085021577775, 3910088.326193302404135 ], [ 4985382.963415338657796, 3910066.112141882069409 ], [ 4985406.860621083527803, 3910065.440930281765759 ], [ 4985408.746338410302997, 3910119.701259006280452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985368.77802727650851, 3904669.271345202811062 ], [ 4985334.485328881070018, 3904680.11349836923182 ], [ 4985310.765624492429197, 3904604.317521875724196 ], [ 4985356.297373851761222, 3904589.860829749610275 ], [ 4985368.585643103346229, 3904629.216384333558381 ], [ 4985357.346693839877844, 3904632.830888478085399 ], [ 4985368.77802727650851, 3904669.271345202811062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985279.510143279097974, 3905757.448917389847338 ], [ 4985316.015574815683067, 3905784.1175700831227 ], [ 4985276.149288621731102, 3905838.642364861443639 ], [ 4985249.991619468666613, 3905819.64518281025812 ], [ 4985255.480744604021311, 3905812.011483049951494 ], [ 4985238.233659434132278, 3905799.589916238095611 ], [ 4985245.45651360694319, 3905789.411418482661247 ], [ 4985235.970868309028447, 3905782.470319990534335 ], [ 4985246.08269743155688, 3905768.293248999863863 ], [ 4985262.754780347459018, 3905780.349318703170866 ], [ 4985279.510143279097974, 3905757.448917389847338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985149.055784245952964, 3909032.87382971867919 ], [ 4985180.709230868145823, 3909039.867651733569801 ], [ 4985174.599049594253302, 3909066.798942009918392 ], [ 4985184.382719256915152, 3909069.007018092088401 ], [ 4985181.182808206416667, 3909082.83645105548203 ], [ 4985168.52093208860606, 3909080.257395934313536 ], [ 4985164.735686998814344, 3909098.090899508912116 ], [ 4985179.987856457009912, 3909101.040248974226415 ], [ 4985176.206072081811726, 3909117.417228085454553 ], [ 4985132.466664093546569, 3909107.84574222099036 ], [ 4985149.055784245952964, 3909032.87382971867919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984963.63779157306999, 3899682.62229006132111 ], [ 4984981.834129613824189, 3899660.817587541881949 ], [ 4984996.206928263418376, 3899672.50385544449091 ], [ 4984978.298594732768834, 3899694.309231276623905 ], [ 4984963.63779157306999, 3899682.62229006132111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984705.850955663248897, 3908836.284131955355406 ], [ 4984726.626096091233194, 3908817.034169737715274 ], [ 4984778.89409148786217, 3908872.870016049593687 ], [ 4984758.406866270117462, 3908892.120619063731283 ], [ 4984705.850955663248897, 3908836.284131955355406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984175.161535374820232, 3917222.127334705088288 ], [ 4984203.117675974965096, 3917206.170917796436697 ], [ 4984217.450662760995328, 3917230.965671456418931 ], [ 4984189.494539345614612, 3917246.922073710244149 ], [ 4984175.161535374820232, 3917222.127334705088288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984157.259043572470546, 3903352.620907048229128 ], [ 4984178.346214887686074, 3903447.708603969309479 ], [ 4984203.988171740435064, 3903442.306687428150326 ], [ 4984216.526528407819569, 3903498.77645087428391 ], [ 4984214.508196014910936, 3903499.864116495475173 ], [ 4984219.349891657941043, 3903522.815748379100114 ], [ 4984155.67672757152468, 3903536.503625550307333 ], [ 4984140.289260662160814, 3903466.918486468028277 ], [ 4984141.442836595699191, 3903466.192923048976809 ], [ 4984134.317768262699246, 3903434.496806311886758 ], [ 4984121.06441362388432, 3903437.378848952241242 ], [ 4984115.080966093577445, 3903410.054987036623061 ], [ 4984119.982393889687955, 3903407.517532657366246 ], [ 4984116.562547880224884, 3903392.216008494608104 ], [ 4984074.497835671529174, 3903401.22092589084059 ], [ 4984072.220474625006318, 3903389.927525041624904 ], [ 4984060.749385038390756, 3903369.509347014129162 ], [ 4984059.324859095737338, 3903362.951650395058095 ], [ 4984046.071477341465652, 3903365.833729910198599 ], [ 4984042.080750414170325, 3903348.346092713996768 ], [ 4984060.808108443394303, 3903344.384410264901817 ], [ 4984064.250121275894344, 3903350.218559434171766 ], [ 4984078.956128270365298, 3903341.87791242916137 ], [ 4984091.921556117944419, 3903338.995175795629621 ], [ 4984083.373574266210198, 3903300.013117987196892 ], [ 4984121.116345261223614, 3903292.090497648809105 ], [ 4984134.307571191340685, 3903315.789909042883664 ], [ 4984178.677899521775544, 3903306.062221213243902 ], [ 4984185.803803087212145, 3903337.39421772910282 ], [ 4984159.852470542304218, 3903351.89871496334672 ], [ 4984157.259043572470546, 3903352.620907048229128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983875.66496695112437, 3907659.280395979061723 ], [ 4983885.953799152746797, 3907692.076300363056362 ], [ 4983840.428095016628504, 3907706.535511502064764 ], [ 4983830.139212908223271, 3907673.739624249748886 ], [ 4983875.66496695112437, 3907659.280395979061723 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983820.885470530949533, 3906083.552389914635569 ], [ 4983827.707835866138339, 3906121.438016570173204 ], [ 4983761.452958783134818, 3906133.664294265210629 ], [ 4983756.900986780412495, 3906109.985117828473449 ], [ 4983779.370442209765315, 3906105.667810045182705 ], [ 4983776.812030408531427, 3906091.460704477038234 ], [ 4983820.885470530949533, 3906083.552389914635569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983735.109567762352526, 3894797.480914357118309 ], [ 4983751.446066724136472, 3894833.203596476465464 ], [ 4983736.162783006206155, 3894840.08653028216213 ], [ 4983742.180730702355504, 3894853.573316202033311 ], [ 4983718.53440951090306, 3894864.442246258724481 ], [ 4983713.662770722061396, 3894853.507036630064249 ], [ 4983695.207463476806879, 3894861.839142018463463 ], [ 4983690.334123189561069, 3894851.632191990036517 ], [ 4983677.06897787284106, 3894857.791587806306779 ], [ 4983664.171367977745831, 3894829.72365702688694 ], [ 4983735.109567762352526, 3894797.480914357118309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983481.073300414718688, 3909457.907163348048925 ], [ 4983441.031927858479321, 3909467.646036006510258 ], [ 4983432.47403774689883, 3909433.397740258369595 ], [ 4983472.228397365659475, 3909423.29405741347 ], [ 4983481.073300414718688, 3909457.907163348048925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983063.221209126524627, 3895103.252997425850481 ], [ 4983092.313343852758408, 3895104.048167835921049 ], [ 4983091.961622937582433, 3895131.721214662771672 ], [ 4983062.580623647198081, 3895131.289510012604296 ], [ 4983063.221209126524627, 3895103.252997425850481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982658.745534867979586, 3916414.972723033279181 ], [ 4982686.966950880363584, 3916408.84697234025225 ], [ 4982691.808406203985214, 3916431.43438075389713 ], [ 4982713.982069674879313, 3916426.751362996175885 ], [ 4982718.538170075044036, 3916448.24572028266266 ], [ 4982701.547940218821168, 3916451.848189127165824 ], [ 4982709.52382867410779, 3916488.279881259892136 ], [ 4982676.406911469064653, 3916495.486815942917019 ], [ 4982658.745534867979586, 3916414.972723033279181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982162.849258506670594, 3905225.124990349169821 ], [ 4982198.603669848293066, 3905203.722281984984875 ], [ 4982212.66196817625314, 3905226.330347032751888 ], [ 4982176.906749993562698, 3905248.097166989464313 ], [ 4982162.849258506670594, 3905225.124990349169821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982094.09435305185616, 3905577.813037247862667 ], [ 4982111.871085761114955, 3905611.353433161973953 ], [ 4982075.257571718655527, 3905630.933656501118094 ], [ 4982057.480806428939104, 3905597.393284404650331 ], [ 4982094.09435305185616, 3905577.813037247862667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982015.342976535670459, 3902711.554864006116986 ], [ 4982016.178087602369487, 3902724.301347894594073 ], [ 4982000.33694582618773, 3902725.357927742414176 ], [ 4982001.450161568820477, 3902742.47461562557146 ], [ 4981972.648481091484427, 3902744.230179254896939 ], [ 4981970.700114941224456, 3902714.367010024841875 ], [ 4982015.342976535670459, 3902711.554864006116986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981596.142950822599232, 3904720.980359814595431 ], [ 4981733.350241594947875, 3904658.658172932453454 ], [ 4981749.110714323818684, 3904692.922033096663654 ], [ 4981611.903561401180923, 3904755.24414080940187 ], [ 4981596.142950822599232, 3904720.980359814595431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981579.067135787568986, 3905400.776107045356184 ], [ 4981536.183428660035133, 3905391.576566861011088 ], [ 4981532.692118898034096, 3905407.590537266805768 ], [ 4981522.618053779937327, 3905405.747280037030578 ], [ 4981520.289975608699024, 3905416.666014872025698 ], [ 4981470.498807437717915, 3905405.994560080580413 ], [ 4981476.317325826734304, 3905379.425972980447114 ], [ 4981460.200429734773934, 3905375.74853699374944 ], [ 4981468.055794354528189, 3905339.717083940748125 ], [ 4981484.172711010091007, 3905343.394524559844285 ], [ 4981489.991256200708449, 3905316.825941440183669 ], [ 4981543.235506655648351, 3905328.597574628423899 ], [ 4981540.328249985352159, 3905340.971535216551274 ], [ 4981549.250546997413039, 3905342.812214413657784 ], [ 4981545.175974614918232, 3905362.102060810662806 ], [ 4981585.75778097845614, 3905370.568182704970241 ], [ 4981579.067135787568986, 3905400.776107045356184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981436.316784838214517, 3907553.933366423472762 ], [ 4981471.524320876225829, 3907517.963148878887296 ], [ 4981467.21524606179446, 3907513.583903234452009 ], [ 4981486.550271163694561, 3907493.964094727300107 ], [ 4981511.545825535431504, 3907518.05287703871727 ], [ 4981495.673238732852042, 3907534.403239709325135 ], [ 4981503.717972174286842, 3907542.068058028817177 ], [ 4981490.443251741118729, 3907555.51119079021737 ], [ 4981480.962978882715106, 3907546.022496615536511 ], [ 4981455.278165600262582, 3907572.546596223954111 ], [ 4981436.316784838214517, 3907553.933366423472762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980836.857973669655621, 3900929.771634306292981 ], [ 4980754.166297633200884, 3900946.338446849491447 ], [ 4980740.777229371480644, 3900880.036988504230976 ], [ 4980823.469100873917341, 3900863.470135443843901 ], [ 4980836.857973669655621, 3900929.771634306292981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980753.446023914031684, 3914922.832098132930696 ], [ 4980780.972636802121997, 3914970.95877911709249 ], [ 4980709.209050738252699, 3915011.582846723496914 ], [ 4980681.683157023973763, 3914963.092105796094984 ], [ 4980753.446023914031684, 3914922.832098132930696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980588.961005381308496, 3904681.231883209198713 ], [ 4980618.79247066564858, 3904733.732737990096211 ], [ 4980581.598928204737604, 3904755.134363292250782 ], [ 4980551.479459627531469, 3904702.632913663052022 ], [ 4980588.961005381308496, 3904681.231883209198713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980589.05164557043463, 3903466.489196420181543 ], [ 4980602.640019342303276, 3903442.122398645151407 ], [ 4980656.424866830930114, 3903471.735886219423264 ], [ 4980642.836459085345268, 3903496.102657235693187 ], [ 4980589.05164557043463, 3903466.489196420181543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980519.798193350434303, 3893603.501796618569642 ], [ 4980548.873547007329762, 3893612.669146659318358 ], [ 4980538.431430261582136, 3893645.05362244695425 ], [ 4980509.644181391224265, 3893635.886918519623578 ], [ 4980519.798193350434303, 3893603.501796618569642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980439.527927706949413, 3899705.050273758824915 ], [ 4980396.284226438961923, 3899724.253998624626547 ], [ 4980382.241530578583479, 3899692.543738215230405 ], [ 4980425.77247953787446, 3899673.704754053615034 ], [ 4980439.527927706949413, 3899705.050273758824915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980376.92184669803828, 3899230.450378919951618 ], [ 4980405.168788081035018, 3899220.681009215768427 ], [ 4980414.614718369208276, 3899247.283326250966638 ], [ 4980386.367801445536315, 3899257.052686178125441 ], [ 4980376.92184669803828, 3899230.450378919951618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980308.490885580889881, 3906384.751204366330057 ], [ 4980329.531876263208687, 3906374.965892311185598 ], [ 4980338.129942759871483, 3906393.191401294898242 ], [ 4980317.088963177986443, 3906402.976706733461469 ], [ 4980308.490885580889881, 3906384.751204366330057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980285.99000022187829, 3901684.855921340174973 ], [ 4980339.917223928496242, 3901651.474380895961076 ], [ 4980363.162506830878556, 3901688.666863800026476 ], [ 4980308.947341971099377, 3901722.047725495882332 ], [ 4980285.99000022187829, 3901684.855921340174973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980276.099682665430009, 3900156.21286156354472 ], [ 4980294.446305839344859, 3900195.215144257061183 ], [ 4980266.770036772824824, 3900207.898932406678796 ], [ 4980261.037162681110203, 3900195.505900899879634 ], [ 4980223.846429841592908, 3900212.902543986681849 ], [ 4980211.520623897202313, 3900186.293960374779999 ], [ 4980276.099682665430009, 3900156.21286156354472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980242.866118007339537, 3909127.252083344385028 ], [ 4980208.536437533795834, 3909158.492139871232212 ], [ 4980190.155127367004752, 3909138.060380155686289 ], [ 4980224.196105697192252, 3909107.183799498248845 ], [ 4980242.866118007339537, 3909127.252083344385028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980245.414484542794526, 3904425.583308574743569 ], [ 4980218.615247921086848, 3904434.263646814506501 ], [ 4980212.322526474483311, 3904414.950862708035856 ], [ 4980205.694705165922642, 3904417.121110932901502 ], [ 4980190.248812723904848, 3904369.750118173658848 ], [ 4980223.963898744434118, 3904358.90013859141618 ], [ 4980245.414484542794526, 3904425.583308574743569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980228.525935366749763, 3904510.753040504641831 ], [ 4980231.765388733707368, 3904477.988302552141249 ], [ 4980226.007046471349895, 3904477.611532746814191 ], [ 4980228.652204748243093, 3904453.220518386922777 ], [ 4980261.184187046252191, 3904456.569122299086303 ], [ 4980260.300325082615018, 3904465.670472319703549 ], [ 4980278.437629533931613, 3904467.530964826233685 ], [ 4980273.725542674772441, 3904515.22186004370451 ], [ 4980228.525935366749763, 3904510.753040504641831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980206.65895558334887, 3901614.768620682414621 ], [ 4980183.302404216490686, 3901628.190240898169577 ], [ 4980166.947777681984007, 3901600.480426541063935 ], [ 4980190.305143438279629, 3901586.694663090631366 ], [ 4980206.65895558334887, 3901614.768620682414621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980118.685164170339704, 3903386.438192301429808 ], [ 4980140.260479210875928, 3903396.681142271962017 ], [ 4980117.696826137602329, 3903443.240525850094855 ], [ 4980096.408710916526616, 3903433.362353936303407 ], [ 4980118.685164170339704, 3903386.438192301429808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980093.893203490413725, 3907343.404533168766648 ], [ 4980105.750028089620173, 3907319.761904082726687 ], [ 4980129.910330493934453, 3907331.467068603262305 ], [ 4980118.341415969654918, 3907355.110318005550653 ], [ 4980093.893203490413725, 3907343.404533168766648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980025.497973919846117, 3900041.690768315922469 ], [ 4980041.253798078745604, 3900080.323078359477222 ], [ 4979997.150952942669392, 3900097.704915168695152 ], [ 4979981.682284472510219, 3900059.437388840131462 ], [ 4980025.497973919846117, 3900041.690768315922469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980005.491867752745748, 3901947.143841961398721 ], [ 4979997.417166940867901, 3901952.224024989176542 ], [ 4979983.925680564716458, 3901932.167327822186053 ], [ 4979987.675047940574586, 3901929.626604600809515 ], [ 4979974.757920760661364, 3901910.299429800361395 ], [ 4979999.849195365794003, 3901893.604239335749298 ], [ 4980038.889271873049438, 3901951.222319277469069 ], [ 4980017.83537579793483, 3901965.377384475432336 ], [ 4980005.491867752745748, 3901947.143841961398721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980001.708159047178924, 3901438.444538047537208 ], [ 4980017.184755112975836, 3901472.706686058081686 ], [ 4980009.112298260442913, 3901476.69447641633451 ], [ 4980018.284160780720413, 3901496.741734283510596 ], [ 4979993.492432566359639, 3901507.975594418123364 ], [ 4979968.556732452474535, 3901453.301457036286592 ], [ 4980001.708159047178924, 3901438.444538047537208 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979740.37853342667222, 3902420.664264365565032 ], [ 4979766.20151208806783, 3902464.416219391394407 ], [ 4979741.6916264872998, 3902478.928110553417355 ], [ 4979729.928087917156518, 3902458.875295232050121 ], [ 4979723.007884095422924, 3902462.865680535789579 ], [ 4979708.948414206504822, 3902439.166567576583475 ], [ 4979740.37853342667222, 3902420.664264365565032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979723.847034441307187, 3907105.91073689237237 ], [ 4979739.166713107377291, 3907078.634163923561573 ], [ 4979765.336551496759057, 3907093.256430085282773 ], [ 4979750.304783254861832, 3907120.533615246415138 ], [ 4979723.847034441307187, 3907105.91073689237237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979608.04159162286669, 3908590.590799083933234 ], [ 4979629.033131955191493, 3908602.652774611487985 ], [ 4979620.363312535919249, 3908617.563372920267284 ], [ 4979599.370989238843322, 3908605.86553486995399 ], [ 4979608.04159162286669, 3908590.590799083933234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979457.559268666431308, 3906685.124057986773551 ], [ 4979466.213838305324316, 3906677.496032910421491 ], [ 4979450.416141763329506, 3906659.619337798561901 ], [ 4979471.764262065291405, 3906640.730716246180236 ], [ 4979509.392020914703608, 3906683.051597150973976 ], [ 4979479.101406424306333, 3906709.567583500873297 ], [ 4979457.559268666431308, 3906685.124057986773551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979303.512950272299349, 3904553.16284899180755 ], [ 4979277.872262040153146, 3904558.933574974536896 ], [ 4979264.471959194168448, 3904497.002266121096909 ], [ 4979283.485762375406921, 3904493.037873434834182 ], [ 4979286.624191186390817, 3904506.517521147150546 ], [ 4979318.026428299024701, 3904499.666858041193336 ], [ 4979326.295333914458752, 3904537.554416067432612 ], [ 4979301.231325219385326, 3904542.962234432809055 ], [ 4979303.512950272299349, 3904553.16284899180755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979274.213976129889488, 3896382.00597485806793 ], [ 4979325.266174891032279, 3896350.436927660834044 ], [ 4979351.962196561507881, 3896393.097808588296175 ], [ 4979331.483556325547397, 3896405.798096956685185 ], [ 4979340.668687532655895, 3896420.747268833220005 ], [ 4979310.095188830047846, 3896439.615967486053705 ], [ 4979274.213976129889488, 3896382.00597485806793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979147.853829890489578, 3902088.750163640361279 ], [ 4979195.742959663271904, 3902049.891350445337594 ], [ 4979214.125970607623458, 3902072.142988303676248 ], [ 4979213.549219561740756, 3902072.505875458940864 ], [ 4979238.538515099324286, 3902102.78266340540722 ], [ 4979236.519494803622365, 3902104.234831356443465 ], [ 4979252.604077694006264, 3902123.932619709987193 ], [ 4979256.642903221771121, 3902120.664156942628324 ], [ 4979276.173812546767294, 3902144.738971537910402 ], [ 4979226.5537025379017, 3902185.050433693919331 ], [ 4979147.853829890489578, 3902088.750163640361279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979115.614881739020348, 3908901.223240687511861 ], [ 4979124.597338699735701, 3908874.660908101126552 ], [ 4979147.325747545808554, 3908882.356659587938339 ], [ 4979138.343270634301007, 3908908.918984698597342 ], [ 4979115.614881739020348, 3908901.223240687511861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978999.112901286222041, 3908183.995664726942778 ], [ 4978973.955353706143796, 3908234.556014482397586 ], [ 4978937.42822568397969, 3908216.635076312813908 ], [ 4978971.260795324109495, 3908148.614971310365945 ], [ 4978997.146000732667744, 3908161.41522666066885 ], [ 4978988.470913757570088, 3908178.874940043315291 ], [ 4978999.112901286222041, 3908183.995664726942778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978970.480730237439275, 3903954.177310862578452 ], [ 4978942.140001229010522, 3904010.192702954635024 ], [ 4978895.827315141446888, 3903987.153032847680151 ], [ 4978923.880008668638766, 3903931.13697467232123 ], [ 4978970.480730237439275, 3903954.177310862578452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978935.354712856002152, 3901804.999257172923535 ], [ 4978973.038608717732131, 3901824.743243475444615 ], [ 4978962.050589471124113, 3901845.475113611202687 ], [ 4978970.96796640008688, 3901850.227967601269484 ], [ 4978959.401643374934793, 3901872.050990151241422 ], [ 4978912.799637836404145, 3901847.918314084876329 ], [ 4978935.354712856002152, 3901804.999257172923535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978899.269480295479298, 3901576.9758306494914 ], [ 4978909.982071070000529, 3901550.417251866776496 ], [ 4978899.91106755938381, 3901546.390206473413855 ], [ 4978908.59759405720979, 3901524.560983980540186 ], [ 4978952.623123315162957, 3901541.769626805093139 ], [ 4978933.511153846979141, 3901590.522148149088025 ], [ 4978899.269480295479298, 3901576.9758306494914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978816.147762408480048, 3907441.501324456650764 ], [ 4978844.626611676067114, 3907453.578717981930822 ], [ 4978825.819404642097652, 3907496.50601932220161 ], [ 4978797.628517404198647, 3907484.429262067191303 ], [ 4978816.147762408480048, 3907441.501324456650764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978814.858682706952095, 3902263.181896447669715 ], [ 4978824.940351068042219, 3902262.111099566332996 ], [ 4978822.975189317017794, 3902238.438367674127221 ], [ 4978850.050092238001525, 3902236.311596228741109 ], [ 4978854.82479421980679, 3902292.762152276467532 ], [ 4978817.668291580863297, 3902295.959714836906642 ], [ 4978814.858682706952095, 3902263.181896447669715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978789.796821981668472, 3910065.748212107922882 ], [ 4978805.383053109049797, 3910047.210821526125073 ], [ 4978822.339348463341594, 3910061.08419949002564 ], [ 4978806.752333554439247, 3910079.985711589455605 ], [ 4978789.796821981668472, 3910065.748212107922882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978555.35555386915803, 3904168.490590710192919 ], [ 4978563.357093221507967, 3904197.274045426398516 ], [ 4978519.273593123070896, 3904209.19640263915062 ], [ 4978511.559970448724926, 3904180.413574431557208 ], [ 4978555.35555386915803, 3904168.490590710192919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978479.583615419454873, 3907160.764692520722747 ], [ 4978503.972951387055218, 3907200.507058915216476 ], [ 4978477.448686272837222, 3907216.836503431666642 ], [ 4978453.06010124552995, 3907176.730030169710517 ], [ 4978479.583615419454873, 3907160.764692520722747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978143.120164322666824, 3896626.104111560154706 ], [ 4978116.598033707588911, 3896636.607755948789418 ], [ 4978104.849962161853909, 3896607.452516224235296 ], [ 4978165.677584358491004, 3896583.548670941498131 ], [ 4978175.132836514152586, 3896607.237133428454399 ], [ 4978161.871367565356195, 3896612.671000600792468 ], [ 4978166.45458612497896, 3896624.696990088559687 ], [ 4978145.986703346483409, 3896632.664516342803836 ], [ 4978143.120164322666824, 3896626.104111560154706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978099.339234822429717, 3905747.489407394547015 ], [ 4978113.0611207857728, 3905794.49145192746073 ], [ 4978071.572694626636803, 3905806.05590909672901 ], [ 4978061.568600613623857, 3905771.07809699466452 ], [ 4978078.56726120505482, 3905766.38032684288919 ], [ 4978075.137353054247797, 3905754.356721854303032 ], [ 4978099.339234822429717, 3905747.489407394547015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977871.733747254125774, 3903758.850127099081874 ], [ 4977891.925051083788276, 3903742.870895379688591 ], [ 4977909.156884465366602, 3903764.755105830729008 ], [ 4977889.253551288507879, 3903780.734931744169444 ], [ 4977871.733747254125774, 3903758.850127099081874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977798.033197795040905, 3907854.814310447778553 ], [ 4977808.646413519978523, 3907873.771529777441174 ], [ 4977813.835884749889374, 3907870.505262949503958 ], [ 4977824.162695963867009, 3907888.733621022664011 ], [ 4977792.165205117315054, 3907906.87288481136784 ], [ 4977771.22438457608223, 3907870.05146063817665 ], [ 4977798.033197795040905, 3907854.814310447778553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977652.852277686819434, 3907887.28106924565509 ], [ 4977626.909632594324648, 3907901.42778473906219 ], [ 4977604.249457726255059, 3907860.597428273875266 ], [ 4977630.48005114402622, 3907846.451295412611216 ], [ 4977652.852277686819434, 3907887.28106924565509 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977313.285278766416013, 3908076.647489601746202 ], [ 4977288.49163122754544, 3908092.253459668718278 ], [ 4977263.523959141224623, 3908053.239235789515078 ], [ 4977288.605546955950558, 3908037.633843555580825 ], [ 4977313.285278766416013, 3908076.647489601746202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977268.800562478601933, 3912150.472708316054195 ], [ 4977255.246912085451186, 3912161.732581475749612 ], [ 4977235.719237066805363, 3912138.751482435502112 ], [ 4977249.272890808060765, 3912127.491599578876048 ], [ 4977268.800562478601933, 3912150.472708316054195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976958.247844603843987, 3908508.862458900548518 ], [ 4976975.463770891539752, 3908537.300490547437221 ], [ 4976942.888779794797301, 3908556.89610232366249 ], [ 4976925.672831715084612, 3908528.45809121010825 ], [ 4976958.247844603843987, 3908508.862458900548518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976931.862760791555047, 3902344.785356942564249 ], [ 4976896.908617875538766, 3902397.14783345349133 ], [ 4976882.5300014000386, 3902387.286525601521134 ], [ 4976888.596416728571057, 3902378.195807160809636 ], [ 4976875.654670703224838, 3902369.794002209790051 ], [ 4976870.454457396641374, 3902377.794122972059995 ], [ 4976856.36229370161891, 3902368.661684269085526 ], [ 4976862.428704340942204, 3902359.570960024837404 ], [ 4976849.775674358941615, 3902350.805634040385485 ], [ 4976844.576218374073505, 3902358.441630208864808 ], [ 4976830.772768692113459, 3902348.945671248715371 ], [ 4976836.838421931490302, 3902340.219070850405842 ], [ 4976823.610167319886386, 3902331.088436485733837 ], [ 4976818.410714988596737, 3902338.724437625613064 ], [ 4976804.607245928607881, 3902329.228492219001055 ], [ 4976810.384162107482553, 3902320.865420153364539 ], [ 4976797.442364026792347, 3902312.463653154671192 ], [ 4976792.820381057448685, 3902319.372590599115938 ], [ 4976779.016893018968403, 3902309.876658444292843 ], [ 4976784.5058249598369, 3902301.512985893525183 ], [ 4976771.277533515356481, 3902292.382377502974123 ], [ 4976766.366069037467241, 3902300.018983481451869 ], [ 4976752.273829193785787, 3902290.88659978704527 ], [ 4976758.340222024358809, 3902281.795852469280362 ], [ 4976743.386283430270851, 3902271.569300626404583 ], [ 4976767.939113493077457, 3902235.571036678273231 ], [ 4976931.862760791555047, 3902344.785356942564249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976842.12489652261138, 3908275.577196684200317 ], [ 4976824.182196602225304, 3908319.964231368619949 ], [ 4976796.277690216898918, 3908308.618424974847585 ], [ 4976813.932435000315309, 3908264.23077655909583 ], [ 4976842.12489652261138, 3908275.577196684200317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976651.682771740481257, 3904287.939090004656464 ], [ 4976633.296699929051101, 3904406.608062980230898 ], [ 4976571.405255345627666, 3904397.013159463647753 ], [ 4976580.451159490272403, 3904339.134872894734144 ], [ 4976504.741268629208207, 3904327.69101781072095 ], [ 4976502.114452780224383, 3904344.799797421321273 ], [ 4976532.052398374304175, 3904349.595078050624579 ], [ 4976527.385890789330006, 3904378.351867873221636 ], [ 4976429.798737375065684, 3904363.22191562037915 ], [ 4976421.917705453932285, 3904414.912408807314932 ], [ 4976510.868943091481924, 3904428.568046931643039 ], [ 4976505.032673146575689, 3904466.06159321218729 ], [ 4976492.942213620059192, 3904464.21607807977125 ], [ 4976489.438822543248534, 3904487.513294420670718 ], [ 4976420.925996262580156, 3904477.176863537635654 ], [ 4976282.893884169869125, 3904526.051587633788586 ], [ 4976262.564510834403336, 3904469.569574874360114 ], [ 4976290.805195298977196, 3904459.431720220949501 ], [ 4976403.054487468674779, 3904345.688700729981065 ], [ 4976311.224081013351679, 3904331.663389873225242 ], [ 4976296.92464994173497, 3904424.123497350607067 ], [ 4976233.305380721576512, 3904414.525833290535957 ], [ 4976262.192617143504322, 3904229.242024070583284 ], [ 4976325.524355469271541, 3904238.839165274053812 ], [ 4976321.730136710219085, 3904263.592329918406904 ], [ 4976437.741866688244045, 3904281.308639974333346 ], [ 4976446.201878296211362, 3904228.162818780168891 ], [ 4976471.82206485234201, 3904232.220900505781174 ], [ 4976463.943159173242748, 3904282.818987387232482 ], [ 4976489.563290942460299, 3904286.877086156047881 ], [ 4976493.066707566380501, 3904263.579872686415911 ], [ 4976651.682771740481257, 3904287.939090004656464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976630.068935519084334, 3912537.678659803699702 ], [ 4976669.844670623540878, 3912513.727883830200881 ], [ 4976686.196960251778364, 3912541.071624077390879 ], [ 4976646.422001763246953, 3912564.658244438003749 ], [ 4976630.068935519084334, 3912537.678659803699702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976551.552939382381737, 3908446.119798483327031 ], [ 4976580.369889169000089, 3908433.798623159527779 ], [ 4976590.398903754539788, 3908457.1237528542988 ], [ 4976561.581974321976304, 3908469.444917606655508 ], [ 4976551.552939382381737, 3908446.119798483327031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976554.697774011641741, 3900061.634617859963328 ], [ 4976576.402292208746076, 3900011.065140291582793 ], [ 4976615.536459276452661, 3900027.895731949713081 ], [ 4976593.831880847923458, 3900078.465178410056978 ], [ 4976554.697774011641741, 3900061.634617859963328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976450.542495187371969, 3908843.180606620851904 ], [ 4976472.344347096979618, 3908881.823453773744404 ], [ 4976417.86582837253809, 3908912.662803392857313 ], [ 4976395.776760806329548, 3908873.655277797952294 ], [ 4976450.542495187371969, 3908843.180606620851904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976455.300066160969436, 3905826.71947449631989 ], [ 4976478.958510115742683, 3905803.827784304507077 ], [ 4976504.530766111798584, 3905830.461979299318045 ], [ 4976499.626758099533617, 3905834.82147781830281 ], [ 4976513.130851209163666, 3905849.050388499628752 ], [ 4976494.377914573997259, 3905866.85428815940395 ], [ 4976455.300066160969436, 3905826.71947449631989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976288.6265590172261, 3903976.588927744887769 ], [ 4976316.85881682485342, 3903970.820662184152752 ], [ 4976313.4375877128914, 3903954.063606737647206 ], [ 4976338.500791444443166, 3903949.01713351206854 ], [ 4976346.76809611544013, 3903989.81680104508996 ], [ 4976338.414203602820635, 3903991.256200403440744 ], [ 4976340.407545373775065, 3904002.184229415841401 ], [ 4976330.901062089018524, 3904003.985399724915624 ], [ 4976333.179382474161685, 3904016.370538097806275 ], [ 4976298.033844333142042, 3904023.217018490191549 ], [ 4976288.6265590172261, 3903976.588927744887769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976252.981251049786806, 3903664.81948373792693 ], [ 4976287.83629706595093, 3903659.428875434212387 ], [ 4976294.943703569471836, 3903704.231588936410844 ], [ 4976260.375934096053243, 3903709.986907463520765 ], [ 4976252.981251049786806, 3903664.81948373792693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976229.873503306880593, 3912563.802523238118738 ], [ 4976251.7814761698246, 3912549.282034209463745 ], [ 4976266.990890780463815, 3912572.617712312377989 ], [ 4976245.083674070425332, 3912586.774057320319116 ], [ 4976229.873503306880593, 3912563.802523238118738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976176.871783377602696, 3901170.730117465369403 ], [ 4976179.228562348522246, 3901144.881647884380072 ], [ 4976210.613818910904229, 3901147.858857938554138 ], [ 4976208.257009997032583, 3901173.707324820104986 ], [ 4976176.871783377602696, 3901170.730117465369403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976079.711554521694779, 3908138.189195579383522 ], [ 4976119.211325541138649, 3908111.324036109726876 ], [ 4976137.008693887852132, 3908137.577914531808347 ], [ 4976097.508943506516516, 3908164.443048269022256 ], [ 4976079.711554521694779, 3908138.189195579383522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976086.622252495959401, 3900517.659440497402102 ], [ 4976115.9877954935655, 3900522.817200572695583 ], [ 4976107.539192471653223, 3900570.136940269730985 ], [ 4976078.461698607541621, 3900564.979776799213141 ], [ 4976086.622252495959401, 3900517.659440497402102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993324.519414407201111, 3907542.045239523053169 ], [ 4993331.87845541536808, 3907589.402238545473665 ], [ 4993296.449191299267113, 3907594.769208432175219 ], [ 4993289.089113138616085, 3907547.776349080726504 ], [ 4993324.519414407201111, 3907542.045239523053169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993066.053765188902617, 3911385.142966939602047 ], [ 4993041.222844313830137, 3911412.386622571386397 ], [ 4993019.684165476821363, 3911392.66585984826088 ], [ 4993044.802965844981372, 3911365.422953962814063 ], [ 4993066.053765188902617, 3911385.142966939602047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976048.24069731682539, 3911145.496799816843122 ], [ 4976003.034491271711886, 3911149.410094343591481 ], [ 4976001.906695758923888, 3911137.755539281759411 ], [ 4976018.03126451279968, 3911136.331873376388103 ], [ 4976017.468854445964098, 3911129.776332551147789 ], [ 4976046.551260905340314, 3911126.922569959424436 ], [ 4976048.24069731682539, 3911145.496799816843122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975985.743739057332277, 3909744.914416537620127 ], [ 4976006.805011994205415, 3909723.109370085410774 ], [ 4976059.389102650806308, 3909773.102770612575114 ], [ 4976038.615726069547236, 3909794.908363609109074 ], [ 4975985.743739057332277, 3909744.914416537620127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975892.866031005047262, 3906715.508281089365482 ], [ 4975936.375794253312051, 3906699.939119914080948 ], [ 4975946.685059220530093, 3906727.634136573877186 ], [ 4975902.886661324650049, 3906743.566826202441007 ], [ 4975892.866031005047262, 3906715.508281089365482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975821.986094803549349, 3903052.564405228476971 ], [ 4975839.296240693889558, 3903036.941920255310833 ], [ 4975865.444758263416588, 3903065.033150965347886 ], [ 4975809.762625239789486, 3903115.898416289128363 ], [ 4975778.442425230517983, 3903081.970645549241453 ], [ 4975816.814422254450619, 3903046.727804637514055 ], [ 4975821.986094803549349, 3903052.564405228476971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975710.572877170518041, 3910281.815177508629858 ], [ 4975653.780164674855769, 3910319.934061364736408 ], [ 4975632.540097953751683, 3910288.211504509206861 ], [ 4975667.999836972914636, 3910264.250538198743016 ], [ 4975673.740773131139576, 3910272.637221592478454 ], [ 4975694.785884520970285, 3910258.478680975269526 ], [ 4975710.572877170518041, 3910281.815177508629858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975637.688955392688513, 3911584.535274348687381 ], [ 4975561.948300364427269, 3911598.219106613658369 ], [ 4975559.103353183716536, 3911581.463232310023159 ], [ 4975605.469131010584533, 3911573.181940098293126 ], [ 4975604.042986539192498, 3911566.62465879926458 ], [ 4975620.170224124565721, 3911563.744227257557213 ], [ 4975621.592680086381733, 3911572.122167483437806 ], [ 4975635.128249402157962, 3911569.600633018184453 ], [ 4975637.688955392688513, 3911584.535274348687381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975552.26944262906909, 3909265.200398077722639 ], [ 4975524.864697618409991, 3909291.726703210733831 ], [ 4975480.04404673166573, 3909245.755494569428265 ], [ 4975507.736700372770429, 3909219.229725884273648 ], [ 4975521.240345022641122, 3909233.094036651775241 ], [ 4975528.740616460330784, 3909225.826536283362657 ], [ 4975540.807659877464175, 3909238.231424467638135 ], [ 4975533.019482637755573, 3909245.498339833691716 ], [ 4975552.26944262906909, 3909265.200398077722639 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975480.607323967851698, 3898977.978595993015915 ], [ 4975465.235241917893291, 3899031.110609167721123 ], [ 4975428.677832933142781, 3899020.841246148571372 ], [ 4975438.828852452337742, 3898985.905200680717826 ], [ 4975450.918912577442825, 3898989.206750810146332 ], [ 4975456.427932234480977, 3898971.011345691978931 ], [ 4975480.607323967851698, 3898977.978595993015915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975370.829947136342525, 3907149.953686786815524 ], [ 4975384.561011583544314, 3907194.405463961418718 ], [ 4975353.445728764869273, 3907203.810229129623622 ], [ 4975339.713884741999209, 3907159.722598223946989 ], [ 4975370.829947136342525, 3907149.953686786815524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975257.77072733733803, 3904236.307900541462004 ], [ 4975240.460958372801542, 3904252.294901499059051 ], [ 4975202.244224887341261, 3904211.435425288043916 ], [ 4975242.922661638818681, 3904173.647456098813564 ], [ 4975269.933106699027121, 3904202.468122412450612 ], [ 4975246.564445355907083, 3904224.269043329171836 ], [ 4975257.77072733733803, 3904236.307900541462004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975060.613305458799005, 3905482.69891659123823 ], [ 4975089.910871198400855, 3905519.17077356018126 ], [ 4975064.5307940505445, 3905539.511310828384012 ], [ 4975035.23321620747447, 3905503.039481073152274 ], [ 4975060.613305458799005, 3905482.69891659123823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992040.361361133866012, 3910276.547436450608075 ], [ 4992056.27043516561389, 3910248.186960487626493 ], [ 4992086.16929748468101, 3910264.287640181835741 ], [ 4992070.259241445921361, 3910293.012229517567903 ], [ 4992040.361361133866012, 3910276.547436450608075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974820.660768727771938, 3910872.106040825601667 ], [ 4974813.778304602950811, 3910858.61940001277253 ], [ 4974818.677494756877422, 3910856.080237624701113 ], [ 4974808.065536380745471, 3910836.031769895926118 ], [ 4974854.175717105157673, 3910812.090957988519222 ], [ 4974875.971711709164083, 3910854.00974033260718 ], [ 4974836.778169931843877, 3910874.322980974800885 ], [ 4974832.188656679354608, 3910865.938769930507988 ], [ 4974820.660768727771938, 3910872.106040825601667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974839.118185020983219, 3898871.094172701705247 ], [ 4974851.732846644707024, 3898900.249747334048152 ], [ 4974811.66440184880048, 3898917.283993287011981 ], [ 4974799.04970486368984, 3898888.128437156789005 ], [ 4974839.118185020983219, 3898871.094172701705247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974794.203178936615586, 3909413.337462028022856 ], [ 4974837.018835715949535, 3909454.569806703366339 ], [ 4974819.420406649820507, 3909472.741343039087951 ], [ 4974776.605477422475815, 3909431.144894791767001 ], [ 4974794.203178936615586, 3909413.337462028022856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991512.807083710096776, 3913297.107722332235426 ], [ 4991531.906202639453113, 3913368.892081624362618 ], [ 4991495.610859768465161, 3913378.264633099548519 ], [ 4991485.918765129521489, 3913341.825890456791967 ], [ 4991477.277191003784537, 3913343.988102261908352 ], [ 4991471.291101209819317, 3913321.396146093029529 ], [ 4991480.797221059910953, 3913318.872058583423495 ], [ 4991477.375238119624555, 3913306.482556769624352 ], [ 4991512.807083710096776, 3913297.107722332235426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974657.146434897556901, 3899132.905780252534896 ], [ 4974669.175733601674438, 3899166.793804615270346 ], [ 4974627.672071515582502, 3899181.64069220284 ], [ 4974615.353990089148283, 3899148.116243151947856 ], [ 4974657.146434897556901, 3899132.905780252534896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974513.435897253453732, 3910314.736062858719379 ], [ 4974479.129555948078632, 3910338.336703909561038 ], [ 4974446.691231318749487, 3910290.935193159151822 ], [ 4974480.996882955543697, 3910267.698642731644213 ], [ 4974513.435897253453732, 3910314.736062858719379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974415.294110240414739, 3908262.290587842930108 ], [ 4974426.827346187084913, 3908253.938367656897753 ], [ 4974445.492182563990355, 3908279.100444741547108 ], [ 4974433.958951569162309, 3908287.452657046727836 ], [ 4974415.294110240414739, 3908262.290587842930108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974342.76989773567766, 3900084.483953520655632 ], [ 4974387.439336924813688, 3900070.007010225206614 ], [ 4974396.885876284912229, 3900099.156129064969718 ], [ 4974352.504484193399549, 3900113.633625939488411 ], [ 4974342.76989773567766, 3900084.483953520655632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974327.466451555490494, 3899666.796086803078651 ], [ 4974294.333242922089994, 3899672.920892925467342 ], [ 4974287.487861610017717, 3899639.043255521915853 ], [ 4974320.909838376566768, 3899632.554880772717297 ], [ 4974327.466451555490494, 3899666.796086803078651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974175.991584273055196, 3904190.823928085621446 ], [ 4974177.406284014694393, 3904203.571313698776066 ], [ 4974189.502756445668638, 3904202.502746763173491 ], [ 4974191.479739029891789, 3904222.169737805612385 ], [ 4974179.383275367319584, 3904223.238303868565708 ], [ 4974181.643202748149633, 3904245.454771662596613 ], [ 4974138.728628246113658, 3904249.739853799343109 ], [ 4974133.3648835811764, 3904195.109585773199797 ], [ 4974175.991584273055196, 3904190.823928085621446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974157.411453109234571, 3895342.417718533892184 ], [ 4974163.958591523580253, 3895382.120718637946993 ], [ 4974136.296042995527387, 3895386.799965219106525 ], [ 4974129.748864906840026, 3895347.096971736289561 ], [ 4974157.411453109234571, 3895342.417718533892184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974117.720084342174232, 3899412.219690658152103 ], [ 4974073.339141955599189, 3899425.969384628348053 ], [ 4974063.893443424254656, 3899396.09213335160166 ], [ 4974108.27443022094667, 3899382.342424038331956 ], [ 4974117.720084342174232, 3899412.219690658152103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974036.341071089729667, 3901253.103829150088131 ], [ 4974038.984491214156151, 3901226.89160691248253 ], [ 4974060.579591194167733, 3901229.118816722650081 ], [ 4974057.648158614523709, 3901255.330471001565456 ], [ 4974036.341071089729667, 3901253.103829150088131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973904.064380059018731, 3900857.034271151293069 ], [ 4973777.053930629044771, 3900858.970525067299604 ], [ 4973776.52846597135067, 3900833.116221216507256 ], [ 4973903.538324169814587, 3900831.544094106182456 ], [ 4973904.064380059018731, 3900857.034271151293069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973830.979978586547077, 3898172.886222179513425 ], [ 4973881.126210348680615, 3898157.690902539063245 ], [ 4973890.857011415064335, 3898189.389275046996772 ], [ 4973867.512774249538779, 3898196.626168460585177 ], [ 4973872.377822116948664, 3898212.657416444737464 ], [ 4973845.575183052569628, 3898220.97994873020798 ], [ 4973830.979978586547077, 3898172.886222179513425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973801.587949818000197, 3910107.23511709831655 ], [ 4973822.637188509106636, 3910090.526192168239504 ], [ 4973843.315158233046532, 3910116.420085777994245 ], [ 4973822.265926877036691, 3910133.128994775470346 ], [ 4973801.587949818000197, 3910107.23511709831655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990078.309306075796485, 3909166.305299364496022 ], [ 4990035.679518189281225, 3909173.842920288443565 ], [ 4990029.434123009443283, 3909139.234297040849924 ], [ 4990072.064896694384515, 3909131.332535758148879 ], [ 4990078.309306075796485, 3909166.305299364496022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973654.278163967654109, 3905039.684375821147114 ], [ 4973640.105380120687187, 3905072.064451823942363 ], [ 4973609.032955303788185, 3905058.531021749600768 ], [ 4973622.917757553979754, 3905026.150368419475853 ], [ 4973654.278163967654109, 3905039.684375821147114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973639.241791758686304, 3897684.941725937183946 ], [ 4973649.562597336247563, 3897709.722681735176593 ], [ 4973621.024255185388029, 3897721.683352447580546 ], [ 4973610.415398216806352, 3897696.901846356224269 ], [ 4973639.241791758686304, 3897684.941725937183946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973601.790128050372005, 3902272.548509722575545 ], [ 4973620.467718437314034, 3902293.70449629612267 ], [ 4973609.216616085730493, 3902303.878241118974984 ], [ 4973590.251752531155944, 3902282.357571783009917 ], [ 4973601.790128050372005, 3902272.548509722575545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973594.034754251129925, 3904036.384760112501681 ], [ 4973553.087481702677906, 3904065.435542003717273 ], [ 4973524.943046443164349, 3904026.418723671231419 ], [ 4973544.263420606963336, 3904012.619322223123163 ], [ 4973540.241871268488467, 3904007.513657786417753 ], [ 4973562.157471342012286, 3903991.89866254106164 ], [ 4973594.034754251129925, 3904036.384760112501681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973528.152847265824676, 3909332.555698903743178 ], [ 4973535.329215251840651, 3909343.493639682419598 ], [ 4973512.556393523700535, 3909358.014634692110121 ], [ 4973480.40732788760215, 3909308.430092505645007 ], [ 4973504.333212337456644, 3909293.183048109058291 ], [ 4973511.79679765086621, 3909304.485673426650465 ], [ 4973521.30971731711179, 3909298.313926033675671 ], [ 4973539.106703689321876, 3909325.658496386837214 ], [ 4973528.152847265824676, 3909332.555698903743178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973505.544967020861804, 3897710.898834597319365 ], [ 4973479.601078217849135, 3897721.772309366613626 ], [ 4973464.116805513389409, 3897686.057489282917231 ], [ 4973492.655115285888314, 3897674.096652228850871 ], [ 4973487.781250516884029, 3897662.435021104756743 ], [ 4973513.149139384739101, 3897651.560434545855969 ], [ 4973537.23530438542366, 3897707.319161992985755 ], [ 4973524.263349192216992, 3897712.755880935583264 ], [ 4973527.990028563886881, 3897721.866378051228821 ], [ 4973512.9997524227947, 3897728.391566998325288 ], [ 4973505.544967020861804, 3897710.898834597319365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973420.051949819549918, 3903173.783614492509514 ], [ 4973357.773951765149832, 3903212.988952929154038 ], [ 4973342.270828478969634, 3903188.562109034042805 ], [ 4973366.778718695044518, 3903172.951986184809357 ], [ 4973360.750390660017729, 3903163.108754746150225 ], [ 4973377.761878293007612, 3903152.217812054324895 ], [ 4973382.642556129954755, 3903159.874033943749964 ], [ 4973402.825979012064636, 3903146.804473577998579 ], [ 4973420.051949819549918, 3903173.783614492509514 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973299.23406148981303, 3911281.678039909340441 ], [ 4973278.756911099888384, 3911300.937423719558865 ], [ 4973244.567077908664942, 3911265.550333923194557 ], [ 4973265.04423060733825, 3911246.290924478787929 ], [ 4973299.23406148981303, 3911281.678039909340441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973290.488269258290529, 3904351.132998648565263 ], [ 4973332.76028832886368, 3904381.073670788202435 ], [ 4973307.35014140792191, 3904417.073446415830404 ], [ 4973293.834463756531477, 3904407.579850131180137 ], [ 4973288.925783128477633, 3904414.488841283135116 ], [ 4973260.169473952613771, 3904394.041809899266809 ], [ 4973290.488269258290529, 3904351.132998648565263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973156.883916086517274, 3903601.128181950654835 ], [ 4973137.857037249021232, 3903612.015375290997326 ], [ 4973133.265041814185679, 3903603.995621816255152 ], [ 4973109.04986210912466, 3903617.421738030854613 ], [ 4973090.969097466208041, 3903585.707434076350182 ], [ 4973134.499161213636398, 3903561.394648675341159 ], [ 4973156.883916086517274, 3903601.128181950654835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989321.33494976349175, 3908054.499869941733778 ], [ 4989276.705700374208391, 3908055.11510650254786 ], [ 4989276.225739805959165, 3908017.244088425766677 ], [ 4989295.517244616523385, 3908016.928804232273251 ], [ 4989295.264367202296853, 3908003.091120647732168 ], [ 4989320.602187714539468, 3908002.791167267598212 ], [ 4989321.33494976349175, 3908054.499869941733778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989098.299071694724262, 3905847.292972770985216 ], [ 4989176.65622203797102, 3905832.9256452312693 ], [ 4989183.188686047680676, 3905868.627117439638823 ], [ 4989104.831636168062687, 3905882.994426249526441 ], [ 4989098.299071694724262, 3905847.292972770985216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971899.162769113667309, 3902467.372982861474156 ], [ 4971889.649869044311345, 3902472.452889654319733 ], [ 4971874.441193043254316, 3902443.657890045549721 ], [ 4971905.285130839794874, 3902427.694246935192496 ], [ 4971925.658861494623125, 3902466.330538796260953 ], [ 4971904.327853376045823, 3902477.214253902435303 ], [ 4971899.162769113667309, 3902467.372982861474156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971842.963463344611228, 3907996.241047711111605 ], [ 4971847.840950021520257, 3908005.353537177667022 ], [ 4971870.609210877679288, 3907993.380059707444161 ], [ 4971889.256717804819345, 3908029.100153461098671 ], [ 4971847.179399442858994, 3908050.86881713476032 ], [ 4971823.653675044886768, 3908006.400396993849427 ], [ 4971842.963463344611228, 3907996.241047711111605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971799.22911274433136, 3912876.994114863220602 ], [ 4971768.068939978256822, 3912914.441231031902134 ], [ 4971721.219189163297415, 3912875.755040288437158 ], [ 4971752.379341186955571, 3912838.307870681397617 ], [ 4971799.22911274433136, 3912876.994114863220602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971685.783728779293597, 3908289.800254677422345 ], [ 4971700.993376920931041, 3908316.410464512184262 ], [ 4971673.324062849394977, 3908332.016212122514844 ], [ 4971658.114396226592362, 3908305.406017704401165 ], [ 4971685.783728779293597, 3908289.800254677422345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971417.737806093879044, 3905356.944048338104039 ], [ 4971423.76159053388983, 3905369.335769364610314 ], [ 4971439.32435851264745, 3905362.082200042903423 ], [ 4971454.526394414715469, 3905393.790047176647931 ], [ 4971395.15625826921314, 3905422.081456623505801 ], [ 4971381.963006315752864, 3905394.018706181552261 ], [ 4971401.560409287922084, 3905384.951984252780676 ], [ 4971393.529139513149858, 3905368.186942785512656 ], [ 4971417.737806093879044, 3905356.944048338104039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971349.725197867490351, 3900598.716490299906582 ], [ 4971398.111686743795872, 3900597.350207610055804 ], [ 4971399.475582900457084, 3900638.135374083183706 ], [ 4971350.801169165410101, 3900639.501117490697652 ], [ 4971349.725197867490351, 3900598.716490299906582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987695.992107095196843, 3907601.455784658435732 ], [ 4987734.878911819308996, 3907594.63345778035 ], [ 4987743.967214275151491, 3907645.270375098567456 ], [ 4987733.021630487404764, 3907647.063953133299947 ], [ 4987737.281009443104267, 3907671.107243002392352 ], [ 4987709.33988356217742, 3907676.135974556207657 ], [ 4987695.992107095196843, 3907601.455784658435732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987720.112292628735304, 3896333.47166896564886 ], [ 4987742.226856105029583, 3896359.743729325942695 ], [ 4987702.97094751894474, 3896392.782493629958481 ], [ 4987680.855473224073648, 3896366.874592920765281 ], [ 4987720.112292628735304, 3896333.47166896564886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987659.98981464561075, 3907839.145362948998809 ], [ 4987734.887130053713918, 3907824.03701326623559 ], [ 4987741.713437616825104, 3907857.918239196296781 ], [ 4987666.529192057438195, 3907872.661728069186211 ], [ 4987659.98981464561075, 3907839.145362948998809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987626.740146438591182, 3907545.572337690275162 ], [ 4987633.290433934889734, 3907574.719124566763639 ], [ 4987603.04224016983062, 3907581.198797101154923 ], [ 4987596.491921490989625, 3907552.052017477340996 ], [ 4987626.740146438591182, 3907545.572337690275162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971173.489721122197807, 3907098.131492143962532 ], [ 4971190.720116695389152, 3907122.560354013927281 ], [ 4971160.159089379012585, 3907144.351489696651697 ], [ 4971142.929356226697564, 3907119.558516362216324 ], [ 4971173.489721122197807, 3907098.131492143962532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971043.327749609947205, 3910525.467902738600969 ], [ 4971081.368025521747768, 3910504.782865179236978 ], [ 4971108.913125939667225, 3910554.720156344119459 ], [ 4971071.160791042260826, 3910575.405689406674355 ], [ 4971043.327749609947205, 3910525.467902738600969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970961.041922328993678, 3911742.247631735634059 ], [ 4970982.078676119446754, 3911730.634309131186455 ], [ 4970976.341308705508709, 3911719.699698291253299 ], [ 4971000.547459555789828, 3911706.635724760126323 ], [ 4971002.555873394943774, 3911710.280774295795709 ], [ 4971029.067107300274074, 3911696.128696385771036 ], [ 4971046.280496252700686, 3911728.204302531667054 ], [ 4971013.141317724250257, 3911745.985416104085743 ], [ 4971021.749359981156886, 3911761.294949557632208 ], [ 4971001.577598304487765, 3911772.181577093433589 ], [ 4970995.265163947828114, 3911760.881763919256628 ], [ 4970976.534155280329287, 3911771.042811992578208 ], [ 4970961.041922328993678, 3911742.247631735634059 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970908.904669801704586, 3897423.047279624734074 ], [ 4970867.691800746135414, 3897436.079846746753901 ], [ 4970854.232220320031047, 3897393.815943396650255 ], [ 4970895.445147531107068, 3897380.78335596062243 ], [ 4970908.904669801704586, 3897423.047279624734074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970860.585703005082905, 3906121.314424896612763 ], [ 4970828.31162532325834, 3906134.727733103558421 ], [ 4970811.110486157238483, 3906093.913245495874435 ], [ 4970843.384604156948626, 3906080.499916980043054 ], [ 4970860.585703005082905, 3906121.314424896612763 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970700.214801817201078, 3900167.839636090677232 ], [ 4970712.950606894679368, 3900133.270680489484221 ], [ 4970941.473335932008922, 3900215.985693230293691 ], [ 4970929.0246048476547, 3900250.919203799217939 ], [ 4970700.214801817201078, 3900167.839636090677232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970404.826134170405567, 3904047.47614865982905 ], [ 4970378.873635021038353, 3904067.091779419686645 ], [ 4970358.763577044010162, 3904041.201701044104993 ], [ 4970384.716086412779987, 3904021.586051173042506 ], [ 4970404.826134170405567, 3904047.47614865982905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970388.317805075086653, 3900634.082865966949612 ], [ 4970374.730639086104929, 3900662.096078846603632 ], [ 4970339.912814709357917, 3900645.646587450522929 ], [ 4970353.499952632933855, 3900617.63335724407807 ], [ 4970388.317805075086653, 3900634.082865966949612 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970299.901499038562179, 3898267.074616477824748 ], [ 4970342.275554518215358, 3898248.217215816956013 ], [ 4970360.921257962472737, 3898289.762098773382604 ], [ 4970318.547254734672606, 3898308.619470509700477 ], [ 4970299.901499038562179, 3898267.074616477824748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970253.295024844817817, 3897763.762009048368782 ], [ 4970295.090459194965661, 3897746.724132896400988 ], [ 4970313.157205490395427, 3897790.088562719058245 ], [ 4970271.073798409663141, 3897807.125885928981006 ], [ 4970253.295024844817817, 3897763.762009048368782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970231.326369069516659, 3903021.76599630061537 ], [ 4970239.06578728929162, 3903041.443180277012289 ], [ 4970274.799614609219134, 3903027.67136369086802 ], [ 4970291.708930686116219, 3903072.126204708125442 ], [ 4970249.923758408054709, 3903088.071751253679395 ], [ 4970245.912730921059847, 3903076.776375194080174 ], [ 4970228.333824721165001, 3903083.662821784149855 ], [ 4970207.983998550102115, 3903030.826738312840462 ], [ 4970231.326369069516659, 3903021.76599630061537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970222.695293267257512, 3897327.114547334145755 ], [ 4970236.729975557886064, 3897370.471568458713591 ], [ 4970192.058304698206484, 3897384.955386658664793 ], [ 4970178.024220854975283, 3897341.2342598750256 ], [ 4970222.695293267257512, 3897327.114547334145755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969835.521709755063057, 3900225.615875388029963 ], [ 4969838.740426496602595, 3900197.58365151938051 ], [ 4969865.520089093595743, 3900200.180990777909756 ], [ 4969862.300686111673713, 3900228.577340722549707 ], [ 4969835.521709755063057, 3900225.615875388029963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985798.792032280936837, 3898274.70133050205186 ], [ 4985749.582821629010141, 3898256.740809027571231 ], [ 4985759.440297972410917, 3898229.818812640849501 ], [ 4985808.650426033884287, 3898247.415223526302725 ], [ 4985798.792032280936837, 3898274.70133050205186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985507.430789378471673, 3910868.958995269145817 ], [ 4985547.200372437946498, 3910851.93988169496879 ], [ 4985567.526278590783477, 3910899.689988646190614 ], [ 4985547.065297486260533, 3910908.380210865288973 ], [ 4985541.339775019325316, 3910894.89357884041965 ], [ 4985522.031222762539983, 3910903.222444657236338 ], [ 4985507.430789378471673, 3910868.958995269145817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985479.899613951332867, 3901789.984623730182648 ], [ 4985427.469663790427148, 3901796.777864201460034 ], [ 4985423.510898566804826, 3901766.181390045210719 ], [ 4985475.940037170425057, 3901759.752271100878716 ], [ 4985479.899613951332867, 3901789.984623730182648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969789.771533401682973, 3899085.805371151771396 ], [ 4969780.273617960512638, 3899082.146918504033238 ], [ 4969773.327734794467688, 3899100.705017114058137 ], [ 4969750.301671827211976, 3899092.288463509175926 ], [ 4969773.747881412506104, 3899027.515611218754202 ], [ 4969806.559937543235719, 3899039.591163272038102 ], [ 4969789.771533401682973, 3899085.805371151771396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969774.732375680468976, 3890981.716437741648406 ], [ 4969780.219453013502061, 3890974.44377273041755 ], [ 4969809.853817765600979, 3890996.709114913828671 ], [ 4969775.777001335285604, 3891041.435388361103833 ], [ 4969744.417334006167948, 3891017.346328909043223 ], [ 4969751.636288586072624, 3891008.256139550823718 ], [ 4969727.756042794324458, 3890990.370777239557356 ], [ 4969748.838035741820931, 3890962.370908244047314 ], [ 4969774.732375680468976, 3890981.716437741648406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985326.577081318944693, 3904977.590380779001862 ], [ 4985300.912925877608359, 3904992.822736934293061 ], [ 4985315.538554798811674, 3905017.982703745830804 ], [ 4985263.057691288180649, 3905048.808848617598414 ], [ 4985239.826443086378276, 3905009.791403548792005 ], [ 4985292.019404125399888, 3904978.964527795091271 ], [ 4985284.275945189408958, 3904965.837326031643897 ], [ 4985310.228936912491918, 3904950.241510858293623 ], [ 4985326.577081318944693, 3904977.590380779001862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985065.991091215051711, 3905578.880414988845587 ], [ 4985073.271884188987315, 3905544.305164106190205 ], [ 4985066.652593445032835, 3905542.832915174774826 ], [ 4985074.805018768645823, 3905504.982547334395349 ], [ 4985090.058374471031129, 3905508.295969260856509 ], [ 4985086.856366645544767, 3905522.853643043898046 ], [ 4985118.226888456381857, 3905529.48256246978417 ], [ 4985115.897359088994563, 3905540.400986468419433 ], [ 4985127.122047303244472, 3905542.612458811607212 ], [ 4985123.630346806719899, 3905557.897703967057168 ], [ 4985111.543558882549405, 3905554.955920166336 ], [ 4985104.843801476992667, 3905587.347749514505267 ], [ 4985065.991091215051711, 3905578.880414988845587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969430.198477989062667, 3903816.672537347301841 ], [ 4969455.275527075864375, 3903803.244654262438416 ], [ 4969457.858714027330279, 3903807.982993760146201 ], [ 4969471.694719356484711, 3903800.361062386073172 ], [ 4969485.471909805200994, 3903825.510841113515198 ], [ 4969467.601151044480503, 3903834.946181850507855 ], [ 4969471.331614630296826, 3903842.235499775968492 ], [ 4969450.290004808455706, 3903853.485818580724299 ], [ 4969430.198477989062667, 3903816.672537347301841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969418.915908375754952, 3903363.673153718933463 ], [ 4969446.875024394132197, 3903349.158038467168808 ], [ 4969459.502554980106652, 3903373.213341369759291 ], [ 4969431.543457094579935, 3903387.728443690575659 ], [ 4969418.915908375754952, 3903363.673153718933463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969381.699826053343713, 3910152.845039252191782 ], [ 4969348.017267351038754, 3910152.056453326251358 ], [ 4969349.244472249411047, 3910109.819266436155885 ], [ 4969394.153750652447343, 3910111.356234341394156 ], [ 4969393.54663743916899, 3910128.833512117154896 ], [ 4969382.319325603544712, 3910128.449263354297727 ], [ 4969381.699826053343713, 3910152.845039252191782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969360.29490115121007, 3897823.686778221279383 ], [ 4969383.873452090658247, 3897845.940914625767618 ], [ 4969393.684670167043805, 3897835.762848707381636 ], [ 4969411.800437362864614, 3897852.545277427416295 ], [ 4969375.728474100120366, 3897890.714308224618435 ], [ 4969333.746785543859005, 3897851.313145725056529 ], [ 4969360.29490115121007, 3897823.686778221279383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984973.391527021303773, 3905164.27846709638834 ], [ 4985012.193025314249098, 3905194.593459138181061 ], [ 4985013.637092440389097, 3905192.776225969195366 ], [ 4985036.917777115479112, 3905211.038075569085777 ], [ 4985012.078111296519637, 3905243.022735856007785 ], [ 4985020.125989590771496, 3905249.232076497282833 ], [ 4985006.551790502853692, 3905266.314068777021021 ], [ 4984998.503914217464626, 3905260.104732131119817 ], [ 4984991.86122830491513, 3905268.464009462855756 ], [ 4984959.958502057008445, 3905243.263247839175165 ], [ 4984984.219616170972586, 3905212.369563157204539 ], [ 4984954.329009301029146, 3905188.630109400488436 ], [ 4984973.391527021303773, 3905164.27846709638834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984941.641240616329014, 3907625.736938782501966 ], [ 4984933.372588148340583, 3907591.488886612933129 ], [ 4985012.020692475140095, 3907572.740516645368189 ], [ 4985020.860776665620506, 3907608.810611472465098 ], [ 4984987.441781729459763, 3907617.106364204548299 ], [ 4984989.720983063802123, 3907627.307480469811708 ], [ 4984970.130971276201308, 3907631.994738530367613 ], [ 4984967.280233581550419, 3907619.971606160979718 ], [ 4984941.641240616329014, 3907625.736938782501966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984876.47166851349175, 3910463.633617050480098 ], [ 4984815.729706279933453, 3910462.033301983494312 ], [ 4984819.179984409362078, 3910342.241672338917851 ], [ 4984879.922217324376106, 3910343.841995095834136 ], [ 4984876.47166851349175, 3910463.633617050480098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984839.074526073411107, 3906193.361584650818259 ], [ 4984811.41690806299448, 3906199.850526969879866 ], [ 4984795.739589856937528, 3906132.448999177198857 ], [ 4984832.040625282563269, 3906123.795698618050665 ], [ 4984842.586665748618543, 3906169.3371737068519 ], [ 4984834.231266503222287, 3906171.502194094005972 ], [ 4984839.074526073411107, 3906193.361584650818259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969152.345656051300466, 3904605.612450892105699 ], [ 4969173.293692167848349, 3904646.432515134103596 ], [ 4969112.191400715149939, 3904677.638916293159127 ], [ 4969088.947432215325534, 3904632.445235099177808 ], [ 4969112.293222894892097, 3904620.470470464322716 ], [ 4969114.589084278792143, 3904624.844136226456612 ], [ 4969152.345656051300466, 3904605.612450892105699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969002.558284676633775, 3897015.408970348536968 ], [ 4969051.525228255428374, 3897015.131875224411488 ], [ 4969052.054678946733475, 3897041.350156084634364 ], [ 4969043.412928772158921, 3897041.698919147718698 ], [ 4969043.654997719451785, 3897067.552559550385922 ], [ 4969003.041207490488887, 3897067.844507148489356 ], [ 4969002.558284676633775, 3897015.408970348536968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968979.596071939915419, 3894211.935884702019393 ], [ 4968972.323937543667853, 3894251.613047318998724 ], [ 4968923.368750039488077, 3894242.422958975657821 ], [ 4968931.510828728787601, 3894199.470164517872036 ], [ 4968933.238586123101413, 3894199.837358153890818 ], [ 4968935.857027117162943, 3894185.27683866256848 ], [ 4968964.366001648828387, 3894190.789360544178635 ], [ 4968960.877528107725084, 3894208.625495153479278 ], [ 4968979.596071939915419, 3894211.935884702019393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968920.693108399398625, 3903707.981062083970755 ], [ 4968944.805936870165169, 3903750.991325352806598 ], [ 4968908.774811960756779, 3903770.954616433009505 ], [ 4968884.949909012764692, 3903727.944895409978926 ], [ 4968920.693108399398625, 3903707.981062083970755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984407.555652453564107, 3900635.332569501362741 ], [ 4984383.410843817517161, 3900615.248641544487327 ], [ 4984405.938041960820556, 3900588.355880388990045 ], [ 4984390.128906436264515, 3900575.210023170802742 ], [ 4984407.456757399253547, 3900554.859405904076993 ], [ 4984427.577321573160589, 3900571.656716564670205 ], [ 4984412.84744471963495, 3900589.46451011300087 ], [ 4984445.327944302000105, 3900616.486550226341933 ], [ 4984427.421539823524654, 3900637.928176574409008 ], [ 4984414.486437263898551, 3900627.337976991198957 ], [ 4984407.555652453564107, 3900635.332569501362741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984321.807052002288401, 3914954.278112583328038 ], [ 4984364.316539543680847, 3914993.340310984291136 ], [ 4984337.478595914319158, 3915022.407998753711581 ], [ 4984294.681271148845553, 3914983.345166553743184 ], [ 4984321.807052002288401, 3914954.278112583328038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984217.279508404433727, 3905020.848771964665502 ], [ 4984177.829334026202559, 3905021.120492192916572 ], [ 4984177.42993953358382, 3904945.744259491097182 ], [ 4984195.859724134206772, 3904945.42329161381349 ], [ 4984195.873371260240674, 3904939.597213773522526 ], [ 4984227.548958156257868, 3904939.307298137806356 ], [ 4984227.961012985557318, 3905009.221583094447851 ], [ 4984217.306812021881342, 3905009.19661579746753 ], [ 4984217.279508404433727, 3905020.848771964665502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968812.423063840717077, 3899148.509156396612525 ], [ 4968802.915374830365181, 3899150.312984372023493 ], [ 4968806.912137762643397, 3899170.347215110901743 ], [ 4968781.845909432508051, 3899175.400697824079543 ], [ 4968768.142267945222557, 3899106.919996495358646 ], [ 4968802.716262973845005, 3899100.062669854611158 ], [ 4968812.423063840717077, 3899148.509156396612525 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968733.189320499077439, 3913341.49591443920508 ], [ 4968740.033638899214566, 3913377.921347243245691 ], [ 4968701.159445352852345, 3913385.135319961700588 ], [ 4968694.315076133236289, 3913348.709896888118237 ], [ 4968733.189320499077439, 3913341.49591443920508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968631.247928446158767, 3892782.841806837823242 ], [ 4968673.887333805672824, 3892781.096344924531877 ], [ 4968675.271219901740551, 3892813.142120368778706 ], [ 4968632.631865262053907, 3892814.887580121867359 ], [ 4968631.247928446158767, 3892782.841806837823242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983943.159724381752312, 3906003.364197454880923 ], [ 4983970.115662577562034, 3906050.76427483651787 ], [ 4983909.568401328288019, 3906084.851436586584896 ], [ 4983887.487005793489516, 3906046.201951789669693 ], [ 4983921.796908437274396, 3906026.982950259931386 ], [ 4983916.922301228158176, 3906018.232411290518939 ], [ 4983943.159724381752312, 3906003.364197454880923 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968504.601577480323613, 3902550.401889118365943 ], [ 4968541.943847483024001, 3902604.358950395602733 ], [ 4968520.89589627739042, 3902618.887156574986875 ], [ 4968513.141009719111025, 3902607.22132782638073 ], [ 4968479.983965492807329, 3902629.73915319563821 ], [ 4968450.685149796307087, 3902587.084361365996301 ], [ 4968504.601577480323613, 3902550.401889118365943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968428.921295476146042, 3892014.538540304172784 ], [ 4968450.498685473576188, 3892031.326330692041665 ], [ 4968451.653604419901967, 3892029.871843822300434 ], [ 4968480.135539435781538, 3892052.1337108053267 ], [ 4968467.430791889317334, 3892068.49718347704038 ], [ 4968490.447284159250557, 3892086.015791355166584 ], [ 4968474.855253354646266, 3892106.0154741066508 ], [ 4968452.701758996583521, 3892089.226651828736067 ], [ 4968458.76571186631918, 3892081.226469027809799 ], [ 4968407.842777470126748, 3892041.811206365004182 ], [ 4968428.921295476146042, 3892014.538540304172784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968403.116326027549803, 3891779.994450100231916 ], [ 4968429.111162287183106, 3891742.170682447962463 ], [ 4968491.265147753059864, 3891784.518738428130746 ], [ 4968474.802267650142312, 3891808.158173659816384 ], [ 4968463.291982589289546, 3891800.491257720161229 ], [ 4968453.760622308589518, 3891814.311407532077283 ], [ 4968403.116326027549803, 3891779.994450100231916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968356.967544405721128, 3891975.086478456389159 ], [ 4968326.081231230869889, 3892009.624597335699946 ], [ 4968303.645209267735481, 3891989.558246831875294 ], [ 4968310.862141393125057, 3891981.195920501835644 ], [ 4968277.495816019363701, 3891951.278989089187235 ], [ 4968309.248320539481938, 3891915.649945897515863 ], [ 4968343.765744799748063, 3891946.297189619392157 ], [ 4968335.394514883868396, 3891955.74987120507285 ], [ 4968356.967544405721128, 3891975.086478456389159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983492.811066712252796, 3895435.966424321755767 ], [ 4983538.823763741180301, 3895468.84468250349164 ], [ 4983504.723811559379101, 3895516.102560275699943 ], [ 4983480.566969698294997, 3895498.932526955381036 ], [ 4983432.595140172168612, 3895565.821395582519472 ], [ 4983410.451298476196826, 3895550.112600475084037 ], [ 4983492.811066712252796, 3895435.966424321755767 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967839.522361949086189, 3902961.436900051310658 ], [ 4967895.700544231571257, 3902948.061504158657044 ], [ 4967896.844221576116979, 3902952.797191992402077 ], [ 4967919.027027122676373, 3902947.737871301360428 ], [ 4967927.603617910295725, 3902983.801733874250203 ], [ 4967874.018514185212553, 3902996.453299921471626 ], [ 4967872.874202989973128, 3902992.081742810551077 ], [ 4967848.098423566669226, 3902997.864867442287505 ], [ 4967839.522361949086189, 3902961.436900051310658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967775.525427375920117, 3894181.058867644052953 ], [ 4967749.289249137975276, 3894193.757991736754775 ], [ 4967736.371557126753032, 3894167.518358036410064 ], [ 4967762.607754809781909, 3894154.819221538957208 ], [ 4967775.525427375920117, 3894181.058867644052953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967454.834963322617114, 3907121.338499048724771 ], [ 4967481.582890479825437, 3907138.498706613201648 ], [ 4967459.063720588572323, 3907173.780765018425882 ], [ 4967432.027885923162103, 3907156.620084625203162 ], [ 4967454.834963322617114, 3907121.338499048724771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967320.015308517031372, 3901954.447736618109047 ], [ 4967329.491938034072518, 3901970.121605515480042 ], [ 4967307.006101550534368, 3901983.555898959748447 ], [ 4967278.575531102716923, 3901936.89845581445843 ], [ 4967325.277056305669248, 3901908.940414339769632 ], [ 4967343.942970670759678, 3901939.923534870147705 ], [ 4967320.015308517031372, 3901954.447736618109047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967226.157392918132246, 3905306.113910204730928 ], [ 4967244.606644928455353, 3905294.12914320314303 ], [ 4967252.073977237567306, 3905305.430001599248499 ], [ 4967271.099761582911015, 3905293.082108268514276 ], [ 4967288.619692539796233, 3905319.329585994593799 ], [ 4967251.144681209698319, 3905343.662217230536044 ], [ 4967226.157392918132246, 3905306.113910204730928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967149.394748158752918, 3907258.821000682190061 ], [ 4967177.024563200771809, 3907265.422587096691132 ], [ 4967174.70309725869447, 3907275.978445034939796 ], [ 4967204.3477548295632, 3907282.947635350748897 ], [ 4967194.197462618350983, 3907325.533713647164404 ], [ 4967163.113838493824005, 3907318.197943501640111 ], [ 4967161.665494790300727, 3907323.293315802700818 ], [ 4967135.474746982567012, 3907317.058334235101938 ], [ 4967149.394748158752918, 3907258.821000682190061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982142.606254046782851, 3904754.984943823423237 ], [ 4982131.361194713972509, 3904761.513836570084095 ], [ 4982136.239087594673038, 3904769.171655233949423 ], [ 4982112.883478485047817, 3904782.955754124093801 ], [ 4982088.787690502591431, 3904742.118433607276529 ], [ 4982111.565764434635639, 3904729.061269544064999 ], [ 4982124.474219221621752, 3904750.93841348728165 ], [ 4982136.008060528896749, 3904744.046040438115597 ], [ 4982142.606254046782851, 3904754.984943823423237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982113.53430226072669, 3898645.891893511638045 ], [ 4982176.630395974032581, 3898637.295712372288108 ], [ 4982185.410413862206042, 3898702.859091904014349 ], [ 4982157.175479961559176, 3898706.800530631560832 ], [ 4982153.777833621948957, 3898680.939571396447718 ], [ 4982118.916791846044362, 3898685.594297870993614 ], [ 4982113.53430226072669, 3898645.891893511638045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966901.856766370125115, 3893647.204439103137702 ], [ 4966945.656260503455997, 3893639.99627371923998 ], [ 4966948.224160612560809, 3893654.56579623837024 ], [ 4966966.66640873812139, 3893651.319991448428482 ], [ 4966972.367798679508269, 3893686.650195140857249 ], [ 4966960.841794745996594, 3893688.451239317655563 ], [ 4966963.69094346743077, 3893707.026660441886634 ], [ 4966932.858524618670344, 3893712.072054634802043 ], [ 4966935.425187052227557, 3893727.369832354597747 ], [ 4966915.542633699253201, 3893730.613212011754513 ], [ 4966901.856766370125115, 3893647.204439103137702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966367.83589406684041, 3899612.929971558041871 ], [ 4966342.202464176341891, 3899613.25108446367085 ], [ 4966341.420906191691756, 3899564.092195495497435 ], [ 4966358.414091093465686, 3899563.756579507607967 ], [ 4966358.152970305643976, 3899547.734412514604628 ], [ 4966403.947767889127135, 3899547.083047836087644 ], [ 4966404.455272759310901, 3899587.866483114194125 ], [ 4966367.301439787261188, 3899588.16822020849213 ], [ 4966367.83589406684041, 3899612.929971558041871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966257.322312415577471, 3907645.112478998024017 ], [ 4966195.126652161590755, 3907647.557294808793813 ], [ 4966193.741852996870875, 3907614.783100021071732 ], [ 4966255.937588975764811, 3907612.338281055912375 ], [ 4966257.322312415577471, 3907645.112478998024017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966264.28062445577234, 3891279.292937030550092 ], [ 4966285.289857440628111, 3891292.436743761412799 ], [ 4966269.112449622713029, 3891318.626897272653878 ], [ 4966248.102619823999703, 3891305.847230393439531 ], [ 4966264.28062445577234, 3891279.292937030550092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966249.398000576533377, 3894490.51957130478695 ], [ 4966296.3713623797521, 3894479.310239947400987 ], [ 4966309.246974144130945, 3894531.40228071436286 ], [ 4966303.771323687396944, 3894532.84961969871074 ], [ 4966311.497160867787898, 3894563.813543857075274 ], [ 4966284.119556841440499, 3894570.686119715217501 ], [ 4966276.394909916445613, 3894538.993947108276188 ], [ 4966261.985634349286556, 3894542.611107581760734 ], [ 4966249.398000576533377, 3894490.51957130478695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981147.052475522272289, 3914481.648221485316753 ], [ 4981115.637887177057564, 3914499.05662170983851 ], [ 4981107.03809741511941, 3914483.015564701519907 ], [ 4981138.451887072995305, 3914465.971286724321544 ], [ 4981147.052475522272289, 3914481.648221485316753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981022.102220092900097, 3907116.049979304894805 ], [ 4981039.692615013569593, 3907104.072750512044877 ], [ 4981053.470250751823187, 3907123.402420713566244 ], [ 4981035.879862281493843, 3907135.379640626721084 ], [ 4981022.102220092900097, 3907116.049979304894805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981022.118687232024968, 3901023.764651471283287 ], [ 4981045.335219387896359, 3901073.702229151967913 ], [ 4981024.577817770652473, 3901083.487589534372091 ], [ 4981017.986359170638025, 3901068.907693859189749 ], [ 4980990.022651383653283, 3901081.590103468392044 ], [ 4980974.258263847790658, 3901047.690892482642084 ], [ 4980986.654947865754366, 3901041.892348932102323 ], [ 4980982.928831658326089, 3901033.87318738270551 ], [ 4980997.343101147562265, 3901027.350871213246137 ], [ 4981000.208470183424652, 3901033.911597514059395 ], [ 4981022.118687232024968, 3901023.764651471283287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980997.356131555512547, 3903482.687386949546635 ], [ 4980990.123750230297446, 3903497.600697543472052 ], [ 4980999.32899758964777, 3903501.990739780943841 ], [ 4980987.179320632480085, 3903526.724668070673943 ], [ 4980948.632961226627231, 3903508.068307240027934 ], [ 4980968.302947740070522, 3903468.421683355234563 ], [ 4980997.356131555512547, 3903482.687386949546635 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980663.023602140136063, 3899965.532656791619956 ], [ 4980674.843095657415688, 3899960.460957663599402 ], [ 4980667.679988009855151, 3899943.695110925473273 ], [ 4980697.371953855268657, 3899931.380325546022505 ], [ 4980716.855641012080014, 3899976.939759247004986 ], [ 4980675.344233216717839, 3899994.326217233669013 ], [ 4980663.023602140136063, 3899965.532656791619956 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980626.91314737405628, 3907443.985235665924847 ], [ 4980641.62711682356894, 3907430.544859256129712 ], [ 4980647.946987285278738, 3907437.113210811745375 ], [ 4980664.104624375700951, 3907421.855376588180661 ], [ 4980696.853212470188737, 3907455.79211539728567 ], [ 4980665.980804925784469, 3907484.854416138026863 ], [ 4980626.91314737405628, 3907443.985235665924847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965592.861632278189063, 3900623.558350898325443 ], [ 4965591.647761204279959, 3900661.061781368684024 ], [ 4965562.273168896324933, 3900660.285073354374617 ], [ 4965564.702033108100295, 3900584.549951879307628 ], [ 4965597.532092685811222, 3900585.696494237519801 ], [ 4965596.927856425754726, 3900602.809626440517604 ], [ 4965605.567213329486549, 3900603.188013407867402 ], [ 4965604.95696298032999, 3900623.942439842037857 ], [ 4965592.861632278189063, 3900623.558350898325443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965426.648774272762239, 3901522.322862959466875 ], [ 4965455.721861722879112, 3901530.745671534445137 ], [ 4965433.423417583107948, 3901605.719911092892289 ], [ 4965404.35040436591953, 3901597.297126251738518 ], [ 4965426.648774272762239, 3901522.322862959466875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980516.527493666857481, 3902271.250254674814641 ], [ 4980571.900166764855385, 3902234.9593082559295 ], [ 4980591.704128838144243, 3902265.225915706716478 ], [ 4980566.325654367916286, 3902281.555792331229895 ], [ 4980574.648155281320214, 3902294.682884471490979 ], [ 4980544.943587440997362, 3902313.916281588375568 ], [ 4980516.527493666857481, 3902271.250254674814641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980475.399053891189396, 3899502.672693827189505 ], [ 4980432.157407241873443, 3899520.783972265664488 ], [ 4980414.10574341379106, 3899478.505086267832667 ], [ 4980457.347445727325976, 3899460.393779245205224 ], [ 4980475.399053891189396, 3899502.672693827189505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980373.212840694002807, 3906544.747519413940609 ], [ 4980340.353827139362693, 3906560.332920403685421 ], [ 4980328.028673426248133, 3906534.816571974661201 ], [ 4980360.887710933573544, 3906519.231156148947775 ], [ 4980373.212840694002807, 3906544.747519413940609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980159.525010833516717, 3908926.432130084838718 ], [ 4980137.303314167074859, 3908950.416171290446073 ], [ 4980116.328229259699583, 3908931.071178347337991 ], [ 4980098.725083804689348, 3908949.603381213732064 ], [ 4980076.887836967594922, 3908929.528265504166484 ], [ 4980116.713469030335546, 3908886.647841652855277 ], [ 4980159.525010833516717, 3908926.432130084838718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980070.974853995256126, 3906238.213273536413908 ], [ 4980091.892279093153775, 3906284.867970719467849 ], [ 4980045.776830933988094, 3906305.522552572656423 ], [ 4980024.859342084266245, 3906258.867890679743141 ], [ 4980070.974853995256126, 3906238.213273536413908 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979943.025171179324389, 3902462.617025891318917 ], [ 4979950.451374948956072, 3902490.671346969902515 ], [ 4979923.941465622745454, 3902497.896080006845295 ], [ 4979916.227257631719112, 3902469.841137469746172 ], [ 4979943.025171179324389, 3902462.617025891318917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979929.546972162090242, 3901513.297865869943053 ], [ 4979944.746761479414999, 3901542.461535463575274 ], [ 4979904.383070336654782, 3901563.128879743162543 ], [ 4979890.044831414707005, 3901535.059505424462259 ], [ 4979901.57788472250104, 3901528.894445336423814 ], [ 4979896.128348188474774, 3901518.686885776929557 ], [ 4979913.426750528626144, 3901509.985495372675359 ], [ 4979918.014700614847243, 3901519.098784654866904 ], [ 4979929.546972162090242, 3901513.297865869943053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979892.698573742061853, 3909159.621590233407915 ], [ 4979915.241974451579154, 3909119.980341956950724 ], [ 4979962.688596569001675, 3909146.665667139925063 ], [ 4979951.416466210968792, 3909166.668334684800357 ], [ 4979943.077509, 3909161.916392042767256 ], [ 4979931.806194900535047, 3909181.554937057662755 ], [ 4979892.698573742061853, 3909159.621590233407915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979908.792913076467812, 3901257.996765512507409 ], [ 4979928.851356172934175, 3901304.285179798025638 ], [ 4979911.843986841849983, 3901311.530670993961394 ], [ 4979917.289585460908711, 3901323.558878467883915 ], [ 4979902.299756305292249, 3901330.080518068280071 ], [ 4979897.714152135886252, 3901319.874844907782972 ], [ 4979877.535724635235965, 3901328.569961956702173 ], [ 4979861.776434469036758, 3901291.758364905137569 ], [ 4979891.179345755837858, 3901279.077921619173139 ], [ 4979886.020128971897066, 3901267.778606451582164 ], [ 4979908.792913076467812, 3901257.996765512507409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979292.832711235620081, 3904698.428304867818952 ], [ 4979315.595295663923025, 3904691.923110491596162 ], [ 4979313.308179763145745, 3904684.271403749473393 ], [ 4979338.375994825735688, 3904677.042946390341967 ], [ 4979345.520550465211272, 3904702.183475903235376 ], [ 4979338.317748198285699, 3904703.988563416991383 ], [ 4979344.318351089023054, 3904725.485303553752601 ], [ 4979303.403651095926762, 3904737.049096210394055 ], [ 4979292.832711235620081, 3904698.428304867818952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965312.490567434579134, 3900713.765709739178419 ], [ 4965266.109865470789373, 3900721.700580302160233 ], [ 4965260.687406786717474, 3900691.468874988146126 ], [ 4965307.356157005764544, 3900683.534467311110348 ], [ 4965312.490567434579134, 3900713.765709739178419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965131.441664450801909, 3906647.349564677570015 ], [ 4965150.467903396114707, 3906633.543636666610837 ], [ 4965174.027299235574901, 3906664.89746755361557 ], [ 4965155.000475336797535, 3906679.067509917542338 ], [ 4965131.441664450801909, 3906647.349564677570015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965106.24670744407922, 3903913.045501398388296 ], [ 4965149.434632716700435, 3903917.121459983289242 ], [ 4965146.209938771091402, 3903952.072781307157129 ], [ 4965103.022069208323956, 3903947.996827813796699 ], [ 4965106.24670744407922, 3903913.045501398388296 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979094.561359182931483, 3908383.017303100787103 ], [ 4979107.008361538872123, 3908352.092842044308782 ], [ 4979141.528415006585419, 3908366.004231090657413 ], [ 4979129.081379261799157, 3908396.928676418960094 ], [ 4979094.561359182931483, 3908383.017303100787103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965019.877589277923107, 3897534.432017424609512 ], [ 4965071.709007239900529, 3897543.255581755656749 ], [ 4965076.071630463935435, 3897517.409483599476516 ], [ 4965104.003572233021259, 3897521.824596781749278 ], [ 4965093.826841645874083, 3897580.432882834225893 ], [ 4965014.352226502262056, 3897566.830566970165819 ], [ 4965019.877589277923107, 3897534.432017424609512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965014.394278220832348, 3894533.268515361007303 ], [ 4965052.40740492939949, 3894540.248879687860608 ], [ 4965043.111663764342666, 3894587.934645920060575 ], [ 4965005.099194799549878, 3894580.590166413225234 ], [ 4965014.394278220832348, 3894533.268515361007303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964919.934406192041934, 3899482.000504857860506 ], [ 4964937.77922632265836, 3899489.312107563950121 ], [ 4964929.684160113334656, 3899508.233718844596297 ], [ 4964912.126769252121449, 3899501.286718486342579 ], [ 4964919.934406192041934, 3899482.000504857860506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978706.744712146930397, 3909591.469571049790829 ], [ 4978802.176167640835047, 3909662.679709775839001 ], [ 4978770.127111057750881, 3909705.578743556048721 ], [ 4978720.686798158101737, 3909668.69553350051865 ], [ 4978720.686798158101737, 3909668.69553350051865 ], [ 4978693.666881004348397, 3909648.610448539722711 ], [ 4978689.047220498323441, 3909654.790828757919371 ], [ 4978661.425785137340426, 3909646.72087134514004 ], [ 4978667.806312717497349, 3909624.886541190091521 ], [ 4978672.121728539466858, 3909626.352294894400984 ], [ 4978683.726541113108397, 3909584.865966691169888 ], [ 4978706.744712146930397, 3909591.469571049790829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978710.656713078729808, 3907358.253372400533408 ], [ 4978737.98321455065161, 3907370.69231996871531 ], [ 4978718.313122567720711, 3907413.253715742845088 ], [ 4978690.986655407585204, 3907400.814787851646543 ], [ 4978710.656713078729808, 3907358.253372400533408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978712.14927511382848, 3902081.624812062829733 ], [ 4978743.594702210277319, 3902055.838759183883667 ], [ 4978760.829268472269177, 3902076.631105185952038 ], [ 4978769.772322022356093, 3902069.367622931487858 ], [ 4978779.538796963170171, 3902081.040721725206822 ], [ 4978770.018220607191324, 3902089.031226861756295 ], [ 4978776.62545398902148, 3902096.692121481057256 ], [ 4978745.756786380894482, 3902122.115239141974598 ], [ 4978712.14927511382848, 3902081.624812062829733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978661.058021366596222, 3912647.90505291800946 ], [ 4978624.066721689887345, 3912580.461341317277402 ], [ 4978698.423678198829293, 3912540.20143770147115 ], [ 4978782.154393133707345, 3912693.316663980018348 ], [ 4978729.70145798008889, 3912721.606792516075075 ], [ 4978682.961794671602547, 3912635.935468234587461 ], [ 4978661.058021366596222, 3912647.90505291800946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978516.480886046774685, 3905924.979123435448855 ], [ 4978476.42986695934087, 3905937.638415499590337 ], [ 4978468.708948818966746, 3905912.496871784329414 ], [ 4978483.98071685899049, 3905907.431548670399934 ], [ 4978481.120687744580209, 3905898.322159465402365 ], [ 4978505.899980126880109, 3905890.728176604025066 ], [ 4978516.480886046774685, 3905924.979123435448855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964674.585321827791631, 3899815.874495997093618 ], [ 4964684.995943227782845, 3899789.67394249746576 ], [ 4964727.306511371396482, 3899806.128211424220353 ], [ 4964716.895855023525655, 3899832.328748782165349 ], [ 4964674.585321827791631, 3899815.874495997093618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964667.125783218070865, 3902115.710494012571871 ], [ 4964668.303596875630319, 3902099.690645108465105 ], [ 4964651.314390274696052, 3902098.570811147801578 ], [ 4964653.08109821099788, 3902074.541037084534764 ], [ 4964706.352032695896924, 3902078.268429466057569 ], [ 4964703.696013290435076, 3902117.954383277334273 ], [ 4964667.125783218070865, 3902115.710494012571871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964535.192885131575167, 3892837.472652576398104 ], [ 4964524.775636161677539, 3892866.222050817683339 ], [ 4964485.042641842737794, 3892852.321231841109693 ], [ 4964495.17177168186754, 3892823.571355032734573 ], [ 4964535.192885131575167, 3892837.472652576398104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964460.035784368403256, 3895863.99228520039469 ], [ 4964462.088421258144081, 3895841.419564698357135 ], [ 4964490.025133944116533, 3895844.013393462635577 ], [ 4964487.972473779693246, 3895866.586111869197339 ], [ 4964460.035784368403256, 3895863.99228520039469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978386.38217238150537, 3904817.377418589312583 ], [ 4978337.978920768015087, 3904830.01915434608236 ], [ 4978327.124865007586777, 3904788.485088863410056 ], [ 4978346.429370924830437, 3904783.064124012365937 ], [ 4978343.858675087802112, 3904773.227107482030988 ], [ 4978372.670320365577936, 3904765.641572491731495 ], [ 4978386.38217238150537, 3904817.377418589312583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978363.836435064673424, 3907566.889984119217843 ], [ 4978375.890533817000687, 3907585.122222946491092 ], [ 4978350.228948646225035, 3907602.181894639041275 ], [ 4978338.174840205349028, 3907583.949667140375823 ], [ 4978363.836435064673424, 3907566.889984119217843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978362.966425626538694, 3906892.515299528371543 ], [ 4978359.810791285708547, 3906887.046610500197858 ], [ 4978303.886408684775233, 3906917.879037895705551 ], [ 4978250.533635517582297, 3906822.363191451411694 ], [ 4978276.767127323895693, 3906807.489437687210739 ], [ 4978309.754827617667615, 3906866.184737554751337 ], [ 4978336.852104565128684, 3906851.312876360025257 ], [ 4978330.827972459606826, 3906840.740247246809304 ], [ 4978396.84255984891206, 3906804.103220898658037 ], [ 4978426.386446510441601, 3906857.329358589369804 ], [ 4978362.966425626538694, 3906892.515299528371543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978375.788828981108963, 3895167.893941671121866 ], [ 4978352.980515516363084, 3895192.242162558250129 ], [ 4978319.345150135457516, 3895160.491463447920978 ], [ 4978342.44074372574687, 3895136.507954159285873 ], [ 4978375.788828981108963, 3895167.893941671121866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978330.585559551604092, 3893529.57984467735514 ], [ 4978360.254127427004278, 3893531.099371734075248 ], [ 4978359.359736828133464, 3893545.298510801512748 ], [ 4978402.85352523997426, 3893547.939845375251025 ], [ 4978400.463782564736903, 3893587.988978586625308 ], [ 4978396.719597681425512, 3893587.616890028584749 ], [ 4978395.523183654993773, 3893608.369712380226701 ], [ 4978350.0129773337394, 3893605.724106466397643 ], [ 4978350.613100131042302, 3893594.437375308480114 ], [ 4978326.706075849942863, 3893592.930090483743697 ], [ 4978330.585559551604092, 3893529.57984467735514 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978180.38867977168411, 3909080.199232423212379 ], [ 4978193.617001780308783, 3909087.509917316492647 ], [ 4978195.929524364881217, 3909083.145227174274623 ], [ 4978231.015654425136745, 3909101.426244906149805 ], [ 4978211.070521997287869, 3909138.889613174833357 ], [ 4978180.298407946713269, 3909122.802557311020792 ], [ 4978183.478505365550518, 3909116.619041225407273 ], [ 4978165.935440134257078, 3909107.478557556867599 ], [ 4978180.38867977168411, 3909080.199232423212379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978150.952687443234026, 3904761.893995709717274 ], [ 4978107.731076821684837, 3904775.275381437968463 ], [ 4978098.866132249124348, 3904746.126094695180655 ], [ 4978142.087014336138964, 3904733.108824954833835 ], [ 4978150.952687443234026, 3904761.893995709717274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978031.185662746429443, 3903933.605521345045418 ], [ 4978024.005822286941111, 3903924.487065413501114 ], [ 4978008.429671715945005, 3903936.834632189013064 ], [ 4977991.198029978200793, 3903914.95035579521209 ], [ 4978027.253425355069339, 3903886.624255944043398 ], [ 4978051.665663519874215, 3903917.262886568903923 ], [ 4978031.185662746429443, 3903933.605521345045418 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964421.454591524787247, 3903921.768205478321761 ], [ 4964414.483821284025908, 3903958.898382152896374 ], [ 4964395.771511803381145, 3903955.591152247507125 ], [ 4964394.027366980910301, 3903965.78402349120006 ], [ 4964370.421448549255729, 3903961.376561732497066 ], [ 4964379.136298418976367, 3903914.053501509595662 ], [ 4964421.454591524787247, 3903921.768205478321761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964412.167033581063151, 3903787.753041550982744 ], [ 4964424.258616114966571, 3903789.59312042593956 ], [ 4964424.551260644569993, 3903786.680541891604662 ], [ 4964456.219742429442704, 3903791.465143161825836 ], [ 4964451.563139935955405, 3903822.044668460264802 ], [ 4964407.803123006597161, 3903815.419995646458119 ], [ 4964412.167033581063151, 3903787.753041550982744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964360.935966304503381, 3900539.624723254702985 ], [ 4964396.973287353292108, 3900516.378208989277482 ], [ 4964417.370956968516111, 3900547.726174425333738 ], [ 4964401.226048538461328, 3900558.260029198601842 ], [ 4964406.683998179621994, 3900567.007921712007374 ], [ 4964386.791613691486418, 3900579.720550310332328 ], [ 4964360.935966304503381, 3900539.624723254702985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964321.117132740095258, 3901125.446749093942344 ], [ 4964301.524859842844307, 3901130.877315339166671 ], [ 4964304.102213268168271, 3901139.98470650985837 ], [ 4964281.05287504196167, 3901146.138010850176215 ], [ 4964268.168385609053075, 3901099.14455064246431 ], [ 4964310.522066132165492, 3901087.560200366657227 ], [ 4964321.117132740095258, 3901125.446749093942344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964252.682051678188145, 3897277.938777224626392 ], [ 4964263.437791252508759, 3897216.418075331952423 ], [ 4964287.050238539464772, 3897220.461296690162271 ], [ 4964276.294446491636336, 3897281.981989285442978 ], [ 4964252.682051678188145, 3897277.938777224626392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977971.739267625845969, 3906585.087378146592528 ], [ 4977933.121479906141758, 3906601.391828519292176 ], [ 4977921.947336041368544, 3906575.150751860812306 ], [ 4977960.565154592506588, 3906558.846285699401051 ], [ 4977971.739267625845969, 3906585.087378146592528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977887.69382524676621, 3911213.763244744390249 ], [ 4977918.558953950181603, 3911184.697684438899159 ], [ 4977942.400406830944121, 3911209.87316698115319 ], [ 4977911.535281079821289, 3911238.9387003518641 ], [ 4977887.69382524676621, 3911213.763244744390249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977888.86554900649935, 3904921.194111801218241 ], [ 4977942.168992760591209, 3904906.012982957065105 ], [ 4977953.890524500980973, 3904946.092198567930609 ], [ 4977900.299201587215066, 3904961.272697487846017 ], [ 4977888.86554900649935, 3904921.194111801218241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977857.466622579842806, 3904653.491194271948189 ], [ 4977867.184216732159257, 3904688.104169813916087 ], [ 4977835.49078462459147, 3904696.776572785805911 ], [ 4977834.348166570067406, 3904692.4045873535797 ], [ 4977821.67125750426203, 3904695.655081545934081 ], [ 4977813.383419200778008, 3904665.778842802159488 ], [ 4977857.466622579842806, 3904653.491194271948189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977755.43059454485774, 3909492.956839555408806 ], [ 4977731.184710906818509, 3909522.400607179384679 ], [ 4977671.978391355834901, 3909473.846560396254063 ], [ 4977701.419529155828059, 3909438.223399932030588 ], [ 4977724.987849935889244, 3909457.207828971091658 ], [ 4977719.791807268746197, 3909463.751295870635659 ], [ 4977755.43059454485774, 3909492.956839555408806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977681.057888109236956, 3905561.628772631753236 ], [ 4977666.662144191563129, 3905560.870281348470598 ], [ 4977666.35202862881124, 3905571.429452707991004 ], [ 4977651.380398843437433, 3905570.669760548975319 ], [ 4977651.68745137937367, 3905561.567109824158251 ], [ 4977633.549179607070982, 3905560.436649395152926 ], [ 4977635.665654950775206, 3905512.375692643225193 ], [ 4977658.123913058079779, 3905513.151090651284903 ], [ 4977658.43096845690161, 3905504.048440335784107 ], [ 4977683.479982797056437, 3905505.193429917097092 ], [ 4977681.057888109236956, 3905561.628772631753236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964047.533549800515175, 3891711.170463597401977 ], [ 4964027.65159625466913, 3891713.32359260879457 ], [ 4964024.817004054784775, 3891684.188805694691837 ], [ 4964044.698399306274951, 3891682.399802155792713 ], [ 4964047.533549800515175, 3891711.170463597401977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964012.940871606580913, 3901139.883986274246126 ], [ 4964028.721939222887158, 3901176.686280876863748 ], [ 4964006.53145940694958, 3901186.118362254463136 ], [ 4964010.548868627287447, 3901195.228016431443393 ], [ 4963985.764744165353477, 3901205.748380084522069 ], [ 4963962.522449064068496, 3901152.184248458128422 ], [ 4963982.119269208982587, 3901143.84039841266349 ], [ 4963985.562444678507745, 3901151.856744098011404 ], [ 4964012.940871606580913, 3901139.883986274246126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963826.589628350920975, 3893878.477750329300761 ], [ 4963818.789810501039028, 3893892.302297413814813 ], [ 4963809.867118986323476, 3893887.554494074545801 ], [ 4963794.557312779128551, 3893914.111672323662788 ], [ 4963752.53647334035486, 3893890.376824129372835 ], [ 4963765.24670384824276, 3893868.185058056842536 ], [ 4963771.002935605123639, 3893871.471322285477072 ], [ 4963781.690932684578001, 3893852.917654851917177 ], [ 4963826.589628350920975, 3893878.477750329300761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977597.162394179031253, 3909043.284775325562805 ], [ 4977574.958352611400187, 3909059.988317664247006 ], [ 4977541.939720998518169, 3909016.587341574020684 ], [ 4977564.143777737393975, 3908999.88377238297835 ], [ 4977597.162394179031253, 3909043.284775325562805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977530.031472628004849, 3908104.046409045346081 ], [ 4977483.61414919514209, 3908133.808077762369066 ], [ 4977464.959670563228428, 3908105.002584924921393 ], [ 4977511.664941417053342, 3908075.241487397346646 ], [ 4977530.031472628004849, 3908104.046409045346081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977506.976922477595508, 3906738.866437673103064 ], [ 4977520.528829683549702, 3906729.791512340772897 ], [ 4977532.297470459714532, 3906747.294499417766929 ], [ 4977518.745568078011274, 3906756.369418919552118 ], [ 4977506.976922477595508, 3906738.866437673103064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977436.642984259873629, 3911594.791782676242292 ], [ 4977476.724718363024294, 3911563.196054880972952 ], [ 4977496.535152410157025, 3911588.726844505872577 ], [ 4977497.111676525324583, 3911588.363918371964246 ], [ 4977516.636479864828289, 3911612.801725781988353 ], [ 4977476.554772459901869, 3911644.397395023610443 ], [ 4977457.317836342379451, 3911619.960218555293977 ], [ 4977457.029193982481956, 3911620.323747831396759 ], [ 4977436.642984259873629, 3911594.791782676242292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977359.811205900274217, 3913922.172064851969481 ], [ 4977386.639632801525295, 3913894.553955026436597 ], [ 4977423.412885591387749, 3913929.223526895046234 ], [ 4977396.871549700386822, 3913957.206334351561964 ], [ 4977359.811205900274217, 3913922.172064851969481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977358.223647874779999, 3907100.502722912933677 ], [ 4977377.472294200211763, 3907120.934323808643967 ], [ 4977343.14187968056649, 3907152.906263755634427 ], [ 4977323.605301681905985, 3907132.474086174275726 ], [ 4977358.223647874779999, 3907100.502722912933677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977344.935290100984275, 3897049.366161163896322 ], [ 4977392.490241033956409, 3897035.628506502602249 ], [ 4977401.642002969048917, 3897066.962796941399574 ], [ 4977353.799066354520619, 3897080.699834483209997 ], [ 4977344.935290100984275, 3897049.366161163896322 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977150.095331206917763, 3900572.285117890220135 ], [ 4977161.516812642104924, 3900619.645866260863841 ], [ 4977133.854579394683242, 3900626.506817678920925 ], [ 4977122.433052204549313, 3900579.146080855280161 ], [ 4977150.095331206917763, 3900572.285117890220135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976988.177821897901595, 3900879.639294235501438 ], [ 4976961.3798872474581, 3900886.50221606483683 ], [ 4976955.096060276031494, 3900861.36416925303638 ], [ 4976981.89401834923774, 3900854.501241253688931 ], [ 4976988.177821897901595, 3900879.639294235501438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976833.554017287679017, 3908521.712981059681624 ], [ 4976845.020839706994593, 3908545.769446951337159 ], [ 4976819.659601141698658, 3908557.733353749848902 ], [ 4976808.193514126352966, 3908533.312767603434622 ], [ 4976833.554017287679017, 3908521.712981059681624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976606.612832456827164, 3912884.285307506099343 ], [ 4976649.260699872858822, 3912863.253482847474515 ], [ 4976668.182565785013139, 3912900.79825388872996 ], [ 4976650.892534510232508, 3912909.501794358715415 ], [ 4976655.47887612413615, 3912918.978722475003451 ], [ 4976630.120340744964778, 3912931.671104754786938 ], [ 4976606.612832456827164, 3912884.285307506099343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963075.581214910373092, 3893697.419153062161058 ], [ 4963118.485316614620388, 3893709.502190792001784 ], [ 4963104.292099899612367, 3893759.365745609626174 ], [ 4963052.749873267486691, 3893744.720394540112466 ], [ 4963059.990184106864035, 3893719.970890616532415 ], [ 4963068.628956029191613, 3893722.169100574217737 ], [ 4963075.581214910373092, 3893697.419153062161058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963052.932979675009847, 3900294.683547893539071 ], [ 4963073.352782945148647, 3900312.921830250881612 ], [ 4963032.961784619837999, 3900358.375294733326882 ], [ 4963012.541422814130783, 3900340.501171989366412 ], [ 4963052.932979675009847, 3900294.683547893539071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963061.624742626212537, 3894706.398827112745494 ], [ 4963087.329110974445939, 3894663.471587751526386 ], [ 4963120.138147694058716, 3894682.821509711910039 ], [ 4963131.112869306467474, 3894664.632151650264859 ], [ 4963154.711835091002285, 3894678.869961638469249 ], [ 4963116.011710089631379, 3894742.89638171158731 ], [ 4963101.622246093116701, 3894734.134877587202936 ], [ 4963094.402571677230299, 3894745.775769486557692 ], [ 4963077.998371758498251, 3894735.918754719663411 ], [ 4963086.950944752432406, 3894721.367522660177201 ], [ 4963061.624742626212537, 3894706.398827112745494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976375.60799218621105, 3909582.580052921548486 ], [ 4976353.998884405940771, 3909590.546643823385239 ], [ 4976345.40736448764801, 3909568.316931276582181 ], [ 4976367.016487566754222, 3909560.350333571434021 ], [ 4976375.60799218621105, 3909582.580052921548486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976360.259064556099474, 3910047.546058301348239 ], [ 4976371.175259317271411, 3910059.220701080746949 ], [ 4976380.405157039873302, 3910050.864584985654801 ], [ 4976397.928029439412057, 3910069.835451939608902 ], [ 4976359.566005500033498, 3910104.713484227191657 ], [ 4976319.062122782692313, 3910060.934498694725335 ], [ 4976339.253754627890885, 3910042.040988269262016 ], [ 4976351.605713371187449, 3910055.539230931084603 ], [ 4976360.259064556099474, 3910047.546058301348239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976170.111635340377688, 3909127.357569768093526 ], [ 4976200.919200380332768, 3909126.692295253276825 ], [ 4976203.080954072065651, 3909195.881905944086611 ], [ 4976172.272723957896233, 3909196.911309071350843 ], [ 4976170.111635340377688, 3909127.357569768093526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962694.976845937781036, 3892988.599215686321259 ], [ 4962733.290948743000627, 3892989.022437368053943 ], [ 4962732.939940164797008, 3893029.804311519954354 ], [ 4962694.625895480625331, 3893029.381090335082263 ], [ 4962694.976845937781036, 3892988.599215686321259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976007.546509996987879, 3906674.958951262757182 ], [ 4976040.396919057704508, 3906662.281294799875468 ], [ 4976050.996252751909196, 3906688.884546442888677 ], [ 4976017.857937891036272, 3906701.561603281181306 ], [ 4976007.546509996987879, 3906674.958951262757182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976000.929249389097095, 3905259.200825178064406 ], [ 4975990.894809545949101, 3905237.696612226776779 ], [ 4976034.415185306221247, 3905218.122192072682083 ], [ 4976045.596195762045681, 3905242.177680915687233 ], [ 4976053.666190660558641, 3905238.552821100689471 ], [ 4976063.414116822183132, 3905259.328209778293967 ], [ 4976021.334271076135337, 3905278.541387790348381 ], [ 4976010.440460895188153, 3905254.850625484250486 ], [ 4976000.929249389097095, 3905259.200825178064406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976005.922462580725551, 3900688.272191362455487 ], [ 4976030.964159039780498, 3900695.241704115644097 ], [ 4976026.323543824255466, 3900711.253996063955128 ], [ 4976001.282602894119918, 3900703.920358391478658 ], [ 4976005.922462580725551, 3900688.272191362455487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962472.520139408297837, 3899976.265496279578656 ], [ 4962507.46771624404937, 3899911.868073929101229 ], [ 4962535.668812029995024, 3899927.204846713226289 ], [ 4962500.433741113170981, 3899991.237661600112915 ], [ 4962472.520139408297837, 3899976.265496279578656 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962383.620781055651605, 3899726.335992408916354 ], [ 4962415.980851406231523, 3899659.02145963627845 ], [ 4962443.322145911864936, 3899671.807904857676476 ], [ 4962411.249472536146641, 3899739.486975587904453 ], [ 4962383.620781055651605, 3899726.335992408916354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962373.977851544506848, 3899440.47909244382754 ], [ 4962389.859145705588162, 3899413.92189993429929 ], [ 4962454.02761843893677, 3899451.889724146574736 ], [ 4962438.145725132897496, 3899478.811008585151285 ], [ 4962373.977851544506848, 3899440.47909244382754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962250.496100977063179, 3899768.7358134444803 ], [ 4962233.171230334788561, 3899797.839803316630423 ], [ 4962192.310259154066443, 3899774.109068121761084 ], [ 4962196.063786737620831, 3899767.924573477823287 ], [ 4962179.374320959672332, 3899758.067639028653502 ], [ 4962192.945625654421747, 3899735.148109579458833 ], [ 4962250.496100977063179, 3899768.7358134444803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962200.217146723531187, 3899121.235868598800153 ], [ 4962187.498478101566434, 3899151.439285481348634 ], [ 4962162.744780871085823, 3899141.205954208504409 ], [ 4962175.463426472619176, 3899111.002525812014937 ], [ 4962200.217146723531187, 3899121.235868598800153 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975354.335906720720232, 3906189.704406943172216 ], [ 4975395.551499945111573, 3906169.760172244161367 ], [ 4975411.322820493020117, 3906202.199694253038615 ], [ 4975370.10726516880095, 3906222.143905172590166 ], [ 4975354.335906720720232, 3906189.704406943172216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962162.661613842472434, 3910921.94643275346607 ], [ 4962162.025396884419024, 3910961.635922261048108 ], [ 4962131.797753653489053, 3910961.22577563021332 ], [ 4962132.434480071999133, 3910921.172153621446341 ], [ 4962162.661613842472434, 3910921.94643275346607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962153.276394209824502, 3893059.867061915341765 ], [ 4962159.575908876024187, 3893085.00152844376862 ], [ 4962171.968300810083747, 3893081.743230449967086 ], [ 4962176.548742854036391, 3893100.684896383434534 ], [ 4962165.597308003343642, 3893103.58125657401979 ], [ 4962169.606027122586966, 3893119.609021664131433 ], [ 4962130.41236278321594, 3893129.380869808606803 ], [ 4962122.109564895741642, 3893095.504274530801922 ], [ 4962104.530103221535683, 3893099.847098604775965 ], [ 4962097.944674416445196, 3893073.255695544648916 ], [ 4962153.276394209824502, 3893059.867061915341765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975225.94896995741874, 3911045.516255434136838 ], [ 4975246.327450242824852, 3911076.144375466741621 ], [ 4975190.402924045920372, 3911113.173599064350128 ], [ 4975170.024408356286585, 3911082.545520741958171 ], [ 4975225.94896995741874, 3911045.516255434136838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975249.75246749073267, 3898337.372872959356755 ], [ 4975291.256312696263194, 3898323.255210832227021 ], [ 4975307.291132666170597, 3898370.26024465681985 ], [ 4975284.521981491707265, 3898377.86119536915794 ], [ 4975282.805558680556715, 3898372.031662295106798 ], [ 4975263.782902588136494, 3898378.547771720215678 ], [ 4975249.75246749073267, 3898337.372872959356755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975106.085942477919161, 3901470.791624466888607 ], [ 4975129.476211885921657, 3901295.691584966611117 ], [ 4975165.177620747126639, 3901300.496881738305092 ], [ 4975166.057664813473821, 3901292.487769693601876 ], [ 4975180.453571615740657, 3901294.33730743965134 ], [ 4975156.182933044619858, 3901477.446415624115616 ], [ 4975106.085942477919161, 3901470.791624466888607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975089.055315811187029, 3909251.159421471878886 ], [ 4975059.939624907448888, 3909269.67185474652797 ], [ 4975054.199740211479366, 3909260.557045518420637 ], [ 4975035.173901166766882, 3909272.535326771438122 ], [ 4975016.231148184277117, 3909243.002675218973309 ], [ 4975072.444304760545492, 3909207.430233427323401 ], [ 4975095.692476835101843, 3909243.525938290171325 ], [ 4975118.754889806732535, 3909228.642732355743647 ], [ 4975138.559066968970001, 3909259.269581566564739 ], [ 4975106.849280265159905, 3909279.233291608747095 ], [ 4975089.055315811187029, 3909251.159421471878886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961829.363571893423796, 3908774.152236758265644 ], [ 4961814.679559424519539, 3908774.494195574894547 ], [ 4961814.916343285702169, 3908808.358843114692718 ], [ 4961770.289091534912586, 3908809.019767602905631 ], [ 4961769.254414462484419, 3908731.458060244098306 ], [ 4961828.5658313408494, 3908730.455174834933132 ], [ 4961829.363571893423796, 3908774.152236758265644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961666.748603723943233, 3900121.786203389521688 ], [ 4961695.334400553256273, 3900073.035755797289312 ], [ 4961706.556701252236962, 3900079.606989646796137 ], [ 4961719.261782698333263, 3900057.778304210398346 ], [ 4961746.598612175323069, 3900073.477078830357641 ], [ 4961719.166930831037462, 3900120.772688904311508 ], [ 4961720.893308490514755, 3900121.867679065093398 ], [ 4961707.033501232974231, 3900145.51527747604996 ], [ 4961666.748603723943233, 3900121.786203389521688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974835.363252591341734, 3898731.988933955784887 ], [ 4974837.940900936722755, 3898739.276677507441491 ], [ 4974862.15189144294709, 3898730.585832899902016 ], [ 4974874.755697600543499, 3898765.203347684815526 ], [ 4974846.79759325645864, 3898775.343229798134416 ], [ 4974846.79759325645864, 3898775.343229798134416 ], [ 4974829.792181137017906, 3898781.499539497308433 ], [ 4974814.322653042152524, 3898739.593729899730533 ], [ 4974835.363252591341734, 3898731.988933955784887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974738.984553226269782, 3908805.12615873478353 ], [ 4974694.890757211484015, 3908826.886361040174961 ], [ 4974662.199983321130276, 3908760.913380558136851 ], [ 4974706.29386080801487, 3908739.153125496581197 ], [ 4974738.984553226269782, 3908805.12615873478353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974712.423544289544225, 3907684.273987140972167 ], [ 4974738.094332055188715, 3907661.384748287498951 ], [ 4974750.734665816649795, 3907675.611069765407592 ], [ 4974757.945788328535855, 3907669.071049462538213 ], [ 4974777.194548103027046, 3907690.229056251700968 ], [ 4974729.02522137016058, 3907733.464872990269214 ], [ 4974706.616552695631981, 3907708.659291249699891 ], [ 4974721.903979093767703, 3907694.852686074096709 ], [ 4974712.423544289544225, 3907684.273987140972167 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974731.04461008682847, 3898180.852225305046886 ], [ 4974793.598162297159433, 3898154.759393654298037 ], [ 4974807.070756274275482, 3898187.193814123980701 ], [ 4974744.517266278155148, 3898213.286614932585508 ], [ 4974731.04461008682847, 3898180.852225305046886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974685.672649786807597, 3898402.15310436533764 ], [ 4974706.426178421825171, 3898394.183507718611509 ], [ 4974709.579938831739128, 3898401.472383137326688 ], [ 4974734.081387385725975, 3898391.689611655659974 ], [ 4974748.411476288922131, 3898427.402885113842785 ], [ 4974702.580510873347521, 3898445.154081522952765 ], [ 4974685.672649786807597, 3898402.15310436533764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974670.793587890453637, 3905886.47150490898639 ], [ 4974683.420314479619265, 3905907.980386483948678 ], [ 4974648.249452664516866, 3905929.030116832815111 ], [ 4974635.335489585064352, 3905907.156549075152725 ], [ 4974670.793587890453637, 3905886.47150490898639 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974683.18191159516573, 3899365.272680032067001 ], [ 4974717.178900165483356, 3899359.514202122110873 ], [ 4974724.585346725769341, 3899400.675667852628976 ], [ 4974690.299673170782626, 3899406.797692824620754 ], [ 4974683.18191159516573, 3899365.272680032067001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961405.12325438298285, 3898079.71716972021386 ], [ 4961388.08624214399606, 3898108.822105255443603 ], [ 4961349.523442924022675, 3898086.916760931257159 ], [ 4961366.272944772616029, 3898057.447242503520101 ], [ 4961405.12325438298285, 3898079.71716972021386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974555.385194873437285, 3901066.965081125497818 ], [ 4974584.941918066702783, 3900975.626908899750561 ], [ 4974608.830288315191865, 3900983.321070299018174 ], [ 4974612.888961954973638, 3900969.856292246840894 ], [ 4974656.348660014569759, 3900983.77958426810801 ], [ 4974647.363677435554564, 3901012.528058039024472 ], [ 4974636.714401636272669, 3901009.229725698474795 ], [ 4974612.371782722882926, 3901085.28470430104062 ], [ 4974555.385194873437285, 3901066.965081125497818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974549.396931006573141, 3900601.230067533440888 ], [ 4974577.970928495749831, 3900569.971514798700809 ], [ 4974607.006050830706954, 3900596.610677130054682 ], [ 4974578.720768551342189, 3900627.505641743075103 ], [ 4974549.396931006573141, 3900601.230067533440888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974356.266594524495304, 3899667.217107113916427 ], [ 4974359.962498608976603, 3899691.621148180682212 ], [ 4974334.32256291154772, 3899695.211799902841449 ], [ 4974330.626636064611375, 3899670.807762308046222 ], [ 4974356.266594524495304, 3899667.217107113916427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974320.278369679115713, 3896159.481383603531867 ], [ 4974343.193329374305904, 3896224.705843772273511 ], [ 4974299.091466488316655, 3896240.276348952203989 ], [ 4974285.627332692965865, 3896202.74442500853911 ], [ 4974278.133115106262267, 3896205.278547715395689 ], [ 4974268.394142869859934, 3896177.58548295032233 ], [ 4974320.278369679115713, 3896159.481383603531867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974296.237890186719596, 3897686.23027218459174 ], [ 4974327.947058604098856, 3897673.184189154300839 ], [ 4974346.294663809239864, 3897716.916024582926184 ], [ 4974314.87356732878834, 3897729.962654929142445 ], [ 4974296.237890186719596, 3897686.23027218459174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974277.584730413742363, 3898381.317752981092781 ], [ 4974331.777525841258466, 3898358.848653352819383 ], [ 4974348.691734836436808, 3898398.936377032659948 ], [ 4974294.787027863785625, 3898421.406011496670544 ], [ 4974277.584730413742363, 3898381.317752981092781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974252.114264705218375, 3901073.283774099778384 ], [ 4974243.950644709169865, 3901123.881847073789686 ], [ 4974157.003277079202235, 3901110.237708127591759 ], [ 4974166.041472455486655, 3901054.179370642639697 ], [ 4974230.819969179108739, 3901064.502650797367096 ], [ 4974229.945939064957201, 3901069.598757920321077 ], [ 4974252.114264705218375, 3901073.283774099778384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974145.929213156923652, 3899859.427330196369439 ], [ 4974150.484283111058176, 3899886.381949076429009 ], [ 4974125.131135025061667, 3899890.701625747140497 ], [ 4974120.28803389146924, 3899863.746444557793438 ], [ 4974145.929213156923652, 3899859.427330196369439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973910.155064892023802, 3899953.274135942105204 ], [ 4973877.3095977678895, 3899959.764150584116578 ], [ 4973868.471249270252883, 3899913.866407454945147 ], [ 4973901.316770283505321, 3899907.376382205635309 ], [ 4973910.155064892023802, 3899953.274135942105204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973885.681097307242453, 3899802.840318919159472 ], [ 4973851.972856448031962, 3899808.600413787178695 ], [ 4973844.851058824919164, 3899768.532129124738276 ], [ 4973878.560061359778047, 3899762.407896439544857 ], [ 4973885.681097307242453, 3899802.840318919159472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973858.479418942704797, 3899868.694671658799052 ], [ 4973862.747482082806528, 3899895.284549131989479 ], [ 4973836.819801789708436, 3899898.875112127047032 ], [ 4973832.839007625356317, 3899872.64993122080341 ], [ 4973858.479418942704797, 3899868.694671658799052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973744.256065138615668, 3899809.482206584885716 ], [ 4973754.802783136256039, 3899865.578895195852965 ], [ 4973720.805221107788384, 3899872.066850290168077 ], [ 4973713.395238349214196, 3899831.998036684468389 ], [ 4973715.988721644505858, 3899831.274838315788656 ], [ 4973712.851208774372935, 3899815.611105170100927 ], [ 4973744.256065138615668, 3899809.482206584885716 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960507.688640463165939, 3907898.635889048688114 ], [ 4960501.120727804489434, 3907861.484837878495455 ], [ 4960514.656730826944113, 3907858.955691554583609 ], [ 4960513.514625230804086, 3907852.399648136459291 ], [ 4960557.001869136467576, 3907844.816460241563618 ], [ 4960558.428689134307206, 3907853.557713512331247 ], [ 4960583.196282882243395, 3907849.224375774618238 ], [ 4960589.193042161874473, 3907883.097423353698105 ], [ 4960562.985875963233411, 3907887.428649290464818 ], [ 4960564.984803020954132, 3907898.719663688447326 ], [ 4960532.729731183499098, 3907904.13446632027626 ], [ 4960531.016049785539508, 3907894.664530923124403 ], [ 4960507.688640463165939, 3907898.635889048688114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973614.185299138538539, 3903596.553394317161292 ], [ 4973660.028076266869903, 3903567.876390570309013 ], [ 4973680.411203602328897, 3903599.95970140164718 ], [ 4973652.443663110025227, 3903617.747583047952503 ], [ 4973657.036921620368958, 3903625.039165516383946 ], [ 4973639.448976959101856, 3903636.292941674124449 ], [ 4973614.185299138538539, 3903596.553394317161292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973592.586029349826276, 3899457.072318695485592 ], [ 4973605.198217959143221, 3899488.047963396180421 ], [ 4973562.827358765527606, 3899505.079589006956667 ], [ 4973550.215129436925054, 3899474.103963876608759 ], [ 4973592.586029349826276, 3899457.072318695485592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973437.413858601823449, 3901647.744322701822966 ], [ 4973457.612587966956198, 3901627.392226462252438 ], [ 4973479.458603294566274, 3901648.554260807577521 ], [ 4973459.259873199276626, 3901668.906340891961008 ], [ 4973437.413858601823449, 3901647.744322701822966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973354.113016929477453, 3900348.00028936099261 ], [ 4973398.809037132188678, 3900319.320663139224052 ], [ 4973413.166009285487235, 3900341.560486532747746 ], [ 4973404.515368524938822, 3900347.005656630732119 ], [ 4973413.991143636405468, 3900361.589267841540277 ], [ 4973378.233797945082188, 3900384.82424657093361 ], [ 4973354.113016929477453, 3900348.00028936099261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973219.545048383995891, 3897852.35504224197939 ], [ 4973207.149283644743264, 3897857.793028472457081 ], [ 4973212.595770431682467, 3897871.276366866193712 ], [ 4973198.759173036552966, 3897877.075701646506786 ], [ 4973193.599301104433835, 3897864.321179888211191 ], [ 4973166.502872321754694, 3897875.556860079523176 ], [ 4973152.166870595887303, 3897841.665084877051413 ], [ 4973183.29924136493355, 3897828.61653799097985 ], [ 4973175.271729718893766, 3897809.30214003007859 ], [ 4973197.756251846440136, 3897799.878205374348909 ], [ 4973219.545048383995891, 3897852.35504224197939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973133.507710502482951, 3900196.459357109852135 ], [ 4973159.140676211565733, 3900196.144721050281078 ], [ 4973159.902709640562534, 3900248.945116488728672 ], [ 4973116.700243508443236, 3900249.954101538285613 ], [ 4973115.917747465893626, 3900207.713452532887459 ], [ 4973133.774625742807984, 3900207.383787448983639 ], [ 4973133.507710502482951, 3900196.459357109852135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973067.105460616759956, 3904163.537797779776156 ], [ 4973075.13815681822598, 3904179.210936979856342 ], [ 4973063.319850414991379, 3904185.378381059970707 ], [ 4973071.639800097793341, 3904201.416204664390534 ], [ 4973028.978916852734983, 3904223.545985699631274 ], [ 4973008.895371527411044, 3904185.273500979878008 ], [ 4973050.980377914384007, 3904163.142578406725079 ], [ 4973054.710526483133435, 3904170.068265104200691 ], [ 4973067.105460616759956, 3904163.537797779776156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959971.760408797301352, 3899379.378399374429137 ], [ 4959970.843916037119925, 3899415.790082187857479 ], [ 4959943.771900883875787, 3899415.022834930103272 ], [ 4959944.976368704810739, 3899378.611565838102251 ], [ 4959971.760408797301352, 3899379.378399374429137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972754.346408452838659, 3902377.601432419382036 ], [ 4972707.347172198817134, 3902408.098402976989746 ], [ 4972685.237582010217011, 3902374.191898146644235 ], [ 4972731.948872311972082, 3902343.694337875582278 ], [ 4972754.346408452838659, 3902377.601432419382036 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959777.932108955457807, 3905402.913778512272984 ], [ 4959743.951214488595724, 3905405.049867158289999 ], [ 4959741.98304954264313, 3905371.911095220129937 ], [ 4959775.675516179762781, 3905370.138721887953579 ], [ 4959777.932108955457807, 3905402.913778512272984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959664.069489226676524, 3899243.480518553871661 ], [ 4959661.709702661260962, 3899282.439055643510073 ], [ 4959629.742887886241078, 3899280.572740115690976 ], [ 4959629.442396353930235, 3899289.311431049834937 ], [ 4959603.811347138136625, 3899287.818324085790664 ], [ 4959606.759546907618642, 3899240.121501819696277 ], [ 4959664.069489226676524, 3899243.480518553871661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959609.488771908916533, 3904995.209869189187884 ], [ 4959570.290496684610844, 3905021.007262253668159 ], [ 4959536.959746966138482, 3904970.709639059845358 ], [ 4959576.158063345588744, 3904944.912198165431619 ], [ 4959609.488771908916533, 3904995.209869189187884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972273.316769347526133, 3907435.927187109366059 ], [ 4972293.115139381028712, 3907472.013866636436433 ], [ 4972273.516187947243452, 3907482.536473143380135 ], [ 4972278.10708093829453, 3907490.920229508075863 ], [ 4972253.895824870094657, 3907504.347148349508643 ], [ 4972229.50651560164988, 3907459.876748262904584 ], [ 4972247.088607424870133, 3907450.078546009492129 ], [ 4972241.34945160523057, 3907439.871955650858581 ], [ 4972256.625392420217395, 3907431.525911707431078 ], [ 4972262.364544235169888, 3907441.732505280990154 ], [ 4972273.316769347526133, 3907435.927187109366059 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959481.51539346203208, 3901235.376587848644704 ], [ 4959519.229359019547701, 3901244.533523947466165 ], [ 4959507.640751333907247, 3901292.946372549049556 ], [ 4959469.926849838346243, 3901283.789452457800508 ], [ 4959481.51539346203208, 3901235.376587848644704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959443.437489172443748, 3898036.803879017475992 ], [ 4959405.996164882555604, 3898035.294184434693307 ], [ 4959408.099190939217806, 3897974.123377175536007 ], [ 4959445.828627080656588, 3897975.633483936078846 ], [ 4959443.437489172443748, 3898036.803879017475992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959268.33591634221375, 3900874.220973670948297 ], [ 4959272.703245079144835, 3900840.727160909213126 ], [ 4959264.064908804371953, 3900839.622550359927118 ], [ 4959267.266860181465745, 3900815.594477601349354 ], [ 4959323.703821023926139, 3900822.956975186243653 ], [ 4959320.791363411583006, 3900845.893060453236103 ], [ 4959331.445151265710592, 3900847.364675235934556 ], [ 4959327.951023329049349, 3900874.30536965187639 ], [ 4959315.857783194631338, 3900872.467587087769061 ], [ 4959314.694970339536667, 3900880.112677354831249 ], [ 4959268.33591634221375, 3900874.220973670948297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959174.897564598359168, 3905861.953875994775444 ], [ 4959196.148727516643703, 3905902.038336551748216 ], [ 4959140.246426794677973, 3905931.454099997878075 ], [ 4959124.73813199531287, 3905902.66585184680298 ], [ 4959159.892717760056257, 3905884.508852529805154 ], [ 4959153.862372078932822, 3905872.848139342386276 ], [ 4959174.897564598359168, 3905861.953875994775444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959149.520956658758223, 3898537.066289117559791 ], [ 4959120.144381232559681, 3898535.932493875734508 ], [ 4959121.929968168027699, 3898495.152469458989799 ], [ 4959151.306588096544147, 3898496.286266628652811 ], [ 4959149.520956658758223, 3898537.066289117559791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959072.815532968379557, 3900648.912574118003249 ], [ 4959080.878967245109379, 3900649.288053167052567 ], [ 4959081.476490590721369, 3900633.995422209613025 ], [ 4959118.626213945448399, 3900635.504261237569153 ], [ 4959118.035339101217687, 3900646.063207023777068 ], [ 4959139.921657026745379, 3900647.186443908605725 ], [ 4959139.02429611235857, 3900670.853647775948048 ], [ 4959071.924380273558199, 3900668.210225386545062 ], [ 4959072.815532968379557, 3900648.912574118003249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971754.163490310311317, 3898253.381920437328517 ], [ 4971688.7301637660712, 3898280.932937102392316 ], [ 4971670.664601745083928, 3898238.295827689580619 ], [ 4971693.724283720366657, 3898228.871713087428361 ], [ 4971700.032107600942254, 3898244.177013384643942 ], [ 4971742.693157424218953, 3898226.414747624658048 ], [ 4971754.163490310311317, 3898253.381920437328517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971607.801968823187053, 3897816.151320855133235 ], [ 4971608.854480892419815, 3897869.316265584435314 ], [ 4971574.289771078154445, 3897869.979789909906685 ], [ 4971572.948480517603457, 3897817.1784359337762 ], [ 4971607.801968823187053, 3897816.151320855133235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958926.870759912766516, 3899365.877084041479975 ], [ 4958941.848397341556847, 3899365.16982367541641 ], [ 4958941.014999168924987, 3899343.320854828227311 ], [ 4958976.730031732469797, 3899342.278572216629982 ], [ 4958978.102623521350324, 3899390.345659671351314 ], [ 4958927.698553945869207, 3899391.731474998872727 ], [ 4958926.870759912766516, 3899365.877084041479975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971320.488025542348623, 3898514.380075451917946 ], [ 4971302.621910237707198, 3898519.080490828491747 ], [ 4971306.627756221219897, 3898533.289024297147989 ], [ 4971278.963529392145574, 3898540.884250678587705 ], [ 4971266.377349328249693, 3898494.252175639383495 ], [ 4971311.6197345321998, 3898481.955979075748473 ], [ 4971320.488025542348623, 3898514.380075451917946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958684.317559426650405, 3904568.235764382407069 ], [ 4958703.635486153885722, 3904550.420255820732564 ], [ 4958726.350009689107537, 3904574.848710488528013 ], [ 4958707.032085391692817, 3904592.664202983491123 ], [ 4958684.317559426650405, 3904568.235764382407069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958571.695894663222134, 3901479.885791325010359 ], [ 4958571.156323286704719, 3901453.667649077251554 ], [ 4958648.339529823511839, 3901452.31841943692416 ], [ 4958649.147253446280956, 3901492.738024536520243 ], [ 4958594.139825284481049, 3901493.753925778903067 ], [ 4958593.871568729169667, 3901479.552464998792857 ], [ 4958571.695894663222134, 3901479.885791325010359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971036.567340593785048, 3897855.141486370004714 ], [ 4971085.569913313724101, 3897834.841018617153168 ], [ 4971095.893013185821474, 3897859.620996042620391 ], [ 4971107.423588520847261, 3897854.544562093447894 ], [ 4971120.902129910886288, 3897886.248871594201773 ], [ 4971054.31577870529145, 3897914.163417768198997 ], [ 4971043.705308539792895, 3897889.018793227616698 ], [ 4971049.758612121455371, 3897886.481098024640232 ], [ 4971036.567340593785048, 3897855.141486370004714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970852.861980670131743, 3900477.267692152876407 ], [ 4970843.027653254568577, 3900500.189765938092023 ], [ 4970654.243759874254465, 3900421.554025552701205 ], [ 4970664.078624154441059, 3900398.267754512373358 ], [ 4970852.861980670131743, 3900477.267692152876407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958340.941730907186866, 3898612.041464218404144 ], [ 4958321.289581320248544, 3898660.443620484322309 ], [ 4958287.322357755154371, 3898646.559859789442271 ], [ 4958304.663267784751952, 3898603.252310369163752 ], [ 4958319.344253866001964, 3898609.098630828782916 ], [ 4958321.366922366432846, 3898604.367732690181583 ], [ 4958340.941730907186866, 3898612.041464218404144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958172.831811793148518, 3898124.240239185281098 ], [ 4958161.557827407494187, 3898154.083392200991511 ], [ 4958099.952461942099035, 3898130.694560762960464 ], [ 4958111.2263876311481, 3898100.851382312364876 ], [ 4958172.831811793148518, 3898124.240239185281098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970575.538151204586029, 3903760.853521182667464 ], [ 4970535.468310326337814, 3903784.084401813335717 ], [ 4970525.708230400457978, 3903767.316467366181314 ], [ 4970536.086311997845769, 3903761.145268166903406 ], [ 4970521.733472926542163, 3903736.358025882858783 ], [ 4970551.425266875885427, 3903719.298314541578293 ], [ 4970575.538151204586029, 3903760.853521182667464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970539.547813986428082, 3908781.072338712867349 ], [ 4970527.985962639562786, 3908805.812130651436746 ], [ 4970419.247677835635841, 3908755.36265542730689 ], [ 4970430.809450503438711, 3908730.622817469295114 ], [ 4970539.547813986428082, 3908781.072338712867349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970194.751547543331981, 3900967.273258323781192 ], [ 4970199.40920161921531, 3900939.971946355421096 ], [ 4970242.019183569587767, 3900947.332197360694408 ], [ 4970237.361487445421517, 3900974.633502066601068 ], [ 4970194.751547543331981, 3900967.273258323781192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958158.879346905276179, 3896748.539553187787533 ], [ 4958181.913033023476601, 3896755.489649245049804 ], [ 4958179.597708749584854, 3896763.497315607499331 ], [ 4958200.904139841906726, 3896769.716796228662133 ], [ 4958192.512956404127181, 3896797.379099441692233 ], [ 4958148.173386873677373, 3896783.845409609843045 ], [ 4958158.879346905276179, 3896748.539553187787533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958035.302244364283979, 3905381.172785467468202 ], [ 4958064.082017778418958, 3905392.13613764801994 ], [ 4958055.701123448088765, 3905414.336667635478079 ], [ 4958071.530227093026042, 3905420.184454333037138 ], [ 4958064.016168639995158, 3905440.201381951570511 ], [ 4958046.748338308185339, 3905433.623366786632687 ], [ 4958036.344367769546807, 3905461.283103072084486 ], [ 4958004.686684868298471, 3905449.223449545446783 ], [ 4958023.182043851353228, 3905400.455156313255429 ], [ 4958027.498759819194674, 3905402.281720562838018 ], [ 4958035.302244364283979, 3905381.172785467468202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970086.077942688018084, 3898644.288128474261612 ], [ 4970087.432030784897506, 3898691.627500819042325 ], [ 4970053.73181558586657, 3898692.658679710235447 ], [ 4970053.193462989293039, 3898671.902286809403449 ], [ 4970040.231934157200158, 3898672.242885754909366 ], [ 4970039.416126565076411, 3898645.659908364061266 ], [ 4970086.077942688018084, 3898644.288128474261612 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970048.659002703614533, 3897203.35803297162056 ], [ 4970091.886751589365304, 3897191.056132548954338 ], [ 4970103.05063474457711, 3897229.310046709142625 ], [ 4970059.822942171245813, 3897241.611929460894316 ], [ 4970048.659002703614533, 3897203.35803297162056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970026.305472455918789, 3893330.801741177216172 ], [ 4970054.842234794050455, 3893321.386179217137396 ], [ 4970063.437591354362667, 3893347.254939740523696 ], [ 4970034.900853417813778, 3893356.670492718927562 ], [ 4970026.305472455918789, 3893330.801741177216172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969929.582705843262374, 3913004.629120361059904 ], [ 4969883.236327852122486, 3913004.545177480205894 ], [ 4969882.997242994606495, 3912977.598881579469889 ], [ 4969895.375480603426695, 3912977.621293170843273 ], [ 4969895.389327337965369, 3912969.974519334267825 ], [ 4969873.799371866509318, 3912969.935433042235672 ], [ 4969873.828371196985245, 3912953.91362130548805 ], [ 4969896.857670765370131, 3912953.955313995946199 ], [ 4969896.886024442501366, 3912938.29763451917097 ], [ 4969929.414928977377713, 3912938.356559113133699 ], [ 4969929.582705843262374, 3913004.629120361059904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969600.452231484465301, 3904740.051196831278503 ], [ 4969584.873228337615728, 3904756.409084360580891 ], [ 4969550.664287287741899, 3904724.304010555148125 ], [ 4969566.243942816741765, 3904707.581973294727504 ], [ 4969600.452231484465301, 3904740.051196831278503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957610.617777614854276, 3900457.182764821685851 ], [ 4957621.269841237924993, 3900460.110219558700919 ], [ 4957626.766978370957077, 3900441.547018108423799 ], [ 4957657.282681249082088, 3900450.691592998337001 ], [ 4957639.345813565887511, 3900510.384658411610872 ], [ 4957598.178616244345903, 3900497.94852411840111 ], [ 4957610.617777614854276, 3900457.182764821685851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957542.988637832924724, 3899139.668749033939093 ], [ 4957503.214181900955737, 3899160.734607512131333 ], [ 4957497.468141785822809, 3899150.167089745867997 ], [ 4957479.887007342651486, 3899159.246633969713002 ], [ 4957467.820837675593793, 3899136.654316472820938 ], [ 4957477.908700332045555, 3899131.20596276037395 ], [ 4957469.865397748537362, 3899115.537535864394158 ], [ 4957520.304302236065269, 3899088.659938781056553 ], [ 4957526.911441951058805, 3899101.413402764126658 ], [ 4957544.493121792562306, 3899091.969760365318507 ], [ 4957554.834602843038738, 3899112.010872625745833 ], [ 4957533.794792609289289, 3899122.906359560322016 ], [ 4957542.988637832924724, 3899139.668749033939093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957192.486687300726771, 3892236.765027043409646 ], [ 4957193.718878717161715, 3892177.049610958900303 ], [ 4957236.066969559527934, 3892177.834518362767994 ], [ 4957234.546108494512737, 3892237.91367472615093 ], [ 4957192.486687300726771, 3892236.765027043409646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957064.694925216957927, 3900578.433370426762849 ], [ 4957072.240649480372667, 3900535.111929151695222 ], [ 4957153.150460578501225, 3900548.692709552589804 ], [ 4957147.924648989923298, 3900580.000929272267967 ], [ 4957132.088601947762072, 3900577.066740435548127 ], [ 4957130.05608204100281, 3900589.444455041084439 ], [ 4957064.694925216957927, 3900578.433370426762849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969003.668897233903408, 3910813.07129717618227 ], [ 4969037.320195301435888, 3910830.97363772103563 ], [ 4969045.696831436827779, 3910815.330829536076635 ], [ 4969063.241221306845546, 3910824.829499137122184 ], [ 4969052.554339941591024, 3910844.473651801235974 ], [ 4969072.687762557528913, 3910855.069332856684923 ], [ 4969055.067588331177831, 3910888.174057277385145 ], [ 4968983.738553578965366, 3910850.177421791478992 ], [ 4969003.668897233903408, 3910813.07129717618227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969030.788860565982759, 3895231.224501809570938 ], [ 4969005.150569044984877, 3895231.90720225404948 ], [ 4969003.796965929679573, 3895183.111468761228025 ], [ 4969029.147247271612287, 3895182.428255064878613 ], [ 4969030.788860565982759, 3895231.224501809570938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968959.079414379782975, 3903821.293981053866446 ], [ 4968938.034126351587474, 3903834.729481121525168 ], [ 4968924.823959443718195, 3903814.314695243723691 ], [ 4968945.869256803765893, 3903800.879184995312244 ], [ 4968959.079414379782975, 3903821.293981053866446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968967.235490027815104, 3894359.386236142367125 ], [ 4968996.903002514503896, 3894361.259558486752212 ], [ 4968995.709997314028442, 3894384.197575483471155 ], [ 4968966.042510069906712, 3894382.324254444800317 ], [ 4968967.235490027815104, 3894359.386236142367125 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956797.912073117680848, 3899126.292590423021466 ], [ 4956871.927434740588069, 3899129.667751878034323 ], [ 4956870.736288825981319, 3899159.160696730017662 ], [ 4956848.272638604044914, 3899158.038545755203813 ], [ 4956847.978837353177369, 3899162.407715703360736 ], [ 4956796.42721539363265, 3899160.154708991758525 ], [ 4956797.912073117680848, 3899126.292590423021466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968870.563783262856305, 3897381.853459048550576 ], [ 4968885.462133070454001, 3897426.66782152839005 ], [ 4968839.061158842407167, 3897442.243212131783366 ], [ 4968823.875351963564754, 3897397.064236520323902 ], [ 4968870.563783262856305, 3897381.853459048550576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968631.175845306366682, 3897073.012526416219771 ], [ 4968589.978941907174885, 3897077.309497090056539 ], [ 4968583.744734128005803, 3897019.037765428889543 ], [ 4968609.673196276649833, 3897016.170398368500173 ], [ 4968611.093492645770311, 3897027.460921541787684 ], [ 4968632.988148768432438, 3897025.314729349222034 ], [ 4968635.538757313042879, 3897048.987656386569142 ], [ 4968628.624593462795019, 3897049.703728033229709 ], [ 4968631.175845306366682, 3897073.012526416219771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956457.277298296801746, 3892022.048800356686115 ], [ 4956459.552933332510293, 3892044.263612033799291 ], [ 4956469.925615348853171, 3892043.184813286643475 ], [ 4956471.630782393738627, 3892061.029338266700506 ], [ 4956413.140866937115788, 3892066.778829470276833 ], [ 4956411.432804116979241, 3892051.119074740912765 ], [ 4956420.076463740319014, 3892050.402123908046633 ], [ 4956417.515563975088298, 3892026.002172079402953 ], [ 4956457.277298296801746, 3892022.048800356686115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968497.89833805616945, 3908163.841731854714453 ], [ 4968516.614261445589364, 3908163.146385246422142 ], [ 4968517.153584063053131, 3908183.90286699635908 ], [ 4968498.725592467002571, 3908184.598719538189471 ], [ 4968497.89833805616945, 3908163.841731854714453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968301.005973901599646, 3890699.082288064993918 ], [ 4968254.0270801987499, 3890709.195710023865104 ], [ 4968250.311637330800295, 3890692.075182550121099 ], [ 4968261.551544428803027, 3890689.910063412040472 ], [ 4968252.977149319835007, 3890650.569211659021676 ], [ 4968288.716214106418192, 3890642.62089123763144 ], [ 4968301.005973901599646, 3890699.082288064993918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956215.759130345657468, 3898962.398769444786012 ], [ 4956182.655727087520063, 3898948.154660820029676 ], [ 4956200.27727978117764, 3898907.759154239669442 ], [ 4956233.380249602720141, 3898922.367413472849876 ], [ 4956215.759130345657468, 3898962.398769444786012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956127.311707684770226, 3893210.498283968307078 ], [ 4956108.579095892608166, 3893216.300046157091856 ], [ 4956111.734257755801082, 3893226.86386776342988 ], [ 4956075.710402746684849, 3893237.741036857478321 ], [ 4956064.523005592636764, 3893200.949555174447596 ], [ 4956119.567139429971576, 3893184.635105293244123 ], [ 4956127.311707684770226, 3893210.498283968307078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968043.297942015342414, 3913440.057884159963578 ], [ 4968047.551155489869416, 3913477.20689465617761 ], [ 4968022.790068671107292, 3913480.076838016044348 ], [ 4968018.536821429617703, 3913442.927831371314824 ], [ 4968043.297942015342414, 3913440.057884159963578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967935.695987328886986, 3892187.73102117376402 ], [ 4967946.641463126987219, 3892188.842416212894022 ], [ 4967942.828641855157912, 3892227.797560167498887 ], [ 4967915.464673944748938, 3892225.201148544438183 ], [ 4967917.51858420111239, 3892203.721122942399234 ], [ 4967886.698157527484, 3892200.754612429998815 ], [ 4967890.803412096574903, 3892159.251068070530891 ], [ 4967938.042431886307895, 3892163.702605044934899 ], [ 4967935.695987328886986, 3892187.73102117376402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955998.531444139778614, 3897228.859795766416937 ], [ 4956024.724234251305461, 3897243.094719008542597 ], [ 4956004.22622708696872, 3897279.845287437550724 ], [ 4955978.033462014980614, 3897265.610383863560855 ], [ 4955998.531444139778614, 3897228.859795766416937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967729.053790677338839, 3902729.294200443197042 ], [ 4967739.70196661632508, 3902733.318058706820011 ], [ 4967743.462660363875329, 3902723.493029557634145 ], [ 4967767.924852132797241, 3902732.638634196016937 ], [ 4967763.873654105700552, 3902743.91968089947477 ], [ 4967791.213684064336121, 3902754.162680781446397 ], [ 4967777.037319647148252, 3902792.007751171011478 ], [ 4967714.299031805247068, 3902768.594826645217836 ], [ 4967729.053790677338839, 3902729.294200443197042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967577.552487081848085, 3903746.414717871230096 ], [ 4967561.073853773064911, 3903783.891823598649353 ], [ 4967508.703801706433296, 3903760.861362161114812 ], [ 4967517.375970900990069, 3903741.577340708114207 ], [ 4967449.466945645399392, 3903711.965886369347572 ], [ 4967463.632348709739745, 3903679.946702865418047 ], [ 4967484.638177257031202, 3903689.086112644523382 ], [ 4967487.818328302353621, 3903681.808961526490748 ], [ 4967497.314300065860152, 3903685.830744221340865 ], [ 4967500.783047256059945, 3903678.189960170537233 ], [ 4967527.83112451992929, 3903690.252852557227015 ], [ 4967515.111118104308844, 3903718.997310620266944 ], [ 4967577.552487081848085, 3903746.414717871230096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967505.945042484439909, 3896160.000414819922298 ], [ 4967513.084156265482306, 3896196.061520417686552 ], [ 4967454.590827144682407, 3896207.613058622460812 ], [ 4967447.163591966032982, 3896171.55147327715531 ], [ 4967505.945042484439909, 3896160.000414819922298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955706.250586126931012, 3891551.714379441458732 ], [ 4955754.072583599947393, 3891553.232223282568157 ], [ 4955753.161567034199834, 3891589.643881734926254 ], [ 4955744.231083735823631, 3891589.268294112756848 ], [ 4955743.63060054089874, 3891608.202194345183671 ], [ 4955704.739178450778127, 3891607.059940555598587 ], [ 4955706.250586126931012, 3891551.714379441458732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967414.961137996986508, 3905191.372059642802924 ], [ 4967465.118820984847844, 3905159.778838379774243 ], [ 4967479.764793155714869, 3905182.744313009548932 ], [ 4967429.607761435210705, 3905213.973376990295947 ], [ 4967414.961137996986508, 3905191.372059642802924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967278.213162178173661, 3899289.66945737414062 ], [ 4967252.567570420913398, 3899296.908154782373458 ], [ 4967245.125354169867933, 3899269.94978630868718 ], [ 4967270.482956647872925, 3899262.710588783957064 ], [ 4967278.213162178173661, 3899289.66945737414062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967031.697710869833827, 3899613.688430734910071 ], [ 4967058.481945266015828, 3899614.098197185434401 ], [ 4967058.148011840879917, 3899641.043265098705888 ], [ 4967031.075795385986567, 3899640.633008390199393 ], [ 4967031.697710869833827, 3899613.688430734910071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967001.905911406502128, 3899011.366416140459478 ], [ 4967007.908987092785537, 3899037.958132401574403 ], [ 4966982.842357030138373, 3899043.377421498764306 ], [ 4966976.839257781393826, 3899016.785710748285055 ], [ 4967001.905911406502128, 3899011.366416140459478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966864.267696612514555, 3898652.100248630158603 ], [ 4966867.407483503222466, 3898668.855557924136519 ], [ 4966861.933262704871595, 3898669.938657813239843 ], [ 4966871.35384561214596, 3898719.476329071912915 ], [ 4966835.627783695235848, 3898726.334184567909688 ], [ 4966828.204130771569908, 3898688.087942502927035 ], [ 4966818.120375227183104, 3898689.891495275776833 ], [ 4966812.695540681481361, 3898661.844287514686584 ], [ 4966864.267696612514555, 3898652.100248630158603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954905.420385042205453, 3900923.022980449255556 ], [ 4954881.465753197669983, 3900963.77558530215174 ], [ 4954841.751153162680566, 3900940.785710145253688 ], [ 4954853.006631039083004, 3900921.865006110165268 ], [ 4954825.954645238816738, 3900906.17359524499625 ], [ 4954838.653744732961059, 3900884.341647014953196 ], [ 4954905.420385042205453, 3900923.022980449255556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954836.498024855740368, 3901226.621436724439263 ], [ 4954835.108118595555425, 3901186.565362954512239 ], [ 4954916.901135793887079, 3901184.118786653038114 ], [ 4954918.295481865294278, 3901220.533566898200661 ], [ 4954884.31106164958328, 3901221.58340597897768 ], [ 4954884.580825570039451, 3901236.148957210127264 ], [ 4954856.932245997712016, 3901237.20676082232967 ], [ 4954856.658369203098118, 3901225.918377783615142 ], [ 4954836.498024855740368, 3901226.621436724439263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954808.13149125687778, 3894420.275540166068822 ], [ 4954832.356230735778809, 3894398.458059472497553 ], [ 4954865.438182246871293, 3894434.912292969878763 ], [ 4954841.213448658585548, 3894456.729744325391948 ], [ 4954808.13149125687778, 3894420.275540166068822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954692.442115449346602, 3905208.575962837785482 ], [ 4954712.907369925640523, 3905191.851404022425413 ], [ 4954754.310795745812356, 3905241.060709270182997 ], [ 4954779.388247041963041, 3905220.336508260108531 ], [ 4954802.102128172293305, 3905247.674700968898833 ], [ 4954791.14871032256633, 3905256.764307507313788 ], [ 4954798.912415256723762, 3905265.513148736674339 ], [ 4954785.941093841567636, 3905276.420894412789494 ], [ 4954779.328727941028774, 3905268.037624658085406 ], [ 4954757.421931648626924, 3905286.21686104638502 ], [ 4954692.442115449346602, 3905208.575962837785482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954667.472615084610879, 3901437.242217058781534 ], [ 4954695.757681994698942, 3901387.391540150158107 ], [ 4954705.254559067077935, 3901392.86531591322273 ], [ 4954715.932864750735462, 3901374.672091958113015 ], [ 4954768.022783309221268, 3901403.867435292340815 ], [ 4954752.437279161065817, 3901431.157780837267637 ], [ 4954739.199280536733568, 3901423.494543958455324 ], [ 4954723.036023931577802, 3901452.240708441473544 ], [ 4954715.553738099522889, 3901447.861825820989907 ], [ 4954708.626576237380505, 3901460.233634170610458 ], [ 4954667.472615084610879, 3901437.242217058781534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954652.329296967945993, 3894850.845999912824482 ], [ 4954644.272657226771116, 3894843.553411328233778 ], [ 4954667.636775212362409, 3894818.457547781057656 ], [ 4954676.268631622195244, 3894826.479116405826062 ], [ 4954695.594507298432291, 3894805.747803724370897 ], [ 4954717.174128061160445, 3894825.801752837374806 ], [ 4954667.561182337813079, 3894879.266989229246974 ], [ 4954645.117839554324746, 3894858.847877359949052 ], [ 4954652.329296967945993, 3894850.845999912824482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954572.091978210955858, 3894047.478139420505613 ], [ 4954594.536506970413029, 3894067.533052399754524 ], [ 4954577.22846451215446, 3894086.810415596701205 ], [ 4954554.78439010027796, 3894066.391388621646911 ], [ 4954572.091978210955858, 3894047.478139420505613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965988.983672385104001, 3899511.432618630118668 ], [ 4965955.588408889248967, 3899503.002057265490294 ], [ 4965970.083440877497196, 3899446.221863905899227 ], [ 4966003.478770466521382, 3899454.652442991733551 ], [ 4965988.983672385104001, 3899511.432618630118668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965954.729758648201823, 3895516.508167058695108 ], [ 4965893.089419225230813, 3895514.58508171280846 ], [ 4965894.312990449368954, 3895471.619855178985745 ], [ 4965955.954033889807761, 3895473.178814988117665 ], [ 4965954.729758648201823, 3895516.508167058695108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965777.07250698376447, 3897559.708240168634802 ], [ 4965783.793750172480941, 3897501.458615604788065 ], [ 4965832.174641989171505, 3897506.636632448527962 ], [ 4965825.453295193612576, 3897564.886245089583099 ], [ 4965777.07250698376447, 3897559.708240168634802 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965726.08160397130996, 3893909.22700059087947 ], [ 4965742.721583436243236, 3893950.40110913105309 ], [ 4965701.500496598891914, 3893966.71872208500281 ], [ 4965684.859862367622554, 3893925.908766644075513 ], [ 4965726.08160397130996, 3893909.22700059087947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965452.955564710311592, 3900411.039870558306575 ], [ 4965452.309496704488993, 3900453.642061316408217 ], [ 4965414.006069311872125, 3900453.214962988626212 ], [ 4965414.326380174607038, 3900433.552449257578701 ], [ 4965404.822964917868376, 3900433.172704341821373 ], [ 4965405.14865324087441, 3900410.233026297297329 ], [ 4965452.955564710311592, 3900411.039870558306575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953844.273349692113698, 3894175.851563367526978 ], [ 4953824.075536075979471, 3894203.136742040049285 ], [ 4953801.338070353493094, 3894186.723404562100768 ], [ 4953821.535873166285455, 3894159.438209065236151 ], [ 4953844.273349692113698, 3894175.851563367526978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965026.307142233476043, 3900660.499139332212508 ], [ 4965047.317346796393394, 3900668.908368431497365 ], [ 4965049.630824448540807, 3900663.086051940917969 ], [ 4965069.201624101027846, 3900671.128822049126029 ], [ 4965051.851726276800036, 3900714.0679298103787 ], [ 4965011.270772567950189, 3900697.615954586770386 ], [ 4965026.307142233476043, 3900660.499139332212508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953665.01547736953944, 3894241.906261082738638 ], [ 4953699.017903062514961, 3894233.208190910518169 ], [ 4953705.325040798634291, 3894258.340692594181746 ], [ 4953717.715421927161515, 3894255.442623711191118 ], [ 4953721.155508002266288, 3894269.283673611469567 ], [ 4953712.222809456288815, 3894271.457658383529633 ], [ 4953721.970006131567061, 3894310.431214070878923 ], [ 4953690.561142765916884, 3894318.404127474874258 ], [ 4953685.114689393900335, 3894296.185697366949171 ], [ 4953679.063542725518346, 3894297.634912399109453 ], [ 4953665.01547736953944, 3894241.906261082738638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964963.095391326583922, 3900923.66256123688072 ], [ 4964976.388192660175264, 3900896.01026949705556 ], [ 4965018.115511887706816, 3900915.741235492751002 ], [ 4965004.822677281685174, 3900943.393506927415729 ], [ 4964963.095391326583922, 3900923.66256123688072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964962.357720704749227, 3901023.068981932476163 ], [ 4964981.736866894178092, 3900971.758109792135656 ], [ 4965014.836090443655849, 3900984.192424222361296 ], [ 4965002.109204105101526, 3901018.035837977658957 ], [ 4964993.186719473451376, 3901014.744139958638698 ], [ 4964986.534410278312862, 3901032.211577053647488 ], [ 4964962.357720704749227, 3901023.068981932476163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964812.764693841338158, 3901810.07639033254236 ], [ 4964843.806308159604669, 3901847.632182649336755 ], [ 4964808.337498414330184, 3901876.340995691716671 ], [ 4964783.618569284677505, 3901846.806359343696386 ], [ 4964799.479000513441861, 3901833.723351473920047 ], [ 4964792.867725304327905, 3901826.065895268227905 ], [ 4964812.764693841338158, 3901810.07639033254236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953152.134581349790096, 3900653.977185211144388 ], [ 4953089.641162055544555, 3900652.082427687942982 ], [ 4953090.544412231072783, 3900618.947651233524084 ], [ 4953153.037908518686891, 3900620.842410823330283 ], [ 4953152.134581349790096, 3900653.977185211144388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952966.195849051699042, 3894947.846857566386461 ], [ 4952935.084168819710612, 3894948.902556095737964 ], [ 4952934.256471106782556, 3894917.950620233081281 ], [ 4952965.367757528088987, 3894917.259049188345671 ], [ 4952966.195849051699042, 3894947.846857566386461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964338.677284598350525, 3906158.858445546589792 ], [ 4964365.764589607715607, 3906145.793156841769814 ], [ 4964392.453486817888916, 3906201.548131112009287 ], [ 4964365.366224900819361, 3906214.613393360283226 ], [ 4964338.677284598350525, 3906158.858445546589792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952828.560789108276367, 3891956.004023941699415 ], [ 4952837.746339193545282, 3891984.416822994593531 ], [ 4952806.909068060107529, 3891994.212073996663094 ], [ 4952797.72306149173528, 3891966.163413127884269 ], [ 4952828.560789108276367, 3891956.004023941699415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963903.246544281952083, 3903841.924258281476796 ], [ 4963898.583067224361002, 3903877.237572649493814 ], [ 4963853.382032908499241, 3903871.339777781628072 ], [ 4963858.045451557263732, 3903836.026455691084266 ], [ 4963903.246544281952083, 3903841.924258281476796 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963730.948245921172202, 3900805.165026269853115 ], [ 4963734.170887670479715, 3900770.577731156721711 ], [ 4963754.039787354879081, 3900772.429797887802124 ], [ 4963754.334694491699338, 3900768.060699381865561 ], [ 4963777.370983338914812, 3900770.281923115253448 ], [ 4963773.565379600971937, 3900809.237855753395706 ], [ 4963730.948245921172202, 3900805.165026269853115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963607.696755831129849, 3903356.07012714445591 ], [ 4963642.82381530944258, 3903359.402695266064256 ], [ 4963643.408944088034332, 3903353.577522706240416 ], [ 4963674.792979239486158, 3903356.540097256656736 ], [ 4963672.449564616195858, 3903381.66143535496667 ], [ 4963647.975661978125572, 3903379.438026457559317 ], [ 4963645.926561893895268, 3903400.554390667937696 ], [ 4963603.889456735923886, 3903396.482664992567152 ], [ 4963607.696755831129849, 3903356.07012714445591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963389.396202520467341, 3903919.40177037846297 ], [ 4963434.624121732078493, 3903908.184665750712156 ], [ 4963442.063713108189404, 3903938.419226140249521 ], [ 4963396.835841617546976, 3903949.636318463366479 ], [ 4963389.396202520467341, 3903919.40177037846297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952141.516267883591354, 3890655.268282320350409 ], [ 4952172.344360650517046, 3890654.575464288704097 ], [ 4952172.072169195860624, 3890640.738286355510354 ], [ 4952179.851013502106071, 3890640.747233924455941 ], [ 4952179.311245395801961, 3890609.06747538363561 ], [ 4952215.613400294445455, 3890608.381004650145769 ], [ 4952216.685720048844814, 3890677.930692059453577 ], [ 4952171.164300977252424, 3890678.606556906830519 ], [ 4952171.707008548080921, 3890707.737423689104617 ], [ 4952142.319499844685197, 3890708.431897584348917 ], [ 4952141.516267883591354, 3890655.268282320350409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951949.246198545210063, 3889232.036335472483188 ], [ 4951912.364290764555335, 3889234.179017129354179 ], [ 4951911.232155261561275, 3889216.335467781405896 ], [ 4951918.724121724255383, 3889215.615756753366441 ], [ 4951913.919090140610933, 3889134.04566941736266 ], [ 4951946.190775480121374, 3889132.261853984557092 ], [ 4951947.887909562326968, 3889159.937497094739228 ], [ 4951944.718576224520802, 3889159.933878859505057 ], [ 4951949.246198545210063, 3889232.036335472483188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962941.468041323125362, 3903826.942083573900163 ], [ 4962901.404354610480368, 3903850.548477465752512 ], [ 4962878.14020552765578, 3903811.186275075655431 ], [ 4962918.203930324874818, 3903787.579847074579448 ], [ 4962941.468041323125362, 3903826.942083573900163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962835.595774324610829, 3899296.265579471364617 ], [ 4962850.615261908620596, 3899268.614937116857618 ], [ 4962892.342717777937651, 3899290.891487829852849 ], [ 4962877.034623303450644, 3899318.90579036809504 ], [ 4962835.595774324610829, 3899296.265579471364617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962812.497021730989218, 3896166.898978537879884 ], [ 4962818.299612442962825, 3896139.962376393377781 ], [ 4962856.0218575457111, 3896147.667453072965145 ], [ 4962850.21866714861244, 3896174.968175707850605 ], [ 4962812.497021730989218, 3896166.898978537879884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962710.572200291790068, 3896885.533140734303743 ], [ 4962707.59915192425251, 3896945.609930627048016 ], [ 4962672.173310070298612, 3896943.734668445307761 ], [ 4962671.87461104709655, 3896950.652669693809003 ], [ 4962643.936633438803256, 3896949.517243546433747 ], [ 4962645.130840945988894, 3896922.209366258699447 ], [ 4962661.259848937392235, 3896922.962468673940748 ], [ 4962662.154256151989102, 3896903.300851092208177 ], [ 4962648.328981556929648, 3896902.915425610728562 ], [ 4962649.223940742202103, 3896882.889679146930575 ], [ 4962710.572200291790068, 3896885.533140734303743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951667.910067691467702, 3891384.440997650381178 ], [ 4951681.172850603237748, 3891375.352801903150976 ], [ 4951693.252741281874478, 3891393.20875788340345 ], [ 4951680.278060260228813, 3891402.297273852396756 ], [ 4951667.910067691467702, 3891384.440997650381178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962493.705806260928512, 3894802.743975055404007 ], [ 4962503.751610739156604, 3894826.427780549973249 ], [ 4962497.986489876173437, 3894828.967837623786181 ], [ 4962510.614203741773963, 3894859.574060786981136 ], [ 4962501.966811913996935, 3894863.20208061253652 ], [ 4962508.280103229917586, 3894878.869320878293365 ], [ 4962474.843931912444532, 3894892.654930569697171 ], [ 4962446.14620834775269, 3894821.969891387969255 ], [ 4962493.705806260928512, 3894802.743975055404007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962409.609210959635675, 3910585.865097934380174 ], [ 4962448.485747173428535, 3910578.642033709213138 ], [ 4962457.053803161717951, 3910623.443480366375297 ], [ 4962418.177329412661493, 3910630.666532394010574 ], [ 4962409.609210959635675, 3910585.865097934380174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962142.641339158639312, 3893233.540286972653121 ], [ 4962198.262493282556534, 3893219.059799157548696 ], [ 4962211.436950706876814, 3893269.693765563890338 ], [ 4962167.920116815716028, 3893280.915487982798368 ], [ 4962161.333133219741285, 3893255.416450316086411 ], [ 4962149.228899858891964, 3893258.675191811751574 ], [ 4962142.641339158639312, 3893233.540286972653121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962035.481488090008497, 3900443.870246393606067 ], [ 4962051.073857079260051, 3900417.312400676775724 ], [ 4962086.754393249750137, 3900438.122017458546907 ], [ 4962070.874000909738243, 3900464.679405387490988 ], [ 4962035.481488090008497, 3900443.870246393606067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951196.516628989949822, 3893253.710941828321666 ], [ 4951209.965366331860423, 3893335.290725433733314 ], [ 4951175.966262749396265, 3893340.714786085300148 ], [ 4951169.669916941784322, 3893303.566663426812738 ], [ 4951152.670144963078201, 3893306.460777868516743 ], [ 4951149.808006179518998, 3893289.707680324092507 ], [ 4951164.502767339348793, 3893287.175127697642893 ], [ 4951159.923919190652668, 3893259.860390798188746 ], [ 4951196.516628989949822, 3893253.710941828321666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961966.794626330956817, 3892551.260382044594735 ], [ 4961976.92172568384558, 3892522.145433791447431 ], [ 4961968.859201030805707, 3892519.584321080707014 ], [ 4961976.67225294560194, 3892496.656054522376508 ], [ 4962029.075637955218554, 3892515.306048079859465 ], [ 4962021.264203327707946, 3892537.141916379798204 ], [ 4962032.2059106240049, 3892540.799798034131527 ], [ 4962021.7895692223683, 3892570.642544409260154 ], [ 4961966.794626330956817, 3892551.260382044594735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961888.058632069267333, 3893943.933703404385597 ], [ 4961894.189577693119645, 3893890.051896514371037 ], [ 4961949.4897470921278, 3893896.325751698110253 ], [ 4961946.276322856545448, 3893925.815326903481036 ], [ 4961935.043240495026112, 3893924.705937704071403 ], [ 4961932.41424064245075, 3893948.734466048888862 ], [ 4961888.058632069267333, 3893943.933703404385597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951036.556442246772349, 3891763.155696341302246 ], [ 4951074.574661676771939, 3891772.30105011491105 ], [ 4951066.760607629083097, 3891804.335668664891273 ], [ 4951028.742430869489908, 3891795.19032577238977 ], [ 4951036.556442246772349, 3891763.155696341302246 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961684.200392419472337, 3893114.14090324845165 ], [ 4961682.451109257526696, 3893127.975163487717509 ], [ 4961700.596779587678611, 3893130.18723231041804 ], [ 4961699.721038337796926, 3893137.8326177271083 ], [ 4961711.817598815076053, 3893139.671464586164802 ], [ 4961707.156284580938518, 3893174.256678117904812 ], [ 4961693.043191845528781, 3893172.414799629244953 ], [ 4961692.166358555667102, 3893180.788441277109087 ], [ 4961673.733191075734794, 3893178.21181701309979 ], [ 4961675.18891288433224, 3893168.018401621840894 ], [ 4961651.28279472142458, 3893165.069434970617294 ], [ 4961658.566301384940743, 3893110.82520270999521 ], [ 4961684.200392419472337, 3893114.14090324845165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961665.446798091754317, 3893899.538517565000802 ], [ 4961660.500339031219482, 3893932.302681155037135 ], [ 4961613.843921506777406, 3893924.950010451022536 ], [ 4961620.536792814731598, 3893880.172208121512085 ], [ 4961640.984883886761963, 3893883.480082699097693 ], [ 4961639.238407159224153, 3893895.493711694609374 ], [ 4961665.446798091754317, 3893899.538517565000802 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961645.871191219426692, 3896574.40194669784978 ], [ 4961652.867931004613638, 3896518.700656875036657 ], [ 4961661.219517152756453, 3896519.8055993556045 ], [ 4961663.842555592767894, 3896499.41829425888136 ], [ 4961689.473413680680096, 3896502.734006348066032 ], [ 4961680.142136400565505, 3896578.458894716575742 ], [ 4961645.871191219426692, 3896574.40194669784978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961138.518463098444045, 3899559.872495415154845 ], [ 4961176.921668608672917, 3899494.021971370093524 ], [ 4961203.971378111280501, 3899509.719760958570987 ], [ 4961165.856138188391924, 3899575.570674697868526 ], [ 4961138.518463098444045, 3899559.872495415154845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950596.292904277332127, 3890231.148852006532252 ], [ 4950596.823815204203129, 3890272.66001395881176 ], [ 4950546.69200536608696, 3890273.333597908727825 ], [ 4950546.409847495146096, 3890267.871371671091765 ], [ 4950530.275327897630632, 3890268.217923931777477 ], [ 4950529.738762645050883, 3890231.804548108484596 ], [ 4950596.292904277332127, 3890231.148852006532252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950451.059695286676288, 3900596.651366488076746 ], [ 4950451.900744420476258, 3900617.771828150376678 ], [ 4950426.843694728799164, 3900618.837005180306733 ], [ 4950426.003021223470569, 3900597.352414588909596 ], [ 4950451.059695286676288, 3900596.651366488076746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960926.743911570869386, 3893764.438703893683851 ], [ 4960882.357223514467478, 3893780.394899637438357 ], [ 4960867.151132820174098, 3893738.497670621145517 ], [ 4960911.25034579820931, 3893722.176897128112614 ], [ 4960926.743911570869386, 3893764.438703893683851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960917.166554111987352, 3892641.087479169014841 ], [ 4960957.484856278635561, 3892650.250212802086025 ], [ 4960960.093745800666511, 3892639.330208199098706 ], [ 4960977.08477879408747, 3892643.36072502983734 ], [ 4960964.04031965136528, 3892697.960743120405823 ], [ 4960907.019162540324032, 3892684.767941146623343 ], [ 4960917.166554111987352, 3892641.087479169014841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949652.744788692332804, 3895400.395344190299511 ], [ 4949640.636507551185787, 3895409.849907426629215 ], [ 4949626.541068617254496, 3895391.628574676346034 ], [ 4949638.648968443274498, 3895382.538133780006319 ], [ 4949652.744788692332804, 3895400.395344190299511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959952.97351458016783, 3907823.184098534751683 ], [ 4959897.383768379688263, 3907837.669359442777932 ], [ 4959885.070180698297918, 3907791.04276870470494 ], [ 4959940.660016616806388, 3907776.557482743635774 ], [ 4959952.97351458016783, 3907823.184098534751683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959833.369533291086555, 3909508.215369288343936 ], [ 4959869.10302347689867, 3909484.962242952082306 ], [ 4959903.000714958645403, 3909537.081903883256018 ], [ 4959867.267264554277062, 3909560.334985887631774 ], [ 4959833.369533291086555, 3909508.215369288343936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959814.62783779297024, 3898692.039267961401492 ], [ 4959793.314948770217597, 3898691.644567194860429 ], [ 4959793.311815828084946, 3898693.829341947101057 ], [ 4959765.087514167651534, 3898692.69649381749332 ], [ 4959766.897029047831893, 3898635.894827359355986 ], [ 4959816.433800130151212, 3898637.786508660763502 ], [ 4959814.62783779297024, 3898692.039267961401492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959344.031239575706422, 3907408.295967477373779 ], [ 4959278.635522263124585, 3907434.056690694298595 ], [ 4959264.003873089328408, 3907396.894543752539903 ], [ 4959303.18395525496453, 3907381.292335685808212 ], [ 4959296.011070143431425, 3907363.439720976166427 ], [ 4959322.226796232163906, 3907353.28116392204538 ], [ 4959344.031239575706422, 3907408.295967477373779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959335.533771165646613, 3899384.659550551325083 ], [ 4959368.941573031246662, 3899385.799300014507025 ], [ 4959369.240429603494704, 3899378.152993510477245 ], [ 4959393.144368656910956, 3899378.915165876504034 ], [ 4959391.640235613100231, 3899424.06515400391072 ], [ 4959334.328065427020192, 3899422.527364272158593 ], [ 4959335.533771165646613, 3899384.659550551325083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948892.819957998581231, 3893755.197458882816136 ], [ 4948890.828163810074329, 3893731.162921242881566 ], [ 4948926.264421738684177, 3893727.922221661545336 ], [ 4948931.106909809634089, 3893781.089987978804857 ], [ 4948886.451679610647261, 3893785.049459653440863 ], [ 4948883.600906340405345, 3893755.91623822459951 ], [ 4948892.819957998581231, 3893755.197458882816136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948809.04629975836724, 3895387.136760881636292 ], [ 4948793.767099904827774, 3895399.137357455678284 ], [ 4948769.026482805609703, 3895367.796926586423069 ], [ 4948784.305689381435513, 3895355.796316183637828 ], [ 4948809.04629975836724, 3895387.136760881636292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958569.752824059687555, 3905367.344469293486327 ], [ 4958630.57408442068845, 3905321.184330204967409 ], [ 4958650.693450029939413, 3905347.793911202345043 ], [ 4958608.897489757277071, 3905379.051064692437649 ], [ 4958606.310518868267536, 3905375.770286326296628 ], [ 4958587.286255273036659, 3905389.944967695977539 ], [ 4958569.752824059687555, 3905367.344469293486327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958495.062004794366658, 3901500.534916708711535 ], [ 4958433.717330265790224, 3901502.634756049606949 ], [ 4958432.340860813856125, 3901456.752413959708065 ], [ 4958466.613117350265384, 3901455.707460001111031 ], [ 4958466.059324508532882, 3901439.684953253250569 ], [ 4958493.131863221526146, 3901438.630064241588116 ], [ 4958495.062004794366658, 3901500.534916708711535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958435.106011107563972, 3905077.673435425385833 ], [ 4958454.915620201267302, 3905120.304212245624512 ], [ 4958407.085175603628159, 3905142.450039512943476 ], [ 4958387.84989820048213, 3905100.912484969943762 ], [ 4958404.561593849211931, 3905093.288829803001136 ], [ 4958407.432539043016732, 3905099.483030846342444 ], [ 4958420.686316838487983, 3905093.675260741263628 ], [ 4958416.953536990098655, 3905086.023341262247413 ], [ 4958435.106011107563972, 3905077.673435425385833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958205.511137988418341, 3900960.493955943733454 ], [ 4958226.319401565007865, 3900907.723677492234856 ], [ 4958236.106231663376093, 3900911.378447319380939 ], [ 4958244.776163522154093, 3900889.542560339905322 ], [ 4958271.257707324810326, 3900899.774674074724317 ], [ 4958241.779433062300086, 3900974.380803450010717 ], [ 4958205.511137988418341, 3900960.493955943733454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947328.795437927357852, 3889976.89692873088643 ], [ 4947292.490799359977245, 3889979.410634721629322 ], [ 4947291.639158449135721, 3889966.301208609249443 ], [ 4947283.859413867816329, 3889967.021930251270533 ], [ 4947281.303417158313096, 3889928.786035753320903 ], [ 4947290.523737637326121, 3889928.066708561498672 ], [ 4947288.819391789846122, 3889902.940239707473665 ], [ 4947318.785288099199533, 3889900.784510008525103 ], [ 4947320.775600663386285, 3889928.096024859230965 ], [ 4947337.487213457003236, 3889927.019850831478834 ], [ 4947339.194338825531304, 3889949.23330338485539 ], [ 4947326.804430915974081, 3889950.313667453825474 ], [ 4947328.795437927357852, 3889976.89692873088643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947272.121882893145084, 3890484.800392212346196 ], [ 4947278.139347550459206, 3890518.670113742351532 ], [ 4947254.222269231453538, 3890523.016506045591086 ], [ 4947245.62483896035701, 3890475.671562214847654 ], [ 4947270.406279464252293, 3890471.325998845510185 ], [ 4947272.698096922598779, 3890484.80094990786165 ], [ 4947272.121882893145084, 3890484.800392212346196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957307.501893768087029, 3899058.150833974126726 ], [ 4957304.001752309501171, 3899090.917830755468458 ], [ 4957247.559142790734768, 3899084.651969658210874 ], [ 4957251.059216225519776, 3899051.884965656790882 ], [ 4957307.501893768087029, 3899058.150833974126726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947052.897705092094839, 3891358.860459807794541 ], [ 4947084.009452149271965, 3891361.803361346945167 ], [ 4947080.810292029753327, 3891393.115304574836046 ], [ 4947049.986678182147443, 3891390.172683154698461 ], [ 4947052.897705092094839, 3891358.860459807794541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946685.553908268921077, 3891378.901593919377774 ], [ 4946682.940364206209779, 3891400.746807643678039 ], [ 4946665.94435047544539, 3891398.910094841849059 ], [ 4946668.269783443771303, 3891377.064607114996761 ], [ 4946685.553908268921077, 3891378.901593919377774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946681.04372572619468, 3890969.253262859769166 ], [ 4946662.316762965172529, 3890969.599683933425695 ], [ 4946662.594883811660111, 3890980.159659244585782 ], [ 4946643.867928901687264, 3890980.506093174684793 ], [ 4946643.878934271633625, 3890968.854007093701512 ], [ 4946627.169028199277818, 3890968.838229820132256 ], [ 4946627.182088476605713, 3890955.001377688255161 ], [ 4946637.553759655915201, 3890955.011169265490025 ], [ 4946637.285255877301097, 3890934.255619248840958 ], [ 4946680.500930169597268, 3890933.932332427706569 ], [ 4946681.04372572619468, 3890969.253262859769166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956525.795702119357884, 3896887.629015946760774 ], [ 4956487.386352867819369, 3896964.045818191021681 ], [ 4956447.087314369156957, 3896943.96590098971501 ], [ 4956485.784616147167981, 3896867.549419640563428 ], [ 4956525.795702119357884, 3896887.629015946760774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956104.304248034954071, 3904730.081098970025778 ], [ 4956153.011574536561966, 3904697.008385085966438 ], [ 4956165.656980087980628, 3904715.959631236735731 ], [ 4956116.950144748203456, 3904748.668192053679377 ], [ 4956104.304248034954071, 3904730.081098970025778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955873.312083607539535, 3891354.571489749476314 ], [ 4955902.985207575373352, 3891355.337975487112999 ], [ 4955901.77368400990963, 3891401.216571946628392 ], [ 4955871.8125134492293, 3891400.449716520961374 ], [ 4955873.312083607539535, 3891354.571489749476314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955810.564715011045337, 3900271.28619980905205 ], [ 4955810.263602544553578, 3900281.481456742156297 ], [ 4955822.647221772931516, 3900281.861513562500477 ], [ 4955821.752770852297544, 3900305.528822870925069 ], [ 4955777.11436597071588, 3900304.014920693356544 ], [ 4955778.010648787021637, 3900278.89109172904864 ], [ 4955798.745861370116472, 3900279.645998077932745 ], [ 4955799.045097196474671, 3900270.907259192783386 ], [ 4955810.564715011045337, 3900271.28619980905205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955793.121144969947636, 3900846.589505641255528 ], [ 4955813.855919125489891, 3900847.344423894770443 ], [ 4955814.150002853944898, 3900842.611108554992825 ], [ 4955849.571638833731413, 3900844.113206927664578 ], [ 4955849.274267535656691, 3900851.395429577212781 ], [ 4955870.296563336625695, 3900852.514891791157424 ], [ 4955868.522154262289405, 3900888.561503773089498 ], [ 4955791.056035585701466, 3900884.820530526340008 ], [ 4955793.121144969947636, 3900846.589505641255528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945364.294579356908798, 3889499.876555607654154 ], [ 4945381.586862393654883, 3889494.066026837099344 ], [ 4945391.644497328437865, 3889523.569398435764015 ], [ 4945364.264861498959363, 3889533.012148991692811 ], [ 4945357.942280490882695, 3889515.164222272112966 ], [ 4945368.317773346789181, 3889511.532250232063234 ], [ 4945364.294579356908798, 3889499.876555607654154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955234.727673962712288, 3895809.963669009506702 ], [ 4955260.37103024404496, 3895804.534163369331509 ], [ 4955264.666438810527325, 3895824.566702732816339 ], [ 4955238.735051020048559, 3895829.995840125251561 ], [ 4955234.727673962712288, 3895809.963669009506702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954819.750407393090427, 3896188.500737135764211 ], [ 4954809.623341067694128, 3896224.901016863528639 ], [ 4954754.337665402330458, 3896209.538623389787972 ], [ 4954764.752708635292947, 3896173.138682287652045 ], [ 4954819.750407393090427, 3896188.500737135764211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953976.376448863185942, 3893091.272707444615662 ], [ 4953917.874271025881171, 3893109.407983802258968 ], [ 4953906.109036475419998, 3893071.524318948853761 ], [ 4953941.267994214780629, 3893060.643192775081843 ], [ 4953944.136832141317427, 3893070.478152656927705 ], [ 4953967.480118887498975, 3893063.223979723639786 ], [ 4953976.376448863185942, 3893091.272707444615662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953897.175171041861176, 3894260.393639684654772 ], [ 4953917.603560037910938, 3894280.445541223045439 ], [ 4953878.666872384026647, 3894319.724167143460363 ], [ 4953894.779550472274423, 3894335.401268269866705 ], [ 4953876.320362076163292, 3894354.3135582562536 ], [ 4953841.793551422655582, 3894320.407695491798222 ], [ 4953852.753304348327219, 3894309.497120155952871 ], [ 4953842.682912902906537, 3894299.653430663980544 ], [ 4953852.489084804430604, 3894289.833843227475882 ], [ 4953860.257597498595715, 3894297.489971003029495 ], [ 4953897.175171041861176, 3894260.393639684654772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953729.407715430483222, 3894591.911803533323109 ], [ 4953745.02693950291723, 3894539.131991751957685 ], [ 4953776.127231417223811, 3894547.90869608335197 ], [ 4953784.803950131870806, 3894519.153014798182994 ], [ 4953814.176311182789505, 3894527.56354298023507 ], [ 4953806.077895390801132, 3894554.49927090620622 ], [ 4953796.862952358089387, 3894551.939210599288344 ], [ 4953780.664423679932952, 3894607.267193958628923 ], [ 4953729.407715430483222, 3894591.911803533323109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944034.658998876810074, 3891846.613770002964884 ], [ 4944122.230421578511596, 3891856.883716272655874 ], [ 4944117.006666051223874, 3891901.667038336861879 ], [ 4944042.974165067076683, 3891893.229224327486008 ], [ 4944045.875152578577399, 3891869.563352522440255 ], [ 4944032.047962301410735, 3891868.095119359903038 ], [ 4944034.658998876810074, 3891846.613770002964884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943892.635427049361169, 3890128.902078350540251 ], [ 4943888.286478224210441, 3890161.305791139137 ], [ 4943862.359290963970125, 3890158.006823136005551 ], [ 4943866.708209066651762, 3890125.60310621606186 ], [ 4943892.635427049361169, 3890128.902078350540251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943798.862231889739633, 3893040.391639235895127 ], [ 4943797.401372524909675, 3893064.787018185481429 ], [ 4943804.314971907064319, 3893065.15694587584585 ], [ 4943801.103031573817134, 3893116.496359890792519 ], [ 4943765.09470441006124, 3893114.645536936819553 ], [ 4943766.557056688703597, 3893088.429514667484909 ], [ 4943761.083858383819461, 3893088.060802745167166 ], [ 4943762.54590324126184, 3893062.208908828441054 ], [ 4943770.323741937056184, 3893062.579551500733942 ], [ 4943771.783966758288443, 3893038.912427448667586 ], [ 4943798.862231889739633, 3893040.391639235895127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953075.91916689183563, 3893754.36225544475019 ], [ 4953057.963490143418312, 3893834.81344801466912 ], [ 4953025.42006160877645, 3893827.492388473823667 ], [ 4953032.369931077584624, 3893796.913792593404651 ], [ 4953027.762077958323061, 3893795.815959313884377 ], [ 4953033.263849934563041, 3893771.789969075005502 ], [ 4953040.17585061583668, 3893773.254656589124352 ], [ 4953045.967432969249785, 3893747.772497178521007 ], [ 4953075.91916689183563, 3893754.36225544475019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953010.576073265634477, 3900781.983358853962272 ], [ 4953011.790025926195085, 3900729.550043697003275 ], [ 4953044.33242136053741, 3900730.680911774281412 ], [ 4953043.424924097955227, 3900767.456988998688757 ], [ 4953057.824334672652185, 3900767.838156898040324 ], [ 4953057.518238383345306, 3900783.131263527553529 ], [ 4953010.576073265634477, 3900781.983358853962272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943309.703325501643121, 3889528.334979372564703 ], [ 4943343.730784133076668, 3889492.314279328566045 ], [ 4943368.777549273334444, 3889516.003170476295054 ], [ 4943319.755150477401912, 3889567.66901719616726 ], [ 4943299.890317550860345, 3889549.082207548897713 ], [ 4943314.885551658459008, 3889533.072891330346465 ], [ 4943309.703325501643121, 3889528.334979372564703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952914.621409504674375, 3894713.287032222840935 ], [ 4952924.414649384096265, 3894714.026827214751393 ], [ 4952922.665686512365937, 3894731.502953714225441 ], [ 4952874.276493172161281, 3894727.076438543852419 ], [ 4952877.774787210859358, 3894691.760051235090941 ], [ 4952869.709909613244236, 3894691.022306140512228 ], [ 4952872.043959765695035, 3894665.900158254429698 ], [ 4952918.704890623688698, 3894670.324633095413446 ], [ 4952914.621409504674375, 3894713.287032222840935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952532.735949544236064, 3903301.569990801159292 ], [ 4952527.596994357183576, 3903263.330279968678951 ], [ 4952549.77408373169601, 3903260.443054319359362 ], [ 4952547.491102182306349, 3903242.597988770343363 ], [ 4952566.788507436402142, 3903239.707423642743379 ], [ 4952568.501477084122598, 3903252.453996032010764 ], [ 4952578.006191682070494, 3903251.008551419712603 ], [ 4952580.29000127222389, 3903268.125359134282917 ], [ 4952571.937597077339888, 3903269.208015211392194 ], [ 4952578.504874861799181, 3903317.280930374283344 ], [ 4952584.841477752663195, 3903316.195925821084529 ], [ 4952589.125775853171945, 3903346.423775300849229 ], [ 4952540.739319389685988, 3903352.921746287029237 ], [ 4952536.743361297994852, 3903322.330109389964491 ], [ 4952560.936613637022674, 3903319.081109463237226 ], [ 4952558.081523134373128, 3903297.958198970649391 ], [ 4952532.735949544236064, 3903301.569990801159292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952215.682246251963079, 3893300.017476041801274 ], [ 4952212.769605156965554, 3893327.687894004397094 ], [ 4952193.758648292161524, 3893325.845362322404981 ], [ 4952196.67168917413801, 3893297.810814236756414 ], [ 4952215.682246251963079, 3893300.017476041801274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952012.157822146080434, 3894682.744733506813645 ], [ 4952013.403410216793418, 3894601.181292434222996 ], [ 4952049.698501971550286, 3894601.951109523419291 ], [ 4952048.453220975585282, 3894683.150420556776226 ], [ 4952012.157822146080434, 3894682.744733506813645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951847.898820160888135, 3891448.003538940101862 ], [ 4951879.32168650534004, 3891430.197037825360894 ], [ 4951909.224383768625557, 3891482.301452029962093 ], [ 4951877.801558400504291, 3891500.107918742578477 ], [ 4951847.898820160888135, 3891448.003538940101862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951513.259568416513503, 3891332.924403159879148 ], [ 4951504.874816197901964, 3891359.496322091203183 ], [ 4951478.379249228164554, 3891351.091571603901684 ], [ 4951476.933438629843295, 3891355.823612175881863 ], [ 4951424.230361363850534, 3891339.014515788294375 ], [ 4951434.348943502642214, 3891307.710852638818324 ], [ 4951513.259568416513503, 3891332.924403159879148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951461.344813810661435, 3892921.922026399988681 ], [ 4951452.938105548731983, 3892968.521028345450759 ], [ 4951427.016182912513614, 3892963.758248352911323 ], [ 4951429.914973185397685, 3892947.739848354831338 ], [ 4951392.471840758807957, 3892941.143528134562075 ], [ 4951399.427837843075395, 3892903.646093368530273 ], [ 4951442.342924563214183, 3892911.70508177857846 ], [ 4951441.183239974081516, 3892918.258092262316495 ], [ 4951461.344813810661435, 3892921.922026399988681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951445.023504896089435, 3891037.903899969998747 ], [ 4951448.730373703874648, 3891072.136104528326541 ], [ 4951368.340890346094966, 3891080.420876489486545 ], [ 4951364.633920363150537, 3891046.188682850450277 ], [ 4951445.023504896089435, 3891037.903899969998747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951226.909791591577232, 3896223.579937781672925 ], [ 4951227.428219888359308, 3896275.286862484645098 ], [ 4951217.63469101022929, 3896275.275942543987185 ], [ 4951218.453764935024083, 3896315.695198103319854 ], [ 4951176.398452180437744, 3896316.376603399869055 ], [ 4951175.597556849941611, 3896259.571555228438228 ], [ 4951185.679136581718922, 3896259.582780629396439 ], [ 4951185.132242464460433, 3896233.364869196899235 ], [ 4951216.81764414254576, 3896233.036044255830348 ], [ 4951216.827792425639927, 3896223.932825659867376 ], [ 4951226.909791591577232, 3896223.579937781672925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951120.581491353921592, 3890555.071833952795714 ], [ 4951114.241940207779408, 3890556.15717551112175 ], [ 4951116.821548293344676, 3890568.176264572422951 ], [ 4951087.427854245528579, 3890574.333804577123374 ], [ 4951074.240005597472191, 3890515.694566947873682 ], [ 4951102.481333686038852, 3890509.535733162425458 ], [ 4951105.061355874873698, 3890521.190693252719939 ], [ 4951112.553745867684484, 3890519.742501985281706 ], [ 4951120.581491353921592, 3890555.071833952795714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951046.926405879668891, 3901119.103950853459537 ], [ 4950993.073315069079399, 3901117.587777781300247 ], [ 4950993.980816855095327, 3901078.262715019285679 ], [ 4951047.833986414596438, 3901079.778889876790345 ], [ 4951046.926405879668891, 3901119.103950853459537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950917.664304845035076, 3891158.935593620873988 ], [ 4950894.331433582119644, 3891155.996831863652915 ], [ 4950892.588381992653012, 3891169.103522086516023 ], [ 4950862.341925797984004, 3891165.428910271730274 ], [ 4950864.374667058698833, 3891150.866024783812463 ], [ 4950841.90608274936676, 3891147.928260555956513 ], [ 4950848.007490636780858, 3891101.326579463202506 ], [ 4950874.508716098964214, 3891104.997047955635935 ], [ 4950872.473558795638382, 3891121.74469825392589 ], [ 4950921.731457883492112, 3891128.353320742491633 ], [ 4950917.664304845035076, 3891158.935593620873988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950896.614152410067618, 3894833.333078283350915 ], [ 4950857.721985447220504, 3894836.931503802072257 ], [ 4950858.859788754023612, 3894850.041397167835385 ], [ 4950827.745677129365504, 3894853.284305260051042 ], [ 4950826.605855671688914, 3894841.995055451523513 ], [ 4950809.896354791708291, 3894843.797320837154984 ], [ 4950806.478865546174347, 3894808.108931997325271 ], [ 4950818.290955821052194, 3894806.665406183805317 ], [ 4950817.438388200476766, 3894796.104730801656842 ], [ 4950852.873878492973745, 3894792.502440299838781 ], [ 4950854.298543808981776, 3894806.705035679042339 ], [ 4950893.767277046106756, 3894802.743112126830965 ], [ 4950896.614152410067618, 3894833.333078283350915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950736.128291039727628, 3893290.343159603420645 ], [ 4950702.42488325946033, 3893288.849700612481683 ], [ 4950704.785750979557633, 3893237.510160954203457 ], [ 4950738.489223000593483, 3893239.003622862510383 ], [ 4950736.128291039727628, 3893290.343159603420645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950600.986684950999916, 3892793.15986537700519 ], [ 4950600.390246372669935, 3892811.729765433352441 ], [ 4950608.168064927682281, 3892812.102386298589408 ], [ 4950607.281154161319137, 3892832.85673998342827 ], [ 4950600.943750890903175, 3892832.485691903159022 ], [ 4950600.053268609568477, 3892856.517198354937136 ], [ 4950570.093973429873586, 3892855.392122487537563 ], [ 4950572.467730664648116, 3892792.036359511315823 ], [ 4950600.986684950999916, 3892793.15986537700519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950435.648160388693213, 3894366.015495114959776 ], [ 4950436.83283975161612, 3894336.158221133984625 ], [ 4950486.953903385438025, 3894338.397457415703684 ], [ 4950485.772732451558113, 3894364.977574021089822 ], [ 4950480.29948914796114, 3894364.971622257493436 ], [ 4950479.411933864466846, 3894386.454255731310695 ], [ 4950448.590538693591952, 3894384.96424630144611 ], [ 4950449.47490531951189, 3894366.394638681784272 ], [ 4950435.648160388693213, 3894366.015495114959776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949431.792439281009138, 3895688.917113471310586 ], [ 4949389.978123106993735, 3895733.661183143034577 ], [ 4949360.337832667864859, 3895705.956362812314183 ], [ 4949401.863709565252066, 3895661.576074734795839 ], [ 4949431.792439281009138, 3895688.917113471310586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948620.997636097483337, 3889111.557313203811646 ], [ 4948653.225706100463867, 3889152.372436813078821 ], [ 4948618.046740432269871, 3889180.010308906435966 ], [ 4948565.963795994408429, 3889114.050240586977452 ], [ 4948590.761886253021657, 3889094.776679516304284 ], [ 4948610.617102168500423, 3889119.557556505780667 ], [ 4948620.997636097483337, 3889111.557313203811646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946394.131071896292269, 3890621.605321624316275 ], [ 4946373.380667315796018, 3890628.868482675869018 ], [ 4946364.186121350154281, 3890602.27855332987383 ], [ 4946358.998517451807857, 3890604.094347852282226 ], [ 4946348.942350033670664, 3890574.590596056077629 ], [ 4946382.661650258116424, 3890562.970001013949513 ], [ 4946398.177491844631732, 3890607.772244567982852 ], [ 4946390.395914156921208, 3890610.677990702912211 ], [ 4946394.131071896292269, 3890621.605321624316275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946337.199143142439425, 3892352.981346376705915 ], [ 4946331.409887173213065, 3892382.470337554812431 ], [ 4946325.361085741780698, 3892381.372310231439769 ], [ 4946322.176511476747692, 3892398.119242420885712 ], [ 4946289.916248257271945, 3892392.263123465236276 ], [ 4946298.601931462995708, 3892346.026919788215309 ], [ 4946337.199143142439425, 3892352.981346376705915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946305.256439421325922, 3892315.446343670599163 ], [ 4946314.230940415523946, 3892268.482159671839327 ], [ 4946343.322380709461868, 3892274.335349395871162 ], [ 4946334.348170570097864, 3892320.935395875014365 ], [ 4946305.256439421325922, 3892315.446343670599163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945046.277869536541402, 3891053.690878617577255 ], [ 4945100.4298598440364, 3891066.11921445094049 ], [ 4945087.413670053705573, 3891124.368154420517385 ], [ 4945042.479067184962332, 3891114.132767689414322 ], [ 4945049.131481440737844, 3891084.644285744521767 ], [ 4945039.626095194369555, 3891082.451105273794383 ], [ 4945046.277869536541402, 3891053.690878617577255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943181.879662941209972, 3890464.767031775787473 ], [ 4943182.465679491870105, 3890452.751290235668421 ], [ 4943173.822755637578666, 3890452.380113392602652 ], [ 4943174.999533472582698, 3890422.52258837968111 ], [ 4943208.995347868651152, 3890423.642715682275593 ], [ 4943207.527153878472745, 3890457.505407767836004 ], [ 4943197.155588015913963, 3890457.132811756338924 ], [ 4943196.860941688530147, 3890465.143384300172329 ], [ 4943181.879662941209972, 3890464.767031775787473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942942.212998916395009, 3892916.24725117534399 ], [ 4942965.808578078635037, 3892949.76611177995801 ], [ 4942940.731463924050331, 3892967.224030093289912 ], [ 4942917.423949643969536, 3892933.705423317849636 ], [ 4942942.212998916395009, 3892916.24725117534399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942922.034744284115732, 3889715.181345314718783 ], [ 4942935.876024283468723, 3889700.627397159580141 ], [ 4942969.272411117330194, 3889731.605208702385426 ], [ 4942932.073558784089983, 3889771.265106524340808 ], [ 4942903.859142826870084, 3889745.389301269315183 ], [ 4942927.504824262112379, 3889720.283542826771736 ], [ 4942922.034744284115732, 3889715.181345314718783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942390.250184649601579, 3891083.514537853654474 ], [ 4942395.420244491659105, 3891103.545643026009202 ], [ 4942410.692717377096415, 3891099.552251006476581 ], [ 4942425.054434561170638, 3891154.546886020805687 ], [ 4942401.137278124690056, 3891160.718235847074538 ], [ 4942398.552400040440261, 3891150.520618344191462 ], [ 4942356.481241616420448, 3891161.411398072261363 ], [ 4942351.598120789974928, 3891142.83703693933785 ], [ 4942369.75213697552681, 3891138.117627356667072 ], [ 4942364.581778737716377, 3891118.45065448153764 ], [ 4942365.446079411543906, 3891118.451333262957633 ], [ 4942358.264728722162545, 3891091.500222730915993 ], [ 4942390.250184649601579, 3891083.514537853654474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942035.443411818705499, 3890165.63561861589551 ], [ 4942041.808591650798917, 3890131.04840020602569 ], [ 4942070.327613916248083, 3890136.168258221354336 ], [ 4942071.484850641340017, 3890129.978982023429126 ], [ 4942095.970600046217442, 3890134.731616354547441 ], [ 4942095.680795411579311, 3890136.916158377192914 ], [ 4942132.553879957646132, 3890143.499071856960654 ], [ 4942125.320862832479179, 3890182.455128860659897 ], [ 4942035.443411818705499, 3890165.63561861589551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992530.246060431934893, 3905653.355897049419582 ], [ 4992489.057450921274722, 3905657.980389920994639 ], [ 4992485.685133656486869, 3905626.65607240004465 ], [ 4992526.872824695892632, 3905622.395704177673906 ], [ 4992530.246060431934893, 3905653.355897049419582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990054.780198791064322, 3909584.998040920589119 ], [ 4990025.43839421775192, 3909575.455455280374736 ], [ 4990021.955603204667568, 3909586.370533096604049 ], [ 4990007.572600865736604, 3909581.599990961141884 ], [ 4990011.345152950845659, 3909569.957386726979166 ], [ 4990002.427629580721259, 3909567.021501088514924 ], [ 4989997.204388257116079, 3909583.029991681221873 ], [ 4989979.082374232821167, 3909576.793365522753447 ], [ 4989984.596303191035986, 3909559.693215884733945 ], [ 4989968.774697959423065, 3909554.554881263989955 ], [ 4989978.350934497080743, 3909525.084596223663539 ], [ 4990064.937920202501118, 3909553.344476562924683 ], [ 4990054.780198791064322, 3909584.998040920589119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989691.041221049614251, 3908613.290497740730643 ], [ 4989727.94231176096946, 3908594.449610921554267 ], [ 4989748.858770867809653, 3908634.193409926723689 ], [ 4989712.244704365730286, 3908653.399132608901709 ], [ 4989691.041221049614251, 3908613.290497740730643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988771.053642970509827, 3907392.938931299839169 ], [ 4988773.768508684821427, 3907343.787858934607357 ], [ 4988820.695011219009757, 3907346.090621702373028 ], [ 4988818.267985675483942, 3907395.242413425818086 ], [ 4988771.053642970509827, 3907392.938931299839169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988584.612750401720405, 3907338.579452527221292 ], [ 4988583.654072651639581, 3907376.446834771893919 ], [ 4988542.770402889698744, 3907375.616149097681046 ], [ 4988543.729934983886778, 3907337.384635158348829 ], [ 4988584.612750401720405, 3907338.579452527221292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988549.430892864242196, 3908509.906113287899643 ], [ 4988541.391191477887332, 3908501.146789703983814 ], [ 4988571.402669976465404, 3908473.912009240593761 ], [ 4988608.731107410043478, 3908514.060172605328262 ], [ 4988577.853157675825059, 3908542.385139232501388 ], [ 4988558.615858786739409, 3908521.217237962409854 ], [ 4988550.535120343789458, 3908528.843784999102354 ], [ 4988540.484588420018554, 3908518.25876088347286 ], [ 4988549.430892864242196, 3908509.906113287899643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988520.444505595602095, 3907207.695149898063391 ], [ 4988561.332992372103035, 3907206.705150403548032 ], [ 4988562.106469153426588, 3907242.75620693853125 ], [ 4988520.930109768174589, 3907243.745484426617622 ], [ 4988520.444505595602095, 3907207.695149898063391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988242.211685417219996, 3907937.814108000136912 ], [ 4988251.048221402801573, 3907973.521142838988453 ], [ 4988249.607715357095003, 3907973.881683493033051 ], [ 4988252.742142260074615, 3907986.99827579408884 ], [ 4988225.085535598918796, 3907993.483711638022214 ], [ 4988213.11361616011709, 3907945.024227496236563 ], [ 4988242.211685417219996, 3907937.814108000136912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987795.022129496559501, 3908305.569277266506106 ], [ 4987820.082554433494806, 3908300.897629766725004 ], [ 4987823.489730225875974, 3908320.205106483772397 ], [ 4987798.717238527722657, 3908324.877463970798999 ], [ 4987795.022129496559501, 3908305.569277266506106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987566.80852678976953, 3913161.450517833698541 ], [ 4987555.515322448685765, 3913188.368545060046017 ], [ 4987498.000045882537961, 3913164.922082250006497 ], [ 4987509.005337998270988, 3913138.003321233671159 ], [ 4987566.80852678976953, 3913161.450517833698541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987139.901198420673609, 3908819.20261402381584 ], [ 4987099.291531974449754, 3908824.929181536659598 ], [ 4987094.76170680206269, 3908793.602657422889024 ], [ 4987088.137973287142813, 3908794.314691425301135 ], [ 4987084.171461116522551, 3908768.087409446481615 ], [ 4987090.219378774054348, 3908767.373963424935937 ], [ 4987075.220579603686929, 3908661.010435739066452 ], [ 4987118.999309145845473, 3908654.563335154671222 ], [ 4987127.207704913802445, 3908712.11644120933488 ], [ 4987124.615606875158846, 3908712.474218694027513 ], [ 4987139.901198420673609, 3908819.20261402381584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986583.544604398310184, 3894055.966294799000025 ], [ 4986571.966998165473342, 3894078.514193622395396 ], [ 4986549.237004704773426, 3894067.170955860987306 ], [ 4986560.814596691168845, 3894044.623047400265932 ], [ 4986583.544604398310184, 3894055.966294799000025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986547.79395633097738, 3908766.414370059035718 ], [ 4986572.041344307363033, 3908740.619880894199014 ], [ 4986599.61795718036592, 3908766.540367368608713 ], [ 4986603.659341187216341, 3908762.180603641550988 ], [ 4986645.024604677222669, 3908800.879327993839979 ], [ 4986622.797889635898173, 3908824.493871818762273 ], [ 4986583.443579971790314, 3908787.620734913274646 ], [ 4986577.093604266643524, 3908794.159685374703258 ], [ 4986547.79395633097738, 3908766.414370059035718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986321.64949594810605, 3909534.550222632009536 ], [ 4986281.61777438223362, 3909539.915292346850038 ], [ 4986271.994749221019447, 3909471.435006844811141 ], [ 4986312.027452566660941, 3909465.705792211927474 ], [ 4986321.64949594810605, 3909534.550222632009536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986297.851543720811605, 3907353.337638279423118 ], [ 4986326.623885866254568, 3907361.782354304101318 ], [ 4986330.6883664438501, 3907347.95516464440152 ], [ 4986365.215698953717947, 3907357.870391543023288 ], [ 4986360.280365044251084, 3907374.608525652438402 ], [ 4986384.736423877999187, 3907381.950447882059962 ], [ 4986376.3177305245772, 3907410.332374980673194 ], [ 4986288.562985841184855, 3907384.266413683071733 ], [ 4986297.851543720811605, 3907353.337638279423118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986223.111552333459258, 3910279.692087694071233 ], [ 4986228.507579392753541, 3910310.292320620734245 ], [ 4986215.834054711274803, 3910312.810604061931372 ], [ 4986217.256797652691603, 3910319.732573959510773 ], [ 4986199.97520681284368, 3910322.967988644726574 ], [ 4986201.396192681975663, 3910330.618219768628478 ], [ 4986177.201627184636891, 3910335.293470171280205 ], [ 4986167.53903794195503, 3910283.199083103332669 ], [ 4986185.108545284718275, 3910279.964343444444239 ], [ 4986186.245163285173476, 3910286.157353741116822 ], [ 4986223.111552333459258, 3910279.692087694071233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986105.470538148656487, 3909757.605168733280152 ], [ 4986075.809758464805782, 3909760.446650508791208 ], [ 4986072.444563214667141, 3909723.296965129673481 ], [ 4986126.294334115460515, 3909718.329079598654062 ], [ 4986130.496777512133121, 3909766.404783774167299 ], [ 4986106.595770222134888, 3909768.531875147949904 ], [ 4986105.470538148656487, 3909757.605168733280152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986096.657491298392415, 3893956.472451379988343 ], [ 4986102.346857557073236, 3893986.344797410536557 ], [ 4986057.386948994360864, 3893994.975483325310051 ], [ 4986051.696656949818134, 3893965.467274071648717 ], [ 4986096.657491298392415, 3893956.472451379988343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985709.34924454241991, 3901821.849254951346666 ], [ 4985717.135335374623537, 3901817.49835610575974 ], [ 4985695.918704595416784, 3901778.121299791615456 ], [ 4985731.386412250809371, 3901759.271550447214395 ], [ 4985762.636182618327439, 3901817.971671144943684 ], [ 4985719.38331682421267, 3901840.808146790601313 ], [ 4985709.34924454241991, 3901821.849254951346666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985625.258808743208647, 3904826.46124568162486 ], [ 4985591.880633779801428, 3904816.185612912289798 ], [ 4985610.742378219030797, 3904755.784890426788479 ], [ 4985617.073007275350392, 3904757.620712713804096 ], [ 4985622.006606115028262, 3904741.610728512052447 ], [ 4985649.054234596900642, 3904750.050566918216646 ], [ 4985625.258808743208647, 3904826.46124568162486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985370.883624853566289, 3907286.293995870277286 ], [ 4985394.218748866580427, 3907280.887705530505627 ], [ 4985389.086475268937647, 3907259.755773735698313 ], [ 4985417.031071816571057, 3907253.268109326250851 ], [ 4985423.016670220531523, 3907278.771673485636711 ], [ 4985404.866832721978426, 3907283.097921542823315 ], [ 4985417.124214893206954, 3907334.833995426539332 ], [ 4985383.994420711882412, 3907342.401680396404117 ], [ 4985370.883624853566289, 3907286.293995870277286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984746.434295841492712, 3915296.836355807259679 ], [ 4984774.960708077996969, 3915284.159104265272617 ], [ 4984806.172573160380125, 3915353.054305332247168 ], [ 4984768.137153423391283, 3915370.078648096881807 ], [ 4984757.25689968187362, 3915345.65592816285789 ], [ 4984766.477270559407771, 3915341.672252155374736 ], [ 4984746.434295841492712, 3915296.836355807259679 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984396.444796099327505, 3909651.576857327017933 ], [ 4984401.556842815130949, 3909681.447772897779942 ], [ 4984357.48998102452606, 3909688.991021914873272 ], [ 4984352.089985262602568, 3909659.119438413530588 ], [ 4984396.444796099327505, 3909651.576857327017933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984365.507790186442435, 3904191.340155170299113 ], [ 4984410.938337030820549, 3904097.50091816438362 ], [ 4984426.182300984859467, 3904105.183516507968307 ], [ 4984431.680100721307099, 3904093.908359766472131 ], [ 4984455.26636846922338, 3904105.251906514167786 ], [ 4984445.13977861776948, 3904125.619465159252286 ], [ 4984451.180105342529714, 3904128.546723942272365 ], [ 4984444.814997178502381, 3904141.276364107150584 ], [ 4984436.185594776645303, 3904137.250623849686235 ], [ 4984423.454546758905053, 3904163.074042730499059 ], [ 4984429.207763072103262, 3904165.636490012984723 ], [ 4984407.214942394755781, 3904211.465387577190995 ], [ 4984365.507790186442435, 3904191.340155170299113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984311.016433854587376, 3900660.595047593582422 ], [ 4984343.354268283583224, 3900625.714374129660428 ], [ 4984367.206823554821312, 3900647.61823444860056 ], [ 4984335.156982065178454, 3900682.499555674381554 ], [ 4984311.016433854587376, 3900660.595047593582422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984036.933367143385112, 3909371.080249696038663 ], [ 4984068.901849598623812, 3909366.421248517930508 ], [ 4984075.706832372583449, 3909411.225501368753612 ], [ 4984043.738401995040476, 3909415.884494587779045 ], [ 4984036.933367143385112, 3909371.080249696038663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983909.173366301693022, 3909464.364136748015881 ], [ 4983877.774045374244452, 3909471.937717584893107 ], [ 4983867.22260148730129, 3909428.581313643604517 ], [ 4983898.621970019303262, 3909421.007720680441707 ], [ 4983909.173366301693022, 3909464.364136748015881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983228.912699682638049, 3909313.855954699683934 ], [ 4983257.427924944087863, 3909308.459756903816015 ], [ 4983259.419731033034623, 3909318.660072628874332 ], [ 4983270.365171845071018, 3909316.500539464876056 ], [ 4983276.909653684124351, 3909350.015866660047323 ], [ 4983237.449045335873961, 3909357.571586077101529 ], [ 4983228.912699682638049, 3909313.855954699683934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983234.962402796372771, 3895327.952353544067591 ], [ 4983296.323185509070754, 3895325.909133157227188 ], [ 4983299.836764460429549, 3895426.05292311636731 ], [ 4983238.764264057390392, 3895428.096799856517464 ], [ 4983234.962402796372771, 3895327.952353544067591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982682.219477880746126, 3915715.888460785616189 ], [ 4982691.344462013803422, 3915753.415160724893212 ], [ 4982664.272869241423905, 3915759.907668955624104 ], [ 4982655.436518551781774, 3915722.017503693234175 ], [ 4982682.219477880746126, 3915715.888460785616189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982263.601045501418412, 3899023.10715014487505 ], [ 4982304.495113931596279, 3899025.020663907751441 ], [ 4982300.532563081942499, 3899121.142118667252362 ], [ 4982259.637814132496715, 3899119.592739474028349 ], [ 4982263.601045501418412, 3899023.10715014487505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982101.591617628931999, 3904937.322056562639773 ], [ 4982115.058563779108226, 3904966.847231545951217 ], [ 4982086.522479705512524, 3904979.527225965168327 ], [ 4982079.359955047257245, 3904963.489212067332119 ], [ 4982085.412714696489275, 3904960.953991528600454 ], [ 4982079.109094998799264, 3904947.102713167201728 ], [ 4982101.591617628931999, 3904937.322056562639773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982015.836987894028425, 3916241.275038979016244 ], [ 4982019.066561716608703, 3916213.243999514263123 ], [ 4981996.045820587314665, 3916210.642987588886172 ], [ 4982002.806773367337883, 3916148.39130473555997 ], [ 4982053.165011786855757, 3916153.967264992650598 ], [ 4982049.638497520238161, 3916186.003105137031525 ], [ 4982052.803820984438062, 3916186.374404380097985 ], [ 4982049.569263561628759, 3916216.590234274510294 ], [ 4982047.84227586351335, 3916216.586325294338167 ], [ 4982044.900503378361464, 3916244.61801280407235 ], [ 4982015.836987894028425, 3916241.275038979016244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982001.264828488230705, 3902951.849712254945189 ], [ 4982082.790979988873005, 3902938.925403911620378 ], [ 4982087.901963925920427, 3902970.980533197987825 ], [ 4982058.517984639853239, 3902975.647737194783986 ], [ 4982061.354870336130261, 3902994.588987334165722 ], [ 4982009.500801518559456, 3903002.84672209341079 ], [ 4982001.264828488230705, 3902951.849712254945189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981637.258719309233129, 3903851.526369163300842 ], [ 4981572.109428680501878, 3903882.331231402698904 ], [ 4981558.638886150904, 3903853.898737110663205 ], [ 4981578.240857666358352, 3903844.839446295052767 ], [ 4981572.794882824644446, 3903833.539143397472799 ], [ 4981588.650070684961975, 3903825.927976197563112 ], [ 4981592.661944199353456, 3903834.676141256466508 ], [ 4981622.642099996097386, 3903820.542347106616944 ], [ 4981637.258719309233129, 3903851.526369163300842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981010.168067491613328, 3904584.577988141681999 ], [ 4981034.253483349457383, 3904630.87628600327298 ], [ 4980995.046209022402763, 3904651.180463701952249 ], [ 4980971.249509000219405, 3904604.51871046051383 ], [ 4981010.168067491613328, 3904584.577988141681999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980986.776985281147063, 3901893.959154395852238 ], [ 4980972.67544218339026, 3901889.558240841608495 ], [ 4980970.935396050103009, 3901895.016340483911335 ], [ 4980934.959945138543844, 3901884.740750913042575 ], [ 4980948.021177696064115, 3901838.889244280289859 ], [ 4980975.650777676142752, 3901846.597384822089225 ], [ 4980978.842084100469947, 3901836.044675843790174 ], [ 4981001.578356887213886, 3901842.649575079325587 ], [ 4980986.776985281147063, 3901893.959154395852238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980891.263096217997372, 3906261.505217355675995 ], [ 4980882.120192783884704, 3906229.441305071115494 ], [ 4980932.540937322191894, 3906215.352096763905138 ], [ 4980955.683526901528239, 3906296.604957257863134 ], [ 4980931.481403668411076, 3906303.469701393507421 ], [ 4980917.481621628627181, 3906254.280782451387495 ], [ 4980891.263096217997372, 3906261.505217355675995 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980826.939334832131863, 3906572.331328803673387 ], [ 4980800.421911550685763, 3906584.653040073812008 ], [ 4980789.532038331031799, 3906561.324452226515859 ], [ 4980816.049479565583169, 3906549.002730395644903 ], [ 4980826.939334832131863, 3906572.331328803673387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980714.485950097441673, 3907424.515753008425236 ], [ 4980721.092923698015511, 3907431.448889483232051 ], [ 4980709.263808108866215, 3907442.346679935697466 ], [ 4980683.411742999218404, 3907414.615429154597223 ], [ 4980716.014222886413336, 3907384.46458138525486 ], [ 4980735.259310553781688, 3907405.262721520382911 ], [ 4980714.485950097441673, 3907424.515753008425236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980710.980161720886827, 3903283.23647028952837 ], [ 4980740.616070196032524, 3903294.590132177341729 ], [ 4980731.348651400767267, 3903318.238159132190049 ], [ 4980701.713570708408952, 3903306.520377682521939 ], [ 4980710.980161720886827, 3903283.23647028952837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980695.911120721139014, 3901763.683546631596982 ], [ 4980720.990089070051908, 3901752.81509926263243 ], [ 4980727.867107782512903, 3901768.487953261006624 ], [ 4980735.937972373329103, 3901765.228636633139104 ], [ 4980757.140102335251868, 3901814.433267171029001 ], [ 4980721.395238356664777, 3901830.01178067876026 ], [ 4980701.052180385217071, 3901782.993864689022303 ], [ 4980703.646470502950251, 3901781.90721049066633 ], [ 4980695.911120721139014, 3901763.683546631596982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980443.044741445221007, 3893660.5009864741005 ], [ 4980489.680469749495387, 3893675.168883249163628 ], [ 4980479.236041571944952, 3893708.645765812601894 ], [ 4980432.311491528525949, 3893694.341380239464343 ], [ 4980443.044741445221007, 3893660.5009864741005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980397.36735562607646, 3902896.201051610056311 ], [ 4980413.444199604913592, 3902918.812580371275544 ], [ 4980401.906814590096474, 3902927.162203223444521 ], [ 4980416.836552403867245, 3902947.586421812418848 ], [ 4980368.092138315550983, 3902982.4357546325773 ], [ 4980356.895624821074307, 3902966.753480333369225 ], [ 4980364.682917506434023, 3902961.308639192953706 ], [ 4980344.872810930944979, 3902933.955222618300468 ], [ 4980397.36735562607646, 3902896.201051610056311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980380.772458313964307, 3907950.67882041586563 ], [ 4980412.545467371121049, 3907904.503945018630475 ], [ 4980437.269720809534192, 3907921.308487126138061 ], [ 4980405.496688943356276, 3907967.483333762735128 ], [ 4980380.772458313964307, 3907950.67882041586563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980248.625499431043863, 3904012.30101146036759 ], [ 4980268.010922006331384, 3903970.468451966997236 ], [ 4980294.189908707514405, 3903982.178167277015746 ], [ 4980274.803653923794627, 3904024.374837963841856 ], [ 4980248.625499431043863, 3904012.30101146036759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980173.092337291687727, 3900899.541865387000144 ], [ 4980205.656586754135787, 3900890.145876600407064 ], [ 4980213.66134530864656, 3900917.109120011795312 ], [ 4980180.809130522422493, 3900926.504467777907848 ], [ 4980173.092337291687727, 3900899.541865387000144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980074.525142498314381, 3906326.34099850570783 ], [ 4980085.124605815857649, 3906351.12518399534747 ], [ 4980055.15126720443368, 3906363.804194122552872 ], [ 4980044.550984587520361, 3906339.384150575846434 ], [ 4980074.525142498314381, 3906326.34099850570783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980083.365304679609835, 3897814.795751019846648 ], [ 4980049.346879946067929, 3897828.922389826737344 ], [ 4980041.325094501487911, 3897809.241813672240824 ], [ 4980030.36965864803642, 3897813.951546017080545 ], [ 4980024.352908773347735, 3897799.373182247392833 ], [ 4980035.307553145103157, 3897795.027575922198594 ], [ 4980027.570591112598777, 3897776.804147883318365 ], [ 4980071.678851466625929, 3897758.694128368515521 ], [ 4980082.280934858135879, 3897783.842313036322594 ], [ 4980071.903132662177086, 3897787.825032387394458 ], [ 4980083.365304679609835, 3897814.795751019846648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979895.593166495673358, 3906514.206159250345081 ], [ 4979926.139747341163456, 3906502.620618492830545 ], [ 4979976.24194304458797, 3906633.817626711446792 ], [ 4979945.407555521465838, 3906645.40248248539865 ], [ 4979895.593166495673358, 3906514.206159250345081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979659.401038698852062, 3908936.992486574687064 ], [ 4979713.44637509714812, 3908974.615692225750536 ], [ 4979694.097074784338474, 3909001.883543839678168 ], [ 4979640.05176639650017, 3908964.260376465972513 ], [ 4979659.401038698852062, 3908936.992486574687064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979676.116955102421343, 3899790.407136560417712 ], [ 4979632.666609633713961, 3899772.470320057589561 ], [ 4979643.959026170894504, 3899744.820927334018052 ], [ 4979687.697416524402797, 3899762.758387979120016 ], [ 4979676.116955102421343, 3899790.407136560417712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979469.833621053025126, 3907531.758026445284486 ], [ 4979462.295521847903728, 3907555.774426217656583 ], [ 4979475.243426229804754, 3907559.80793608026579 ], [ 4979472.63396230712533, 3907568.177324667572975 ], [ 4979374.802832391113043, 3907538.834931685123593 ], [ 4979384.950298911891878, 3907506.449110526591539 ], [ 4979469.833621053025126, 3907531.758026445284486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979471.905028763227165, 3904183.569459806662053 ], [ 4979494.905542437918484, 3904200.369353308808059 ], [ 4979476.13291164021939, 3904225.817880782764405 ], [ 4979453.421156732365489, 3904208.654496931936592 ], [ 4979471.905028763227165, 3904183.569459806662053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979422.777225631289184, 3909450.998592710588127 ], [ 4979392.190869787707925, 3909482.611933569423854 ], [ 4979351.39283649995923, 3909443.561474212445319 ], [ 4979372.168389672413468, 3909422.122578656300902 ], [ 4979380.788180047646165, 3909430.152146963402629 ], [ 4979390.311075108125806, 3909419.977036070544273 ], [ 4979422.777225631289184, 3909450.998592710588127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979392.17084527015686, 3900841.400848910678178 ], [ 4979405.627867585979402, 3900877.843046039808542 ], [ 4979396.692912367172539, 3900881.100891175679862 ], [ 4979404.707939538173378, 3900903.694344034884125 ], [ 4979379.921436025761068, 3900912.379862267989665 ], [ 4979358.449328703805804, 3900853.344236171338707 ], [ 4979392.17084527015686, 3900841.400848910678178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979186.469277216121554, 3906350.993210249114782 ], [ 4979236.904613638296723, 3906329.61821256717667 ], [ 4979247.504847495816648, 3906354.402067719958723 ], [ 4979210.038483458571136, 3906370.343036159407347 ], [ 4979214.336327198892832, 3906380.183871844783425 ], [ 4979201.079460012726486, 3906385.617258483543992 ], [ 4979186.469277216121554, 3906350.993210249114782 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979020.370226874016225, 3908742.256478697992861 ], [ 4979007.927416915073991, 3908771.360332946293056 ], [ 4978969.668881783261895, 3908755.620416863355786 ], [ 4978982.112439883872867, 3908726.152414306532592 ], [ 4979020.370226874016225, 3908742.256478697992861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978931.192006707191467, 3901463.435468851588666 ], [ 4978932.102084258571267, 3901441.953696962911636 ], [ 4978957.730031424202025, 3901443.465237143915147 ], [ 4978954.725043705664575, 3901501.719735255930573 ], [ 4978917.578374113887548, 3901499.819348375778645 ], [ 4978919.385223770514131, 3901463.046000466682017 ], [ 4978931.192006707191467, 3901463.435468851588666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978638.959768999367952, 3905067.70998578844592 ], [ 4978611.012223454192281, 3905075.297080651856959 ], [ 4978603.583793866448104, 3905047.971345746424049 ], [ 4978612.515714726410806, 3905045.441488785669208 ], [ 4978604.232750582508743, 3905013.744349529966712 ], [ 4978650.330630597658455, 3905001.826431286521256 ], [ 4978660.899260275065899, 3905041.90349728288129 ], [ 4978634.104263050481677, 3905049.128898748662323 ], [ 4978638.959768999367952, 3905067.70998578844592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978472.822576815262437, 3905603.357670302502811 ], [ 4978519.211213096044958, 3905589.619485043920577 ], [ 4978531.792311511002481, 3905631.157331246417016 ], [ 4978524.876981675624847, 3905633.327381841372699 ], [ 4978528.594648950733244, 3905645.351657108403742 ], [ 4978510.154558219946921, 3905650.77433468401432 ], [ 4978507.295286161825061, 3905641.300813929643482 ], [ 4978485.97342474013567, 3905647.809763359371573 ], [ 4978472.822576815262437, 3905603.357670302502811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978199.556231173686683, 3902752.355638431850821 ], [ 4978233.332757008261979, 3902713.101066504139453 ], [ 4978254.029954073950648, 3902730.623257304541767 ], [ 4978220.253419865854084, 3902769.877803639508784 ], [ 4978199.556231173686683, 3902752.355638431850821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978152.954278535209596, 3903816.612760464660823 ], [ 4978171.045116278342903, 3903840.683747912757099 ], [ 4978147.970998156815767, 3903858.113192974589765 ], [ 4978129.880151577293873, 3903834.042220795061439 ], [ 4978152.954278535209596, 3903816.612760464660823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978120.625157673843205, 3906982.306060392409563 ], [ 4978097.284319862723351, 3906990.995840919669718 ], [ 4978081.536729594692588, 3906949.087333960924298 ], [ 4978104.877598633058369, 3906940.397539973258972 ], [ 4978120.625157673843205, 3906982.306060392409563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978102.977326409891248, 3904300.073595957364887 ], [ 4978111.841645253822207, 3904329.587006048299372 ], [ 4978063.721755560487509, 3904344.050490920431912 ], [ 4978054.857388735748827, 3904314.537096451036632 ], [ 4978102.977326409891248, 3904300.073595957364887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978029.589028989896178, 3905098.094957340508699 ], [ 4977957.851720268838108, 3905115.785928636323661 ], [ 4977949.56877469830215, 3905083.724859718699008 ], [ 4978021.594883469864726, 3905065.670344913844019 ], [ 4978029.589028989896178, 3905098.094957340508699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978011.24009461235255, 3907377.522316116373986 ], [ 4977982.703129960224032, 3907392.755601453594863 ], [ 4977960.046905442140996, 3907350.104304775595665 ], [ 4977988.583133487030864, 3907335.235126376152039 ], [ 4978011.24009461235255, 3907377.522316116373986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977911.30345437861979, 3904522.153150046244264 ], [ 4977919.310183534398675, 3904548.751639380585402 ], [ 4977878.393530691042542, 3904561.409990360029042 ], [ 4977870.387532107532024, 3904534.447383042890579 ], [ 4977911.30345437861979, 3904522.153150046244264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977883.018791036680341, 3906055.816470264922827 ], [ 4977842.387018881738186, 3906071.024406842887402 ], [ 4977831.793044747784734, 3906042.599807232152671 ], [ 4977872.424853785894811, 3906027.391854907386005 ], [ 4977883.018791036680341, 3906055.816470264922827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977802.539758135564625, 3906397.566884716972709 ], [ 4977835.392890732735395, 3906384.163164184428751 ], [ 4977845.992860423400998, 3906409.674728067126125 ], [ 4977812.851817428134382, 3906423.077829739078879 ], [ 4977802.539758135564625, 3906397.566884716972709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977688.893192925490439, 3913893.002479634713382 ], [ 4977677.712694640271366, 3913871.130970458034426 ], [ 4977720.93785039614886, 3913849.009647133294493 ], [ 4977744.733463136479259, 3913894.940525162499398 ], [ 4977708.712412568740547, 3913913.435613732319325 ], [ 4977696.385104989632964, 3913889.376884045545012 ], [ 4977688.893192925490439, 3913893.002479634713382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977626.730098239146173, 3905654.004218942951411 ], [ 4977608.585014512762427, 3905656.150947331916541 ], [ 4977609.713880649767816, 3905667.077269827481359 ], [ 4977584.657380430959165, 3905669.573651180136949 ], [ 4977579.862321645021439, 3905621.862330046482384 ], [ 4977623.351155095733702, 3905617.583947770297527 ], [ 4977626.730098239146173, 3905654.004218942951411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977558.711653463542461, 3913514.394426472950727 ], [ 4977574.178996129892766, 3913551.204346552956849 ], [ 4977526.928788859397173, 3913570.768534826580435 ], [ 4977518.050139877013862, 3913549.266052999533713 ], [ 4977531.01527703832835, 3913543.831208579242229 ], [ 4977524.713633371517062, 3913528.888528974261135 ], [ 4977558.711653463542461, 3913514.394426472950727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977546.040595782920718, 3904722.75024100812152 ], [ 4977587.819946024566889, 3904710.457323816139251 ], [ 4977596.970356694422662, 3904741.063565225806087 ], [ 4977607.054864735342562, 3904738.17165971826762 ], [ 4977611.914956183172762, 3904754.931907550431788 ], [ 4977560.339124695397913, 3904770.117310434579849 ], [ 4977546.040595782920718, 3904722.75024100812152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977415.490136904641986, 3911935.940360492095351 ], [ 4977444.782771352678537, 3911969.866008650511503 ], [ 4977421.999391537159681, 3911989.481556913349777 ], [ 4977392.994626802392304, 3911955.55653478577733 ], [ 4977415.490136904641986, 3911935.940360492095351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977411.910360670648515, 3905935.39243596047163 ], [ 4977426.33864429127425, 3905920.493188408669084 ], [ 4977420.016868502832949, 3905914.289731000550091 ], [ 4977437.331438821740448, 3905896.119336103089154 ], [ 4977472.103075835853815, 3905929.328066812828183 ], [ 4977440.360218265093863, 3905962.397672197315842 ], [ 4977411.910360670648515, 3905935.39243596047163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977392.76701589114964, 3912477.723215251229703 ], [ 4977416.744842171669006, 3912437.3545330055058 ], [ 4977454.697446274571121, 3912459.646043297369033 ], [ 4977430.71958264708519, 3912500.014692227356136 ], [ 4977392.76701589114964, 3912477.723215251229703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977379.830590472556651, 3912606.963532072957605 ], [ 4977383.582791126333177, 3912602.237637981306762 ], [ 4977401.687396740540862, 3912617.20494293095544 ], [ 4977371.097123407758772, 3912653.554360834881663 ], [ 4977330.865331606008112, 3912619.970072263851762 ], [ 4977357.415518962778151, 3912588.345905218739063 ], [ 4977379.830590472556651, 3912606.963532072957605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977281.558096519671381, 3910174.349200768396258 ], [ 4977335.968925708904862, 3910175.190996576100588 ], [ 4977335.633141020312905, 3910198.13066444452852 ], [ 4977281.222358278930187, 3910197.288869324605912 ], [ 4977281.558096519671381, 3910174.349200768396258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977287.819526217877865, 3904410.513894756790251 ], [ 4977259.292731279507279, 3904419.557711245026439 ], [ 4977245.273094929754734, 3904376.196841605007648 ], [ 4977274.087889346294105, 3904367.153610796667635 ], [ 4977287.819526217877865, 3904410.513894756790251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977248.782591144554317, 3912915.111053464468569 ], [ 4977256.048339040018618, 3912881.990055616479367 ], [ 4977299.49650545231998, 3912891.548140562605113 ], [ 4977292.231466124765575, 3912924.304994989652187 ], [ 4977248.782591144554317, 3912915.111053464468569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977193.621859918348491, 3913000.567491401918232 ], [ 4977184.312352341599762, 3913047.521325398702174 ], [ 4977158.990062775090337, 3913042.734877814073116 ], [ 4977161.897514543496072, 3913028.903856533113867 ], [ 4977136.575960980728269, 3913023.753298233263195 ], [ 4977142.977944104000926, 3912990.630470951087773 ], [ 4977193.621859918348491, 3913000.567491401918232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977159.252652497962117, 3916788.945160139817744 ], [ 4977117.23320999648422, 3916787.401192847173661 ], [ 4977119.385074445977807, 3916721.497352917212993 ], [ 4977161.405377903953195, 3916722.677190746646374 ], [ 4977159.252652497962117, 3916788.945160139817744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976908.809592256322503, 3905271.625773922074586 ], [ 4976864.715027300640941, 3905290.105196179822087 ], [ 4976851.821393136866391, 3905259.12731789983809 ], [ 4976895.91599992569536, 3905240.647874849382788 ], [ 4976908.809592256322503, 3905271.625773922074586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976690.169409124180675, 3900288.038815876934677 ], [ 4976735.983522026799619, 3900277.573570199776441 ], [ 4976742.548928047530353, 3900305.98931324062869 ], [ 4976696.734860952012241, 3900316.454547897446901 ], [ 4976690.169409124180675, 3900288.038815876934677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976524.246785341762006, 3912202.093938615638763 ], [ 4976539.52735482249409, 3912190.837251082062721 ], [ 4976552.732848595827818, 3912208.706962512340397 ], [ 4976537.452283699065447, 3912219.963642657734454 ], [ 4976524.246785341762006, 3912202.093938615638763 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976426.219273705966771, 3903722.343239064794034 ], [ 4976448.69701124355197, 3903714.378509601112455 ], [ 4976444.402212331071496, 3903702.353353349957615 ], [ 4976461.9808184877038, 3903696.199230120982975 ], [ 4976465.702672554180026, 3903706.766686484683305 ], [ 4976481.551991579122841, 3903701.337285710033029 ], [ 4976493.576923619955778, 3903735.226219661068171 ], [ 4976465.047437369823456, 3903745.363265061751008 ], [ 4976473.064062697812915, 3903767.955882699694484 ], [ 4976445.975189667195082, 3903777.731777492444962 ], [ 4976426.219273705966771, 3903722.343239064794034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976386.696936737746, 3902493.683358715381473 ], [ 4976435.010002267546952, 3902526.554321375209838 ], [ 4976424.900869827717543, 3902541.098808969371021 ], [ 4976411.384596921503544, 3902531.967785170301795 ], [ 4976395.498738842085004, 3902554.875442841090262 ], [ 4976407.576612369157374, 3902563.275244353804737 ], [ 4976393.423870052210987, 3902583.63754297979176 ], [ 4976379.620377430692315, 3902574.14181444933638 ], [ 4976362.000734081491828, 3902599.958984734490514 ], [ 4976374.079344619065523, 3902607.994641828350723 ], [ 4976359.926651128567755, 3902628.356958658434451 ], [ 4976346.410400221124291, 3902619.225967049133033 ], [ 4976337.745713008567691, 3902631.588662704452872 ], [ 4976304.674623579718173, 3902608.944764024578035 ], [ 4976316.228028398007154, 3902592.218403421808034 ], [ 4976309.326271923258901, 3902587.470558059867471 ], [ 4976326.078208727762103, 3902563.4722307799384 ], [ 4976334.417617050930858, 3902569.31542037660256 ], [ 4976386.696936737746, 3902493.683358715381473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976222.86716681625694, 3901211.606808300595731 ], [ 4976234.672606835141778, 3901212.723350585438311 ], [ 4976232.329188981093466, 3901232.017489184159786 ], [ 4976220.523757345974445, 3901230.900947922375053 ], [ 4976222.86716681625694, 3901211.606808300595731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976201.234258505515754, 3901227.948454597499222 ], [ 4976197.998601112514734, 3901261.077742978930473 ], [ 4976171.508588074706495, 3901258.474681132473052 ], [ 4976175.032205034047365, 3901225.345978162717074 ], [ 4976201.234258505515754, 3901227.948454597499222 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976185.484450547024608, 3907663.576740427408367 ], [ 4976214.023084759712219, 3907646.885020967572927 ], [ 4976238.12441950943321, 3907688.081276461947709 ], [ 4976209.585813921876252, 3907704.772970751859248 ], [ 4976185.484450547024608, 3907663.576740427408367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976157.697908147238195, 3901675.012165962252766 ], [ 4976183.0363077390939, 3901677.248730860650539 ], [ 4976180.681058169342577, 3901702.368949618656188 ], [ 4976155.342682077549398, 3901700.132386908866465 ], [ 4976157.697908147238195, 3901675.012165962252766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976125.484207121655345, 3909832.955451950896531 ], [ 4976103.556251334957778, 3909856.215168319176883 ], [ 4976054.131135368719697, 3909810.233581690583378 ], [ 4976076.059085641987622, 3909786.973825651220977 ], [ 4976125.484207121655345, 3909832.955451950896531 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976082.325086089782417, 3904035.156484741251916 ], [ 4976139.686756242066622, 3904007.235468309372663 ], [ 4976157.467495643533766, 3904042.956671897321939 ], [ 4976132.101579053327441, 3904055.285324370954186 ], [ 4976138.123485639691353, 3904067.678092115093023 ], [ 4976122.269247526302934, 3904075.656606068369001 ], [ 4976117.969156821258366, 3904066.18040874088183 ], [ 4976101.539001038298011, 3904074.157759027089924 ], [ 4976082.325086089782417, 3904035.156484741251916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976043.89783963561058, 3907487.047643198166043 ], [ 4976073.586043774150312, 3907471.450517052784562 ], [ 4976093.662010931409895, 3907510.08949946379289 ], [ 4976063.973837696947157, 3907525.68660380365327 ], [ 4976043.89783963561058, 3907487.047643198166043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976016.810825479216874, 3900856.886892602778971 ], [ 4976026.692483334802091, 3900812.847213827539235 ], [ 4976057.493983633816242, 3900819.828491774853319 ], [ 4976047.612277800217271, 3900863.868159412406385 ], [ 4976016.810825479216874, 3900856.886892602778971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975996.490159405395389, 3900935.861860525328666 ], [ 4975998.252991884946823, 3900918.751306810416281 ], [ 4976008.331340426579118, 3900919.500100328121334 ], [ 4976010.980425330810249, 3900891.46743135061115 ], [ 4976039.198788312263787, 3900894.073856970760971 ], [ 4976034.786817565560341, 3900939.217074445448816 ], [ 4975996.490159405395389, 3900935.861860525328666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975855.396448065526783, 3905884.118930505122989 ], [ 4975865.717954410240054, 3905905.987816936336458 ], [ 4975823.061159693636, 3905926.29253359651193 ], [ 4975799.549005101434886, 3905877.451127162203193 ], [ 4975830.676333789713681, 3905862.949061788618565 ], [ 4975836.410028648562729, 3905875.341190728824586 ], [ 4975842.174049004912376, 3905872.803977633360773 ], [ 4975849.055805063806474, 3905887.019100962206721 ], [ 4975855.396448065526783, 3905884.118930505122989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975802.955010917037725, 3911290.28669173642993 ], [ 4975803.783910982310772, 3911307.402628224343061 ], [ 4975725.473586393520236, 3911310.156789415050298 ], [ 4975724.929567218758166, 3911294.497965241316706 ], [ 4975773.009894502349198, 3911292.774834015406668 ], [ 4975772.459251803345978, 3911280.393192945979536 ], [ 4975788.581504941917956, 3911280.061783838551491 ], [ 4975788.847952195443213, 3911290.622183079365641 ], [ 4975802.955010917037725, 3911290.28669173642993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975783.722144016064703, 3909844.640100182034075 ], [ 4975771.366108471527696, 3909832.962776442524046 ], [ 4975810.026745483279228, 3909792.622526727616787 ], [ 4975842.210148298181593, 3909822.910916673019528 ], [ 4975808.742046882398427, 3909858.163806596770883 ], [ 4975788.915423612110317, 3909839.188650956843048 ], [ 4975783.722144016064703, 3909844.640100182034075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975769.35529322270304, 3906709.067152595613152 ], [ 4975778.809056416153908, 3906732.754916689358652 ], [ 4975754.314816725440323, 3906742.536785446573049 ], [ 4975744.861035434529185, 3906718.849029832985252 ], [ 4975769.35529322270304, 3906709.067152595613152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975634.79801569506526, 3911732.731604697648436 ], [ 4975619.246636495925486, 3911735.613192960619926 ], [ 4975608.707092015072703, 3911680.243628513533622 ], [ 4975624.258502101525664, 3911677.362034242600203 ], [ 4975634.79801569506526, 3911732.731604697648436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975590.924641092307866, 3904387.001689287833869 ], [ 4975595.811827498488128, 3904391.017018791288137 ], [ 4975581.090631956234574, 3904408.465563134290278 ], [ 4975540.269772628322244, 3904374.154702689964324 ], [ 4975553.836183542385697, 3904358.16032871324569 ], [ 4975544.349743206985295, 3904350.130267815664411 ], [ 4975557.05008518602699, 3904335.226540277712047 ], [ 4975564.236538738012314, 3904341.43129944941029 ], [ 4975573.473294535651803, 3904330.526025709230453 ], [ 4975611.706973195075989, 3904362.646912899799645 ], [ 4975590.924641092307866, 3904387.001689287833869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975562.866357712075114, 3898606.731826915405691 ], [ 4975569.203533235006034, 3898606.380502862855792 ], [ 4975568.959665467962623, 3898584.532197003718466 ], [ 4975598.915241059847176, 3898583.864490711595863 ], [ 4975599.95246045012027, 3898640.670902565587312 ], [ 4975563.372497029602528, 3898641.325220860075206 ], [ 4975562.866357712075114, 3898606.731826915405691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975527.283789087086916, 3905528.425684089306742 ], [ 4975566.192539125680923, 3905510.661847923882306 ], [ 4975585.115247938781977, 3905551.118727087974548 ], [ 4975546.206543806008995, 3905568.882536299992353 ], [ 4975527.283789087086916, 3905528.425684089306742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975405.553073606453836, 3907493.400255350861698 ], [ 4975440.692378450185061, 3907487.280854418873787 ], [ 4975449.518890341743827, 3907536.456501970533282 ], [ 4975414.37964772619307, 3907542.575891545508057 ], [ 4975405.553073606453836, 3907493.400255350861698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975383.820870541036129, 3904560.274417082779109 ], [ 4975412.703091653063893, 3904517.365095734596252 ], [ 4975451.524359007366002, 3904543.660838802345097 ], [ 4975436.795263820327818, 3904565.114894289523363 ], [ 4975442.547043301165104, 3904568.767808267846704 ], [ 4975428.105924840085208, 3904590.222449556924403 ], [ 4975383.820870541036129, 3904560.274417082779109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975357.376371596939862, 3910970.769232580903918 ], [ 4975376.11180042475462, 3910959.518849761225283 ], [ 4975390.172064678743482, 3910982.487556810956448 ], [ 4975330.506080515682697, 3911018.780681967269629 ], [ 4975312.428552553057671, 3910989.24952805833891 ], [ 4975353.359145935624838, 3910964.20674901874736 ], [ 4975357.376371596939862, 3910970.769232580903918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975271.233109390363097, 3898540.964804323855788 ], [ 4975280.950420045293868, 3898578.489746955223382 ], [ 4975228.792422626167536, 3898591.493637392297387 ], [ 4975222.505699385888875, 3898566.720158921089023 ], [ 4975238.931639685295522, 3898562.38358507771045 ], [ 4975235.788280734792352, 3898549.996844643726945 ], [ 4975271.233109390363097, 3898540.964804323855788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975262.139877511188388, 3899339.484242272563279 ], [ 4975277.441117577254772, 3899321.308476767037064 ], [ 4975296.992274273186922, 3899338.097780981566757 ], [ 4975258.306454339064658, 3899383.900444890372455 ], [ 4975228.978992837481201, 3899359.080664398614317 ], [ 4975252.651572480797768, 3899331.45430861832574 ], [ 4975262.139877511188388, 3899339.484242272563279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975116.875445856712759, 3903271.8053268045187 ], [ 4975095.533564420416951, 3903287.784330961294472 ], [ 4975080.024768371134996, 3903266.997781231533736 ], [ 4975101.078686800785363, 3903251.01818789402023 ], [ 4975116.875445856712759, 3903271.8053268045187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975100.836616922169924, 3899059.872611964121461 ], [ 4975123.054652948863804, 3899039.525838561821729 ], [ 4975151.792657326906919, 3899071.262791589833796 ], [ 4975129.57535557076335, 3899091.245412779971957 ], [ 4975100.836616922169924, 3899059.872611964121461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975007.659172177314758, 3909642.074859985150397 ], [ 4974960.380685766227543, 3909673.295712807681412 ], [ 4974939.427188869565725, 3909641.574292177334428 ], [ 4974958.454180235043168, 3909628.867677981033921 ], [ 4974956.445418000221252, 3909625.586468687281013 ], [ 4974984.121142131276429, 3909607.071040136739612 ], [ 4975007.659172177314758, 3909642.074859985150397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974851.058843438513577, 3898516.09101866511628 ], [ 4974890.550414741039276, 3898499.783943405840546 ], [ 4974906.88984083943069, 3898538.77848589187488 ], [ 4974889.882812085561454, 3898545.663014171179384 ], [ 4974892.747757583856583, 3898553.315465692896396 ], [ 4974870.552014521323144, 3898562.374432522337884 ], [ 4974851.058843438513577, 3898516.09101866511628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974702.593560506589711, 3907994.13096380000934 ], [ 4974678.187749712727964, 3907960.21812180057168 ], [ 4974714.51780654489994, 3907934.072864392306656 ], [ 4974733.181147689931095, 3907959.963397996034473 ], [ 4974716.745810244232416, 3907971.94705314701423 ], [ 4974726.794733234681189, 3907986.168209839612246 ], [ 4974709.494932094588876, 3907998.514281342271715 ], [ 4974721.841405241750181, 3908015.653066017664969 ], [ 4974689.260190405882895, 3908038.892712105996907 ], [ 4974672.319309394806623, 3908015.554558275267482 ], [ 4974702.593560506589711, 3907994.13096380000934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974709.093807441182435, 3899659.541563623119146 ], [ 4974750.574308657087386, 3899655.982795923948288 ], [ 4974751.697350479662418, 3899670.550248511135578 ], [ 4974763.795885995961726, 3899669.481943066231906 ], [ 4974766.329961153678596, 3899698.617423202376813 ], [ 4974712.751004354096949, 3899703.244489678181708 ], [ 4974709.093807441182435, 3899659.541563623119146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974709.553946028463542, 3899283.395791513379663 ], [ 4974711.771134501323104, 3899327.09584338311106 ], [ 4974676.342006895691156, 3899328.84604744007811 ], [ 4974674.124760976992548, 3899285.145998450461775 ], [ 4974709.553946028463542, 3899283.395791513379663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974609.904952459968626, 3909867.772477471735328 ], [ 4974656.89406559523195, 3909836.914563081692904 ], [ 4974678.99499483499676, 3909870.822844832204282 ], [ 4974632.293814335018396, 3909901.681293238885701 ], [ 4974609.904952459968626, 3909867.772477471735328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974505.52100820094347, 3909660.009747717529535 ], [ 4974482.169961004517972, 3909675.621176061686128 ], [ 4974464.945642465725541, 3909650.461902857758105 ], [ 4974496.657400264404714, 3909629.040905781555921 ], [ 4974492.064680369570851, 3909622.113284139428288 ], [ 4974512.821051364764571, 3909608.31738409679383 ], [ 4974517.127310113981366, 3909614.516176033299416 ], [ 4974536.442744622007012, 3909601.44570278050378 ], [ 4974553.380570830777287, 3909625.876187464222312 ], [ 4974521.6687639541924, 3909647.29711753455922 ], [ 4974528.271728596650064, 3909656.777659124229103 ], [ 4974511.262436605989933, 3909668.396179568488151 ], [ 4974505.52100820094347, 3909660.009747717529535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974501.858742812648416, 3901918.560962029732764 ], [ 4974521.097406207583845, 3901947.00130105856806 ], [ 4974489.953996884636581, 3901967.695050172973424 ], [ 4974470.715315474197268, 3901939.254733092151582 ], [ 4974501.858742812648416, 3901918.560962029732764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974502.462909978814423, 3901032.267749389633536 ], [ 4974494.347860204055905, 3901058.104952704161406 ], [ 4974481.971342533826828, 3901054.439129063393921 ], [ 4974452.700164613313973, 3901147.234506258741021 ], [ 4974430.538411840796471, 3901140.272160623222589 ], [ 4974435.174399831332266, 3901126.080235551577061 ], [ 4974400.060858428478241, 3901115.086849759798497 ], [ 4974429.042453970760107, 3901023.019105766434222 ], [ 4974450.628315900452435, 3901029.980309512931854 ], [ 4974454.685461591929197, 3901017.243765765801072 ], [ 4974502.462909978814423, 3901032.267749389633536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974481.277268479578197, 3904457.971138770226389 ], [ 4974481.353004515171051, 3904419.737484305631369 ], [ 4974499.206381526775658, 3904419.772855522111058 ], [ 4974499.184735402464867, 3904430.696756694465876 ], [ 4974509.263250574469566, 3904430.716729543171823 ], [ 4974508.921167735010386, 3904458.025912059471011 ], [ 4974481.277268479578197, 3904457.971138770226389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974429.723244738765061, 3910863.682572789024562 ], [ 4974414.704757184721529, 3910888.049754376988858 ], [ 4974354.030843541957438, 3910852.2447316092439 ], [ 4974378.292707878164947, 3910812.238079180940986 ], [ 4974402.734473169781268, 3910826.851740237791091 ], [ 4974393.49177220184356, 3910842.127037952188402 ], [ 4974429.723244738765061, 3910863.682572789024562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974431.993744028732181, 3894727.216693743597716 ], [ 4974432.24074468947947, 3894747.972555642481893 ], [ 4974423.886245772242546, 3894748.320158309303224 ], [ 4974424.13901449367404, 3894766.162996895611286 ], [ 4974435.661460010334849, 3894766.185791155323386 ], [ 4974436.182830266654491, 3894793.860654369462281 ], [ 4974382.025952620431781, 3894794.481819136533886 ], [ 4974381.005409280769527, 3894727.844129390548915 ], [ 4974431.993744028732181, 3894727.216693743597716 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974386.826218828558922, 3899069.011335346382111 ], [ 4974430.922777974978089, 3899053.805076668038964 ], [ 4974441.518088239245117, 3899084.777117305900902 ], [ 4974397.421573803760111, 3899099.983358888886869 ], [ 4974386.826218828558922, 3899069.011335346382111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974312.234602010808885, 3899504.363853346556425 ], [ 4974266.139296819455922, 3899511.191367875318974 ], [ 4974259.600520702078938, 3899467.846956083085388 ], [ 4974305.695179724134505, 3899461.383559465873986 ], [ 4974312.234602010808885, 3899504.363853346556425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974212.322367907501757, 3896566.729598152451217 ], [ 4974265.9383678836748, 3896546.444024987984449 ], [ 4974275.968122463673353, 3896572.681149785406888 ], [ 4974258.38464876357466, 3896579.200804831460118 ], [ 4974269.845268678851426, 3896610.174436355009675 ], [ 4974234.101581572555006, 3896623.576759092509747 ], [ 4974229.517322635278106, 3896611.187311827205122 ], [ 4974217.699016424827278, 3896615.533578403294086 ], [ 4974210.82189560495317, 3896597.313540451228619 ], [ 4974222.352167132310569, 3896592.966703261714429 ], [ 4974212.322367907501757, 3896566.729598152451217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974197.432015279307961, 3898423.03470933996141 ], [ 4974235.192320661619306, 3898408.179782855790108 ], [ 4974247.516244458034635, 3898439.155141782946885 ], [ 4974230.221300785429776, 3898446.039519147016108 ], [ 4974233.087162451818585, 3898453.327771169599146 ], [ 4974212.333820484578609, 3898461.297733568586409 ], [ 4974197.432015279307961, 3898423.03470933996141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974089.224794110283256, 3903651.010526685509831 ], [ 4974096.393867916427553, 3903666.318137753289193 ], [ 4974093.223380410112441, 3903667.768428365234286 ], [ 4974108.707638141699135, 3903701.298959753476083 ], [ 4974069.220594706945121, 3903719.427884509321302 ], [ 4974046.566490093246102, 3903670.953905514441431 ], [ 4974089.224794110283256, 3903651.010526685509831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974000.411135595291853, 3912951.139771845191717 ], [ 4973959.17124086804688, 3912989.292830015067011 ], [ 4973856.042022977955639, 3912879.486536622978747 ], [ 4973897.282652487047017, 3912840.969190830830485 ], [ 4974000.411135595291853, 3912951.139771845191717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973930.167273174971342, 3904583.238732468802482 ], [ 4973950.01409603189677, 3904594.565723218023777 ], [ 4973957.52594443410635, 3904581.835853683296591 ], [ 4973983.701354205608368, 3904596.452466343529522 ], [ 4973952.784390877000988, 3904650.283275445457548 ], [ 4973926.034533688798547, 3904634.937303289305419 ], [ 4973932.96902072429657, 3904622.934557867236435 ], [ 4973913.697409369051456, 3904611.972838257439435 ], [ 4973930.167273174971342, 3904583.238732468802482 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973847.27737021446228, 3901177.722224427387118 ], [ 4973847.886848421767354, 3901160.609272751957178 ], [ 4973868.90817076060921, 3901161.742813230026513 ], [ 4973868.011399664916098, 3901178.491071260999888 ], [ 4973847.27737021446228, 3901177.722224427387118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973608.740152991376817, 3899296.158174647949636 ], [ 4973624.792936246842146, 3899335.151395219843835 ], [ 4973585.015349921770394, 3899351.459777581505477 ], [ 4973564.947354719042778, 3899303.719637292902917 ], [ 4973588.583525600843132, 3899293.93413459090516 ], [ 4973592.309961869381368, 3899303.044649200513959 ], [ 4973608.740152991376817, 3899296.158174647949636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973608.308067149482667, 3897004.322680115699768 ], [ 4973623.790416274219751, 3897041.129954168573022 ], [ 4973574.208400239236653, 3897061.424663461744785 ], [ 4973570.768263195641339, 3897053.042981053236872 ], [ 4973547.41816795244813, 3897062.829046719707549 ], [ 4973536.523777144961059, 3897036.590505277272314 ], [ 4973576.593500072136521, 3897019.918506007641554 ], [ 4973571.145604023709893, 3897007.163357540499419 ], [ 4973588.730048631317914, 3896999.914994408376515 ], [ 4973593.317371944896877, 3897010.847821483854204 ], [ 4973608.308067149482667, 3897004.322680115699768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973523.246507751755416, 3900605.040763138327748 ], [ 4973534.267664588056505, 3900565.371965861413628 ], [ 4973567.369828877039254, 3900574.539646439254284 ], [ 4973556.060628389008343, 3900614.207869868259877 ], [ 4973523.246507751755416, 3900605.040763138327748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973402.207873797975481, 3902426.552003046963364 ], [ 4973417.146736552938819, 3902445.151678160764277 ], [ 4973358.307266974821687, 3902492.374558348674327 ], [ 4973340.2083895271644, 3902469.763349232263863 ], [ 4973371.358098868280649, 3902445.062835510354489 ], [ 4973374.518803809769452, 3902448.710275664925575 ], [ 4973402.207873797975481, 3902426.552003046963364 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973367.421460750512779, 3902693.028431344311684 ], [ 4973406.173871167004108, 3902757.190678949002177 ], [ 4973347.647077223286033, 3902792.033740224782377 ], [ 4973330.423610246740282, 3902763.598133144434541 ], [ 4973358.390411569736898, 3902746.538185007404536 ], [ 4973337.14867277815938, 3902711.176293323747814 ], [ 4973367.421460750512779, 3902693.028431344311684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973219.758741748519242, 3902061.339351839851588 ], [ 4973250.313822687603533, 3902046.469087915960699 ], [ 4973278.71065703779459, 3902105.149125458672643 ], [ 4973253.056258769705892, 3902117.479923425242305 ], [ 4973241.008196067996323, 3902093.059841285459697 ], [ 4973236.108265266753733, 3902095.235148093663156 ], [ 4973219.758741748519242, 3902061.339351839851588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973155.235284705646336, 3911608.755024405196309 ], [ 4973176.582793268375099, 3911585.855895132292062 ], [ 4973196.698548500426114, 3911604.465568568557501 ], [ 4973175.638917943462729, 3911627.365238540805876 ], [ 4973155.235284705646336, 3911608.755024405196309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973068.527611753903329, 3910294.067878055851907 ], [ 4973102.244326996617019, 3910277.018690172117203 ], [ 4973114.290223704650998, 3910300.710569830145687 ], [ 4973080.572827990166843, 3910318.123874246142805 ], [ 4973068.527611753903329, 3910294.067878055851907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972347.633174910210073, 3904845.270686442963779 ], [ 4972320.827928245067596, 3904858.692595331463963 ], [ 4972319.106438377872109, 3904855.412140109576285 ], [ 4972281.92453980166465, 3904874.276342279743403 ], [ 4972262.414945484139025, 3904836.733754315879196 ], [ 4972326.402850923128426, 3904804.083465671166778 ], [ 4972347.633174910210073, 3904845.270686442963779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971597.371801023371518, 3903075.997118000872433 ], [ 4971625.831893241032958, 3903102.267891029361635 ], [ 4971591.49435508530587, 3903138.980788154527545 ], [ 4971583.445477278903127, 3903131.318958563730121 ], [ 4971566.709041813388467, 3903149.494172791019082 ], [ 4971546.298516697250307, 3903130.521147807594389 ], [ 4971597.371801023371518, 3903075.997118000872433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971384.313161632046103, 3911849.725161124020815 ], [ 4971408.839225931093097, 3911819.547897624783218 ], [ 4971467.477254463359714, 3911867.35887286439538 ], [ 4971442.951167640276253, 3911897.536083738319576 ], [ 4971384.313161632046103, 3911849.725161124020815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971239.025242718867958, 3902824.441859982907772 ], [ 4971192.891080595552921, 3902855.671353915706277 ], [ 4971170.203326431103051, 3902822.129145736340433 ], [ 4971216.336842539720237, 3902791.263743263669312 ], [ 4971239.025242718867958, 3902824.441859982907772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971216.244809772819281, 3903305.416656773537397 ], [ 4971235.195945812389255, 3903334.946521543897688 ], [ 4971198.580528036691248, 3903358.182835078332573 ], [ 4971179.629368292167783, 3903328.652995709329844 ], [ 4971216.244809772819281, 3903305.416656773537397 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971111.800072804093361, 3898600.655095518101007 ], [ 4971116.09402718860656, 3898614.864135585725307 ], [ 4971093.038930715061724, 3898622.103974789846689 ], [ 4971077.288968452252448, 3898572.917209202423692 ], [ 4971131.757250189781189, 3898555.539992903824896 ], [ 4971143.212507803924382, 3898590.881873753387481 ], [ 4971111.800072804093361, 3898600.655095518101007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970946.791053279303014, 3904348.517163093667477 ], [ 4970965.455807999707758, 3904376.953933461103588 ], [ 4970921.345039155334234, 3904405.638741410337389 ], [ 4970902.680257850326598, 3904377.20200117956847 ], [ 4970946.791053279303014, 3904348.517163093667477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970888.340257899835706, 3893740.93233485892415 ], [ 4970860.672566651366651, 3893747.799714499153197 ], [ 4970844.087315641343594, 3893681.133497796952724 ], [ 4970854.750711110420525, 3893678.604268311988562 ], [ 4970852.463596885092556, 3893669.132693305145949 ], [ 4970872.061291137710214, 3893664.435182594228536 ], [ 4970882.64268013369292, 3893706.329555675853044 ], [ 4970879.760610741563141, 3893707.052492981310934 ], [ 4970888.340257899835706, 3893740.93233485892415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970800.833280217833817, 3897298.679569174069911 ], [ 4970848.104450386948884, 3897280.560260904021561 ], [ 4970856.991174162365496, 3897303.516838224139065 ], [ 4970852.091237346641719, 3897305.328444846905768 ], [ 4970864.131533735431731, 3897336.301700554788113 ], [ 4970821.760376089252532, 3897352.609368134755641 ], [ 4970800.833280217833817, 3897298.679569174069911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970747.363194583915174, 3893174.451822744682431 ], [ 4970742.224040833301842, 3893149.317465435247868 ], [ 4970774.788981317542493, 3893142.82311526266858 ], [ 4970783.640919834375381, 3893185.442507932428271 ], [ 4970771.825694221071899, 3893187.605514538940042 ], [ 4970773.823458936996758, 3893197.804804734420031 ], [ 4970741.834740988910198, 3893204.300216943025589 ], [ 4970736.123453165404499, 3893176.980033522006124 ], [ 4970747.363194583915174, 3893174.451822744682431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969850.983362689614296, 3897249.244374061003327 ], [ 4969836.790030475705862, 3897293.278418948408216 ], [ 4969786.989068660885096, 3897277.166736369952559 ], [ 4969801.470362356863916, 3897233.133185870945454 ], [ 4969850.983362689614296, 3897249.244374061003327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969811.166964046657085, 3898083.75807150779292 ], [ 4969838.864813083782792, 3898057.590769418049604 ], [ 4969861.288684547878802, 3898080.935631369706243 ], [ 4969870.809996543452144, 3898071.849603594746441 ], [ 4969888.058594568632543, 3898090.087307724170387 ], [ 4969850.551412994042039, 3898125.340070559177548 ], [ 4969811.166964046657085, 3898083.75807150779292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969589.415684547275305, 3900789.938491197768599 ], [ 4969589.09297745116055, 3900809.236829689703882 ], [ 4969558.278673463501036, 3900808.453164324630052 ], [ 4969558.601358440704644, 3900789.154825465753675 ], [ 4969589.415684547275305, 3900789.938491197768599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969522.087823098525405, 3903800.815666733775288 ], [ 4969506.296209703199565, 3903774.933989805635065 ], [ 4969543.484214444644749, 3903752.424659667536616 ], [ 4969559.275805369950831, 3903778.306358090601861 ], [ 4969522.087823098525405, 3903800.815666733775288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969442.031185218133032, 3899144.532844487112015 ], [ 4969469.790297475643456, 3899083.40876144496724 ], [ 4969495.403359712101519, 3899094.742759372573346 ], [ 4969486.438307290896773, 3899115.117958488874137 ], [ 4969495.647582766599953, 3899119.139919387176633 ], [ 4969477.140825764276087, 3899160.253416733816266 ], [ 4969442.031185218133032, 3899144.532844487112015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969100.30694049783051, 3899222.210295635741204 ], [ 4969092.219232392497361, 3899235.304585267789662 ], [ 4969109.48187267780304, 3899245.530963506549597 ], [ 4969096.483685625717044, 3899266.627373094670475 ], [ 4969038.654594868421555, 3899231.93212257232517 ], [ 4969059.452435149811208, 3899197.74087148765102 ], [ 4969100.30694049783051, 3899222.210295635741204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968884.267845069058239, 3893549.051960817072541 ], [ 4968900.781657989136875, 3893496.282527442090213 ], [ 4968927.8458311567083, 3893504.705477858427912 ], [ 4968922.92015069257468, 3893520.718416722025722 ], [ 4968930.405566580593586, 3893523.280594442505389 ], [ 4968925.18987644277513, 3893540.385405575856566 ], [ 4968916.840887560509145, 3893537.457569117192179 ], [ 4968910.468393480405211, 3893557.109234899282455 ], [ 4968884.267845069058239, 3893549.051960817072541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968864.250044481828809, 3897856.667580399196595 ], [ 4968869.977059657685459, 3897875.612480188719928 ], [ 4968879.198466426692903, 3897873.079909431748092 ], [ 4968886.069834272377193, 3897896.396399391815066 ], [ 4968840.537620081566274, 3897909.788550646975636 ], [ 4968828.227850249037147, 3897867.16356105171144 ], [ 4968864.250044481828809, 3897856.667580399196595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968746.779690872877836, 3905001.067530481610447 ], [ 4968721.70539912674576, 3905013.767823909875005 ], [ 4968733.756888552568853, 3905037.82179279346019 ], [ 4968712.14126411639154, 3905048.707549842540175 ], [ 4968700.950398985296488, 3905026.475767492316663 ], [ 4968678.181689121760428, 3905038.08777858922258 ], [ 4968663.260273963212967, 3905008.566799042746425 ], [ 4968708.220560950227082, 3904986.07001488795504 ], [ 4968697.029666308313608, 3904963.838235019240528 ], [ 4968721.815397594124079, 3904951.501540567725897 ], [ 4968746.779690872877836, 3905001.067530481610447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968648.414472158066928, 3898567.796053228899837 ], [ 4968694.499021760188043, 3898567.149099594447762 ], [ 4968695.030712938867509, 3898592.275010887533426 ], [ 4968705.976121108047664, 3898591.930203548166901 ], [ 4968706.509729698300362, 3898615.963728686794639 ], [ 4968660.137243589386344, 3898616.6101537309587 ], [ 4968659.609373962506652, 3898589.299469311255962 ], [ 4968648.951985519379377, 3898589.64480343926698 ], [ 4968648.414472158066928, 3898567.796053228899837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968099.575382257811725, 3904440.989720470737666 ], [ 4968136.051318106241524, 3904495.308903819415718 ], [ 4968099.726852153427899, 3904519.278218780644238 ], [ 4968063.250875676050782, 3904464.959083935711533 ], [ 4968099.575382257811725, 3904440.989720470737666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968027.150995315052569, 3905683.280060644261539 ], [ 4968056.261896771378815, 3905666.944830613210797 ], [ 4968080.662916990928352, 3905709.590740954037756 ], [ 4968051.552046764642, 3905725.925944975111634 ], [ 4968027.150995315052569, 3905683.280060644261539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967538.39693237747997, 3901066.708315546158701 ], [ 4967575.203628815710545, 3901099.543483125045896 ], [ 4967552.119626957923174, 3901125.356974150054157 ], [ 4967515.312937833368778, 3901092.521837678272277 ], [ 4967538.39693237747997, 3901066.708315546158701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967475.321976765058935, 3896212.382384154014289 ], [ 4967514.798643695190549, 3896204.075320140924305 ], [ 4967522.798108849674463, 3896242.322687126230448 ], [ 4967483.609540784731507, 3896250.630234994925559 ], [ 4967475.321976765058935, 3896212.382384154014289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966864.181074731983244, 3905490.111695774365216 ], [ 4966881.187215384095907, 3905479.944886361248791 ], [ 4966894.39563571754843, 3905501.815210240893066 ], [ 4966877.389503862708807, 3905511.982011429965496 ], [ 4966864.181074731983244, 3905490.111695774365216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966430.617262355983257, 3891560.679112453013659 ], [ 4966461.524306564591825, 3891512.666109513491392 ], [ 4966492.030007440596819, 3891532.016235381830484 ], [ 4966460.834835545159876, 3891580.028719326015562 ], [ 4966430.617262355983257, 3891560.679112453013659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966221.043355430476367, 3897147.524263078346848 ], [ 4966282.124597587622702, 3897137.066762923263013 ], [ 4966288.972172284498811, 3897176.040110999252647 ], [ 4966227.602980738505721, 3897186.497113867197186 ], [ 4966221.043355430476367, 3897147.524263078346848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966150.444618104025722, 3891991.337919773999602 ], [ 4966132.565355421975255, 3892001.867794333025813 ], [ 4966129.404866829514503, 3891996.764718341175467 ], [ 4966082.399916591122746, 3892024.360065325628966 ], [ 4966050.797941873781383, 3891971.508743309415877 ], [ 4966088.863009665161371, 3891949.360358840320259 ], [ 4966101.216311425901949, 3891970.136292453855276 ], [ 4966128.32361900433898, 3891954.159871249459684 ], [ 4966150.444618104025722, 3891991.337919773999602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966103.138496116735041, 3891681.385572193190455 ], [ 4966031.910087684169412, 3891722.777485255151987 ], [ 4966015.534822022542357, 3891695.076448082923889 ], [ 4966086.763885675929487, 3891653.320364808663726 ], [ 4966103.138496116735041, 3891681.385572193190455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965951.133954595774412, 3899064.217841241043061 ], [ 4965923.745287070050836, 3899080.558158584870398 ], [ 4965881.23517151363194, 3899010.574561608955264 ], [ 4965908.624489300884306, 3898993.870072580873966 ], [ 4965951.133954595774412, 3899064.217841241043061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965950.762974614277482, 3899114.103046347852796 ], [ 4965967.52415862493217, 3899080.266828708350658 ], [ 4966018.461555561982095, 3899105.112468790262938 ], [ 4966011.814175163395703, 3899118.938341200351715 ], [ 4966034.261104342527688, 3899129.89963598921895 ], [ 4966022.123255003243685, 3899154.640261443797499 ], [ 4966003.992917211726308, 3899145.870944340713322 ], [ 4966001.103681152686477, 3899151.328085217624903 ], [ 4965984.988221886567771, 3899143.290395963005722 ], [ 4965989.900828945450485, 3899133.467060144525021 ], [ 4965950.762974614277482, 3899114.103046347852796 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965703.077784560620785, 3894058.117706433869898 ], [ 4965713.699589715339243, 3894080.347141566686332 ], [ 4965684.293733360245824, 3894094.135423389263451 ], [ 4965673.672511113807559, 3894071.541871701367199 ], [ 4965703.077784560620785, 3894058.117706433869898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965406.442186146974564, 3900148.789570363704115 ], [ 4965396.872878666967154, 3900188.464054478798062 ], [ 4965363.189671812579036, 3900180.39788203779608 ], [ 4965373.046935928985476, 3900140.723858925513923 ], [ 4965406.442186146974564, 3900148.789570363704115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965337.070637760683894, 3899599.203147793188691 ], [ 4965347.482586025260389, 3899572.638725137803704 ], [ 4965389.793690371327102, 3899588.729905612301081 ], [ 4965379.381108587607741, 3899615.658441334031522 ], [ 4965337.070637760683894, 3899599.203147793188691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965070.543844268657267, 3901437.625708858948201 ], [ 4965088.921725370921195, 3901470.427432899829 ], [ 4965067.879509013146162, 3901482.045296419877559 ], [ 4965073.047876737080514, 3901491.521118823438883 ], [ 4965049.411409517750144, 3901504.591289272997528 ], [ 4965020.696134363301098, 3901453.202093833126128 ], [ 4965038.279511152766645, 3901443.399210788309574 ], [ 4965043.448490132577717, 3901452.510897655971348 ], [ 4965070.543844268657267, 3901437.625708858948201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964861.163653169758618, 3899847.12766035227105 ], [ 4964881.884174782782793, 3899856.992805810645223 ], [ 4964861.078572455793619, 3899899.562276166398078 ], [ 4964822.515266702510417, 3899881.293218885082752 ], [ 4964839.275735077448189, 3899846.728023569565266 ], [ 4964857.117971451021731, 3899855.496091410052031 ], [ 4964861.163653169758618, 3899847.12766035227105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964669.15465295035392, 3897472.325276487506926 ], [ 4964662.463459064252675, 3897513.461126568727195 ], [ 4964608.903659800067544, 3897504.635563771706074 ], [ 4964617.630974012427032, 3897451.122575732879341 ], [ 4964645.563059218227863, 3897455.537212359718978 ], [ 4964643.526846528053284, 3897467.914335119538009 ], [ 4964669.15465295035392, 3897472.325276487506926 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964450.407067299820483, 3904362.049312012270093 ], [ 4964453.524262930266559, 3904393.369608114473522 ], [ 4964411.475380157120526, 3904397.671613201033324 ], [ 4964408.358136038295925, 3904366.351321903057396 ], [ 4964450.407067299820483, 3904362.049312012270093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964355.269833405502141, 3904072.048119086306542 ], [ 4964399.60946049913764, 3904076.124720646999776 ], [ 4964396.681906282901764, 3904105.978774628601968 ], [ 4964352.342912064865232, 3904101.538047599606216 ], [ 4964355.269833405502141, 3904072.048119086306542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964263.329335062764585, 3906460.966992321889848 ], [ 4964290.416882503777742, 3906447.537494491320103 ], [ 4964305.053773759864271, 3906477.419741029385477 ], [ 4964278.254767647944391, 3906490.485554677434266 ], [ 4964263.329335062764585, 3906460.966992321889848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964037.999976822175086, 3894804.793511502910405 ], [ 4964039.488966440781951, 3894774.209035535342991 ], [ 4964068.868873736821115, 3894775.712333054281771 ], [ 4964067.380430736579001, 3894805.932679215911776 ], [ 4964037.999976822175086, 3894804.793511502910405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964014.596480212174356, 3901728.321603447198868 ], [ 4964021.241032499819994, 3901715.223474820144475 ], [ 4964004.551128667779267, 3901706.821914340369403 ], [ 4964014.373966604471207, 3901687.174489459488541 ], [ 4964063.293467689305544, 3901711.284995910711586 ], [ 4964046.825458721257746, 3901744.394653684459627 ], [ 4964014.596480212174356, 3901728.321603447198868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963939.316576826386154, 3904882.668512638192624 ], [ 4963978.722676695324481, 3904910.04099149396643 ], [ 4963956.499992468394339, 3904941.685090619605035 ], [ 4963917.093916517682374, 3904914.312643829267472 ], [ 4963939.316576826386154, 3904882.668512638192624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963398.469706688076258, 3893540.255652413703501 ], [ 4963420.932645801454782, 3893544.660425648558885 ], [ 4963412.219034834764898, 3893590.16286405082792 ], [ 4963365.852853361517191, 3893581.351094167679548 ], [ 4963373.403821512125432, 3893542.401138416025788 ], [ 4963397.307133925147355, 3893546.808148850221187 ], [ 4963398.469706688076258, 3893540.255652413703501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963084.707019910216331, 3899679.352910737041384 ], [ 4963099.145997865125537, 3899654.614538506604731 ], [ 4963167.343308771960437, 3899693.682737421244383 ], [ 4963152.036858559586108, 3899720.604502235073596 ], [ 4963124.125039166770875, 3899704.539274781011045 ], [ 4963118.926710402593017, 3899713.634430513717234 ], [ 4963101.949540193192661, 3899703.776474869810045 ], [ 4963108.302733842283487, 3899692.862463657278568 ], [ 4963084.707019910216331, 3899679.352910737041384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963058.74230394884944, 3903595.172807129099965 ], [ 4963063.985757892020047, 3903556.58307805005461 ], [ 4963085.00337674561888, 3903559.164705781266093 ], [ 4963086.167715555988252, 3903551.155636227689683 ], [ 4963111.215739763341844, 3903554.471821211278439 ], [ 4963104.807307525537908, 3903601.434740055352449 ], [ 4963058.74230394884944, 3903595.172807129099965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962992.913841960020363, 3903335.080951176583767 ], [ 4962998.148765849880874, 3903301.953166390303522 ], [ 4963025.211688533425331, 3903306.000662447884679 ], [ 4963020.264701325446367, 3903339.128889628686011 ], [ 4962992.913841960020363, 3903335.080951176583767 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962552.738973415456712, 3911304.154348631389439 ], [ 4962635.385218037292361, 3911288.987958990968764 ], [ 4962643.094130710698664, 3911330.510967528447509 ], [ 4962560.447449451312423, 3911346.041465737856925 ], [ 4962552.738973415456712, 3911304.154348631389439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962369.4262810125947, 3897709.034452918451279 ], [ 4962355.899469843134284, 3897702.09529881272465 ], [ 4962350.98793210182339, 3897711.919290393125266 ], [ 4962335.446023263037205, 3897704.248805962502956 ], [ 4962340.356443429365754, 3897695.15306930243969 ], [ 4962321.937005469575524, 3897685.657545539550483 ], [ 4962317.892348098568618, 3897693.662219131365418 ], [ 4962301.774915692396462, 3897685.626745264977217 ], [ 4962306.974470165558159, 3897675.803184787277132 ], [ 4962296.325702329166234, 3897670.324975877534598 ], [ 4962321.748012661933899, 3897620.842170238494873 ], [ 4962395.426422057673335, 3897658.46021053660661 ], [ 4962369.4262810125947, 3897709.034452918451279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962093.065111657604575, 3910306.092364131007344 ], [ 4962068.275747408159077, 3910326.081978178583086 ], [ 4962053.908125433139503, 3910308.217660932336003 ], [ 4962044.684440389275551, 3910315.486304051242769 ], [ 4962012.213130408897996, 3910275.382444510702044 ], [ 4962048.820577953010798, 3910245.943278564140201 ], [ 4962069.510310349054635, 3910271.463979246560484 ], [ 4962077.580776898190379, 3910265.285989809315652 ], [ 4962088.212968328036368, 3910278.410918592475355 ], [ 4962077.547576211392879, 3910287.133888902608305 ], [ 4962093.065111657604575, 3910306.092364131007344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961844.394843051210046, 3892527.042798217851669 ], [ 4961839.73380415700376, 3892561.263848636765033 ], [ 4961823.028184942901134, 3892559.053860411047935 ], [ 4961819.240223555825651, 3892587.450174917001277 ], [ 4961784.965307033620775, 3892582.664803405757993 ], [ 4961786.421102588064969, 3892572.471397577319294 ], [ 4961775.187996949069202, 3892570.997948262840509 ], [ 4961777.809851344674826, 3892551.703084845561534 ], [ 4961789.907219461165369, 3892553.177838450763375 ], [ 4961794.277914524078369, 3892520.412856142967939 ], [ 4961844.394843051210046, 3892527.042798217851669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961724.74568173661828, 3899667.439022462349385 ], [ 4961706.84475124347955, 3899696.906611725222319 ], [ 4961649.582547545433044, 3899662.592247682623565 ], [ 4961666.040107732638717, 3899635.307231183629483 ], [ 4961693.66376368701458, 3899652.098768977448344 ], [ 4961695.107095242477953, 3899649.916160138323903 ], [ 4961724.74568173661828, 3899667.439022462349385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961469.14377707336098, 3899182.034077494870871 ], [ 4961483.29624367877841, 3899155.473767639137805 ], [ 4961518.694155815988779, 3899174.097408295143396 ], [ 4961504.253650330938399, 3899200.657268461771309 ], [ 4961469.14377707336098, 3899182.034077494870871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961018.44449226371944, 3893701.215783287771046 ], [ 4961045.524389949627221, 3893700.527598426211625 ], [ 4961046.073044678196311, 3893719.09898079559207 ], [ 4961056.156116371043026, 3893718.749780063517392 ], [ 4961057.253948696888983, 3893755.528417802415788 ], [ 4961020.379120756871998, 3893756.566227522213012 ], [ 4961018.44449226371944, 3893701.215783287771046 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960930.632977674715221, 3897569.595044173765928 ], [ 4960943.688477602787316, 3897505.891632205806673 ], [ 4961090.541508302092552, 3897535.239266267511994 ], [ 4961077.773165530525148, 3897599.307163655757904 ], [ 4960930.632977674715221, 3897569.595044173765928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960731.932626380585134, 3893618.864492267835885 ], [ 4960787.532405267469585, 3893617.853818994015455 ], [ 4960788.627396376803517, 3893656.817211738787591 ], [ 4960752.904736018739641, 3893657.857083035632968 ], [ 4960752.633784645237029, 3893646.204563002567738 ], [ 4960732.75620324537158, 3893646.539490962401032 ], [ 4960731.932626380585134, 3893618.864492267835885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960596.247196799144149, 3900901.257200375199318 ], [ 4960625.430757018737495, 3900835.756474615540355 ], [ 4960651.909315435215831, 3900847.447451977990568 ], [ 4960622.725703251548111, 3900912.948149437084794 ], [ 4960596.247196799144149, 3900901.257200375199318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960423.088362022303045, 3898184.958047493826598 ], [ 4960454.187041883356869, 3898190.46533511672169 ], [ 4960445.769021601416171, 3898235.241021685767919 ], [ 4960414.67092243116349, 3898229.369614645838737 ], [ 4960423.088362022303045, 3898184.958047493826598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960256.01324762776494, 3908119.297443032730371 ], [ 4960288.560155596584082, 3908110.969676223117858 ], [ 4960302.876675118692219, 3908165.610276943072677 ], [ 4960253.624272841028869, 3908178.283355053514242 ], [ 4960243.316317515447736, 3908138.942140159197152 ], [ 4960259.733978381380439, 3908134.596387486439198 ], [ 4960256.01324762776494, 3908119.297443032730371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960219.246965427882969, 3899718.741178582888097 ], [ 4960223.306006501428783, 3899700.176428732462227 ], [ 4960244.61175046581775, 3899704.94102271925658 ], [ 4960240.552695378661156, 3899723.505769409239292 ], [ 4960219.246965427882969, 3899718.741178582888097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960219.962789962999523, 3893661.812927261460572 ], [ 4960230.55707623809576, 3893706.252001033164561 ], [ 4960173.499215279705822, 3893719.642094413284212 ], [ 4960167.200630608014762, 3893692.687443761620671 ], [ 4960188.237317096441984, 3893687.620102038607001 ], [ 4960184.229612294584513, 3893670.136114943306893 ], [ 4960219.962789962999523, 3893661.812927261460572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959588.112231339327991, 3908877.187318094540387 ], [ 4959548.337580806575716, 3908907.353560035582632 ], [ 4959506.667421860620379, 3908853.402640365995467 ], [ 4959549.32484364323318, 3908820.69152199709788 ], [ 4959563.981279943138361, 3908839.647288006730378 ], [ 4959561.099061362445354, 3908841.827970849815756 ], [ 4959588.112231339327991, 3908877.187318094540387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959537.426688625477254, 3904845.085027817171067 ], [ 4959541.700844001024961, 3904876.770534608047456 ], [ 4959494.75572813488543, 3904882.893911818042397 ], [ 4959491.337086631916463, 3904857.035729472991079 ], [ 4959496.233324278146029, 3904856.314435210544616 ], [ 4959490.535408635623753, 3904813.338842310477048 ], [ 4959531.7205366846174, 3904807.935514080803841 ], [ 4959533.431657678447664, 3904819.590150650590658 ], [ 4959545.240342039614916, 3904817.786320342216641 ], [ 4959548.658936780877411, 3904843.644508922938257 ], [ 4959537.426688625477254, 3904845.085027817171067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959486.925847189500928, 3899456.608113956637681 ], [ 4959488.736799607984722, 3899398.349885696079582 ], [ 4959514.368786417879164, 3899399.114624460227787 ], [ 4959514.072480717673898, 3899404.94028299767524 ], [ 4959537.400369174778461, 3899405.701763623394072 ], [ 4959535.597091932781041, 3899458.498049385845661 ], [ 4959486.925847189500928, 3899456.608113956637681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959328.063097394071519, 3900998.473979683127254 ], [ 4959369.521889395080507, 3901007.27187941968441 ], [ 4959362.56458680704236, 3901039.305485491640866 ], [ 4959321.105841988697648, 3901030.507596334908158 ], [ 4959328.063097394071519, 3900998.473979683127254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959326.240725995972753, 3901065.107256694696844 ], [ 4959353.310579498298466, 3901066.238012332934886 ], [ 4959352.110595869831741, 3901100.100437198299915 ], [ 4959325.040776437148452, 3901098.969682745169848 ], [ 4959326.240725995972753, 3901065.107256694696844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959213.321379461325705, 3896800.986191835254431 ], [ 4959214.139212735928595, 3896833.758998110424727 ], [ 4959196.568320763297379, 3896834.098317181691527 ], [ 4959195.461912725120783, 3896801.689233551733196 ], [ 4959213.321379461325705, 3896800.986191835254431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959000.175333209335804, 3903565.13247633446008 ], [ 4959013.110815831460059, 3903581.53654224332422 ], [ 4959001.00240445509553, 3903591.351065210066736 ], [ 4959026.011988179758191, 3903622.337339222431183 ], [ 4958995.741777543909848, 3903646.327447720337659 ], [ 4958957.797200156375766, 3903598.573025366757065 ], [ 4959000.175333209335804, 3903565.13247633446008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958811.237607110291719, 3904411.472351046744734 ], [ 4958831.647981353104115, 3904436.26180321816355 ], [ 4958806.567178959958255, 3904456.618081912864 ], [ 4958786.157305744476616, 3904431.464518073946238 ], [ 4958811.237607110291719, 3904411.472351046744734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958676.74606120120734, 3898424.980099711567163 ], [ 4958680.21347997430712, 3898416.974072600249201 ], [ 4958652.867602762766182, 3898405.283852324355394 ], [ 4958670.492716814391315, 3898365.254107651300728 ], [ 4958722.305305818095803, 3898387.902337697800249 ], [ 4958701.213212009519339, 3898435.573943842668086 ], [ 4958676.74606120120734, 3898424.980099711567163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958575.63316310942173, 3899889.006037913262844 ], [ 4958584.907530892640352, 3899847.143956839106977 ], [ 4958612.547568205744028, 3899853.372577335685492 ], [ 4958613.995700573548675, 3899847.548508773557842 ], [ 4958631.558537678793073, 3899851.57836104137823 ], [ 4958633.008700104430318, 3899844.297775908838958 ], [ 4958658.921196143142879, 3899850.159911240916699 ], [ 4958646.459393296390772, 3899905.854476285167038 ], [ 4958646.747399359941483, 3899905.854877010453492 ], [ 4958639.212639482691884, 3899939.344365379307419 ], [ 4958630.863006224855781, 3899937.512100760824978 ], [ 4958633.471264714375138, 3899925.863564528524876 ], [ 4958613.029429933056235, 3899921.101448164787143 ], [ 4958617.956918178126216, 3899898.532231210265309 ], [ 4958575.63316310942173, 3899889.006037913262844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958256.116456566378474, 3899555.749325022101402 ], [ 4958298.450887737795711, 3899557.992426403332502 ], [ 4958295.787029765546322, 3899610.059350467287004 ], [ 4958258.636345634236932, 3899608.187520348466933 ], [ 4958259.5294543299824, 3899587.069207620806992 ], [ 4958254.633293185383081, 3899587.062466193921864 ], [ 4958256.116456566378474, 3899555.749325022101402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957679.282706623896956, 3906103.85271669505164 ], [ 4957723.096486675553024, 3906069.319662011228502 ], [ 4957746.380062864162028, 3906098.481793041341007 ], [ 4957702.566300288774073, 3906133.014810386113822 ], [ 4957679.282706623896956, 3906103.85271669505164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957619.282065942883492, 3907673.542953906580806 ], [ 4957654.92184027004987, 3907719.835959805175662 ], [ 4957634.169737097807229, 3907735.829651683568954 ], [ 4957639.342473064549267, 3907743.119293338619173 ], [ 4957617.726138547062874, 3907759.475959533825517 ], [ 4957602.205943546257913, 3907739.063574566971511 ], [ 4957610.564062015153468, 3907732.884642600081861 ], [ 4957584.983796092681587, 3907699.714042278937995 ], [ 4957619.282065942883492, 3907673.542953906580806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957560.072931226342916, 3898219.171611452009529 ], [ 4957630.341949283145368, 3898225.820963373873383 ], [ 4957627.128346674144268, 3898259.316549780312926 ], [ 4957556.571391643956304, 3898252.666817075107247 ], [ 4957560.072931226342916, 3898219.171611452009529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957280.676311885938048, 3904887.844913006294519 ], [ 4957313.51464538089931, 3904879.149814677424729 ], [ 4957324.402102253399789, 3904919.947121961042285 ], [ 4957291.851767275482416, 3904928.642593406140804 ], [ 4957280.676311885938048, 3904887.844913006294519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956704.384169860742986, 3901251.232578268274665 ], [ 4956762.336888216435909, 3901201.059100145474076 ], [ 4956784.766095924191177, 3901226.942002505529672 ], [ 4956761.988753857091069, 3901246.574936599005014 ], [ 4956766.877394638955593, 3901252.043352240696549 ], [ 4956731.702033673413098, 3901282.583842390216887 ], [ 4956704.384169860742986, 3901251.232578268274665 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956218.64440235029906, 3904713.115481729153544 ], [ 4956259.456148137338459, 3904772.886127470526844 ], [ 4956234.958259018138051, 3904789.604255401995033 ], [ 4956223.174429383128881, 3904772.474752704147249 ], [ 4956209.628752491436899, 3904781.560405666939914 ], [ 4956201.580727463588119, 3904770.261871223337948 ], [ 4956208.786207782104611, 3904765.173407996073365 ], [ 4956187.517852746881545, 3904734.194601023104042 ], [ 4956218.64440235029906, 3904713.115481729153544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956186.530431094579399, 3904829.23154674610123 ], [ 4956218.238463113084435, 3904803.783608057536185 ], [ 4956236.925578187219799, 3904826.748194450046867 ], [ 4956205.217555486597121, 3904852.19611144438386 ], [ 4956186.530431094579399, 3904829.23154674610123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956173.23938833642751, 3904642.414997098501772 ], [ 4956132.884049792774022, 3904674.406120370607823 ], [ 4956095.797825103625655, 3904628.113352757878602 ], [ 4956111.075525408610702, 3904615.75271009420976 ], [ 4956107.625726269558072, 3904611.378661663271487 ], [ 4956132.703391210176051, 3904591.748123104684055 ], [ 4956173.23938833642751, 3904642.414997098501772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956041.257683966308832, 3891589.28689325787127 ], [ 4956045.918103249743581, 3891549.967070177197456 ], [ 4956109.57778861746192, 3891557.332101030740887 ], [ 4956105.205372569151223, 3891596.652286740485579 ], [ 4956041.257683966308832, 3891589.28689325787127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955393.086767040193081, 3894049.600702572613955 ], [ 4955401.104586187750101, 3894087.480282105971128 ], [ 4955368.832605710253119, 3894093.993622893001884 ], [ 4955360.814281038939953, 3894056.478181052021682 ], [ 4955393.086767040193081, 3894049.600702572613955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955240.437281370162964, 3895622.808504803106189 ], [ 4955261.761419137008488, 3895616.281152367591858 ], [ 4955277.826880398206413, 3895668.007821134757251 ], [ 4955256.79083111602813, 3895674.535525434650481 ], [ 4955240.437281370162964, 3895622.808504803106189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955197.38839563075453, 3895268.820629007648677 ], [ 4955209.74581275228411, 3895291.776367798447609 ], [ 4955189.568595164455473, 3895302.310628232080489 ], [ 4955177.211165687069297, 3895279.354898571036756 ], [ 4955197.38839563075453, 3895268.820629007648677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955182.767129665240645, 3900461.290456868242472 ], [ 4955230.325358781963587, 3900431.127738500479609 ], [ 4955264.242589402012527, 3900483.969517499674112 ], [ 4955216.971954851411283, 3900514.49667039513588 ], [ 4955182.767129665240645, 3900461.290456868242472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954952.580241339281201, 3895696.728406531736255 ], [ 4954986.291367459110916, 3895689.488110221922398 ], [ 4954994.31017885543406, 3895726.639347793068737 ], [ 4954960.59909712895751, 3895733.879634195938706 ], [ 4954952.580241339281201, 3895696.728406531736255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954782.693885835818946, 3889871.187923452351242 ], [ 4954793.021457036025822, 3889906.885340332984924 ], [ 4954715.779923845082521, 3889928.636763465125114 ], [ 4954705.451805474236608, 3889893.303503141272813 ], [ 4954782.693885835818946, 3889871.187923452351242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954691.660458063706756, 3894263.190866623539478 ], [ 4954666.280277765356004, 3894287.555937952827662 ], [ 4954638.37357731629163, 3894258.755085757933557 ], [ 4954641.545927953906357, 3894255.845995363313705 ], [ 4954616.803836518898606, 3894230.32625654572621 ], [ 4954651.99007177259773, 3894196.505972341168672 ], [ 4954675.868865652941167, 3894221.296411978080869 ], [ 4954663.178530903533101, 3894233.661015880759805 ], [ 4954691.660458063706756, 3894263.190866623539478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954575.154159137047827, 3900406.274796498939395 ], [ 4954594.229968192987144, 3900351.678933443501592 ], [ 4954621.578335124067962, 3900361.180260493885726 ], [ 4954617.531852370128036, 3900372.827401184011251 ], [ 4954656.107700983993709, 3900385.984006351791322 ], [ 4954641.078271438367665, 3900428.932688376866281 ], [ 4954575.154159137047827, 3900406.274796498939395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954353.574700688943267, 3895113.741695701610297 ], [ 4954333.677228730171919, 3895131.195392855908722 ], [ 4954315.267095607705414, 3895110.417388370726258 ], [ 4954335.164570943452418, 3895092.963677797466516 ], [ 4954353.574700688943267, 3895113.741695701610297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954327.577495797537267, 3894469.929733893368393 ], [ 4954342.574321504682302, 3894455.747165043372661 ], [ 4954359.54814972076565, 3894473.610379722900689 ], [ 4954344.551324991509318, 3894487.792939256411046 ], [ 4954327.577495797537267, 3894469.929733893368393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953268.304643712937832, 3898388.498835215810686 ], [ 4953276.40397796779871, 3898359.378109160810709 ], [ 4953399.925182680599391, 3898393.389631902333349 ], [ 4953391.825724716298282, 3898422.510321329347789 ], [ 4953268.304643712937832, 3898388.498835215810686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952596.481260056607425, 3891603.984523736406118 ], [ 4952577.217927698045969, 3891570.462274081073701 ], [ 4952583.560269806534052, 3891566.828382736071944 ], [ 4952573.209621917456388, 3891548.97403878858313 ], [ 4952604.921372205018997, 3891530.804592619650066 ], [ 4952645.172720512375236, 3891601.128312608227134 ], [ 4952618.073942247778177, 3891616.390067795291543 ], [ 4952607.436090728268027, 3891597.807118563912809 ], [ 4952596.481260056607425, 3891603.984523736406118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952440.223644056357443, 3900139.35398265440017 ], [ 4952458.08747536689043, 3900132.820378124713898 ], [ 4952461.819682528264821, 3900143.020353783387691 ], [ 4952454.040205414406955, 3900145.924361224286258 ], [ 4952457.486100097186863, 3900154.667483692988753 ], [ 4952447.113751215860248, 3900158.296742764767259 ], [ 4952440.223644056357443, 3900139.35398265440017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951950.142910453490913, 3892736.041979439090937 ], [ 4951991.333351210691035, 3892740.822717752307653 ], [ 4951991.914929775521159, 3892736.089712765067816 ], [ 4952018.991387633606791, 3892739.033715690951794 ], [ 4952012.006152025423944, 3892801.291690295096487 ], [ 4951983.777843501418829, 3892797.9822489451617 ], [ 4951985.233657224103808, 3892784.511159734800458 ], [ 4951956.141080589033663, 3892781.200759410858154 ], [ 4951957.013645882718265, 3892773.919186632614583 ], [ 4951946.067758672870696, 3892772.814301159698516 ], [ 4951950.142910453490913, 3892736.041979439090937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951543.982546503655612, 3892703.173807143699378 ], [ 4951549.207030866295099, 3892668.587492508348078 ], [ 4951580.602804424241185, 3892673.356564168818295 ], [ 4951581.473217349499464, 3892667.895619548391551 ], [ 4951596.163015997968614, 3892670.096967495977879 ], [ 4951594.711912132799625, 3892679.56266909185797 ], [ 4951627.259587206877768, 3892684.697223926428705 ], [ 4951621.166231385432184, 3892723.287955242209136 ], [ 4951604.748376660048962, 3892720.72051388816908 ], [ 4951605.328654166311026, 3892717.079884554259479 ], [ 4951562.987418733537197, 3892710.841926454100758 ], [ 4951563.568922522477806, 3892706.108912277035415 ], [ 4951543.982546503655612, 3892703.173807143699378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950696.137369082309306, 3896924.670363000594079 ], [ 4950684.615450008772314, 3896925.021873011253774 ], [ 4950684.343759876675904, 3896910.092272686306387 ], [ 4950769.029779238626361, 3896907.636233667843044 ], [ 4950770.698823302052915, 3896961.529209225904197 ], [ 4950741.31818771827966, 3896962.225217126309872 ], [ 4950741.042534527368844, 3896950.93690496403724 ], [ 4950696.971166679635644, 3896952.345106392167509 ], [ 4950696.137369082309306, 3896924.670363000594079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950597.834934044629335, 3899373.334431903902441 ], [ 4950643.336015029810369, 3899377.753711584024131 ], [ 4950640.422451424412429, 3899408.337434818502516 ], [ 4950594.633807860314846, 3899403.553716102149338 ], [ 4950597.834934044629335, 3899373.334431903902441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950465.80565279815346, 3893653.084238633047789 ], [ 4950493.459478781558573, 3893654.206691811326891 ], [ 4950491.688264827243984, 3893693.530658162198961 ], [ 4950463.746406579390168, 3893692.407893748488277 ], [ 4950465.80565279815346, 3893653.084238633047789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950432.11815345287323, 3890983.258585510775447 ], [ 4950421.713701292872429, 3891013.469924442470074 ], [ 4950397.521872444078326, 3891005.432869293261319 ], [ 4950407.926695397123694, 3890974.857393505983055 ], [ 4950432.11815345287323, 3890983.258585510775447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950385.572169931605458, 3892727.382429364603013 ], [ 4950384.678325430490077, 3892754.691093610599637 ], [ 4950282.412901679053903, 3892750.939178185537457 ], [ 4950283.30664240848273, 3892723.630510594230145 ], [ 4950385.572169931605458, 3892727.382429364603013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950257.83629100676626, 3894168.829378629103303 ], [ 4950283.169324511662126, 3894184.514261960517615 ], [ 4950275.089678069576621, 3894197.25004337914288 ], [ 4950287.756376742385328, 3894204.910426135640591 ], [ 4950269.865553507581353, 3894233.293149833567441 ], [ 4950205.09404637850821, 3894192.805016216821969 ], [ 4950224.427520709112287, 3894162.239032553508878 ], [ 4950251.487806069664657, 3894179.018133867066354 ], [ 4950257.83629100676626, 3894168.829378629103303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950235.304255058988929, 3895028.513248716015369 ], [ 4950269.543887712061405, 3895064.963081939145923 ], [ 4950248.782897824421525, 3895084.239511694293469 ], [ 4950214.542869325727224, 3895048.1538329962641 ], [ 4950235.304255058988929, 3895028.513248716015369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949013.536614089272916, 3888719.430201420094818 ], [ 4949059.078211397863925, 3888702.363268017303199 ], [ 4949069.997617775574327, 3888730.776514237280935 ], [ 4949056.45043280813843, 3888735.860287146642804 ], [ 4949065.645595801994205, 3888759.902218096889555 ], [ 4949033.65124907437712, 3888771.885349604766816 ], [ 4949013.536614089272916, 3888719.430201420094818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946769.389651784673333, 3890469.0251520331949 ], [ 4946727.311856091953814, 3890483.914491233415902 ], [ 4946712.657020162791014, 3890443.11828283732757 ], [ 4946754.735216934233904, 3890427.864793473854661 ], [ 4946769.389651784673333, 3890469.0251520331949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946761.511838492937386, 3891180.52375819394365 ], [ 4946717.721740025095642, 3891179.389858106616884 ], [ 4946718.613288400694728, 3891150.624586225487292 ], [ 4946762.115333816036582, 3891151.758214372210205 ], [ 4946761.511838492937386, 3891180.52375819394365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946565.933931617997587, 3888994.1154142068699 ], [ 4946573.693704635836184, 3889014.877994602546096 ], [ 4946544.294906091876328, 3889025.774150430690497 ], [ 4946536.535455980338156, 3889004.647451105993241 ], [ 4946565.933931617997587, 3888994.1154142068699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946406.370654070749879, 3891704.533596372697502 ], [ 4946410.726140165701509, 3891668.12485588947311 ], [ 4946458.544337159022689, 3891673.995699639897794 ], [ 4946457.963368885219097, 3891679.092949167825282 ], [ 4946495.987702547572553, 3891683.498165907803923 ], [ 4946492.501512929797173, 3891714.445786623749882 ], [ 4946406.370654070749879, 3891704.533596372697502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944482.693503269925714, 3891454.831205127760768 ], [ 4944521.584025650285184, 3891457.777864471077919 ], [ 4944519.249313734471798, 3891492.36801270255819 ], [ 4944537.110333126969635, 3891493.475861493498087 ], [ 4944535.359995492734015, 3891518.599184486083686 ], [ 4944477.456486942246556, 3891514.179559859912843 ], [ 4944479.498013111762702, 3891485.415203833952546 ], [ 4944468.262886584736407, 3891484.677242696285248 ], [ 4944469.43099551461637, 3891466.47184677189216 ], [ 4944481.818515573628247, 3891467.210804143920541 ], [ 4944482.693503269925714, 3891454.831205127760768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943530.669089822098613, 3889205.17183254705742 ], [ 4943520.587277136743069, 3889202.250459287315607 ], [ 4943516.8305500196293, 3889215.720069403760135 ], [ 4943493.210081704892218, 3889209.146221865899861 ], [ 4943505.34761880338192, 3889165.096825586631894 ], [ 4943539.050247970037162, 3889174.227932631038129 ], [ 4943530.669089822098613, 3889205.17183254705742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943125.121500047855079, 3890111.880926625337452 ], [ 4943133.820844252593815, 3890043.067854421678931 ], [ 4943168.966915471479297, 3890047.466016724705696 ], [ 4943162.87710016220808, 3890095.890048125293106 ], [ 4943152.794098632410169, 3890094.789449009113014 ], [ 4943150.184488726779819, 3890115.178479576017708 ], [ 4943125.121500047855079, 3890111.880926625337452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942751.540812201797962, 3889987.412007139995694 ], [ 4942738.250394731760025, 3890034.009736245963722 ], [ 4942708.869670544750988, 3890025.611332379747182 ], [ 4942722.160041212104261, 3889979.013588967733085 ], [ 4942751.540812201797962, 3889987.412007139995694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992660.157883616164327, 3910618.652377511840314 ], [ 4992650.569409344345331, 3910651.76303504081443 ], [ 4992618.925591014325619, 3910642.575621007941663 ], [ 4992615.440914341248572, 3910653.854500649962574 ], [ 4992594.440350575372577, 3910647.972590136341751 ], [ 4992611.001015080139041, 3910591.211758938152343 ], [ 4992643.795494921505451, 3910600.766354294028133 ], [ 4992640.307899731211364, 3910613.137622957583517 ], [ 4992660.157883616164327, 3910618.652377511840314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990236.083338405936956, 3908829.886939592193812 ], [ 4990224.181794424541295, 3908867.726209524087608 ], [ 4990187.934093098156154, 3908856.345060391351581 ], [ 4990200.123501515947282, 3908818.50651350710541 ], [ 4990236.083338405936956, 3908829.886939592193812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988685.94713375158608, 3912965.41947857150808 ], [ 4988713.312703972682357, 3912958.205510819796473 ], [ 4988719.586316441185772, 3912981.889964796137065 ], [ 4988691.932902737520635, 3912989.103203590027988 ], [ 4988685.94713375158608, 3912965.41947857150808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988393.868705763481557, 3907853.71388192102313 ], [ 4988366.213746760040522, 3907859.470911212731153 ], [ 4988351.702561897225678, 3907790.249465913046151 ], [ 4988387.99978731572628, 3907782.693351536523551 ], [ 4988396.253969451412559, 3907820.947904438711703 ], [ 4988387.323861566372216, 3907822.746252797544003 ], [ 4988393.868705763481557, 3907853.71388192102313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988171.171743269078434, 3912992.534627093933523 ], [ 4988178.580050912685692, 3913023.140323255211115 ], [ 4988147.759399831295013, 3913030.710365134291351 ], [ 4988140.351059222593904, 3913000.104677326977253 ], [ 4988171.171743269078434, 3912992.534627093933523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988046.522485846653581, 3914151.26272748876363 ], [ 4988009.341433747671545, 3914170.469405827112496 ], [ 4987985.849642920307815, 3914125.258410119917244 ], [ 4988022.742886655032635, 3914106.050984308123589 ], [ 4988046.522485846653581, 3914151.26272748876363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988069.580851265229285, 3903720.005269433837384 ], [ 4988056.285570851527154, 3903739.635327306576073 ], [ 4988068.935206159949303, 3903748.041806478984654 ], [ 4988049.28027874045074, 3903777.487612612079829 ], [ 4988013.632377285510302, 3903753.366332042962313 ], [ 4988046.581649311818182, 3903704.654560673050582 ], [ 4988069.580851265229285, 3903720.005269433837384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987952.51853805128485, 3908303.410875882487744 ], [ 4987977.006777673959732, 3908297.281423272565007 ], [ 4987987.274079696275294, 3908336.633259439840913 ], [ 4987962.784969420172274, 3908343.126833335496485 ], [ 4987952.51853805128485, 3908303.410875882487744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987951.436040656641126, 3908623.480895505286753 ], [ 4987945.176984003745019, 3908593.242335215676576 ], [ 4988009.415052160620689, 3908579.928955337963998 ], [ 4988015.959238025359809, 3908611.260637458413839 ], [ 4988003.571751181967556, 3908614.142920890357345 ], [ 4988005.564523060806096, 3908623.251192144118249 ], [ 4987980.215548874810338, 3908628.286083100363612 ], [ 4987977.938473363406956, 3908617.72057640645653 ], [ 4987951.436040656641126, 3908623.480895505286753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987486.099093015305698, 3901290.896562980487943 ], [ 4987471.978551017120481, 3901294.503077865112573 ], [ 4987462.559168009087443, 3901260.251541301142424 ], [ 4987476.96861557289958, 3901256.281602265313268 ], [ 4987486.099093015305698, 3901290.896562980487943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987382.934680053964257, 3913599.77854863088578 ], [ 4987414.515798198059201, 3913633.720769334118813 ], [ 4987369.796383093111217, 3913674.757797539234161 ], [ 4987338.214361251331866, 3913641.179760253522545 ], [ 4987382.934680053964257, 3913599.77854863088578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987233.638624802231789, 3907930.94879426015541 ], [ 4987238.716555321589112, 3907973.564782972913235 ], [ 4987184.571584230288863, 3907979.98624862683937 ], [ 4987179.493569120764732, 3907937.370269977953285 ], [ 4987233.638624802231789, 3907930.94879426015541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987076.337672422640026, 3908557.599464011844248 ], [ 4987079.409260148182511, 3908596.569195724558085 ], [ 4987031.317993250675499, 3908600.456872767303139 ], [ 4987027.695469945669174, 3908551.290080497507006 ], [ 4987051.596742732450366, 3908549.527940769679844 ], [ 4987052.436405132524669, 3908559.361581738106906 ], [ 4987076.337672422640026, 3908557.599464011844248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986767.778896150179207, 3905333.909476990345865 ], [ 4986709.604550402611494, 3905337.409021575935185 ], [ 4986707.946049027144909, 3905309.002683343365788 ], [ 4986715.722423679195344, 3905308.293363182805479 ], [ 4986714.057717270217836, 3905282.435934077948332 ], [ 4986723.849738975986838, 3905281.731526779010892 ], [ 4986723.021381612867117, 3905267.164227769710124 ], [ 4986764.780144805088639, 3905264.717081074602902 ], [ 4986767.544216554611921, 3905312.060983021277934 ], [ 4986782.80813158210367, 3905311.005807056557387 ], [ 4986784.191926325671375, 3905333.949499689042568 ], [ 4986811.262582250870764, 3905332.559004466049373 ], [ 4986813.203589903190732, 3905363.150831261184067 ], [ 4986769.717289688065648, 3905365.593690289184451 ], [ 4986767.778896150179207, 3905333.909476990345865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986713.572787402197719, 3907608.875882185529917 ], [ 4986711.093749573454261, 3907680.968086891341954 ], [ 4986680.864521145820618, 3907679.802059706766158 ], [ 4986683.631401487626135, 3907607.710553413257003 ], [ 4986713.572787402197719, 3907608.875882185529917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986435.133185620419681, 3915090.411615498363972 ], [ 4986460.132242731750011, 3915108.314869198016822 ], [ 4986434.715449592098594, 3915143.938335275743157 ], [ 4986409.716408863663673, 3915126.035104821901768 ], [ 4986435.133185620419681, 3915090.411615498363972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985936.46422662679106, 3908325.79154996946454 ], [ 4985982.835344617255032, 3908318.984707473777235 ], [ 4985981.702103346586227, 3908311.335191098507494 ], [ 4986021.44943280890584, 3908305.240723489783704 ], [ 4986021.44943280890584, 3908305.240723489783704 ], [ 4986143.281897037290037, 3908287.32806236948818 ], [ 4986142.14957947935909, 3908279.314408828504384 ], [ 4986185.06407365296036, 3908273.227832527831197 ], [ 4986193.56602602545172, 3908329.324813407845795 ], [ 4986108.023390159010887, 3908342.226963961496949 ], [ 4986108.023390159010887, 3908342.226963961496949 ], [ 4986066.260686246678233, 3908348.316441740840673 ], [ 4986067.393023422919214, 3908356.330092419870198 ], [ 4986026.206181665882468, 3908362.421021628659219 ], [ 4986025.640007157810032, 3908358.414197126869112 ], [ 4985984.165262788534164, 3908364.504496686160564 ], [ 4985985.298501041717827, 3908372.154013418592513 ], [ 4985944.111702441237867, 3908378.245068530552089 ], [ 4985936.46422662679106, 3908325.79154996946454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985922.921932268887758, 3909645.740438173525035 ], [ 4985861.883270272053778, 3909647.050112522672862 ], [ 4985861.101002046838403, 3909613.183865294791758 ], [ 4985875.496980037540197, 3909612.854355745948851 ], [ 4985875.223091686144471, 3909607.027569531463087 ], [ 4985896.241697889752686, 3909606.349868567660451 ], [ 4985895.966937826946378, 3909600.887213014997542 ], [ 4985921.87900999840349, 3909600.58543969783932 ], [ 4985922.921932268887758, 3909645.740438173525035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985926.547497135587037, 3896891.313282988965511 ], [ 4985940.152776448056102, 3896863.308000504039228 ], [ 4985964.320848478004336, 3896874.654209101106972 ], [ 4985950.714673183858395, 3896903.023607584647834 ], [ 4985926.547497135587037, 3896891.313282988965511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985827.556024244055152, 3910633.039970118552446 ], [ 4985789.54477506224066, 3910636.95409638620913 ], [ 4985784.753836994059384, 3910593.974871562793851 ], [ 4985822.76602141931653, 3910589.69660754268989 ], [ 4985827.556024244055152, 3910633.039970118552446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985764.859529354609549, 3909647.181094136554748 ], [ 4985772.377328120172024, 3909633.726227349601686 ], [ 4985758.001470868475735, 3909625.68078224780038 ], [ 4985777.661881299689412, 3909591.135362299159169 ], [ 4985831.139058597385883, 3909621.486887463834137 ], [ 4985810.610521670430899, 3909657.850847846828401 ], [ 4985789.046769081614912, 3909645.78265223884955 ], [ 4985782.684944511391222, 3909657.419626121409237 ], [ 4985764.859529354609549, 3909647.181094136554748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985478.673331790603697, 3897723.369346790481359 ], [ 4985464.184869763441384, 3897759.747762559447438 ], [ 4985401.452760517597198, 3897735.201238396577537 ], [ 4985405.798404352739453, 3897724.651831023395061 ], [ 4985394.000493733212352, 3897719.889980188570917 ], [ 4985400.086481038480997, 3897704.24690075032413 ], [ 4985448.430239523760974, 3897723.29709743661806 ], [ 4985452.487004419788718, 3897713.111138008534908 ], [ 4985478.673331790603697, 3897723.369346790481359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985369.629591349512339, 3904915.790650865528733 ], [ 4985397.707871533930302, 3904854.319373952224851 ], [ 4985441.428892933763564, 3904874.451031281147152 ], [ 4985428.980827965773642, 3904902.095322284847498 ], [ 4985422.939911933615804, 3904899.531972161959857 ], [ 4985407.886397299356759, 3904932.996161753311753 ], [ 4985369.629591349512339, 3904915.790650865528733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985158.243846497498453, 3904200.860488029196858 ], [ 4985122.761581437662244, 3904227.357744971755892 ], [ 4985111.852858734317124, 3904213.13068126514554 ], [ 4985098.295384007506073, 3904222.930022843647748 ], [ 4985068.441821595653892, 3904183.168751003220677 ], [ 4985101.616080995649099, 3904158.486597576644272 ], [ 4985122.571420680731535, 3904186.210407631006092 ], [ 4985138.436933619901538, 3904174.595906955655664 ], [ 4985158.243846497498453, 3904200.860488029196858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984996.429569020867348, 3906013.124875909183174 ], [ 4984958.974842046387494, 3906022.50348321441561 ], [ 4984939.571813140064478, 3905947.8104029269889 ], [ 4984977.027500827796757, 3905938.067638958804309 ], [ 4984996.429569020867348, 3906013.124875909183174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984532.459805768914521, 3903974.710305720567703 ], [ 4984557.161957365460694, 3904001.350098580121994 ], [ 4984505.79240751080215, 3904048.930380799807608 ], [ 4984480.228933514095843, 3904021.196212756913155 ], [ 4984497.544359497725964, 3904005.215166879817843 ], [ 4984498.406531875953078, 3904005.945459398441017 ], [ 4984532.459805768914521, 3903974.710305720567703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984384.440795568749309, 3916963.354573341086507 ], [ 4984361.961489711888134, 3916975.682321938220412 ], [ 4984342.471626307815313, 3916940.679612830281258 ], [ 4984364.663128741085529, 3916928.351171888876706 ], [ 4984384.440795568749309, 3916963.354573341086507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984169.477046750485897, 3904037.945154121611267 ], [ 4984160.851832259446383, 3904032.098854212556034 ], [ 4984171.255972381681204, 3904016.101419757120311 ], [ 4984218.985996160656214, 3904046.80027793860063 ], [ 4984169.567214026115835, 3904122.423912847414613 ], [ 4984130.463324504904449, 3904097.207298952620476 ], [ 4984169.477046750485897, 3904037.945154121611267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984006.037402278743684, 3909163.088222635444254 ], [ 4983961.39568979665637, 3909169.90251228492707 ], [ 4983956.572660693898797, 3909139.304100246634334 ], [ 4984001.214422732591629, 3909132.489802717696875 ], [ 4984006.037402278743684, 3909163.088222635444254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983946.141938819549978, 3917308.255831299349666 ], [ 4983920.699117149226367, 3917357.354635866824538 ], [ 4983878.438959835097194, 3917336.136253921780735 ], [ 4983892.896164662204683, 3917307.76746301818639 ], [ 4983877.084765675477684, 3917299.719629337079823 ], [ 4983888.071165307424963, 3917278.625437274575233 ], [ 4983946.141938819549978, 3917308.255831299349666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983412.176239070482552, 3916959.994468541815877 ], [ 4983425.937812898308039, 3916983.330933250952512 ], [ 4983403.745945852249861, 3916996.024282831698656 ], [ 4983390.272182503715158, 3916972.688495179172605 ], [ 4983412.176239070482552, 3916959.994468541815877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983298.659845259040594, 3909655.937689256388694 ], [ 4983321.392292980104685, 3909661.088058571796864 ], [ 4983312.37986855302006, 3909698.937060328666121 ], [ 4983256.557303627021611, 3909685.699386456049979 ], [ 4983266.443444755859673, 3909643.48278850549832 ], [ 4983299.821543038822711, 3909651.570777443703264 ], [ 4983298.659845259040594, 3909655.937689256388694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983220.080943426117301, 3902031.559766917489469 ], [ 4983270.148859694600105, 3902049.517691528890282 ], [ 4983260.582404079847038, 3902076.805456276983023 ], [ 4983210.22654939070344, 3902058.846885246690363 ], [ 4983220.080943426117301, 3902031.559766917489469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982852.32025383040309, 3894367.227092267479748 ], [ 4982891.516353470273316, 3894358.941960669588298 ], [ 4982896.643917012959719, 3894384.078655294608325 ], [ 4982857.447852389886975, 3894392.363779542036355 ], [ 4982852.32025383040309, 3894367.227092267479748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982641.110528643243015, 3904731.722347973380238 ], [ 4982655.1553909573704, 3904760.156715974677354 ], [ 4982600.671389397233725, 3904786.613891098182648 ], [ 4982586.915268656797707, 3904757.816078501287848 ], [ 4982641.110528643243015, 3904731.722347973380238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982355.736402411945164, 3898656.272948593366891 ], [ 4982340.659249885939062, 3898700.298458131495863 ], [ 4982261.51436704210937, 3898673.537168580107391 ], [ 4982272.242174657061696, 3898642.246305534616113 ], [ 4982320.017026194371283, 3898658.376550026703626 ], [ 4982324.654295827262104, 3898645.642521887551993 ], [ 4982355.736402411945164, 3898656.272948593366891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981974.828284789808095, 3905475.222181538119912 ], [ 4981989.177866423502564, 3905496.37426389940083 ], [ 4981954.282913083210588, 3905519.963986593298614 ], [ 4981939.933316706679761, 3905498.811922553461045 ], [ 4981974.828284789808095, 3905475.222181538119912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981868.057868334464729, 3916677.53828998003155 ], [ 4981863.735542920418084, 3916679.713342544622719 ], [ 4981871.182045782916248, 3916696.116198336239904 ], [ 4981800.880230726674199, 3916728.001459284685552 ], [ 4981790.282380992546678, 3916705.037099380977452 ], [ 4981822.840391851961613, 3916690.180988213978708 ], [ 4981807.947314695455134, 3916657.37530578346923 ], [ 4981850.013533009216189, 3916638.171052763704211 ], [ 4981868.057868334464729, 3916677.53828998003155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981784.462207727134228, 3906512.204799183178693 ], [ 4981698.242592595517635, 3906568.451182767748833 ], [ 4981657.781329290941358, 3906507.18599131796509 ], [ 4981646.535482595674694, 3906514.443354560993612 ], [ 4981629.604578322730958, 3906488.916055305860937 ], [ 4981766.287751600146294, 3906399.647034579887986 ], [ 4981848.930966692976654, 3906525.094737794715911 ], [ 4981810.001456301659346, 3906550.86035388847813 ], [ 4981784.462207727134228, 3906512.204799183178693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981741.304495806805789, 3906369.731947645079345 ], [ 4981574.049371898174286, 3906481.50863480893895 ], [ 4981537.890398407354951, 3906427.53592921141535 ], [ 4981521.741469682194293, 3906438.423665220383555 ], [ 4981492.469137902371585, 3906395.026301342993975 ], [ 4981544.952024335041642, 3906360.187334248330444 ], [ 4981537.777293965220451, 3906349.61140509089455 ], [ 4981563.154164941050112, 3906332.554144739639014 ], [ 4981576.641433325596154, 3906352.975818518549204 ], [ 4981682.185238376259804, 3906282.5713528576307 ], [ 4981741.304495806805789, 3906369.731947645079345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981016.265024336054921, 3907928.052120129577816 ], [ 4981046.137403220869601, 3907960.16223781183362 ], [ 4981012.381950108334422, 3907991.038395454641432 ], [ 4980982.796675731427968, 3907959.293085398152471 ], [ 4981016.265024336054921, 3907928.052120129577816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980907.821175960823894, 3904898.960384577512741 ], [ 4980873.226472790353, 3904917.090192310512066 ], [ 4980855.161395333707333, 3904882.821731389034539 ], [ 4980894.0810815859586, 3904862.152577641420066 ], [ 4980906.412131237797439, 3904885.120249886997044 ], [ 4980901.799229770898819, 3904887.658931872341782 ], [ 4980907.821175960823894, 3904898.960384577512741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980825.483945133164525, 3903851.899267559405416 ], [ 4980830.401126693934202, 3903842.078617970459163 ], [ 4980857.439040096476674, 3903855.975574774667621 ], [ 4980839.798160587437451, 3903889.800683080218732 ], [ 4980795.214668205939233, 3903866.761572694405913 ], [ 4980807.65036584623158, 3903842.756450144108385 ], [ 4980825.483945133164525, 3903851.899267559405416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980799.316341043449938, 3899415.99707257701084 ], [ 4980759.824930069036782, 3899431.20308849401772 ], [ 4980748.368969016708434, 3899402.04728294769302 ], [ 4980787.861222833395004, 3899386.477121705189347 ], [ 4980799.316341043449938, 3899415.99707257701084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980781.211519579403102, 3901868.377975682262331 ], [ 4980797.853334093466401, 3901896.0888063730672 ], [ 4980769.592927889898419, 3901913.140365212224424 ], [ 4980739.752958985045552, 3901863.18833784153685 ], [ 4980782.720005850307643, 3901837.430175702553242 ], [ 4980796.206104135140777, 3901859.672048435546458 ], [ 4980781.211519579403102, 3901868.377975682262331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980635.907022285275161, 3903113.385250668041408 ], [ 4980620.005028731189668, 3903142.116492093540728 ], [ 4980592.104770778678358, 3903127.125483756419271 ], [ 4980607.719575684517622, 3903098.029460459481925 ], [ 4980635.907022285275161, 3903113.385250668041408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980381.808961282484233, 3916242.726047727745026 ], [ 4980348.998630374670029, 3916241.561435729730874 ], [ 4980350.518704715184867, 3916204.787214930634946 ], [ 4980383.040447470732033, 3916206.315327651798725 ], [ 4980381.808961282484233, 3916242.726047727745026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980213.039850292727351, 3907499.878480112180114 ], [ 4980236.456875029020011, 3907456.598132088780403 ], [ 4980258.600722597911954, 3907468.663119378034025 ], [ 4980251.084288391284645, 3907482.483641307335347 ], [ 4980274.954056712798774, 3907495.280696847010404 ], [ 4980258.765497788786888, 3907524.739857763983309 ], [ 4980213.039850292727351, 3907499.878480112180114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980207.270857806317508, 3903698.693028502631932 ], [ 4980170.455992184579372, 3903678.220924003515393 ], [ 4980194.162620320916176, 3903635.669531237799674 ], [ 4980238.743812911212444, 3903660.164160063955933 ], [ 4980236.720059490762651, 3903663.801032476127148 ], [ 4980256.278547286987305, 3903674.403782535810024 ], [ 4980240.955618088133633, 3903702.044133502990007 ], [ 4980213.920427841134369, 3903686.691279402934015 ], [ 4980207.270857806317508, 3903698.693028502631932 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980194.983978557400405, 3904574.038352950941771 ], [ 4980215.187243012711406, 3904552.96304031368345 ], [ 4980207.141244132071733, 3904545.298621790483594 ], [ 4980224.747336626052856, 3904526.766540247015655 ], [ 4980247.736693719401956, 3904548.300770287401974 ], [ 4980243.118201445788145, 3904553.388474127743393 ], [ 4980258.06074361409992, 3904567.622416269499809 ], [ 4980224.869074858725071, 3904602.506192495115101 ], [ 4980194.983978557400405, 3904574.038352950941771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980173.541181241162121, 3900563.450109851546586 ], [ 4980144.717341994866729, 3900574.310855782125145 ], [ 4980132.117187631316483, 3900541.511478354688734 ], [ 4980137.593960338272154, 3900539.338693008758128 ], [ 4980129.289046146906912, 3900517.836782672908157 ], [ 4980152.636158628389239, 3900509.148801684845239 ], [ 4980173.541181241162121, 3900563.450109851546586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980033.874860934913158, 3906876.091521615162492 ], [ 4980043.473001253791153, 3906832.052529246546328 ], [ 4980075.994153274223208, 3906839.042217910289764 ], [ 4980072.213575345464051, 3906856.148153208196163 ], [ 4980093.51094373036176, 3906860.564370193518698 ], [ 4980087.692512702196836, 3906887.861541729886085 ], [ 4980033.874860934913158, 3906876.091521615162492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979998.620971166528761, 3900347.501785585191101 ], [ 4979974.705722187645733, 3900352.547351100947708 ], [ 4979969.859024125151336, 3900329.960656990297139 ], [ 4979994.061497966758907, 3900325.279845685698092 ], [ 4979998.620971166528761, 3900347.501785585191101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979940.386278205551207, 3903275.352269128896296 ], [ 4979958.510089478455484, 3903283.766877715010196 ], [ 4979947.80509842094034, 3903306.683770011179149 ], [ 4979929.681299294345081, 3903298.269168529193848 ], [ 4979940.386278205551207, 3903275.352269128896296 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979872.004500409588218, 3905580.156160573475063 ], [ 4979822.413625739514828, 3905609.542702491395175 ], [ 4979719.417733998037875, 3905436.355764871928841 ], [ 4979769.008814397267997, 3905406.969036001246423 ], [ 4979872.004500409588218, 3905580.156160573475063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979862.857431292533875, 3904493.202923071570694 ], [ 4979886.486582914367318, 3904485.607707641087472 ], [ 4979887.917627721093595, 3904489.616278196219355 ], [ 4979922.20994484052062, 3904478.038916123565286 ], [ 4979933.367909710854292, 3904511.199258924461901 ], [ 4979875.445713052526116, 3904530.735941431950778 ], [ 4979862.857431292533875, 3904493.202923071570694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979853.903803518041968, 3901336.165170631371439 ], [ 4979828.248024668544531, 3901347.397298187017441 ], [ 4979830.826447486877441, 3901353.593144177924842 ], [ 4979814.683107278309762, 3901360.84058028459549 ], [ 4979794.622130780480802, 3901315.64463722333312 ], [ 4979812.20624125096947, 3901308.03619768936187 ], [ 4979808.480605619959533, 3901299.653068484272808 ], [ 4979832.983662951737642, 3901288.782540533225983 ], [ 4979853.903803518041968, 3901336.165170631371439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979830.716557507403195, 3899818.417576825246215 ], [ 4979786.071507243439555, 3899820.140960180200636 ], [ 4979784.985300119966269, 3899789.915754892863333 ], [ 4979829.917614194564521, 3899788.557126353494823 ], [ 4979830.716557507403195, 3899818.417576825246215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979691.975977901369333, 3909182.852861084975302 ], [ 4979668.312211630865932, 3909208.29068668326363 ], [ 4979638.141390033997595, 3909180.915152807720006 ], [ 4979675.658733431249857, 3909139.849717995617539 ], [ 4979699.220380540937185, 3909161.384791894815862 ], [ 4979685.367588059976697, 3909176.648232077248394 ], [ 4979691.975977901369333, 3909182.852861084975302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979708.386463767848909, 3899387.384785988368094 ], [ 4979735.771337798796594, 3899376.520446290727705 ], [ 4979750.096633470617235, 3899411.1440201071091 ], [ 4979722.71099666878581, 3899422.372474232222885 ], [ 4979708.386463767848909, 3899387.384785988368094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979665.476878269575536, 3905347.390284573659301 ], [ 4979571.532412649132311, 3905381.050485455896705 ], [ 4979550.349126855842769, 3905323.471691533457488 ], [ 4979644.582506417296827, 3905289.447913428768516 ], [ 4979665.476878269575536, 3905347.390284573659301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979408.47222366835922, 3897433.53930900990963 ], [ 4979418.277150298468769, 3897428.098574261181056 ], [ 4979413.973995439708233, 3897420.078400908503681 ], [ 4979457.230153464712203, 3897396.50358177954331 ], [ 4979489.650855937972665, 3897455.19874924281612 ], [ 4979467.157520709559321, 3897467.530445436015725 ], [ 4979459.124160846695304, 3897452.94784440798685 ], [ 4979428.556478288024664, 3897469.631649662274867 ], [ 4979408.47222366835922, 3897433.53930900990963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979376.774129404686391, 3903565.796528558246791 ], [ 4979364.913155156187713, 3903590.895943836774677 ], [ 4979285.801770100370049, 3903553.947706433013082 ], [ 4979297.663473073393106, 3903528.484127098694444 ], [ 4979376.774129404686391, 3903565.796528558246791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979276.623762657865882, 3909803.527195514179766 ], [ 4979289.216635411605239, 3909838.147012994159013 ], [ 4979239.658601930364966, 3909856.246643132995814 ], [ 4979223.630519104190171, 3909812.516115754377097 ], [ 4979246.104790249839425, 3909804.189565097447485 ], [ 4979249.252038663253188, 3909813.299679148942232 ], [ 4979276.623762657865882, 3909803.527195514179766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979239.426879622042179, 3900890.228507371153682 ], [ 4979267.138118080794811, 3900860.793716612271965 ], [ 4979301.05162765737623, 3900893.27458924241364 ], [ 4979266.702347862534225, 3900929.249370386358351 ], [ 4979249.745212513022125, 3900913.191014519426972 ], [ 4979256.3840356701985, 3900906.286856496240944 ], [ 4979239.426879622042179, 3900890.228507371153682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979102.08561509475112, 3912242.478299611713737 ], [ 4979117.664531017653644, 3912226.854118249379098 ], [ 4979147.251991765573621, 3912256.412668770644814 ], [ 4979131.960949214175344, 3912272.037453506607562 ], [ 4979102.08561509475112, 3912242.478299611713737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978970.851856422610581, 3908875.058442690875381 ], [ 4978952.906815089285374, 3908919.079941149801016 ], [ 4978925.86677344981581, 3908908.097904855385423 ], [ 4978944.099687769077718, 3908864.077006866689771 ], [ 4978970.851856422610581, 3908875.058442690875381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978787.246431447565556, 3901440.186665830668062 ], [ 4978740.269071748480201, 3901456.472026248462498 ], [ 4978734.258677452802658, 3901438.980885425582528 ], [ 4978734.546667085960507, 3901438.981501406058669 ], [ 4978725.101412417367101, 3901411.65148134669289 ], [ 4978771.790850992314517, 3901395.365478474181145 ], [ 4978787.246431447565556, 3901440.186665830668062 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978761.708600176498294, 3905298.831945760641247 ], [ 4978771.415439953096211, 3905337.814823313616216 ], [ 4978743.757643233984709, 3905344.674137520138174 ], [ 4978746.898578694090247, 3905357.061338827945292 ], [ 4978721.545167462900281, 3905363.561474868562073 ], [ 4978714.120824543759227, 3905334.415053988806903 ], [ 4978719.882897415198386, 3905332.970849408302456 ], [ 4978714.459386703558266, 3905310.747212033253163 ], [ 4978761.708600176498294, 3905298.831945760641247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978277.196126647293568, 3904027.344108386896551 ], [ 4978278.720937299542129, 3903987.292881490197033 ], [ 4978306.363001403398812, 3903988.443950718268752 ], [ 4978304.838149609044194, 3904028.495176068041474 ], [ 4978277.196126647293568, 3904027.344108386896551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978258.609785296022892, 3897991.472213662229478 ], [ 4978297.798401745036244, 3897983.544494912028313 ], [ 4978300.079429478384554, 3897994.473241058178246 ], [ 4978321.979497787542641, 3897989.786040120292455 ], [ 4978324.5439025266096, 3898002.900171079207212 ], [ 4978334.917494826950133, 3898000.737419180106372 ], [ 4978342.613773045130074, 3898038.623302939813584 ], [ 4978332.528994066640735, 3898040.42253506090492 ], [ 4978335.379867972806096, 3898054.265536196064204 ], [ 4978315.209551034495234, 3898058.228138204198331 ], [ 4978317.204085647128522, 3898068.428017728030682 ], [ 4978288.389147254638374, 3898074.192938639316708 ], [ 4978276.988635865971446, 3898017.364441777113825 ], [ 4978264.310072105377913, 3898019.886456914711744 ], [ 4978258.609785296022892, 3897991.472213662229478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978221.886585765518248, 3909333.359380078501999 ], [ 4978203.097114781849086, 3909369.004546441137791 ], [ 4978164.272409599274397, 3909348.894978353288025 ], [ 4978183.06184296682477, 3909313.249785278458148 ], [ 4978221.886585765518248, 3909333.359380078501999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978219.030527061782777, 3909594.072337151505053 ], [ 4978225.958713482134044, 3909585.347842876333743 ], [ 4978242.917144595645368, 3909598.492589011322707 ], [ 4978235.700281610712409, 3909607.580599435605109 ], [ 4978245.186374494805932, 3909614.519242979586124 ], [ 4978224.111614170484245, 3909641.784499681554735 ], [ 4978166.336701855063438, 3909597.601985685992986 ], [ 4978187.700112087652087, 3909569.9731634426862 ], [ 4978219.030527061782777, 3909594.072337151505053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978199.07220315746963, 3907736.225913902744651 ], [ 4978228.180910841561854, 3907722.814729592762887 ], [ 4978247.384421022608876, 3907764.002410039305687 ], [ 4978218.563669957220554, 3907777.414184338413179 ], [ 4978199.07220315746963, 3907736.225913902744651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978195.733578542247415, 3904556.254488322883844 ], [ 4978201.141467198729515, 3904586.124740143306553 ], [ 4978156.203380908817053, 3904594.040435321629047 ], [ 4978151.083400102332234, 3904564.170802120584995 ], [ 4978195.733578542247415, 3904556.254488322883844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977872.111960574053228, 3904399.358204041142017 ], [ 4977863.819482773542404, 3904371.666734726633877 ], [ 4977930.956755327992141, 3904351.416892676148564 ], [ 4977939.249170326627791, 3904379.108382356353104 ], [ 4977872.111960574053228, 3904399.358204041142017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977763.581085426732898, 3911092.973834946285933 ], [ 4977797.608370698057115, 3911066.099588074255735 ], [ 4977817.706755058839917, 3911091.631212535314262 ], [ 4977783.679481853730977, 3911118.505434381309897 ], [ 4977763.581085426732898, 3911092.973834946285933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977742.131438023410738, 3908013.094288159161806 ], [ 4977712.726951820775867, 3908030.510834710672498 ], [ 4977684.610314003191888, 3907983.114558735396713 ], [ 4977714.014833653345704, 3907965.697981935925782 ], [ 4977742.131438023410738, 3908013.094288159161806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977703.216953265480697, 3908308.688000440597534 ], [ 4977657.388616904616356, 3908332.26035859901458 ], [ 4977643.911602564156055, 3908306.014534165617079 ], [ 4977690.027888020500541, 3908282.442758184857666 ], [ 4977703.216953265480697, 3908308.688000440597534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977606.381088010966778, 3904510.223866725340486 ], [ 4977632.601193846203387, 3904502.63210454583168 ], [ 4977644.896985769271851, 3904543.804773810785264 ], [ 4977618.388196463696659, 3904551.760050143115222 ], [ 4977606.381088010966778, 3904510.223866725340486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977581.69872432667762, 3908179.530084847938269 ], [ 4977595.464544064365327, 3908205.412349017336965 ], [ 4977555.111888875253499, 3908226.447436828166246 ], [ 4977541.346041169017553, 3908200.565193004440516 ], [ 4977581.69872432667762, 3908179.530084847938269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977569.174030266702175, 3913878.914139213506132 ], [ 4977524.515107159502804, 3913898.483767382334918 ], [ 4977503.602262737229466, 3913850.374319579452276 ], [ 4977541.057961916550994, 3913834.066765116062015 ], [ 4977552.518811644054949, 3913859.580141064710915 ], [ 4977559.433474812656641, 3913856.681564895436168 ], [ 4977569.174030266702175, 3913878.914139213506132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977458.363056547939777, 3909606.671384071931243 ], [ 4977494.681410116143525, 3909586.355957048479468 ], [ 4977511.031605592928827, 3909615.156673837453127 ], [ 4977474.425376646220684, 3909635.471476642880589 ], [ 4977458.363056547939777, 3909606.671384071931243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977360.554299691691995, 3908328.361642142292112 ], [ 4977374.032339823432267, 3908354.243193993810564 ], [ 4977333.104251096025109, 3908375.277414368465543 ], [ 4977319.626182219944894, 3908349.395882710814476 ], [ 4977360.554299691691995, 3908328.361642142292112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977331.766561188735068, 3909016.147824737709016 ], [ 4977306.97756609134376, 3909029.933131891768426 ], [ 4977273.416814295575023, 3908970.145391135010868 ], [ 4977297.917938059195876, 3908956.359452936798334 ], [ 4977331.766561188735068, 3909016.147824737709016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977341.717921834439039, 3900799.173662918619812 ], [ 4977309.154571128077805, 3900808.573121236171573 ], [ 4977291.998549522832036, 3900749.18403161643073 ], [ 4977324.273968930356205, 3900739.783951975405216 ], [ 4977341.717921834439039, 3900799.173662918619812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977169.710007702931762, 3908445.214417570736259 ], [ 4977151.556238655932248, 3908452.459290424827486 ], [ 4977143.249137573875487, 3908432.050591777078807 ], [ 4977161.402918132022023, 3908424.805713403038681 ], [ 4977169.710007702931762, 3908445.214417570736259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977090.249291392043233, 3900405.752994772512466 ], [ 4977062.00631841365248, 3900414.797597020864487 ], [ 4977047.125535954721272, 3900368.88623799290508 ], [ 4977075.368552076630294, 3900359.841620364226401 ], [ 4977090.249291392043233, 3900405.752994772512466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976899.381950804963708, 3912047.019356149248779 ], [ 4976882.083755543455482, 3912059.364060039632022 ], [ 4976875.195092260837555, 3912049.51819809153676 ], [ 4976859.050674157217145, 3912060.772906024008989 ], [ 4976840.966488296166062, 3912035.610284713562578 ], [ 4976874.696996445767581, 3912012.01144244056195 ], [ 4976899.381950804963708, 3912047.019356149248779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976817.613405328243971, 3902167.21706406539306 ], [ 4976828.016896615736187, 3902149.760287278797477 ], [ 4976845.561954980716109, 3902160.356376484967768 ], [ 4976835.158456355333328, 3902177.813146594911814 ], [ 4976817.613405328243971, 3902167.21706406539306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976783.529693913646042, 3908625.7514244671911 ], [ 4976771.481758040376008, 3908604.242710097692907 ], [ 4976815.00705233681947, 3908579.935811684001237 ], [ 4976823.32640671916306, 3908594.518316196743399 ], [ 4976832.550167215056717, 3908589.439541207160801 ], [ 4976845.459538948722184, 3908612.042462702374905 ], [ 4976805.392983544617891, 3908634.535801204387099 ], [ 4976796.500817692838609, 3908618.495587786193937 ], [ 4976783.529693913646042, 3908625.7514244671911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976732.554954390972853, 3892030.392386350780725 ], [ 4976740.964441484771669, 3892003.828337075654417 ], [ 4976750.177331620827317, 3892006.760384796652943 ], [ 4976757.135863562114537, 3891985.291149291209877 ], [ 4976749.951630497351289, 3891976.537225694861263 ], [ 4976766.111044718883932, 3891963.826080019120127 ], [ 4976776.476310402154922, 3891966.760516272857785 ], [ 4976792.346899525262415, 3891954.412918709684163 ], [ 4976803.265776354819536, 3891968.27237386489287 ], [ 4976800.364551320672035, 3891978.097857596352696 ], [ 4976817.892194397747517, 3892000.345938082318753 ], [ 4976790.767279552295804, 3892021.773489656858146 ], [ 4976777.262370347976685, 3892004.631538382731378 ], [ 4976765.663551518693566, 3892041.020469245500863 ], [ 4976732.554954390972853, 3892030.392386350780725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976677.359038692899048, 3902589.319481298793107 ], [ 4976731.709320857189596, 3902626.937137175351381 ], [ 4976709.756949280388653, 3902658.935365753713995 ], [ 4976655.406701385043561, 3902621.317753544077277 ], [ 4976677.359038692899048, 3902589.319481298793107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976644.341033991426229, 3909245.581810296047479 ], [ 4976705.749184118583798, 3909204.925636139232665 ], [ 4976723.831653854809701, 3909231.908777336589992 ], [ 4976662.423537782393396, 3909272.564910845831037 ], [ 4976644.341033991426229, 3909245.581810296047479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976629.588512190617621, 3912212.142483320087194 ], [ 4976596.143343770876527, 3912237.19875633250922 ], [ 4976577.481033333577216, 3912213.127518675290048 ], [ 4976610.926964541897178, 3912187.707091071642935 ], [ 4976629.588512190617621, 3912212.142483320087194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976597.378794196993113, 3912755.36305110855028 ], [ 4976635.717087590135634, 3912730.316860380582511 ], [ 4976653.50937185715884, 3912757.299420097377151 ], [ 4976615.171100226230919, 3912782.345585850533098 ], [ 4976597.378794196993113, 3912755.36305110855028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976528.841290757060051, 3903390.830495523288846 ], [ 4976547.868205706588924, 3903380.673964156769216 ], [ 4976549.875745262950659, 3903384.683539360295981 ], [ 4976579.568767068907619, 3903369.087011576164514 ], [ 4976603.66665602941066, 3903413.560655019711703 ], [ 4976586.081084540113807, 3903422.991852323058993 ], [ 4976588.94952090177685, 3903428.459728483576328 ], [ 4976574.823331081308424, 3903436.077400566078722 ], [ 4976571.668423560447991, 3903429.880673567764461 ], [ 4976554.947527968324721, 3903438.949540012981743 ], [ 4976528.841290757060051, 3903390.830495523288846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976485.288431102409959, 3901322.840626108460128 ], [ 4976482.653110254555941, 3901343.95479879854247 ], [ 4976506.262354599311948, 3901346.916375553701073 ], [ 4976502.45559448748827, 3901377.495540257077664 ], [ 4976478.84637660626322, 3901374.533966791816056 ], [ 4976477.67421228159219, 3901384.36309100035578 ], [ 4976447.154727408662438, 3901380.659084434155375 ], [ 4976454.768877356313169, 3901319.136611033696681 ], [ 4976485.288431102409959, 3901322.840626108460128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976293.645423213019967, 3900541.751122773159295 ], [ 4976295.14433469902724, 3900512.987870648503304 ], [ 4976341.219785450957716, 3900515.267059895209968 ], [ 4976340.008823991753161, 3900544.030899819917977 ], [ 4976293.645423213019967, 3900541.751122773159295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975861.421393280848861, 3905186.454737408086658 ], [ 4975871.454475631006062, 3905208.687161692883819 ], [ 4975864.537033334374428, 3905211.95028687780723 ], [ 4975872.276874087750912, 3905229.080207554157823 ], [ 4975837.691184503026307, 3905244.667590120341629 ], [ 4975819.631006876938045, 3905204.940555268432945 ], [ 4975861.421393280848861, 3905186.454737408086658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975765.856945592910051, 3897928.404170963913202 ], [ 4975778.084098469465971, 3897864.342080143280327 ], [ 4975810.90745744202286, 3897870.234767798800021 ], [ 4975798.967517144978046, 3897934.661557018291205 ], [ 4975765.856945592910051, 3897928.404170963913202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975742.568533160723746, 3903589.496857080142945 ], [ 4975685.774206499569118, 3903621.425308780279011 ], [ 4975667.410727519541979, 3903588.616298766806722 ], [ 4975686.149946821853518, 3903578.094443125184625 ], [ 4975679.549575165845454, 3903566.793003281578422 ], [ 4975694.25285092741251, 3903558.447767167817801 ], [ 4975699.991531419567764, 3903568.655070701148361 ], [ 4975736.027988074347377, 3903548.700888379476964 ], [ 4975752.095800836570561, 3903577.499844213947654 ], [ 4975739.699203774333, 3903584.393200542777777 ], [ 4975742.568533160723746, 3903589.496857080142945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975712.891312071122229, 3906297.119396206457168 ], [ 4975743.442233115434647, 3906282.616058819927275 ], [ 4975759.498788674362004, 3906316.148762627039105 ], [ 4975728.947896976023912, 3906330.652082059066743 ], [ 4975712.891312071122229, 3906297.119396206457168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975654.091593823395669, 3897648.889978661201894 ], [ 4975672.619160087779164, 3897602.682973690796643 ], [ 4975712.047647193074226, 3897618.420423403382301 ], [ 4975693.520023833028972, 3897664.627401615958661 ], [ 4975654.091593823395669, 3897648.889978661201894 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975541.290890797972679, 3906719.16521140281111 ], [ 4975542.500010537914932, 3906690.76535805920139 ], [ 4975578.777404963970184, 3906691.931078212801367 ], [ 4975577.568246926181018, 3906720.330929930321872 ], [ 4975541.290890797972679, 3906719.16521140281111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975489.571165123023093, 3908947.550174281932414 ], [ 4975501.965964681468904, 3908940.292548771947622 ], [ 4975495.940455089323223, 3908930.084672633558512 ], [ 4975521.018725457601249, 3908915.205883936956525 ], [ 4975548.566054192371666, 3908960.778104315511882 ], [ 4975511.092286462895572, 3908983.27861450240016 ], [ 4975489.571165123023093, 3908947.550174281932414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975351.688210424035788, 3902355.758953925222158 ], [ 4975327.69942660164088, 3902398.678135102149099 ], [ 4975302.385073549114168, 3902384.790229528676718 ], [ 4975326.086581925861537, 3902341.506317084655166 ], [ 4975351.688210424035788, 3902355.758953925222158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975072.751088060438633, 3905173.211293321102858 ], [ 4975077.431950602680445, 3905136.443372919689864 ], [ 4975110.826123888604343, 3905140.515733909793198 ], [ 4975113.459276778623462, 3905119.765508226584643 ], [ 4975139.080271857790649, 3905123.094061160925776 ], [ 4975131.764697168953717, 3905181.340455028694123 ], [ 4975121.401433939114213, 3905179.863150687888265 ], [ 4975119.645997943356633, 3905193.696634413208812 ], [ 4975098.342850034125149, 3905191.105015188455582 ], [ 4975100.38768420740962, 3905176.543846755754203 ], [ 4975072.751088060438633, 3905173.211293321102858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974943.150628621689975, 3910227.471273931674659 ], [ 4974899.329440514557064, 3910257.970887417439371 ], [ 4974878.085527593269944, 3910227.705453540198505 ], [ 4974905.474137750454247, 3910208.461099706590176 ], [ 4974911.789660168811679, 3910217.577032564207911 ], [ 4974928.222260249778628, 3910206.321742626372725 ], [ 4974943.150628621689975, 3910227.471273931674659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974884.052364005707204, 3905074.518462932202965 ], [ 4974843.706589014269412, 3905090.823889860883355 ], [ 4974823.075058873742819, 3905040.168454975355417 ], [ 4974862.557043554261327, 3905023.861274083610624 ], [ 4974870.579715449362993, 3905043.904520108364522 ], [ 4974882.683832184411585, 3905038.83083281526342 ], [ 4974890.133490284904838, 3905057.416414776351303 ], [ 4974878.894686309620738, 3905061.763562420383096 ], [ 4974884.052364005707204, 3905074.518462932202965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974694.897817580029368, 3910270.672223827335984 ], [ 4974683.944772052578628, 3910277.204827834386379 ], [ 4974698.580327331088483, 3910300.902571063023061 ], [ 4974661.107690575532615, 3910324.132548281457275 ], [ 4974645.610602034255862, 3910299.340714542660862 ], [ 4974638.980341046117246, 3910303.697131742723286 ], [ 4974624.918354385532439, 3910281.09295886894688 ], [ 4974652.590280856005847, 3910264.033706612884998 ], [ 4974656.033440518192947, 3910269.866675275377929 ], [ 4974683.993293533101678, 3910252.808027764316648 ], [ 4974694.897817580029368, 3910270.672223827335984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974627.128923026844859, 3907429.211890539620072 ], [ 4974594.563708243891597, 3907444.076636698096991 ], [ 4974577.936310231685638, 3907407.630417216569185 ], [ 4974610.501559866592288, 3907392.765651245601475 ], [ 4974627.128923026844859, 3907429.211890539620072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974626.302240430377424, 3897405.775344949681312 ], [ 4974641.458043878898025, 3897461.153195803985 ], [ 4974592.465823043137789, 3897474.528734383173287 ], [ 4974584.45727895386517, 3897446.11070697195828 ], [ 4974564.284176048822701, 3897451.532636283896863 ], [ 4974556.848772059194744, 3897424.57227409305051 ], [ 4974626.302240430377424, 3897405.775344949681312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974550.107018332928419, 3907067.111687713768333 ], [ 4974522.467968821525574, 3907065.964480170048773 ], [ 4974522.776834096759558, 3907055.405262870714068 ], [ 4974496.577418746426702, 3907054.260936263483018 ], [ 4974498.693227538838983, 3907003.650774197652936 ], [ 4974552.819734483957291, 3907005.942883998621255 ], [ 4974550.107018332928419, 3907067.111687713768333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974325.59837752673775, 3899008.444733429234475 ], [ 4974285.243850233964622, 3899024.750938791316003 ], [ 4974267.75822186563164, 3898982.477330742403865 ], [ 4974308.113520665094256, 3898965.806970692239702 ], [ 4974325.59837752673775, 3899008.444733429234475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974235.766923226416111, 3895047.991324880626053 ], [ 4974254.987121907062829, 3895088.447581438347697 ], [ 4974217.21640944108367, 3895106.215474897995591 ], [ 4974213.201539753936231, 3895097.104328765999526 ], [ 4974202.244592345319688, 3895102.544684901367873 ], [ 4974193.92606411036104, 3895084.685958479996771 ], [ 4974202.575685766525567, 3895080.697571596130729 ], [ 4974188.232314163818955, 3895050.446579853072762 ], [ 4974214.758051162585616, 3895038.118429411202669 ], [ 4974222.504051706753671, 3895054.155386485625058 ], [ 4974235.766923226416111, 3895047.991324880626053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974166.962064286693931, 3898246.007464966271073 ], [ 4974185.01864464674145, 3898291.195152978412807 ], [ 4974175.79472707118839, 3898294.818290143739432 ], [ 4974180.094282577745616, 3898305.386529908049852 ], [ 4974164.816865984350443, 3898311.546661730390042 ], [ 4974160.230715761892498, 3898300.249600001610816 ], [ 4974138.035728627815843, 3898308.945041649509221 ], [ 4974123.991356585174799, 3898273.960920084267855 ], [ 4974147.916659682057798, 3898264.176481880713254 ], [ 4974144.190266172401607, 3898255.065895883366466 ], [ 4974166.962064286693931, 3898246.007464966271073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974131.653534647077322, 3899503.279692629352212 ], [ 4974098.811043913476169, 3899507.948789966292679 ], [ 4974096.536315158940852, 3899493.014971944037825 ], [ 4974081.268180643208325, 3899494.80560804810375 ], [ 4974078.996303843334317, 3899478.415275774430484 ], [ 4974093.401131432503462, 3899476.25881067244336 ], [ 4974089.140386687591672, 3899446.027613681741059 ], [ 4974117.084614974446595, 3899442.441260550636798 ], [ 4974120.775753950700164, 3899469.394168163649738 ], [ 4974126.825412206351757, 3899468.67780834576115 ], [ 4974131.653534647077322, 3899503.279692629352212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974130.477012695744634, 3896734.068152650259435 ], [ 4974176.300474052317441, 3896721.413795931264758 ], [ 4974185.452505896799266, 3896754.567627280484885 ], [ 4974179.688124268315732, 3896756.376925005111843 ], [ 4974187.411416267044842, 3896783.70186784490943 ], [ 4974144.757921982556581, 3896795.634183947462589 ], [ 4974137.320480527356267, 3896769.402205011341721 ], [ 4974139.914270502515137, 3896768.679048883728683 ], [ 4974130.477012695744634, 3896734.068152650259435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974067.990285608917475, 3898337.209457179531455 ], [ 4974045.220028600655496, 3898345.539714999496937 ], [ 4974030.609519158490002, 3898305.456708069890738 ], [ 4974084.220486954785883, 3898285.899008825421333 ], [ 4974097.113528159447014, 3898320.516715963371098 ], [ 4974081.260808998718858, 3898326.311634048819542 ], [ 4974085.844840577803552, 3898338.701068629976362 ], [ 4974070.568895724602044, 3898344.132996711414307 ], [ 4974067.990285608917475, 3898337.209457179531455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973993.81417647562921, 3904432.249017995316535 ], [ 4974037.640948124229908, 3904403.204557551071048 ], [ 4974067.213295279070735, 3904447.686702378094196 ], [ 4974036.073841905221343, 3904468.016878906171769 ], [ 4974030.618389714509249, 3904459.995271036867052 ], [ 4974017.931109736673534, 3904468.709510054904968 ], [ 4973993.81417647562921, 3904432.249017995316535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973912.53184753190726, 3903737.326936738099903 ], [ 4973964.698512961156666, 3903714.488944231998175 ], [ 4973984.194405088201165, 3903758.222950662951916 ], [ 4973940.961847989819944, 3903777.437108459416777 ], [ 4973931.501132760196924, 3903755.934813177213073 ], [ 4973922.27840820979327, 3903759.922179229557514 ], [ 4973912.53184753190726, 3903737.326936738099903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973903.811832412146032, 3903631.71177614480257 ], [ 4973877.296128816902637, 3903643.312037250958383 ], [ 4973865.828819473274052, 3903617.072130968794227 ], [ 4973858.047314051538706, 3903620.334078064654022 ], [ 4973844.284795398823917, 3903589.720113142393529 ], [ 4973878.582769748754799, 3903574.493746661115438 ], [ 4973903.811832412146032, 3903631.71177614480257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973780.417600397951901, 3911805.509646207559854 ], [ 4973853.116832543164492, 3911874.108922166284174 ], [ 4973810.711879523470998, 3911918.450167316012084 ], [ 4973738.011948334053159, 3911850.215135949198157 ], [ 4973780.417600397951901, 3911805.509646207559854 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973756.222745438106358, 3909307.875290118623525 ], [ 4973750.457523915916681, 3909311.505349516868591 ], [ 4973740.408583356998861, 3909297.284546314738691 ], [ 4973747.039657390676439, 3909292.563778941053897 ], [ 4973733.259315336123109, 3909272.509567496366799 ], [ 4973756.899604588747025, 3909256.169792538974434 ], [ 4973796.233038356527686, 3909312.323100369423628 ], [ 4973771.439730403013527, 3909329.388852374162525 ], [ 4973756.222745438106358, 3909307.875290118623525 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973731.876197407022119, 3898479.65421908441931 ], [ 4973667.602700225077569, 3898502.468997659627348 ], [ 4973656.716825222596526, 3898472.224968773778528 ], [ 4973720.991096161305904, 3898449.04603583458811 ], [ 4973731.876197407022119, 3898479.65421908441931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973669.850908469408751, 3897349.637733572628349 ], [ 4973673.863492230884731, 3897359.841196209192276 ], [ 4973711.335543248802423, 3897345.713238489814103 ], [ 4973725.091486902907491, 3897381.424819899257272 ], [ 4973710.678460581228137, 3897387.222764851525426 ], [ 4973708.958789954893291, 3897382.849849788472056 ], [ 4973660.244987167418003, 3897401.325448299758136 ], [ 4973643.908734056167305, 3897359.418661867268384 ], [ 4973669.850908469408751, 3897349.637733572628349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973622.713388574309647, 3897889.550570928957313 ], [ 4973603.687959385104477, 3897897.524367891252041 ], [ 4973606.268150164745748, 3897903.719603803008795 ], [ 4973571.38846889231354, 3897918.216887120623142 ], [ 4973559.060690823942423, 3897888.698362309020013 ], [ 4973612.677818498574197, 3897866.226698397193104 ], [ 4973622.713388574309647, 3897889.550570928957313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973393.292071855627, 3903756.341642344370484 ], [ 4973422.295220102183521, 3903798.273032993543893 ], [ 4973386.828272545710206, 3903822.60099753504619 ], [ 4973361.844595162197948, 3903786.867670765146613 ], [ 4973376.838524619117379, 3903776.701074399519712 ], [ 4973372.53035590890795, 3903770.86661735875532 ], [ 4973393.292071855627, 3903756.341642344370484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973385.977140462957323, 3905300.24485131027177 ], [ 4973395.826029825955629, 3905270.041036304086447 ], [ 4973440.717719882726669, 3905284.693453139159828 ], [ 4973431.15744053106755, 3905314.533680845052004 ], [ 4973385.977140462957323, 3905300.24485131027177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973395.582481562159956, 3897231.854444452561438 ], [ 4973426.75879175029695, 3897196.594346471596509 ], [ 4973471.039795573800802, 3897236.006362342275679 ], [ 4973439.864179696887732, 3897270.902281288523227 ], [ 4973395.582481562159956, 3897231.854444452561438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973349.075932431034744, 3911410.677729130722582 ], [ 4973387.296503082849085, 3911445.70864476216957 ], [ 4973362.198466095142066, 3911472.605793121270835 ], [ 4973323.977195388637483, 3911437.939044257625937 ], [ 4973349.075932431034744, 3911410.677729130722582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973353.400829320773482, 3897000.914329755119979 ], [ 4973361.977705359458923, 3897034.066769599448889 ], [ 4973379.269095658324659, 3897029.366610063705593 ], [ 4973386.419873187318444, 3897055.233696167822927 ], [ 4973332.817547831684351, 3897069.330845936201513 ], [ 4973324.811077473685145, 3897039.092558354139328 ], [ 4973310.401480802334845, 3897043.070074474904686 ], [ 4973305.540819690562785, 3897024.490040177945048 ], [ 4973321.391315876506269, 3897020.151182881556451 ], [ 4973318.530695587396622, 3897009.950006677769125 ], [ 4973353.400829320773482, 3897000.914329755119979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973072.581353672780097, 3892209.886496457736939 ], [ 4973101.676188363693655, 3892211.03498098673299 ], [ 4973099.266143411397934, 3892265.649651230312884 ], [ 4973070.459455681964755, 3892264.501724559813738 ], [ 4973072.581353672780097, 3892209.886496457736939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972751.00866661220789, 3903217.645398396532983 ], [ 4972684.981167740188539, 3903260.486421328037977 ], [ 4972667.465848722495139, 3903233.871329018380493 ], [ 4972733.493384816683829, 3903191.030263744294643 ], [ 4972751.00866661220789, 3903217.645398396532983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971695.574817703105509, 3897549.772804485633969 ], [ 4971710.196057570166886, 3897586.213237969204783 ], [ 4971667.824094541370869, 3897602.883702903054655 ], [ 4971653.202806429006159, 3897566.443292112555355 ], [ 4971695.574817703105509, 3897549.772804485633969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971653.486222244799137, 3908163.385758737102151 ], [ 4971666.680553313344717, 3908189.99216640368104 ], [ 4971643.049481372348964, 3908201.6000671912916 ], [ 4971613.506630716845393, 3908141.462856980506331 ], [ 4971623.881912073120475, 3908136.020323172211647 ], [ 4971620.153997422195971, 3908128.002425420098007 ], [ 4971650.413387207314372, 3908113.129747432656586 ], [ 4971652.995087331160903, 3908118.232441354077309 ], [ 4971668.557011500000954, 3908110.614861554466188 ], [ 4971686.627502252347767, 3908147.06199863832444 ], [ 4971653.486222244799137, 3908163.385758737102151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971287.330429728142917, 3902864.586170273367316 ], [ 4971268.30040190834552, 3902877.295331319328398 ], [ 4971253.940309643745422, 3902856.513138818088919 ], [ 4971273.25831990595907, 3902843.804503797087818 ], [ 4971287.330429728142917, 3902864.586170273367316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971273.285580352880061, 3892459.547920963261276 ], [ 4971276.153565287590027, 3892466.471704497002065 ], [ 4971297.200095504522324, 3892457.771784558426589 ], [ 4971317.278629656881094, 3892504.781783893238753 ], [ 4971278.644698281772435, 3892521.095659537706524 ], [ 4971276.922962810844183, 3892517.451167651452124 ], [ 4971251.263737457804382, 3892527.963168351911008 ], [ 4971230.038178403861821, 3892478.038055118639022 ], [ 4971273.285580352880061, 3892459.547920963261276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970937.524292762391269, 3900794.217648254707456 ], [ 4970935.583710487931967, 3900753.431436547078192 ], [ 4970955.169525428675115, 3900752.375259763095528 ], [ 4970954.623161660507321, 3900736.352504398673773 ], [ 4970975.360304824076593, 3900735.662602161057293 ], [ 4970975.087128855288029, 3900727.651224327739328 ], [ 4970995.824279287829995, 3900726.961337882559747 ], [ 4970996.933133138343692, 3900750.267746542580426 ], [ 4971006.437708730809391, 3900749.921210210304707 ], [ 4971008.655393986031413, 3900796.534029426053166 ], [ 4970972.36446428950876, 3900798.287517937365919 ], [ 4970972.087246218696237, 3900792.460915823932737 ], [ 4970937.524292762391269, 3900794.217648254707456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970922.885913256555796, 3895935.967488372232765 ], [ 4970929.26807001978159, 3895911.582604667171836 ], [ 4970967.84776059538126, 3895921.84955827658996 ], [ 4970961.754293100908399, 3895945.870837373193353 ], [ 4970922.885913256555796, 3895935.967488372232765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970801.101207586936653, 3900590.416804175823927 ], [ 4970791.554292671382427, 3900613.703558628913015 ], [ 4970654.282765791751444, 3900557.010644510854036 ], [ 4970663.828912167809904, 3900534.087971378583461 ], [ 4970801.101207586936653, 3900590.416804175823927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970583.99668462947011, 3894444.233695189468563 ], [ 4970589.726565727032721, 3894461.358283297158778 ], [ 4970614.226750227622688, 3894453.392419155221432 ], [ 4970625.970513956621289, 3894489.826906799804419 ], [ 4970579.852862661704421, 3894504.67153829568997 ], [ 4970579.566803246736526, 3894503.578625757712871 ], [ 4970546.13135311473161, 3894514.441168677061796 ], [ 4970535.245009059086442, 3894481.649579518474638 ], [ 4970568.104366894811392, 3894470.785966301336884 ], [ 4970561.802352688275278, 3894451.475558062084019 ], [ 4970583.99668462947011, 3894444.233695189468563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970342.525848244316876, 3912926.727785168681294 ], [ 4970363.292181362397969, 3912904.917745583225042 ], [ 4970373.063005491159856, 3912914.038942408747971 ], [ 4970352.584537890739739, 3912935.8495007250458 ], [ 4970342.525848244316876, 3912926.727785168681294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970170.024012156762183, 3906640.028549895621836 ], [ 4970140.61831474211067, 3906660.002282302360982 ], [ 4970136.884451568126678, 3906654.897642833180726 ], [ 4970108.055324229411781, 3906674.508328108582646 ], [ 4970089.963164675049484, 3906648.257943909615278 ], [ 4970096.305651781149209, 3906643.899890584405512 ], [ 4970081.946677813306451, 3906623.118276617489755 ], [ 4970115.100152934901416, 3906600.602372793946415 ], [ 4970121.70608548168093, 3906609.717682872433215 ], [ 4970140.44499877654016, 3906597.007156977895647 ], [ 4970170.024012156762183, 3906640.028549895621836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969836.546295095235109, 3905552.490299923345447 ], [ 4969903.406362918205559, 3905521.295955517329276 ], [ 4969915.740555141121149, 3905547.53576569724828 ], [ 4969848.880538124591112, 3905578.730079920962453 ], [ 4969836.546295095235109, 3905552.490299923345447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969759.740483846515417, 3903596.237750709522516 ], [ 4969770.357770885340869, 3903617.012394798919559 ], [ 4969746.434226347133517, 3903629.349671027623117 ], [ 4969735.816925740800798, 3903608.575036231428385 ], [ 4969759.740483846515417, 3903596.237750709522516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969747.496063826605678, 3903679.237558636814356 ], [ 4969714.63186427205801, 3903699.205485033802688 ], [ 4969699.988956372253597, 3903675.146423215512186 ], [ 4969733.140483321622014, 3903655.543128727469593 ], [ 4969747.496063826605678, 3903679.237558636814356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969571.995878106914461, 3903910.872990116942674 ], [ 4969575.442268564365804, 3903915.977024701423943 ], [ 4969598.507486041635275, 3903900.360869371332228 ], [ 4969614.879449946805835, 3903923.694728578906506 ], [ 4969570.478148204274476, 3903954.201878051739186 ], [ 4969550.659771895967424, 3903925.764013565145433 ], [ 4969571.995878106914461, 3903910.872990116942674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969275.434694856405258, 3899213.783519187942147 ], [ 4969235.162863915786147, 3899185.673567113466561 ], [ 4969255.374556080438197, 3899157.307504484429955 ], [ 4969312.330371916294098, 3899197.099481003824621 ], [ 4969297.315257241018116, 3899218.556316833477467 ], [ 4969280.343287159688771, 3899206.873816682491452 ], [ 4969275.434694856405258, 3899213.783519187942147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969262.165892265737057, 3892451.511577538680285 ], [ 4969303.981309521012008, 3892427.553789837751538 ], [ 4969328.680534231476486, 3892470.201011440251023 ], [ 4969283.981053370051086, 3892495.97425194690004 ], [ 4969282.25774501170963, 3892493.058143022935838 ], [ 4969259.763667341321707, 3892506.126599264796823 ], [ 4969240.234311647713184, 3892472.227757967077196 ], [ 4969265.899953871965408, 3892457.708434873260558 ], [ 4969262.165892265737057, 3892451.511577538680285 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969180.948900638148189, 3896800.525827276520431 ], [ 4969218.340081672184169, 3896830.815289168618619 ], [ 4969190.338602765463293, 3896865.357653888408095 ], [ 4969146.332274449057877, 3896829.594497252255678 ], [ 4969164.807663498446345, 3896806.687254590447992 ], [ 4969171.710868605412543, 3896812.161505644675344 ], [ 4969180.948900638148189, 3896800.525827276520431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968989.165549212135375, 3912980.365217117592692 ], [ 4969014.485452651977539, 3912987.328756055328995 ], [ 4969004.05366819165647, 3913025.908336671069264 ], [ 4968978.73315152246505, 3913019.308939513284713 ], [ 4968989.165549212135375, 3912980.365217117592692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968814.321708036586642, 3911090.568729269783944 ], [ 4968799.092095151543617, 3911074.519926432520151 ], [ 4968843.21353866532445, 3911032.358644637279212 ], [ 4968884.018578100018203, 3911074.670368694234639 ], [ 4968848.83708681166172, 3911108.108234197366983 ], [ 4968823.549541863612831, 3911081.845880286768079 ], [ 4968814.321708036586642, 3911090.568729269783944 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968826.432380707003176, 3890906.103578140027821 ], [ 4968839.64255737606436, 3890930.159432154148817 ], [ 4968813.111384495161474, 3890944.677620253525674 ], [ 4968799.613088941201568, 3890920.621269551105797 ], [ 4968791.827243011444807, 3890924.61291344370693 ], [ 4968760.237010362558067, 3890867.388913633767515 ], [ 4968792.247340094298124, 3890849.967334909830242 ], [ 4968811.775869256816804, 3890885.322327950969338 ], [ 4968823.599678367376328, 3890878.788935776334256 ], [ 4968835.948785821907222, 3890901.022621953394264 ], [ 4968826.432380707003176, 3890906.103578140027821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968584.34588257689029, 3898967.497975104954094 ], [ 4968546.890972162596881, 3898974.714642778970301 ], [ 4968537.472286157310009, 3898925.904634873848408 ], [ 4968550.437517106533051, 3898923.378537305630744 ], [ 4968546.728542499244213, 3898903.344854463357478 ], [ 4968571.218304974958301, 3898898.654268123675138 ], [ 4968584.34588257689029, 3898967.497975104954094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968496.271132317371666, 3913345.447792831808329 ], [ 4968533.411104872822762, 3913342.235937969759107 ], [ 4968536.234603540971875, 3913373.556374788749963 ], [ 4968499.094033476896584, 3913377.132358026690781 ], [ 4968496.271132317371666, 3913345.447792831808329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968103.858563794754446, 3892565.260890468023717 ], [ 4968102.124978887848556, 3892568.170899152290076 ], [ 4968054.926000447012484, 3892541.143159906379879 ], [ 4968076.309613708406687, 3892503.675137674901634 ], [ 4968146.532577796839178, 3892543.851700518745929 ], [ 4968126.594400309957564, 3892578.409158243797719 ], [ 4968103.858563794754446, 3892565.260890468023717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967866.396716716699302, 3895767.363274477422237 ], [ 4967872.112254512496293, 3895793.590504699852318 ], [ 4967885.944346159696579, 3895790.337333451025188 ], [ 4967889.94545968528837, 3895808.55074626673013 ], [ 4967846.144822533242404, 3895818.306280746590346 ], [ 4967836.13943381421268, 3895774.229279511142522 ], [ 4967866.396716716699302, 3895767.363274477422237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967762.068216276355088, 3903121.520373654551804 ], [ 4967763.538955898024142, 3903103.68049962259829 ], [ 4967745.399252686649561, 3903102.192585471086204 ], [ 4967746.573820172809064, 3903089.085901390761137 ], [ 4967726.130330435931683, 3903087.594014436006546 ], [ 4967729.951428997330368, 3903042.81250994419679 ], [ 4967787.538351870141923, 3903047.281742962542921 ], [ 4967783.711483356542885, 3903095.340408636257052 ], [ 4967790.910149888135493, 3903095.717005474027246 ], [ 4967788.557820467278361, 3903123.751019640360028 ], [ 4967762.068216276355088, 3903121.520373654551804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967660.436405433341861, 3902107.968374573159963 ], [ 4967631.604223808273673, 3902127.581662307027727 ], [ 4967608.048720771446824, 3902093.312725889030844 ], [ 4967636.593567501753569, 3902073.334786532446742 ], [ 4967660.436405433341861, 3902107.968374573159963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967552.063007374294102, 3895975.102041731122881 ], [ 4967558.920334436930716, 3896007.521375636104494 ], [ 4967503.883774560876191, 3896018.714631880167872 ], [ 4967497.314432117156684, 3895986.295807357411832 ], [ 4967552.063007374294102, 3895975.102041731122881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967487.14250595215708, 3913109.190120259299874 ], [ 4967491.11682634241879, 3913141.60482106404379 ], [ 4967415.680127177387476, 3913150.942542031407356 ], [ 4967411.705717199482024, 3913118.527852182742208 ], [ 4967487.14250595215708, 3913109.190120259299874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967401.458525565452874, 3899974.809777485672385 ], [ 4967370.360823716036975, 3899970.750963275320828 ], [ 4967375.611160324886441, 3899932.162160556297749 ], [ 4967406.708906061016023, 3899936.220980738289654 ], [ 4967401.458525565452874, 3899974.809777485672385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967220.663676739670336, 3901784.228560731280595 ], [ 4967228.653773724101484, 3901827.209653018973768 ], [ 4967243.058032679371536, 3901824.32125420961529 ], [ 4967248.195029930211604, 3901851.63984981039539 ], [ 4967196.052898346446455, 3901861.382186220027506 ], [ 4967191.486218704842031, 3901837.341751881409436 ], [ 4967197.823764378204942, 3901836.260194092057645 ], [ 4967189.262628566473722, 3901790.365089054219425 ], [ 4967220.663676739670336, 3901784.228560731280595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967015.567365536466241, 3905871.614846448879689 ], [ 4967045.451290376484394, 3905908.078920886386186 ], [ 4967005.083643581718206, 3905940.781999943777919 ], [ 4966975.199700554832816, 3905904.317969661671668 ], [ 4967015.567365536466241, 3905871.614846448879689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966748.392772627994418, 3892578.954442165791988 ], [ 4966790.487044944427907, 3892558.998635145369917 ], [ 4966808.572830265387893, 3892596.53453424712643 ], [ 4966745.143120893277228, 3892626.649804095271975 ], [ 4966734.234121274203062, 3892604.055365267209709 ], [ 4966755.56961730401963, 3892593.895866043400019 ], [ 4966748.392772627994418, 3892578.954442165791988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966551.10145300719887, 3899217.064607121050358 ], [ 4966508.117552166804671, 3899258.503029754851013 ], [ 4966482.24111554864794, 3899231.877970498986542 ], [ 4966510.223778357729316, 3899204.979447034187615 ], [ 4966517.699252679944038, 3899212.638768855016679 ], [ 4966532.699879505671561, 3899198.46296215057373 ], [ 4966551.10145300719887, 3899217.064607121050358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966411.786041665822268, 3906364.719949565362185 ], [ 4966423.830416603945196, 3906393.870731882750988 ], [ 4966394.152153184637427, 3906406.20133265061304 ], [ 4966382.108363235369325, 3906376.686432736925781 ], [ 4966411.786041665822268, 3906364.719949565362185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966408.477289661765099, 3899251.052832915447652 ], [ 4966434.405812470242381, 3899246.726847315672785 ], [ 4966440.68026659078896, 3899283.514539933297783 ], [ 4966414.463765543885529, 3899287.840035601053387 ], [ 4966408.477289661765099, 3899251.052832915447652 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966028.710183479823172, 3906608.775359576568007 ], [ 4966043.056513804942369, 3906639.022206584922969 ], [ 4966004.443045262247324, 3906657.164453540928662 ], [ 4965990.096074973233044, 3906627.281757549848408 ], [ 4966028.710183479823172, 3906608.775359576568007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965927.90210481826216, 3895366.442293919622898 ], [ 4965966.499618205241859, 3895367.598859251011163 ], [ 4965965.272898943163455, 3895412.384721284266561 ], [ 4965939.06178152281791, 3895411.248746324330568 ], [ 4965939.38070828281343, 3895392.678682644851506 ], [ 4965927.283027629368007, 3895392.294444341212511 ], [ 4965927.90210481826216, 3895366.442293919622898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965512.378381891176105, 3899654.110805694945157 ], [ 4965524.121361078694463, 3899693.820339345373213 ], [ 4965491.560236038640141, 3899703.598238040693104 ], [ 4965479.817812303081155, 3899663.524589168373495 ], [ 4965512.378381891176105, 3899654.110805694945157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965342.915211144834757, 3899898.891905144788325 ], [ 4965330.76520515140146, 3899931.643698321655393 ], [ 4965297.664829273708165, 3899919.209002625197172 ], [ 4965309.526197290048003, 3899886.820851878728718 ], [ 4965342.915211144834757, 3899898.891905144788325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965317.908090064302087, 3897057.909085734281689 ], [ 4965295.693473576568067, 3897079.720453777350485 ], [ 4965235.304750632494688, 3897019.176049734000117 ], [ 4965257.231330676004291, 3896997.364161009434611 ], [ 4965317.908090064302087, 3897057.909085734281689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965238.177682964131236, 3900015.606097837444395 ], [ 4965263.502435324713588, 3900027.663856476079673 ], [ 4965244.139957019127905, 3900068.050616979598999 ], [ 4965218.815234114415944, 3900055.992876289878041 ], [ 4965238.177682964131236, 3900015.606097837444395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965076.57079150993377, 3891556.981246336363256 ], [ 4965143.392902676016092, 3891566.921725599095225 ], [ 4965137.860243930481374, 3891602.961411198601127 ], [ 4965113.953702804632485, 3891599.645240614190698 ], [ 4965109.292502352036536, 3891631.316812855191529 ], [ 4965079.050272553227842, 3891626.533824439626187 ], [ 4965084.29356518574059, 3891591.221911515109241 ], [ 4965071.620345677249134, 3891589.380609687883407 ], [ 4965076.57079150993377, 3891556.981246336363256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965062.216527937911451, 3899655.922149859368801 ], [ 4965047.745480705983937, 3899699.230058257468045 ], [ 4965020.399519158527255, 3899690.08225586777553 ], [ 4965034.87052717898041, 3899646.774332982953638 ], [ 4965062.216527937911451, 3899655.922149859368801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964952.261719772592187, 3902804.015739889349788 ], [ 4964964.709798787720501, 3902763.981589134782553 ], [ 4964994.356451004743576, 3902773.133101605344564 ], [ 4964981.620357083156705, 3902813.166770233307034 ], [ 4964952.261719772592187, 3902804.015739889349788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964883.42691908031702, 3901567.680019542109221 ], [ 4964871.860107070766389, 3901596.791691633407027 ], [ 4964818.617165153846145, 3901575.221619304269552 ], [ 4964830.183338199742138, 3901546.474054311867803 ], [ 4964883.42691908031702, 3901567.680019542109221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964706.757030259817839, 3894523.666219825856388 ], [ 4964712.851699387654662, 3894495.638134135864675 ], [ 4964748.847330816090107, 3894503.343065257184207 ], [ 4964742.752625865861773, 3894531.371142918244004 ], [ 4964706.757030259817839, 3894523.666219825856388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964691.329191902652383, 3898009.452512548770756 ], [ 4964688.591604477725923, 3898099.388157732319087 ], [ 4964652.302165367640555, 3898098.23714606417343 ], [ 4964655.039631473831832, 3898008.301497237291187 ], [ 4964691.329191902652383, 3898009.452512548770756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964410.79200188908726, 3906795.112234833650291 ], [ 4964443.641446657478809, 3906779.507354346103966 ], [ 4964456.555077190510929, 3906806.473865916952491 ], [ 4964423.705657812766731, 3906822.078730881214142 ], [ 4964410.79200188908726, 3906795.112234833650291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964306.132951304316521, 3904366.187339752912521 ], [ 4964299.435245065018535, 3904412.785405166447163 ], [ 4964247.326541349291801, 3904405.419354266487062 ], [ 4964253.153291561640799, 3904363.189456978347152 ], [ 4964279.351666272617877, 3904366.872705883346498 ], [ 4964280.222537861205637, 3904362.504525830503553 ], [ 4964306.132951304316521, 3904366.187339752912521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964229.020598880946636, 3901447.190703214146197 ], [ 4964207.709954437799752, 3901446.792501514777541 ], [ 4964207.698314025066793, 3901454.075094238389283 ], [ 4964171.989363963715732, 3901452.925649481359869 ], [ 4964173.197732485830784, 3901417.606914806645364 ], [ 4964229.929406244307756, 3901419.154103227425367 ], [ 4964229.020598880946636, 3901447.190703214146197 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964218.875962940976024, 3901848.082283545285463 ], [ 4964215.697064562700689, 3901854.995683656074107 ], [ 4964192.675123354420066, 3901844.399099151138216 ], [ 4964212.614213472232223, 3901801.827680422458798 ], [ 4964253.190488778054714, 3901820.463238934986293 ], [ 4964236.717652764171362, 3901856.485820323228836 ], [ 4964218.875962940976024, 3901848.082283545285463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963896.776728764176369, 3900660.139617642387748 ], [ 4963913.551129692234099, 3900615.742333429399878 ], [ 4963944.636452899314463, 3900627.443868201691657 ], [ 4963927.862007833085954, 3900671.841133317444474 ], [ 4963896.776728764176369, 3900660.139617642387748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963798.882507247850299, 3896459.381620188243687 ], [ 4963796.754971593618393, 3896529.655242255423218 ], [ 4963754.990573913790286, 3896528.496781227644533 ], [ 4963757.118000460788608, 3896458.223155898042023 ], [ 4963798.882507247850299, 3896459.381620188243687 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963746.045586759224534, 3904916.954651686828583 ], [ 4963791.286389560438693, 3904896.63488025823608 ], [ 4963803.626257273368537, 3904923.236004822421819 ], [ 4963735.909107773564756, 3904953.715887602884322 ], [ 4963718.404461476951838, 3904915.454428525175899 ], [ 4963740.880868841893971, 3904905.294282339513302 ], [ 4963746.045586759224534, 3904916.954651686828583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963660.377853418700397, 3907745.757996910251677 ], [ 4963685.450650385580957, 3907730.868173288647085 ], [ 4963697.225548565387726, 3907749.821633819490671 ], [ 4963671.86426595877856, 3907765.075123098678887 ], [ 4963660.377853418700397, 3907745.757996910251677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963489.403579275123775, 3899651.583715558983386 ], [ 4963476.976867340505123, 3899678.509821014013141 ], [ 4963432.368124105036259, 3899657.684354311786592 ], [ 4963449.995542814955115, 3899620.206619310658425 ], [ 4963467.839525435119867, 3899628.245505185797811 ], [ 4963462.926215070299804, 3899639.161692636553198 ], [ 4963489.403579275123775, 3899651.583715558983386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962929.084397534839809, 3896956.148070465773344 ], [ 4962959.035795236006379, 3896959.107564895413816 ], [ 4962956.110786384902894, 3896987.869262101594359 ], [ 4962926.159420416690409, 3896984.909770872909576 ], [ 4962929.084397534839809, 3896956.148070465773344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962891.392280269414186, 3893768.502478508278728 ], [ 4962906.978063368238509, 3893749.22779451450333 ], [ 4962922.514197726733983, 3893761.996383581310511 ], [ 4962930.595453814603388, 3893752.177432122640312 ], [ 4962956.777241443283856, 3893773.337512645404786 ], [ 4962933.110188656486571, 3893802.431116553023458 ], [ 4962891.392280269414186, 3893768.502478508278728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962833.095429196953773, 3903517.991060367785394 ], [ 4962816.910682123154402, 3903555.835645300336182 ], [ 4962780.650480914860964, 3903540.486081965267658 ], [ 4962796.547218547202647, 3903502.64103034697473 ], [ 4962833.095429196953773, 3903517.991060367785394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962386.661411461420357, 3900374.128310641739517 ], [ 4962419.16648590285331, 3900399.667202271521091 ], [ 4962400.121639403514564, 3900423.670636378694326 ], [ 4962367.61657599825412, 3900398.131767404731363 ], [ 4962386.661411461420357, 3900374.128310641739517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962235.398765006102622, 3895692.2806276679039 ], [ 4962282.607482462190092, 3895713.108015961479396 ], [ 4962259.195359960198402, 3895765.506906251423061 ], [ 4962211.986716573126614, 3895744.679558447096497 ], [ 4962235.398765006102622, 3895692.2806276679039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962155.759594346396625, 3896160.793761427979916 ], [ 4962225.16429562587291, 3896170.366830676328391 ], [ 4962221.087805790826678, 3896199.126838170457631 ], [ 4962211.296468615531921, 3896197.655398742761463 ], [ 4962209.549884153530002, 3896209.669007024727762 ], [ 4962197.454184707254171, 3896208.194061466027051 ], [ 4962194.835705484263599, 3896225.304154066368937 ], [ 4962163.156796495430171, 3896221.250496259424835 ], [ 4962168.400370045565069, 3896182.660762961488217 ], [ 4962153.137258633039892, 3896180.45275735668838 ], [ 4962155.759594346396625, 3896160.793761427979916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962013.39349773619324, 3896777.412761613726616 ], [ 4962065.221271850168705, 3896790.235939976759255 ], [ 4962057.6858114823699, 3896820.811378062702715 ], [ 4962045.017063746228814, 3896817.51498264586553 ], [ 4962039.510614329017699, 3896839.71852676011622 ], [ 4962000.064186801202595, 3896829.827200661413372 ], [ 4962003.250833939760923, 3896817.815757805481553 ], [ 4961991.445643822662532, 3896814.884826418943703 ], [ 4961995.502478257752955, 3896798.869277081917971 ], [ 4962007.019635651260614, 3896801.799773480277508 ], [ 4962013.39349773619324, 3896777.412761613726616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961943.5780586656183, 3899132.862378915771842 ], [ 4961931.15320938732475, 3899159.425061525776982 ], [ 4961866.970644497312605, 3899129.833463359624147 ], [ 4961879.395443893969059, 3899103.27075153728947 ], [ 4961943.5780586656183, 3899132.862378915771842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961926.13680431433022, 3908560.917142725549638 ], [ 4961983.162410285323858, 3908548.623042606748641 ], [ 4961992.02533427067101, 3908589.78340822365135 ], [ 4961982.520892834290862, 3908591.953790511470288 ], [ 4961986.524070834740996, 3908610.166465188376606 ], [ 4961949.371186181902885, 3908618.121068189386278 ], [ 4961942.508708447217941, 3908586.795312486123294 ], [ 4961932.428443946875632, 3908588.964840400964022 ], [ 4961926.13680431433022, 3908560.917142725549638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961726.007496260106564, 3908389.108704519458115 ], [ 4961699.478187910281122, 3908416.378657453227788 ], [ 4961678.778452005237341, 3908396.320239593274891 ], [ 4961683.969143055379391, 3908390.866069546435028 ], [ 4961645.731721972115338, 3908354.031216924544424 ], [ 4961671.395646173506975, 3908327.852306196466088 ], [ 4961713.658401659689844, 3908368.334577023983002 ], [ 4961709.333091150037944, 3908372.69764821510762 ], [ 4961726.007496260106564, 3908389.108704519458115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961639.096853187307715, 3893414.479318110272288 ], [ 4961632.670580776408315, 3893473.458527004811913 ], [ 4961613.660364957526326, 3893471.609333962667733 ], [ 4961612.491664091125131, 3893482.531442952342331 ], [ 4961593.481453323736787, 3893480.682264179456979 ], [ 4961594.652332356199622, 3893468.303642518352717 ], [ 4961585.435023553669453, 3893467.561553976498544 ], [ 4961591.277939047664404, 3893413.315132830291986 ], [ 4961611.151877786032856, 3893415.529735400807112 ], [ 4961611.445966860279441, 3893411.524760396685451 ], [ 4961639.096853187307715, 3893414.479318110272288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961155.655538566410542, 3896358.469236452598125 ], [ 4961150.131354458630085, 3896393.053329138550907 ], [ 4961154.450928930193186, 3896393.788000014144927 ], [ 4961150.088655648753047, 3896421.819488912820816 ], [ 4961098.828806496225297, 3896413.732603681273758 ], [ 4961104.643123760819435, 3896377.692412686534226 ], [ 4961099.459953524172306, 3896376.59234017226845 ], [ 4961103.531977577134967, 3896350.01693112263456 ], [ 4961155.655538566410542, 3896358.469236452598125 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961123.872925576753914, 3896424.329494468402117 ], [ 4961117.196083609946072, 3896459.276014810893685 ], [ 4961084.080312284640968, 3896453.036720470990986 ], [ 4961090.757112708874047, 3896418.090192019939423 ], [ 4961123.872925576753914, 3896424.329494468402117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961020.951703677885234, 3899210.133426207583398 ], [ 4961057.209588790312409, 3899231.670771972741932 ], [ 4961041.330044525675476, 3899257.864619785919785 ], [ 4961005.072720699943602, 3899235.963165878783911 ], [ 4961020.951703677885234, 3899210.133426207583398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960887.355323478579521, 3891758.031889628153294 ], [ 4960860.274010006338358, 3891758.356105379294604 ], [ 4960859.781511507928371, 3891701.551348853856325 ], [ 4960916.825193405151367, 3891700.907194062601775 ], [ 4960917.33207696955651, 3891747.88050595857203 ], [ 4960887.081724620424211, 3891748.200019218958914 ], [ 4960887.355323478579521, 3891758.031889628153294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960197.030385541729629, 3900541.279088393319398 ], [ 4960209.172802988439798, 3900509.253221964929253 ], [ 4960256.090842589735985, 3900527.163657173514366 ], [ 4960243.948377230204642, 3900559.189502751920372 ], [ 4960197.030385541729629, 3900541.279088393319398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960072.281870955601335, 3893392.508095470257103 ], [ 4960074.576486432924867, 3893399.429855270311236 ], [ 4960095.326361125335097, 3893393.633769726380706 ], [ 4960103.640038910321891, 3893421.683697110041976 ], [ 4960050.323990551754832, 3893436.900102323386818 ], [ 4960040.29231577552855, 3893401.565137456636876 ], [ 4960072.281870955601335, 3893392.508095470257103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960065.107252287678421, 3893772.648183045443147 ], [ 4960022.456873251125216, 3893783.510501357726753 ], [ 4960010.711560357362032, 3893737.977462007198483 ], [ 4960053.362006802111864, 3893727.115125346928835 ], [ 4960065.107252287678421, 3893772.648183045443147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959121.750764822587371, 3905162.018439660780132 ], [ 4959151.369014658033848, 3905190.826570074539632 ], [ 4959113.304277968592942, 3905230.099088688381016 ], [ 4959083.685518114827573, 3905201.655130117665976 ], [ 4959121.750764822587371, 3905162.018439660780132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958991.69930106215179, 3905909.397161431144923 ], [ 4959043.559028836898506, 3905887.986295226961374 ], [ 4959056.760299609042704, 3905919.32017030287534 ], [ 4959004.612680284306407, 3905940.730606881435961 ], [ 4958991.69930106215179, 3905909.397161431144923 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959013.756932199001312, 3889589.500698911957443 ], [ 4959030.837164567783475, 3889531.628355733584613 ], [ 4959072.308630348183215, 3889544.067009885329753 ], [ 4959054.940712003037333, 3889601.574794825166464 ], [ 4959013.756932199001312, 3889589.500698911957443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958871.58745523635298, 3901206.841961158439517 ], [ 4958871.297424257732928, 3901208.298076788429171 ], [ 4958898.939055480062962, 3901212.342218704521656 ], [ 4958893.703686411492527, 3901249.112056872341782 ], [ 4958817.4011634811759, 3901238.081379476934671 ], [ 4958823.21445085760206, 3901199.855813152622432 ], [ 4958871.58745523635298, 3901206.841961158439517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958743.907980125397444, 3905818.381543401628733 ], [ 4958719.981824525631964, 3905837.647135085426271 ], [ 4958669.390652867034078, 3905775.310164171271026 ], [ 4958693.028884135186672, 3905756.044126942288131 ], [ 4958743.907980125397444, 3905818.381543401628733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958349.228241317905486, 3905335.723814168479294 ], [ 4958316.367526150308549, 3905360.803527145180851 ], [ 4958270.3776776175946, 3905301.386725914664567 ], [ 4958303.526370801962912, 3905276.307354659307748 ], [ 4958349.228241317905486, 3905335.723814168479294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957537.220596073195338, 3901278.5615419219248 ], [ 4957558.601318360306323, 3901227.248032963369042 ], [ 4957589.974711020477116, 3901240.39912992855534 ], [ 4957568.594431259669363, 3901291.348484589252621 ], [ 4957537.220596073195338, 3901278.5615419219248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957326.112215667031705, 3899569.778406548313797 ], [ 4957294.718673913739622, 3899570.100417193491012 ], [ 4957294.185626426711679, 3899538.05626092851162 ], [ 4957325.57969434838742, 3899537.370120308827609 ], [ 4957326.112215667031705, 3899569.778406548313797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957126.906880305148661, 3898849.262745646759868 ], [ 4957136.447916478849947, 3898821.965743392705917 ], [ 4957202.661297200247645, 3898844.994410611689091 ], [ 4957189.940327937714756, 3898881.02625440992415 ], [ 4957155.682351696304977, 3898868.964182943571359 ], [ 4957158.574198636226356, 3898860.228929483797401 ], [ 4957126.906880305148661, 3898849.262745646759868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956618.526353443972766, 3905217.232261702418327 ], [ 4956574.417958826757967, 3905256.864549659658223 ], [ 4956554.002781334333122, 3905234.625713912770152 ], [ 4956563.804530624300241, 3905225.899443061556667 ], [ 4956551.440420429222286, 3905212.410341246984899 ], [ 4956592.377576742321253, 3905175.686895485967398 ], [ 4956609.917107057757676, 3905195.008925451897085 ], [ 4956603.574555553495884, 3905200.826680182944983 ], [ 4956618.526353443972766, 3905217.232261702418327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956439.701941103674471, 3895544.607391976285726 ], [ 4956464.443953355774283, 3895567.944057038519531 ], [ 4956431.560689936392009, 3895602.493269030470401 ], [ 4956406.818204831331968, 3895579.520762275904417 ], [ 4956439.701941103674471, 3895544.607391976285726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956292.985737565904856, 3898491.315359411761165 ], [ 4956305.406742561608553, 3898463.657694071531296 ], [ 4956333.328194902278483, 3898476.438665775582194 ], [ 4956309.354026666842401, 3898528.842071055434644 ], [ 4956267.615676221437752, 3898509.852913366630673 ], [ 4956279.168786251917481, 3898485.107143077068031 ], [ 4956292.985737565904856, 3898491.315359411761165 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955262.679116165265441, 3895801.624050321988761 ], [ 4955230.120255577377975, 3895808.86545694898814 ], [ 4955216.37253450974822, 3895746.581995359621942 ], [ 4955248.643416057340801, 3895739.340208032634109 ], [ 4955262.679116165265441, 3895801.624050321988761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955019.886943816207349, 3894627.73005145881325 ], [ 4955021.040566606447101, 3894626.639113932382315 ], [ 4955009.244631462730467, 3894614.972172728739679 ], [ 4955032.030874716117978, 3894591.696547425817698 ], [ 4955085.545972412452102, 3894643.106027336325496 ], [ 4955061.60564545635134, 3894667.836672091856599 ], [ 4955019.886943816207349, 3894627.73005145881325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954478.119338247925043, 3893398.484459418803453 ], [ 4954481.009548275731504, 3893390.841330399736762 ], [ 4954466.323977229185402, 3893385.725380574818701 ], [ 4954478.758049358613789, 3893347.871368382591754 ], [ 4954531.454381221905351, 3893365.414728024508804 ], [ 4954518.442289004102349, 3893404.724515585694462 ], [ 4954500.588799776509404, 3893398.876369608100504 ], [ 4954498.564163169823587, 3893405.428181130439043 ], [ 4954478.119338247925043, 3893398.484459418803453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954308.4323963932693, 3894812.187353732530028 ], [ 4954330.064277564175427, 3894790.002098940312862 ], [ 4954349.053878989070654, 3894808.231920282822102 ], [ 4954366.070990734733641, 3894790.774689071811736 ], [ 4954389.088479063473642, 3894813.014919305685908 ], [ 4954350.439482997171581, 3894852.657357701100409 ], [ 4954308.4323963932693, 3894812.187353732530028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954200.597672693431377, 3893718.576107196044177 ], [ 4954172.334028521552682, 3893745.122875347733498 ], [ 4954111.62915759999305, 3893680.961950731929392 ], [ 4954139.604290515184402, 3893654.778895464725792 ], [ 4954200.597672693431377, 3893718.576107196044177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953787.076999377459288, 3894783.149216880556196 ], [ 4953808.639674500562251, 3894817.767572352197021 ], [ 4953757.038081705570221, 3894849.748470671474934 ], [ 4953735.475365937687457, 3894815.130155940074474 ], [ 4953787.076999377459288, 3894783.149216880556196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953325.167987807653844, 3894664.616346745286137 ], [ 4953325.982209625653923, 3894706.492141521070153 ], [ 4953286.516444247215986, 3894707.537466745823622 ], [ 4953286.790619730949402, 3894719.189918398857117 ], [ 4953249.053677801974118, 3894719.873230069410056 ], [ 4953247.956475553102791, 3894673.62755387602374 ], [ 4953299.232402807101607, 3894672.960378381423652 ], [ 4953299.241953317075968, 3894664.949554104357958 ], [ 4953325.167987807653844, 3894664.616346745286137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952483.245988544076681, 3893351.669128634501249 ], [ 4952482.357647028751671, 3893372.423426921013743 ], [ 4952468.530418367125094, 3893372.04323798418045 ], [ 4952469.418749219737947, 3893351.288939242251217 ], [ 4952483.245988544076681, 3893351.669128634501249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952199.354613899253309, 3889465.364820955786854 ], [ 4952200.46936222910881, 3889498.137604212854058 ], [ 4952149.181920723058283, 3889500.263382528442889 ], [ 4952148.619494336657226, 3889488.246519431006163 ], [ 4952158.415914519689977, 3889487.893651257734746 ], [ 4952157.853491991758347, 3889475.876788062974811 ], [ 4952169.090505962260067, 3889475.525579813402146 ], [ 4952168.812856134027243, 3889466.422066128347069 ], [ 4952199.354613899253309, 3889465.364820955786854 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951683.69311520177871, 3900090.05739356065169 ], [ 4951687.114938179031014, 3900120.284062065184116 ], [ 4951644.485439456999302, 3900124.605380185414106 ], [ 4951641.351573145017028, 3900094.379042696673423 ], [ 4951683.69311520177871, 3900090.05739356065169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951687.161155249923468, 3892702.243140236008912 ], [ 4951715.676445806398988, 3892706.644980364479125 ], [ 4951717.416912109591067, 3892696.087227676529437 ], [ 4951749.100707191042602, 3892700.856822662986815 ], [ 4951747.359402621164918, 3892712.142829300835729 ], [ 4951758.592579323798418, 3892713.976216716691852 ], [ 4951754.237453539855778, 3892743.829808281268924 ], [ 4951682.228704517707229, 3892733.188474933151156 ], [ 4951687.161155249923468, 3892702.243140236008912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951407.489246224984527, 3892137.528966161888093 ], [ 4951445.741324533708394, 3892194.375921548344195 ], [ 4951420.658810930326581, 3892211.09766548499465 ], [ 4951421.521850554272532, 3892212.191019047051668 ], [ 4951402.782212477177382, 3892224.550358701962978 ], [ 4951398.467828491702676, 3892218.355338397435844 ], [ 4951386.935719255357981, 3892225.989104076754302 ], [ 4951361.337861556559801, 3892188.455202975776047 ], [ 4951394.492973715998232, 3892166.280529065988958 ], [ 4951385.289635513909161, 3892152.433334914967418 ], [ 4951407.489246224984527, 3892137.528966161888093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951142.788201324641705, 3890793.964491207152605 ], [ 4951109.364532246254385, 3890797.204503132030368 ], [ 4951102.246033934876323, 3890721.457968066912144 ], [ 4951135.669796284288168, 3890718.21794743463397 ], [ 4951142.788201324641705, 3890793.964491207152605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950708.481170692481101, 3894860.071795515250415 ], [ 4950698.357980605214834, 3894897.565980693791062 ], [ 4950664.088833298534155, 3894888.425239525269717 ], [ 4950660.907427000813186, 3894900.073883526492864 ], [ 4950639.021258902736008, 3894894.223885069135576 ], [ 4950644.806742124259472, 3894872.018347823061049 ], [ 4950614.568794514983892, 3894864.338593831751496 ], [ 4950621.2220254605636, 3894838.856839797925204 ], [ 4950639.652713239192963, 3894843.610658840276301 ], [ 4950642.255607324652374, 3894834.146153506357223 ], [ 4950680.268419376574457, 3894844.383351396769285 ], [ 4950677.955566146411002, 3894852.027526156976819 ], [ 4950708.481170692481101, 3894860.071795515250415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950571.227172555401921, 3890495.478389131836593 ], [ 4950616.173837646842003, 3890493.706803539767861 ], [ 4950617.01986326277256, 3890510.457614190876484 ], [ 4950625.375356578268111, 3890510.102613850962371 ], [ 4950626.500331958755851, 3890535.22867318475619 ], [ 4950619.873485269956291, 3890535.585561414714903 ], [ 4950620.715529497712851, 3890555.977648046333343 ], [ 4950585.564977437257767, 3890557.395784640219063 ], [ 4950584.160995606333017, 3890523.89447893993929 ], [ 4950572.347830908372998, 3890524.60984891327098 ], [ 4950571.227172555401921, 3890495.478389131836593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950309.589196784421802, 3894527.187991661019623 ], [ 4950309.869388074614108, 3894534.470870923716575 ], [ 4950322.544581178575754, 3894534.120446896646172 ], [ 4950323.668087704107165, 3894560.703066025394946 ], [ 4950259.427605237811804, 3894562.818439125083387 ], [ 4950258.311500800773501, 3894529.317383146844804 ], [ 4950309.589196784421802, 3894527.187991661019623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950142.461598268710077, 3891893.630280767101794 ], [ 4950186.8144286647439, 3891906.058342369738966 ], [ 4950179.006172924302518, 3891933.723687299527228 ], [ 4950134.653775807470083, 3891920.931510544847697 ], [ 4950142.461598268710077, 3891893.630280767101794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949856.850003132596612, 3890916.004911432042718 ], [ 4949868.955342452973127, 3890911.284129636362195 ], [ 4949881.023073403164744, 3890941.883733870461583 ], [ 4949848.165875964798033, 3890954.593246176838875 ], [ 4949839.259107714518905, 3890931.643706515897065 ], [ 4949860.010992514900863, 3890923.654963887296617 ], [ 4949856.850003132596612, 3890916.004911432042718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949842.383312812075019, 3890973.885882957372814 ], [ 4949808.665735648013651, 3890982.95324815902859 ], [ 4949797.473845761269331, 3890941.430764154996723 ], [ 4949831.191471179015934, 3890932.363385144155473 ], [ 4949842.383312812075019, 3890973.885882957372814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949582.286563688889146, 3890644.074680555146188 ], [ 4949622.050859996117651, 3890638.654692851472646 ], [ 4949628.34152074996382, 3890683.813202429097146 ], [ 4949588.576906139031053, 3890689.597308551892638 ], [ 4949582.286563688889146, 3890644.074680555146188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949565.430107965134084, 3894338.867542586289346 ], [ 4949587.605794471688569, 3894343.988712002523243 ], [ 4949578.054350335150957, 3894386.945840591564775 ], [ 4949555.878697478212416, 3894381.824678936041892 ], [ 4949565.430107965134084, 3894338.867542586289346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949256.805154313333333, 3890845.824706714134663 ], [ 4949258.213427571579814, 3890876.777055893559009 ], [ 4949225.080088285729289, 3890878.199072376359254 ], [ 4949223.671776962466538, 3890847.246724906843156 ], [ 4949256.805154313333333, 3890845.824706714134663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949222.464732870459557, 3889238.164486662950367 ], [ 4949241.709282822906971, 3889295.352561807725579 ], [ 4949213.175580478273332, 3889304.790191881358624 ], [ 4949194.219096924178302, 3889247.60243627987802 ], [ 4949222.464732870459557, 3889238.164486662950367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947596.119724318385124, 3890316.160576318390667 ], [ 4947621.771766959689558, 3890305.626016033813357 ], [ 4947614.298430152237415, 3890287.776420534122735 ], [ 4947635.338972472585738, 3890279.057991260662675 ], [ 4947652.871441145427525, 3890322.042292983271182 ], [ 4947606.467369610443711, 3890340.931414476595819 ], [ 4947596.119724318385124, 3890316.160576318390667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947467.221159061416984, 3897522.140589307527989 ], [ 4947457.135437590070069, 3897526.864436512347311 ], [ 4947446.212595398537815, 3897503.913635580334812 ], [ 4947450.534847068600357, 3897502.09720119042322 ], [ 4947442.773955027572811, 3897485.703813725616783 ], [ 4947478.218589899130166, 3897468.624293618835509 ], [ 4947504.951521092094481, 3897523.998063556849957 ], [ 4947501.493363951332867, 3897525.815333099104464 ], [ 4947517.01575537212193, 3897557.873886953108013 ], [ 4947490.504441291093826, 3897570.592522983439267 ], [ 4947467.221159061416984, 3897522.140589307527989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947105.324123627506196, 3891366.557516008615494 ], [ 4947106.79787970893085, 3891331.966763849835843 ], [ 4947134.742327944375575, 3891333.086037642322481 ], [ 4947132.980438410304487, 3891367.676510937511921 ], [ 4947105.324123627506196, 3891366.557516008615494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947096.631838788278401, 3891417.891221588477492 ], [ 4947092.565230462700129, 3891452.479483620263636 ], [ 4947054.540666952729225, 3891448.073423722293228 ], [ 4947053.380941301584244, 3891455.71900119446218 ], [ 4947036.09724001865834, 3891453.517650049645454 ], [ 4947034.35504091065377, 3891467.716975934803486 ], [ 4947006.412821549922228, 3891464.413039670325816 ], [ 4947013.381221817806363, 3891407.979858176317066 ], [ 4947096.631838788278401, 3891417.891221588477492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946636.532700921408832, 3890510.774089274927974 ], [ 4946667.656490141525865, 3890502.064424632117152 ], [ 4946676.271113940514624, 3890532.295187257230282 ], [ 4946645.147356893867254, 3890541.004842064809054 ], [ 4946636.532700921408832, 3890510.774089274927974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946269.932546131312847, 3892505.852554838638753 ], [ 4946309.395827955566347, 3892510.622978360392153 ], [ 4946305.621873626485467, 3892541.57036966830492 ], [ 4946297.268427051603794, 3892540.470200760290027 ], [ 4946295.23690661881119, 3892556.489955249242485 ], [ 4946264.127473197877407, 3892552.455580368172377 ], [ 4946269.932546131312847, 3892505.852554838638753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946126.554312743246555, 3892410.317882935982198 ], [ 4946132.643557153642178, 3892367.720506075769663 ], [ 4946122.849952146410942, 3892366.254930357448757 ], [ 4946125.749014273285866, 3892346.594684412702918 ], [ 4946137.559235635213554, 3892348.06212789285928 ], [ 4946140.459658925421536, 3892326.945371808949858 ], [ 4946170.4166853222996, 3892331.342662866227329 ], [ 4946166.647928296588361, 3892356.828150626271963 ], [ 4946171.832818411290646, 3892357.561213056091219 ], [ 4946168.93169873021543, 3892379.406222114339471 ], [ 4946162.018292418681085, 3892378.671558487229049 ], [ 4946156.79933481104672, 3892414.715425606817007 ], [ 4946126.554312743246555, 3892410.317882935982198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944430.422009176574647, 3891935.07110347552225 ], [ 4944475.359875407069921, 3891940.207681229803711 ], [ 4944472.166022904217243, 3891968.97104978421703 ], [ 4944481.960176754742861, 3891970.071895917411894 ], [ 4944479.347221489995718, 3891993.373843031469733 ], [ 4944424.615295741707087, 3891987.13642963161692 ], [ 4944430.422009176574647, 3891935.07110347552225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944317.911920642480254, 3891443.401346605736762 ], [ 4944316.73172948975116, 3891475.80773396557197 ], [ 4944289.939388701692224, 3891475.056504419539124 ], [ 4944290.831450841389596, 3891442.649869005195796 ], [ 4944317.911920642480254, 3891443.401346605736762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943471.104658756405115, 3892946.901860527694225 ], [ 4943498.472318846732378, 3892946.924495216459036 ], [ 4943498.739003984257579, 3892972.77783216163516 ], [ 4943471.082988888025284, 3892973.11908723693341 ], [ 4943471.104658756405115, 3892946.901860527694225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942948.250724080018699, 3890075.324828475248069 ], [ 4942959.804581500589848, 3890038.921377231832594 ], [ 4942998.977770917117596, 3890051.333380359690636 ], [ 4942987.135754476301372, 3890087.736582098994404 ], [ 4942948.250724080018699, 3890075.324828475248069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993679.434857019223273, 3911636.58532054675743 ], [ 4993702.950700758956373, 3911670.149029586464167 ], [ 4993681.030588270165026, 3911685.383537850808352 ], [ 4993657.514730637893081, 3911651.819847675971687 ], [ 4993679.434857019223273, 3911636.58532054675743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992755.636930668726563, 3907194.963375313673168 ], [ 4992759.740602338686585, 3907167.664347575046122 ], [ 4992783.341994144022465, 3907171.00436287233606 ], [ 4992778.949401726014912, 3907198.666750659700483 ], [ 4992755.636930668726563, 3907194.963375313673168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993075.092444532550871, 3910373.240146185737103 ], [ 4993117.725092390552163, 3910364.250819015782326 ], [ 4993124.833795768208802, 3910397.405973479151726 ], [ 4993082.201198058202863, 3910406.395289566367865 ], [ 4993075.092444532550871, 3910373.240146185737103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992133.998007060028613, 3912213.98478220263496 ], [ 4992134.962512108497322, 3912175.753282077610493 ], [ 4992202.032481310889125, 3912177.751003460492939 ], [ 4992200.779045037925243, 3912216.345872165635228 ], [ 4992133.998007060028613, 3912213.98478220263496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992684.897115814499557, 3912574.844086883123964 ], [ 4992654.961507416330278, 3912573.672100765630603 ], [ 4992655.908354359678924, 3912542.359105193987489 ], [ 4992646.697461139410734, 3912541.970490377862006 ], [ 4992647.624944426119328, 3912517.940120765008032 ], [ 4992687.059386787004769, 3912519.501489551272243 ], [ 4992684.897115814499557, 3912574.844086883123964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990168.030232096090913, 3908983.376398369204253 ], [ 4990156.16713888105005, 3909006.286348448134959 ], [ 4990138.340149290859699, 3908997.137310887221247 ], [ 4990132.552103336900473, 3909008.77472623065114 ], [ 4990108.111608011648059, 3908996.331557601224631 ], [ 4990126.051555048674345, 3908961.42077613202855 ], [ 4990168.030232096090913, 3908983.376398369204253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990137.081108654849231, 3900277.265267828945071 ], [ 4990107.415028281509876, 3900277.917510081082582 ], [ 4990107.960246986709535, 3900289.935230869799852 ], [ 4990086.07116637006402, 3900290.243291310500354 ], [ 4990085.809277, 3900280.046951761934906 ], [ 4990062.479246099479496, 3900280.715471990406513 ], [ 4990061.412073593586683, 3900247.576816635206342 ], [ 4990082.438113953918219, 3900246.90239473246038 ], [ 4990082.169694907031953, 3900239.254955905489624 ], [ 4990105.211759827099741, 3900238.585714958142489 ], [ 4990105.482970893383026, 3900245.140768127050251 ], [ 4990136.301097126677632, 3900244.491476369090378 ], [ 4990137.081108654849231, 3900277.265267828945071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989999.882175083272159, 3908874.069865437224507 ], [ 4990016.670420777052641, 3908839.156066807452589 ], [ 4990040.825988235883415, 3908850.506022280082107 ], [ 4990037.931970154866576, 3908856.324739763047546 ], [ 4990053.747446893714368, 3908864.012026717420667 ], [ 4990039.853181661106646, 3908893.107084981631488 ], [ 4989999.882175083272159, 3908874.069865437224507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989460.782834116369486, 3908017.34784514689818 ], [ 4989426.507520995102823, 3908022.358712567947805 ], [ 4989421.40904863551259, 3907989.209699006285518 ], [ 4989455.972322543151677, 3907984.199556054547429 ], [ 4989460.782834116369486, 3908017.34784514689818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988542.413674106821418, 3906713.25828732829541 ], [ 4988543.469655037857592, 3906751.4948341967538 ], [ 4988498.83644000440836, 3906752.839622451458126 ], [ 4988498.069240031763911, 3906714.239667783491313 ], [ 4988542.413674106821418, 3906713.25828732829541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988386.026869476772845, 3906728.524790456518531 ], [ 4988386.545418430119753, 3906751.466427245177329 ], [ 4988380.785854557529092, 3906751.816169772297144 ], [ 4988381.035579070448875, 3906767.110354622360319 ], [ 4988347.057720744051039, 3906767.753752863965929 ], [ 4988346.028738378547132, 3906718.593309590127319 ], [ 4988376.26352896541357, 3906717.940558898728341 ], [ 4988376.525081995874643, 3906728.501051765400916 ], [ 4988386.026869476772845, 3906728.524790456518531 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987884.227440099231899, 3913316.628734801430255 ], [ 4987889.046128232032061, 3913346.863799605984241 ], [ 4987827.995010704733431, 3913356.544038404710591 ], [ 4987823.177158060483634, 3913325.944852715358138 ], [ 4987884.227440099231899, 3913316.628734801430255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990043.884467303752899, 3909680.00888122105971 ], [ 4990033.995142142288387, 3909719.309938604943454 ], [ 4989955.734515908174217, 3909700.17477276455611 ], [ 4989958.934951479546726, 3909687.074164929799736 ], [ 4989949.151895366609097, 3909684.86434945743531 ], [ 4989952.933719073422253, 3909669.580428962595761 ], [ 4989963.867454839870334, 3909672.157321733888239 ], [ 4989966.775339546613395, 3909660.87663239100948 ], [ 4990043.884467303752899, 3909680.00888122105971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987417.226940009742975, 3908324.663560078945011 ], [ 4987409.549148827791214, 3908285.682452866341919 ], [ 4987474.938451113179326, 3908272.734763996209949 ], [ 4987482.046602412126958, 3908309.165556567721069 ], [ 4987452.953626816160977, 3908314.555848399177194 ], [ 4987454.944813533686101, 3908324.392338169272989 ], [ 4987434.780837366357446, 3908328.34812143445015 ], [ 4987433.358299969695508, 3908321.426095621660352 ], [ 4987417.226940009742975, 3908324.663560078945011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989500.365277947857976, 3908643.392633067443967 ], [ 4989501.709567970596254, 3908680.901733343023807 ], [ 4989462.261921649798751, 3908682.258088004775345 ], [ 4989460.916652219370008, 3908645.113120188936591 ], [ 4989500.365277947857976, 3908643.392633067443967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987180.0767841944471, 3907582.342427126597613 ], [ 4987228.759154474362731, 3907572.994477563537657 ], [ 4987244.971376175060868, 3907654.235852377489209 ], [ 4987211.268290975131094, 3907660.70748035563156 ], [ 4987201.602249661460519, 3907610.433459638617933 ], [ 4987186.33515549916774, 3907613.309051068034023 ], [ 4987180.0767841944471, 3907582.342427126597613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987153.47237697057426, 3897177.586708130780607 ], [ 4987153.704168145544827, 3897200.527482673991472 ], [ 4987134.404927120544016, 3897200.844302271492779 ], [ 4987134.614421619102359, 3897232.888278919737786 ], [ 4987128.276765671558678, 3897233.236875841394067 ], [ 4987128.510362486355007, 3897255.449394756928086 ], [ 4987096.249610502272844, 3897255.734478025697172 ], [ 4987096.032934722490609, 3897226.603525866288692 ], [ 4987081.63119606487453, 3897226.568250621668994 ], [ 4987081.426989033818245, 3897192.339506078045815 ], [ 4987089.491972952149808, 3897192.359259203076363 ], [ 4987089.238721513189375, 3897178.157558947335929 ], [ 4987153.47237697057426, 3897177.586708130780607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986644.427622044458985, 3909519.312060744967312 ], [ 4986650.058047778904438, 3909571.760913824662566 ], [ 4986569.424104887992144, 3909580.303949689958245 ], [ 4986563.505620703101158, 3909527.854413351044059 ], [ 4986644.427622044458985, 3909519.312060744967312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986514.829234924167395, 3908706.61649940116331 ], [ 4986468.464835518039763, 3908710.873510972131044 ], [ 4986465.098276889882982, 3908674.452061886433512 ], [ 4986486.408192951232195, 3908672.683129979297519 ], [ 4986485.286603602580726, 3908660.299892599694431 ], [ 4986510.340276226401329, 3908658.175936819054186 ], [ 4986514.829234924167395, 3908706.61649940116331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986393.117642187513411, 3909862.807242903392762 ], [ 4986381.885153175331652, 3909864.600675792898983 ], [ 4986385.286095903255045, 3909886.821036082692444 ], [ 4986337.764217732474208, 3909894.352662704885006 ], [ 4986331.527464386075735, 3909854.282920214347541 ], [ 4986340.455876296386123, 3909852.848017194774002 ], [ 4986338.471454939804971, 3909840.098553540650755 ], [ 4986375.912526729516685, 3909834.363155701197684 ], [ 4986377.615209933370352, 3909844.563007936812937 ], [ 4986389.999305358156562, 3909842.772365322802216 ], [ 4986393.117642187513411, 3909862.807242903392762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986405.27369914855808, 3901523.483297614380717 ], [ 4986419.537899069488049, 3901460.523189960513264 ], [ 4986454.653170662932098, 3901468.619248056784272 ], [ 4986448.538260039873421, 3901496.27838188316673 ], [ 4986458.036596816964447, 3901498.48621299630031 ], [ 4986452.506500850431621, 3901522.50545356143266 ], [ 4986443.008172122761607, 3901520.29762437613681 ], [ 4986440.676881285384297, 3901531.580035941209644 ], [ 4986405.27369914855808, 3901523.483297614380717 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986031.225595879368484, 3914638.27226622775197 ], [ 4986002.978729189373553, 3914653.861928307451308 ], [ 4985986.069407558999956, 3914623.233907247427851 ], [ 4986014.316296508535743, 3914607.644227687735111 ], [ 4986031.225595879368484, 3914638.27226622775197 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988385.523966365493834, 3907966.938288392499089 ], [ 4988433.920876880176365, 3907956.499409531243145 ], [ 4988438.760880830697715, 3907978.359472587238997 ], [ 4988446.539262217469513, 3907976.558260906953365 ], [ 4988451.37652007304132, 3907999.510717718861997 ], [ 4988404.996024725027382, 3908009.590472192037851 ], [ 4988398.449412229470909, 3907979.351098198443651 ], [ 4988388.942607855424285, 3907981.51213753502816 ], [ 4988385.523966365493834, 3907966.938288392499089 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985927.981580080464482, 3914838.297257983125746 ], [ 4985954.497623907402158, 3914824.159883243963122 ], [ 4985957.076836937107146, 3914828.899840111844242 ], [ 4985978.116806221194565, 3914817.662371504120529 ], [ 4985991.58414859790355, 3914843.184217449743301 ], [ 4985979.47882261313498, 3914849.709459681995213 ], [ 4985976.328310582786798, 3914843.147453176323324 ], [ 4985940.589806828647852, 3914861.996339235920459 ], [ 4985927.981580080464482, 3914838.297257983125746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987687.55671308003366, 3908218.275616458151489 ], [ 4987699.497036318294704, 3908279.843572431243956 ], [ 4987664.354142838157713, 3908286.675204908940941 ], [ 4987656.39508185070008, 3908245.14440299058333 ], [ 4987659.276048852130771, 3908244.423258040565997 ], [ 4987655.294711259193718, 3908224.386118923779577 ], [ 4987687.55671308003366, 3908218.275616458151489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987576.953498817048967, 3904035.943627113476396 ], [ 4987553.941709956154227, 3904025.691150704864413 ], [ 4987575.370419667102396, 3903977.314505929592997 ], [ 4987643.544646386057138, 3904006.977525616064668 ], [ 4987625.880923417396843, 3904046.624253724236041 ], [ 4987581.007433709688485, 3904026.850338943768293 ], [ 4987576.953498817048967, 3904035.943627113476396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985565.807812692597508, 3908851.437669786158949 ], [ 4985538.169304201379418, 3908851.007391571532935 ], [ 4985538.518203085288405, 3908825.518931888509542 ], [ 4985566.156737793236971, 3908825.94921046635136 ], [ 4985565.807812692597508, 3908851.437669786158949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985532.665017861872911, 3910429.510602589696646 ], [ 4985520.945887542329729, 3910394.161651271861047 ], [ 4985563.011486588977277, 3910380.425255288835615 ], [ 4985577.585962187498808, 3910425.612655975390226 ], [ 4985554.537064450792968, 3910432.840142033062875 ], [ 4985551.392897440120578, 3910423.365155138541013 ], [ 4985532.665017861872911, 3910429.510602589696646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985455.293693264015019, 3908953.494668104220182 ], [ 4985456.803721994161606, 3908924.003519892226905 ], [ 4985503.15191503521055, 3908926.299114849884063 ], [ 4985501.641835543327034, 3908955.790260506793857 ], [ 4985455.293693264015019, 3908953.494668104220182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985316.010282937437296, 3908805.324282254092395 ], [ 4985306.71293234359473, 3908840.622993289493024 ], [ 4985281.392444122582674, 3908834.008248657919466 ], [ 4985290.689763676375151, 3908798.709529007319361 ], [ 4985316.010282937437296, 3908805.324282254092395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987411.983547139912844, 3907413.954963417258114 ], [ 4987419.35662747733295, 3907459.853817388880998 ], [ 4987432.030713911168277, 3907457.700236504431814 ], [ 4987435.151250360533595, 3907476.642814442049712 ], [ 4987389.065334296785295, 3907483.811985905282199 ], [ 4987378.858659658581018, 3907419.335407212842256 ], [ 4987411.983547139912844, 3907413.954963417258114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987422.049958257935941, 3894083.506254334002733 ], [ 4987454.292103438638151, 3894092.324747601523995 ], [ 4987443.536742872558534, 3894131.624260233715177 ], [ 4987411.006573360413313, 3894122.805070704780519 ], [ 4987422.049958257935941, 3894083.506254334002733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987280.105616494081914, 3908354.185117118991911 ], [ 4987251.595717344433069, 3908356.663998038042337 ], [ 4987247.122335534542799, 3908302.397234648000449 ], [ 4987275.344375701621175, 3908299.917641568463296 ], [ 4987280.105616494081914, 3908354.185117118991911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987227.99759840592742, 3903192.119809371419251 ], [ 4987248.988171322271228, 3903204.915956545621157 ], [ 4987253.613589105196297, 3903197.644684916362166 ], [ 4987300.482126153074205, 3903226.526231974828988 ], [ 4987274.751662622205913, 3903267.609873208682984 ], [ 4987206.892613464966416, 3903225.93223936483264 ], [ 4987227.99759840592742, 3903192.119809371419251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984909.056450753472745, 3903635.500832258258015 ], [ 4984936.66236372012645, 3903651.952162506990135 ], [ 4984899.077592804096639, 3903714.857885385397822 ], [ 4984871.758825081400573, 3903698.771404437255114 ], [ 4984909.056450753472745, 3903635.500832258258015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984858.04921567812562, 3906327.407135754823685 ], [ 4984830.391730854287744, 3906333.896059083286673 ], [ 4984809.006598395295441, 3906244.997214440256357 ], [ 4984853.374066128395498, 3906234.542362742591649 ], [ 4984859.931134819053113, 3906262.231929461006075 ], [ 4984853.593052301555872, 3906263.67345509910956 ], [ 4984860.43805115390569, 3906291.363703986164182 ], [ 4984850.066263194195926, 3906293.888078453484923 ], [ 4984858.04921567812562, 3906327.407135754823685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984783.320072073489428, 3907488.084179422352463 ], [ 4984751.064747824333608, 3907491.285122925881296 ], [ 4984749.369038680568337, 3907477.80821490380913 ], [ 4984734.10557637643069, 3907479.228677778039128 ], [ 4984732.70208450499922, 3907463.931799112353474 ], [ 4984745.661294233985245, 3907462.870022594928741 ], [ 4984742.561232183128595, 3907434.460366657935083 ], [ 4984777.408813291229308, 3907430.901409152895212 ], [ 4984783.320072073489428, 3907488.084179422352463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984777.124972710385919, 3909377.553920577745885 ], [ 4984823.210381629876792, 3909368.923737317323685 ], [ 4984828.897818017750978, 3909398.79609138565138 ], [ 4984782.812458445318043, 3909407.42626505671069 ], [ 4984777.124972710385919, 3909377.553920577745885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986992.683611432090402, 3905091.946852704975754 ], [ 4986944.290125020779669, 3905099.111140675842762 ], [ 4986939.759469605982304, 3905067.784714457578957 ], [ 4986920.74760113004595, 3905070.651301709935069 ], [ 4986917.914365303702652, 3905051.709515131544322 ], [ 4986934.621749179437757, 3905049.201424792408943 ], [ 4986929.519621182233095, 3905016.052944596391171 ], [ 4986964.374195378273726, 3905011.040309655480087 ], [ 4986968.904831998050213, 3905042.36673894058913 ], [ 4986985.035433679819107, 3905040.221401321701705 ], [ 4986992.683611432090402, 3905091.946852704975754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986985.393779809586704, 3906423.924364739097655 ], [ 4986982.634000336751342, 3906492.738616314250976 ], [ 4986947.79736830201, 3906491.196890012361109 ], [ 4986949.332308606244624, 3906452.238487678114325 ], [ 4986944.726224219426513, 3906451.863093806896359 ], [ 4986945.950078944675624, 3906422.371370948851109 ], [ 4986985.393779809586704, 3906423.924364739097655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986889.238183610141277, 3908303.341219685040414 ], [ 4986943.679250511340797, 3908293.278556282632053 ], [ 4986949.363673519343138, 3908323.515469668898731 ], [ 4986894.635639536194503, 3908333.21328778937459 ], [ 4986889.238183610141277, 3908303.341219685040414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984431.943509834818542, 3907778.197490144055337 ], [ 4984405.152241308242083, 3907784.324757642112672 ], [ 4984387.479070919565856, 3907708.543664204422385 ], [ 4984418.015971721149981, 3907701.332787203602493 ], [ 4984431.126837058924139, 3907758.168282160535455 ], [ 4984427.381283570080996, 3907759.251872539054602 ], [ 4984431.943509834818542, 3907778.197490144055337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986706.48648882843554, 3908390.287236203439534 ], [ 4986651.478741585277021, 3908396.707673586439341 ], [ 4986647.53301347233355, 3908361.741329298354685 ], [ 4986674.317130343988538, 3908358.529339889995754 ], [ 4986673.189407361671329, 3908348.695010898634791 ], [ 4986701.125202872790396, 3908345.485852465033531 ], [ 4986706.48648882843554, 3908390.287236203439534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986552.776828357949853, 3906005.209850958082825 ], [ 4986593.056650212034583, 3906018.416528583969921 ], [ 4986584.063206661492586, 3906046.068706342950463 ], [ 4986546.373115948401392, 3906033.596599136479199 ], [ 4986543.761302010156214, 3906041.965292773209512 ], [ 4986511.536749245598912, 3906031.691308812703937 ], [ 4986514.147669725120068, 3906023.686742135323584 ], [ 4986497.748323430307209, 3906018.184933926444501 ], [ 4986507.610815697349608, 3905988.350045442115515 ], [ 4986528.901633895002306, 3905995.320270797703415 ], [ 4986532.382578207179904, 3905984.768894449342042 ], [ 4986556.838087286800146, 3905992.839227134361863 ], [ 4986552.776828357949853, 3906005.209850958082825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986395.240854290314019, 3910174.510301600210369 ], [ 4986417.128018137067556, 3910171.650316293817014 ], [ 4986415.147190202958882, 3910157.444320600945503 ], [ 4986434.154524241574109, 3910154.941497459542006 ], [ 4986435.850980123504996, 3910167.69027217105031 ], [ 4986454.858308882452548, 3910165.187463660724461 ], [ 4986459.949407736770809, 3910202.705530626233667 ], [ 4986427.982381724752486, 3910206.997558283153921 ], [ 4986429.399775454774499, 3910216.104324803687632 ], [ 4986401.176295320503414, 3910220.041333377361298 ], [ 4986395.240854290314019, 3910174.510301600210369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984258.625762592069805, 3904580.346168795600533 ], [ 4984234.840973037295043, 3904653.845032509882003 ], [ 4984203.476889843121171, 3904643.939979676622897 ], [ 4984212.179535277187824, 3904616.650484022218734 ], [ 4984208.150716405361891, 3904615.54864942887798 ], [ 4984223.233630301430821, 3904568.975122043862939 ], [ 4984258.625762592069805, 3904580.346168795600533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984229.172076717019081, 3907686.688325523398817 ], [ 4984241.506654960103333, 3907706.380393309518695 ], [ 4984220.746368683874607, 3907719.076368659269065 ], [ 4984208.410927915945649, 3907699.748440730385482 ], [ 4984229.172076717019081, 3907686.688325523398817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983982.225400740280747, 3915291.035298042465001 ], [ 4983912.482885959558189, 3915327.285934590734541 ], [ 4983898.15538786817342, 3915299.578315880149603 ], [ 4983941.672084985300899, 3915277.10352203482762 ], [ 4983931.068687904626131, 3915257.051396473310888 ], [ 4983957.293721933849156, 3915243.639639250468463 ], [ 4983982.225400740280747, 3915291.035298042465001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983990.41317090857774, 3904510.169454861897975 ], [ 4984001.754022129811347, 3904462.858806925825775 ], [ 4984006.071679885499179, 3904463.597153183072805 ], [ 4984017.993596526794136, 3904414.103079874999821 ], [ 4984056.846617166884243, 3904423.297152684535831 ], [ 4984048.705516724847257, 3904456.77824722090736 ], [ 4984053.886195054277778, 3904457.882749712560326 ], [ 4984041.672020344994962, 3904509.196784432511777 ], [ 4984029.296686116605997, 3904506.254816432949156 ], [ 4984026.388196850195527, 3904518.628501739818603 ], [ 4983990.41317090857774, 3904510.169454861897975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983957.02510831784457, 3909808.945508718956262 ], [ 4983984.103007304482162, 3909802.454327895306051 ], [ 4983990.375584728084505, 3909828.686547325924039 ], [ 4983963.585610280744731, 3909835.178393938113004 ], [ 4983957.02510831784457, 3909808.945508718956262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986150.300492267124355, 3907407.964845974463969 ], [ 4986156.275684393011034, 3907437.47400980675593 ], [ 4986068.704212023876607, 3907454.740974148735404 ], [ 4986062.72892770729959, 3907425.23182946909219 ], [ 4986150.300492267124355, 3907407.964845974463969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986083.275220487266779, 3910007.346860358025879 ], [ 4986088.376535393297672, 3910040.859412814956158 ], [ 4986074.552185877226293, 3910043.010852402076125 ], [ 4986076.252334046177566, 3910054.303079719189554 ], [ 4986030.172081948257983, 3910061.110462593846023 ], [ 4986023.652279571630061, 3910018.855307579506189 ], [ 4986045.541286210529506, 3910015.266757956705987 ], [ 4986043.555859186686575, 3910002.881445733364671 ], [ 4986061.699573562480509, 3910000.376276433933526 ], [ 4986063.403243594802916, 3910010.211978869047016 ], [ 4986083.275220487266779, 3910007.346860358025879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985998.423327657394111, 3909735.863132090307772 ], [ 4986051.700770786963403, 3909729.437185858841985 ], [ 4986055.932330030947924, 3909765.496559411752969 ], [ 4986029.725491032004356, 3909768.710556431207806 ], [ 4986031.419530102983117, 3909782.551695216912776 ], [ 4986004.349010136909783, 3909785.763634509406984 ], [ 4985998.423327657394111, 3909735.863132090307772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985779.944720194675028, 3897127.281424490269274 ], [ 4985795.297181065194309, 3897091.269395614508539 ], [ 4985784.938367649912834, 3897086.874961323104799 ], [ 4985791.890582163818181, 3897070.505794926080853 ], [ 4985806.852736060507596, 3897077.096068284939975 ], [ 4985812.646698084659874, 3897063.273036903701723 ], [ 4985848.902546388097107, 3897078.65361161949113 ], [ 4985820.516662170179188, 3897144.492974560242146 ], [ 4985779.944720194675028, 3897127.281424490269274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985742.001172484830022, 3909214.900440830737352 ], [ 4985748.545220316387713, 3909247.323975348379463 ], [ 4985699.001811218447983, 3909257.036675516981632 ], [ 4985692.457706050015986, 3909224.613152866251767 ], [ 4985742.001172484830022, 3909214.900440830737352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982938.334151468239725, 3916619.892802061978728 ], [ 4982933.993332985788584, 3916630.07859865622595 ], [ 4982909.264464200474322, 3916619.461921234149486 ], [ 4982929.520215657539666, 3916572.535079657565802 ], [ 4982954.824774479493499, 3916583.153097812552005 ], [ 4982953.665936724282801, 3916586.427645959425718 ], [ 4982993.346766888163984, 3916603.633150013163686 ], [ 4982978.877585367299616, 3916637.46440077573061 ], [ 4982938.334151468239725, 3916619.892802061978728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984523.546532289125025, 3907637.493772265966982 ], [ 4984532.838116523809731, 3907604.379599164240062 ], [ 4984604.485580663196743, 3907623.847459450829774 ], [ 4984595.482696145772934, 3907656.598156496416777 ], [ 4984581.383051273413002, 3907652.923595044296235 ], [ 4984581.382193015888333, 3907653.287725497037172 ], [ 4984523.546532289125025, 3907637.493772265966982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984437.66149948630482, 3908774.841909398324788 ], [ 4984397.597364988178015, 3908793.68262024782598 ], [ 4984382.128039413131773, 3908760.510189424268901 ], [ 4984409.508704220876098, 3908748.194026730488986 ], [ 4984403.493378412909806, 3908735.071109195705503 ], [ 4984416.463090675882995, 3908729.275473856832832 ], [ 4984437.66149948630482, 3908774.841909398324788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984395.832052561454475, 3905869.331138425972313 ], [ 4984415.335939883254468, 3905901.784733667969704 ], [ 4984390.537863749079406, 3905916.655868436209857 ], [ 4984401.150628481060266, 3905934.159148131031543 ], [ 4984382.407912512309849, 3905945.403201363049448 ], [ 4984372.368457018397748, 3905928.993671974167228 ], [ 4984344.97468254249543, 3905945.679412014316767 ], [ 4984324.6094815665856, 3905912.131449074950069 ], [ 4984395.832052561454475, 3905869.331138425972313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983863.167485223151743, 3907091.568864337634295 ], [ 4983822.820953983813524, 3907107.13256840640679 ], [ 4983810.473075307905674, 3907092.902655429206789 ], [ 4983807.610739879310131, 3907085.613344691693783 ], [ 4983795.795474532060325, 3907089.95542744314298 ], [ 4983787.207603190094233, 3907068.451631330884993 ], [ 4983798.170107623562217, 3907059.37383955810219 ], [ 4983789.843037574552, 3907049.52288435632363 ], [ 4983786.121987857855856, 3907040.046783576253802 ], [ 4983774.01792914327234, 3907044.752336013596505 ], [ 4983764.572166560217738, 3907020.697625393979251 ], [ 4983778.116731146350503, 3907015.631288532633334 ], [ 4983767.205047903582454, 3907002.861267770640552 ], [ 4983764.343538206070662, 3906995.207831710577011 ], [ 4983752.52739320602268, 3906999.914063579402864 ], [ 4983743.08244233392179, 3906975.495230847969651 ], [ 4983756.339095225557685, 3906970.428213496226817 ], [ 4983746.288633941672742, 3906958.752601965796202 ], [ 4983743.141723590902984, 3906950.006107707507908 ], [ 4983731.037631954997778, 3906954.711679241620004 ], [ 4983721.017630475573242, 3906929.927385569084436 ], [ 4983766.552208460867405, 3906912.190806212835014 ], [ 4983774.56767453532666, 3906932.236732379999012 ], [ 4983786.383853118866682, 3906927.530510398093611 ], [ 4983797.262501287274063, 3906954.50162105448544 ], [ 4983805.597227724269032, 3906961.075405020266771 ], [ 4983838.800384783186018, 3907045.631421333644539 ], [ 4983832.453213226050138, 3907051.078622353263199 ], [ 4983839.036575455218554, 3907067.844043279532343 ], [ 4983851.717342333868146, 3907062.775731342844665 ], [ 4983863.167485223151743, 3907091.568864337634295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981577.330875133164227, 3904635.00303398957476 ], [ 4981682.569705850444734, 3904575.157763728871942 ], [ 4981702.075354598462582, 3904608.701753525529057 ], [ 4981596.548656270839274, 3904668.546301983762532 ], [ 4981577.330875133164227, 3904635.00303398957476 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981437.305924041196704, 3895409.801963436882943 ], [ 4981442.831136768683791, 3895386.510034398641437 ], [ 4981462.409054779447615, 3895390.92343623097986 ], [ 4981457.171880164183676, 3895414.216006455942988 ], [ 4981437.305924041196704, 3895409.801963436882943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981413.931689850054681, 3894784.903196876868606 ], [ 4981409.542326072230935, 3894815.480257065035403 ], [ 4981346.765463683754206, 3894806.236603568308055 ], [ 4981351.153943410143256, 3894776.023661037907004 ], [ 4981413.931689850054681, 3894784.903196876868606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981119.421243217773736, 3905953.592766731511801 ], [ 4981147.680881698615849, 3905935.085012956988066 ], [ 4981182.979106587357819, 3905988.326990141067654 ], [ 4981155.007440228015184, 3906006.835349311586469 ], [ 4981119.421243217773736, 3905953.592766731511801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981025.010440476238728, 3906455.884809755254537 ], [ 4981040.506312379613519, 3906479.587872518692166 ], [ 4981007.634683612734079, 3906500.634411545470357 ], [ 4980992.426730621606112, 3906476.932007598225027 ], [ 4981025.010440476238728, 3906455.884809755254537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980994.99966933298856, 3907132.739787140395492 ], [ 4981001.315475340932608, 3907141.128872885368764 ], [ 4981019.19620316196233, 3907128.059879401698709 ], [ 4981038.717016132548451, 3907154.320830934680998 ], [ 4980992.860298314131796, 3907188.447266315575689 ], [ 4980974.774250879883766, 3907164.37433023005724 ], [ 4980987.464952863752842, 3907154.570970277301967 ], [ 4980979.713550494983792, 3907144.358035183977336 ], [ 4980994.99966933298856, 3907132.739787140395492 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980849.71684271004051, 3906298.918637438677251 ], [ 4980855.423899573273957, 3906322.235748634207994 ], [ 4980802.703933882527053, 3906334.499345904681832 ], [ 4980795.573285059072077, 3906303.896449827123433 ], [ 4980833.313283585011959, 3906294.876806470099837 ], [ 4980835.024760264903307, 3906302.163242826238275 ], [ 4980849.71684271004051, 3906298.918637438677251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980834.039435141719878, 3902330.941584046930075 ], [ 4980858.826720535755157, 3902321.529140641447157 ], [ 4980872.855349718593061, 3902358.701641083229333 ], [ 4980828.469330715015531, 3902375.353240014519542 ], [ 4980820.451908199116588, 3902354.579989590216428 ], [ 4980840.339471340179443, 3902346.977324726060033 ], [ 4980834.039435141719878, 3902330.941584046930075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980762.33044839464128, 3905712.472442212980241 ], [ 4980807.862699996680021, 3905695.823252798058093 ], [ 4980802.995896422304213, 3905683.067849009763449 ], [ 4980835.560231394134462, 3905671.123685026075691 ], [ 4980837.563729460351169, 3905676.590106588322669 ], [ 4980890.301972344517708, 3905656.679850002285093 ], [ 4980921.503555195406079, 3905739.771199534647167 ], [ 4980906.518364672549069, 3905745.199906167108566 ], [ 4980910.526936867274344, 3905755.404500219970942 ], [ 4980881.420413558371365, 3905766.263851157389581 ], [ 4980879.416931170970201, 3905760.797426031902432 ], [ 4980844.834660024382174, 3905773.829457737971097 ], [ 4980848.842443685978651, 3905784.39817293221131 ], [ 4980820.02391975838691, 3905795.258229210041463 ], [ 4980817.734098461456597, 3905789.062909931875765 ], [ 4980794.391348632983863, 3905797.750341127626598 ], [ 4980762.33044839464128, 3905712.472442212980241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980678.47473737411201, 3904048.56892474135384 ], [ 4980688.893708311952651, 3904024.92341673001647 ], [ 4980721.401978086680174, 3904039.196470125112683 ], [ 4980710.982983994297683, 3904062.841965743806213 ], [ 4980678.47473737411201, 3904048.56892474135384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980493.87498885858804, 3906275.919677137862891 ], [ 4980467.352612344548106, 3906290.426496526226401 ], [ 4980452.440024171024561, 3906263.083733034320176 ], [ 4980479.250357616692781, 3906248.577533840667456 ], [ 4980493.87498885858804, 3906275.919677137862891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982413.505140417255461, 3916418.782788058742881 ], [ 4982382.120993207208812, 3916423.445090043358505 ], [ 4982377.299992674961686, 3916391.754424431826919 ], [ 4982408.684176037088037, 3916387.09211691422388 ], [ 4982413.505140417255461, 3916418.782788058742881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982423.822290838696063, 3905185.663323137909174 ], [ 4982410.852961219847202, 3905190.731647699140012 ], [ 4982399.685079359449446, 3905163.396342246793211 ], [ 4982423.895237656310201, 3905153.619885609019548 ], [ 4982435.062269927933812, 3905181.319330931641161 ], [ 4982451.490320987068117, 3905174.802367727737874 ], [ 4982457.217796082608402, 3905188.652423597872257 ], [ 4982429.54894882440567, 3905199.877503188326955 ], [ 4982423.822290838696063, 3905185.663323137909174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980173.24270027410239, 3907397.470001310575753 ], [ 4980190.498278763145208, 3907406.611154351383448 ], [ 4980178.934134472161531, 3907428.069595485460013 ], [ 4980161.678565877489746, 3907418.928449749015272 ], [ 4980173.24270027410239, 3907397.470001310575753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980103.184192813932896, 3917032.285769838374108 ], [ 4980099.481592068448663, 3917014.43506737658754 ], [ 4980089.40301039069891, 3917016.597794361878186 ], [ 4980085.703588741831481, 3916997.290563040412962 ], [ 4980101.541029656305909, 3916994.048048513475806 ], [ 4980096.699096308089793, 3916970.732833437155932 ], [ 4980127.221924687735736, 3916964.609435867052525 ], [ 4980142.034647323191166, 3917034.919864786788821 ], [ 4980123.893847577273846, 3917038.521441203542054 ], [ 4980121.613614648580551, 3917028.320677555166185 ], [ 4980103.184192813932896, 3917032.285769838374108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980112.36859789211303, 3905612.725212047342211 ], [ 4980142.15685691870749, 3905684.88859599083662 ], [ 4980160.601247436366975, 3905677.646387480664998 ], [ 4980180.077642060816288, 3905725.026241339277476 ], [ 4980129.642812487669289, 3905745.30707020778209 ], [ 4980123.054416805505753, 3905729.634962294250727 ], [ 4980011.2327438024804, 3905774.906692003365606 ], [ 4979947.64899549074471, 3905619.283401930239052 ], [ 4980041.025976452045143, 3905581.61781956627965 ], [ 4980061.933609299361706, 3905633.006166602484882 ], [ 4980112.36859789211303, 3905612.725212047342211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982032.11422913055867, 3917697.485865415539593 ], [ 4981994.69657816644758, 3917698.129485681653023 ], [ 4981994.453232422471046, 3917678.465661572758108 ], [ 4981989.848182530142367, 3917678.455247320234776 ], [ 4981989.335956324823201, 3917650.415717563126236 ], [ 4981993.365379188209772, 3917650.424829912837595 ], [ 4981992.606514009647071, 3917604.178008708171546 ], [ 4982029.44866294786334, 3917603.533082987647504 ], [ 4982030.454904641956091, 3917667.623065120074898 ], [ 4982042.830981211736798, 3917667.651073925197124 ], [ 4982043.081709222868085, 3917684.037702836561948 ], [ 4982031.856078416109085, 3917684.3764319838956 ], [ 4982032.11422913055867, 3917697.485865415539593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979836.945494272746146, 3904359.145982984919101 ], [ 4979820.231212173588574, 3904364.935653945896775 ], [ 4979822.233427857980132, 3904371.130255199037492 ], [ 4979796.585313801653683, 3904380.177654469851404 ], [ 4979779.412513594143093, 3904332.074875043705106 ], [ 4979809.959933566860855, 3904321.217477492522448 ], [ 4979814.253921064548194, 3904332.879046127665788 ], [ 4979826.069749242626131, 3904328.535220016725361 ], [ 4979836.945494272746146, 3904359.145982984919101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979786.460957376286387, 3906383.973049801308662 ], [ 4979810.051923332735896, 3906393.127753217238933 ], [ 4979798.759718790650368, 3906421.869578707963228 ], [ 4979775.45671062450856, 3906412.715512181632221 ], [ 4979786.460957376286387, 3906383.973049801308662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979733.472793222405016, 3907313.487060090526938 ], [ 4979715.256558584980667, 3907348.768247083295137 ], [ 4979685.921335217542946, 3907333.410878184717149 ], [ 4979704.136749465018511, 3907298.493802162352949 ], [ 4979733.472793222405016, 3907313.487060090526938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979721.781082947738469, 3901835.465108436532319 ], [ 4979746.470947585999966, 3901870.839548318646848 ], [ 4979711.859676400199533, 3901895.16101630916819 ], [ 4979686.881803635507822, 3901859.78598151775077 ], [ 4979721.781082947738469, 3901835.465108436532319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981674.693971170112491, 3905132.261655746493489 ], [ 4981691.590475522913039, 3905173.446551967412233 ], [ 4981655.275264063850045, 3905188.294299968518317 ], [ 4981638.378713543526828, 3905147.109426213894039 ], [ 4981674.693971170112491, 3905132.261655746493489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979321.868105657398701, 3909117.234753013122827 ], [ 4979328.761352738365531, 3909124.8964385506697 ], [ 4979311.163599309511483, 3909141.244373894296587 ], [ 4979276.69417492672801, 3909104.392510235309601 ], [ 4979310.159114682115614, 3909073.149397634435445 ], [ 4979338.023194640874863, 3909102.340236420743167 ], [ 4979321.868105657398701, 3909117.234753013122827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979192.815222779288888, 3901270.644724973477423 ], [ 4979213.454796799458563, 3901315.113201414700598 ], [ 4979198.752340357750654, 3901321.999983723275363 ], [ 4979195.600142232142389, 3901314.710568975657225 ], [ 4979159.277189270593226, 3901331.382301266305149 ], [ 4979141.78975516371429, 3901294.203273936640471 ], [ 4979192.815222779288888, 3901270.644724973477423 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979051.802595184184611, 3900820.639481435064226 ], [ 4979058.37403417378664, 3900845.050378921441734 ], [ 4979037.625795382075012, 3900850.831852212548256 ], [ 4979041.05434250459075, 3900863.583802522625774 ], [ 4979005.033740259706974, 3900873.337904567364603 ], [ 4978995.033690659329295, 3900836.175074933096766 ], [ 4979051.802595184184611, 3900820.639481435064226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981488.084518688730896, 3901542.599236838985234 ], [ 4981530.150444403290749, 3901533.954410430043936 ], [ 4981541.265187931247056, 3901586.05008029518649 ], [ 4981518.503515962511301, 3901590.732730958145112 ], [ 4981516.507196748629212, 3901581.989109324291348 ], [ 4981497.203014875762165, 3901585.95126935094595 ], [ 4981488.084518688730896, 3901542.599236838985234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981377.567786708474159, 3897004.55708972690627 ], [ 4981420.224998206831515, 3896992.272121444344521 ], [ 4981433.660026184283197, 3897038.182583904825151 ], [ 4981386.679072808474302, 3897051.914377709850669 ], [ 4981380.390325119718909, 3897030.416636423207819 ], [ 4981384.713322076946497, 3897029.333917140960693 ], [ 4981377.567786708474159, 3897004.55708972690627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978956.140801684930921, 3907011.033201197162271 ], [ 4978930.191152138635516, 3907027.727564078290015 ], [ 4978915.841552347876132, 3907005.848834457341582 ], [ 4978941.504065664485097, 3906988.789709252305329 ], [ 4978956.140801684930921, 3907011.033201197162271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978706.826565896160901, 3901203.693664145190269 ], [ 4978714.527612150646746, 3901238.66669321525842 ], [ 4978665.833663969300687, 3901249.486548910848796 ], [ 4978654.14266708958894, 3901194.841944177635014 ], [ 4978678.344909112900496, 3901189.795816394500434 ], [ 4978682.624330975115299, 3901208.739766316954046 ], [ 4978706.826565896160901, 3901203.693664145190269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978609.668872786685824, 3908537.098210936877877 ], [ 4978599.817633416503668, 3908566.207782425917685 ], [ 4978555.510832532308996, 3908551.18381510162726 ], [ 4978565.36125255189836, 3908522.438358472660184 ], [ 4978609.668872786685824, 3908537.098210936877877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978547.550781307742, 3904722.68221969017759 ], [ 4978587.890043207444251, 3904710.751917488873005 ], [ 4978599.325853160582483, 3904749.374275421723723 ], [ 4978573.969574928283691, 3904756.966938259080052 ], [ 4978576.543295338749886, 3904765.347456702496856 ], [ 4978551.763722919858992, 3904772.577239154838026 ], [ 4978544.616115052253008, 3904748.529309572651982 ], [ 4978554.124814617447555, 3904745.636531580239534 ], [ 4978547.550781307742, 3904722.68221969017759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981048.154882899485528, 3907312.375242097303271 ], [ 4981065.952027445659041, 3907336.811719303019345 ], [ 4981032.787016843445599, 3907360.770641751587391 ], [ 4981014.989858152344823, 3907336.334186161402613 ], [ 4981048.154882899485528, 3907312.375242097303271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981066.572754404507577, 3894894.459291977807879 ], [ 4981047.980602492578328, 3894964.694937569089234 ], [ 4981018.040276081301272, 3894956.617502504959702 ], [ 4981036.63235520850867, 3894886.381836543790996 ], [ 4981066.572754404507577, 3894894.459291977807879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978447.329535884782672, 3905269.758664480410516 ], [ 4978468.654788855463266, 3905261.793165457900614 ], [ 4978470.37240104470402, 3905266.530535786878318 ], [ 4978503.512870204634964, 3905254.220644966233522 ], [ 4978515.253586635924876, 3905284.832730867434293 ], [ 4978460.499972568824887, 3905305.107482900843024 ], [ 4978447.329535884782672, 3905269.758664480410516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978163.618790620006621, 3907074.886656926479191 ], [ 4978198.203484319150448, 3907059.302250497043133 ], [ 4978213.679881322197616, 3907093.199346605688334 ], [ 4978179.383151033893228, 3907108.784343477804214 ], [ 4978163.618790620006621, 3907074.886656926479191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980784.490688328631222, 3901948.129947893321514 ], [ 4980820.241889175027609, 3901929.638482748530805 ], [ 4980845.47712270077318, 3901978.123866175767034 ], [ 4980833.079285643063486, 3901984.650736773386598 ], [ 4980843.115924696438015, 3902003.971939012873918 ], [ 4980819.762620082125068, 3902015.936491950880736 ], [ 4980784.490688328631222, 3901948.129947893321514 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980751.873493934050202, 3915242.902451527304947 ], [ 4980724.492250831797719, 3915259.227847387548536 ], [ 4980707.572467179037631, 3915230.787931470200419 ], [ 4980734.665886850096285, 3915214.461881239898503 ], [ 4980751.873493934050202, 3915242.902451527304947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980693.776683158241212, 3906373.584418777376413 ], [ 4980708.684935543686152, 3906402.747969552874565 ], [ 4980680.434949739836156, 3906417.250756971072406 ], [ 4980665.238738242536783, 3906388.086584955453873 ], [ 4980693.776683158241212, 3906373.584418777376413 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980690.65635821595788, 3903358.202577302232385 ], [ 4980705.109592133201659, 3903333.473614173475653 ], [ 4980738.471314284950495, 3903352.846408259123564 ], [ 4980724.018059972673655, 3903377.575353736057878 ], [ 4980690.65635821595788, 3903358.202577302232385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980675.408001909032464, 3904263.399776087142527 ], [ 4980649.707984251901507, 3904295.7506695818156 ], [ 4980624.98614882119, 3904276.397060452029109 ], [ 4980650.399000374600291, 3904243.681377359200269 ], [ 4980675.408001909032464, 3904263.399776087142527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978065.388353893533349, 3908322.196024587377906 ], [ 4978044.330471077002585, 3908341.086391696706414 ], [ 4978014.742853836156428, 3908308.980212137103081 ], [ 4978035.512824638746679, 3908290.089213718194515 ], [ 4978065.388353893533349, 3908322.196024587377906 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978027.804843352176249, 3896536.28434847202152 ], [ 4978032.787709250114858, 3896495.512332336977124 ], [ 4978057.265174674801528, 3896498.477088537067175 ], [ 4978051.994230028241873, 3896539.248491535894573 ], [ 4978027.804843352176249, 3896536.28434847202152 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977979.095023755915463, 3899689.5488570923917 ], [ 4977984.372178021818399, 3899645.500203361734748 ], [ 4977994.449412829242647, 3899646.977998883929104 ], [ 4977995.329583537764847, 3899639.33311638655141 ], [ 4978039.672185773961246, 3899644.524599003139883 ], [ 4978036.444080580957234, 3899672.91995876794681 ], [ 4978042.778730047866702, 3899673.661604357883334 ], [ 4978040.13818213250488, 3899696.596247836947441 ], [ 4977979.095023755915463, 3899689.5488570923917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977953.001491509377956, 3904821.557293234858662 ], [ 4977944.719216203317046, 3904789.132101539522409 ], [ 4977988.799202645197511, 3904778.301187598146498 ], [ 4977997.082197132520378, 3904810.362262640148401 ], [ 4977953.001491509377956, 3904821.557293234858662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977926.583039730787277, 3896592.510861289687455 ], [ 4977975.008601323701441, 3896576.227165344171226 ], [ 4977990.754050781950355, 3896622.140758379362524 ], [ 4977942.040521112270653, 3896638.423818903509527 ], [ 4977926.583039730787277, 3896592.510861289687455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977760.721511829644442, 3896020.113771661184728 ], [ 4977769.139971290715039, 3895989.180444678291678 ], [ 4977804.549961145967245, 3895998.72229228541255 ], [ 4977796.131463856436312, 3896029.655608349479735 ], [ 4977760.721511829644442, 3896020.113771661184728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977727.631969491951168, 3905322.492038751486689 ], [ 4977759.375933884643018, 3905289.42278570914641 ], [ 4977794.435910032130778, 3905322.632526736706495 ], [ 4977763.269368379376829, 3905354.974689867347479 ], [ 4977746.31337490491569, 3905339.281369709875435 ], [ 4977745.736713669262826, 3905339.644289087504148 ], [ 4977727.631969491951168, 3905322.492038751486689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980429.425281929783523, 3907561.164289719890803 ], [ 4980448.759513499215245, 3907541.543733844999224 ], [ 4980468.010312135331333, 3907559.792770610190928 ], [ 4980448.387353464961052, 3907579.776809078175575 ], [ 4980429.425281929783523, 3907561.164289719890803 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980372.163823770359159, 3901916.996834163554013 ], [ 4980348.806650692597032, 3901930.782442311756313 ], [ 4980322.98330233246088, 3901887.394070939160883 ], [ 4980335.382660831324756, 3901880.138706789817661 ], [ 4980331.079697366803885, 3901872.482494606636465 ], [ 4980350.97628569137305, 3901860.874047483783215 ], [ 4980354.419294269755483, 3901866.707716236822307 ], [ 4980367.684228150174022, 3901858.726008521392941 ], [ 4980386.0455700205639, 3901890.445807422045618 ], [ 4980364.130692831240594, 3901903.142182535026222 ], [ 4980372.163823770359159, 3901916.996834163554013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980309.852742568589747, 3901965.289263298735023 ], [ 4980267.740710071288049, 3901995.419632698409259 ], [ 4980257.405277399346232, 3901980.831694441847503 ], [ 4980249.040157003328204, 3901987.003557665273547 ], [ 4980230.090765139088035, 3901960.744526436086744 ], [ 4980251.723143610171974, 3901945.498504046350718 ], [ 4980261.771408532746136, 3901959.721678130328655 ], [ 4980290.903394630178809, 3901939.030189526733011 ], [ 4980309.852742568589747, 3901965.289263298735023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980310.597309966571629, 3900971.213330452796072 ], [ 4980336.37993763294071, 3901033.536380300298333 ], [ 4980302.942233081907034, 3901047.299862653948367 ], [ 4980277.448335519060493, 3900984.613347767386585 ], [ 4980310.597309966571629, 3900971.213330452796072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980293.292625684291124, 3898098.185234056785703 ], [ 4980312.319106676615775, 3898090.580299924127758 ], [ 4980323.775305348448455, 3898120.10002534231171 ], [ 4980304.74964196793735, 3898127.340823004953563 ], [ 4980293.292625684291124, 3898098.185234056785703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977531.668943541124463, 3908421.937432391569018 ], [ 4977515.023260860703886, 3908396.413298973813653 ], [ 4977555.962906527332962, 3908369.917392902076244 ], [ 4977574.617102604359388, 3908398.722953632939607 ], [ 4977559.337000418454409, 3908408.522502343636006 ], [ 4977565.650522850453854, 3908418.367310483939946 ], [ 4977559.595916741527617, 3908422.360077857039869 ], [ 4977551.27385575324297, 3908409.233870315365493 ], [ 4977531.668943541124463, 3908421.937432391569018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977470.856530338525772, 3912303.830784656107426 ], [ 4977496.459711378440261, 3912312.259444028139114 ], [ 4977490.374736431054771, 3912331.181637811008841 ], [ 4977498.141968397423625, 3912333.746832669246942 ], [ 4977484.525049654766917, 3912375.229526057839394 ], [ 4977451.154698872938752, 3912364.235694149974734 ], [ 4977470.856530338525772, 3912303.830784656107426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977483.82286446262151, 3901016.128426912706345 ], [ 4977460.160887599922717, 3901038.290907228831202 ], [ 4977433.723297563381493, 3901010.56168643059209 ], [ 4977457.386038412339985, 3900988.035054009407759 ], [ 4977483.82286446262151, 3901016.128426912706345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977364.002963536418974, 3907366.331278026103973 ], [ 4977379.500770981423557, 3907390.396373314782977 ], [ 4977347.497667882591486, 3907411.085075419861823 ], [ 4977332.000603832304478, 3907386.655867655295879 ], [ 4977364.002963536418974, 3907366.331278026103973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977325.550130075775087, 3907166.342435087542981 ], [ 4977290.356810938566923, 3907197.948510143905878 ], [ 4977271.971179162152112, 3907177.88290218450129 ], [ 4977307.164502801373601, 3907146.276803427375853 ], [ 4977325.550130075775087, 3907166.342435087542981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977264.512934415601194, 3912273.904956156853586 ], [ 4977236.542152828536928, 3912296.42291567241773 ], [ 4977210.126074732281268, 3912263.595879143569618 ], [ 4977238.096868187189102, 3912241.07789259031415 ], [ 4977264.512934415601194, 3912273.904956156853586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979857.209809633903205, 3908930.504716704599559 ], [ 4979849.171378402039409, 3908919.927337646484375 ], [ 4979853.497168491594493, 3908916.659578886348754 ], [ 4979842.874691772274673, 3908902.79937217803672 ], [ 4979864.503662629984319, 3908886.460580505430698 ], [ 4979896.658160501159728, 3908928.405998159199953 ], [ 4979868.107466401532292, 3908950.191651816945523 ], [ 4979854.902563552372158, 3908932.32034717220813 ], [ 4979857.209809633903205, 3908930.504716704599559 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979851.165334698744118, 3902988.22207684116438 ], [ 4979835.273633265867829, 3903012.584225559607148 ], [ 4979809.104609397239983, 3902995.777150178793818 ], [ 4979810.260468509048223, 3902993.959012337494642 ], [ 4979774.026623968034983, 3902970.575678131077439 ], [ 4979791.941247751004994, 3902942.940718895290047 ], [ 4979827.599961280822754, 3902965.958691900130361 ], [ 4979824.42114416602999, 3902971.049601326696575 ], [ 4979851.165334698744118, 3902988.22207684116438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979821.270588242448866, 3908775.669988646637648 ], [ 4979834.275015487335622, 3908753.486252778209746 ], [ 4979857.279322122223675, 3908766.64519485225901 ], [ 4979843.986177211627364, 3908789.192422765307128 ], [ 4979821.270588242448866, 3908775.669988646637648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979807.679108601994812, 3899552.552056909538805 ], [ 4979778.563947206363082, 3899564.504947868641466 ], [ 4979760.513663954101503, 3899521.134113270323724 ], [ 4979789.628864175640047, 3899509.181203074287623 ], [ 4979807.679108601994812, 3899552.552056909538805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977040.19450780376792, 3902875.184961886610836 ], [ 4977052.034719535149634, 3902859.187771989963949 ], [ 4977048.871537202037871, 3902856.996416962239891 ], [ 4977065.331456067971885, 3902835.182726365979761 ], [ 4977077.120263503864408, 3902843.94636170938611 ], [ 4977099.066112414002419, 3902815.225596128962934 ], [ 4977089.00287960562855, 3902807.557930183596909 ], [ 4977114.992535618133843, 3902773.01948182657361 ], [ 4977174.510986203327775, 3902817.567275748122483 ], [ 4977146.788147892802954, 3902854.650980919599533 ], [ 4977136.149751607328653, 3902846.617969589307904 ], [ 4977114.779836982488632, 3902875.339902684092522 ], [ 4977125.706202394329011, 3902883.373504429589957 ], [ 4977098.850447195582092, 3902919.002538258209825 ], [ 4977040.19450780376792, 3902875.184961886610836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977001.764618461020291, 3905019.475204045884311 ], [ 4976964.891001921147108, 3905027.045492290984839 ], [ 4976954.909328461624682, 3904980.415945800021291 ], [ 4976992.07171319052577, 3904972.482111296150833 ], [ 4977001.764618461020291, 3905019.475204045884311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976921.656595600768924, 3901154.784290541894734 ], [ 4976959.95131931360811, 3901158.869081687647849 ], [ 4976957.599073796533048, 3901182.168578198179603 ], [ 4976919.303628712892532, 3901178.447919609490782 ], [ 4976921.656595600768924, 3901154.784290541894734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979667.151382287964225, 3900072.588881029281765 ], [ 4979674.411645575426519, 3900044.930732749868184 ], [ 4979701.181024822406471, 3900051.907418795395643 ], [ 4979693.920735828578472, 3900079.565559952985495 ], [ 4979667.151382287964225, 3900072.588881029281765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979635.439271667040884, 3900087.085199667606503 ], [ 4979649.829192116856575, 3900091.85016156733036 ], [ 4979653.016226705163717, 3900083.117950972169638 ], [ 4979678.341595006175339, 3900091.91213002987206 ], [ 4979665.009518728591502, 3900130.481000643689185 ], [ 4979625.007063312456012, 3900116.557122932281345 ], [ 4979635.439271667040884, 3900087.085199667606503 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979577.463137722574174, 3909546.372604907490313 ], [ 4979543.7003004103899, 3909582.348472751677036 ], [ 4979516.40406247228384, 3909557.164102201815695 ], [ 4979534.295891913585365, 3909537.90387328248471 ], [ 4979525.676971817389131, 3909529.510124151594937 ], [ 4979541.260071003809571, 3909512.793821857310832 ], [ 4979577.463137722574174, 3909546.372604907490313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979561.265316712670028, 3909050.388707024976611 ], [ 4979597.764799429103732, 3909080.326823286246508 ], [ 4979569.185265323147178, 3909115.585641500540078 ], [ 4979543.893658176064491, 3909095.139327072538435 ], [ 4979557.750363057479262, 3909078.055160036776215 ], [ 4979546.254593648947775, 3909068.562766003422439 ], [ 4979561.265316712670028, 3909050.388707024976611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979424.22651666495949, 3893347.674782678019255 ], [ 4979424.876422174274921, 3893446.719333366025239 ], [ 4979381.376267937012017, 3893446.989365568850189 ], [ 4979380.726202186197042, 3893347.94481591694057 ], [ 4979424.22651666495949, 3893347.674782678019255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979353.00011439807713, 3900976.04454429121688 ], [ 4979304.287340812385082, 3900995.238211772870272 ], [ 4979295.407486604526639, 3900973.007050760090351 ], [ 4979306.648716000840068, 3900968.6617611637339 ], [ 4979294.903847655281425, 3900939.505926135461777 ], [ 4979332.087464605458081, 3900924.656893901992589 ], [ 4979353.00011439807713, 3900976.04454429121688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976810.52660827152431, 3903087.725917012896389 ], [ 4976871.777213824912906, 3903130.091843091882765 ], [ 4976845.782187883742154, 3903167.54357170779258 ], [ 4976832.267126598395407, 3903158.048203084617853 ], [ 4976811.182743086479604, 3903188.227497425861657 ], [ 4976819.521851815283298, 3903194.070839778520167 ], [ 4976795.260051182471216, 3903228.977283589541912 ], [ 4976733.72158048581332, 3903186.610934820957482 ], [ 4976759.139736957848072, 3903149.52203743159771 ], [ 4976772.942799505777657, 3903159.017964187078178 ], [ 4976793.739191265776753, 3903128.838045181240886 ], [ 4976785.975247340276837, 3903123.360030960757285 ], [ 4976810.52660827152431, 3903087.725917012896389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976741.645865756087005, 3905763.950340347830206 ], [ 4976745.406424795277417, 3905755.583074491005391 ], [ 4976764.393385633826256, 3905763.99732560524717 ], [ 4976746.166475685313344, 3905805.834836864843965 ], [ 4976721.425941972993314, 3905794.85979758342728 ], [ 4976717.375949720852077, 3905803.954733200371265 ], [ 4976696.662847510538995, 3905794.808689596131444 ], [ 4976715.17838273383677, 3905752.607609110884368 ], [ 4976741.645865756087005, 3905763.950340347830206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976690.27695444598794, 3908750.092154094949365 ], [ 4976728.733008435927331, 3908810.25339518673718 ], [ 4976701.921997293829918, 3908827.312276124488562 ], [ 4976663.465907925739884, 3908767.151072771754116 ], [ 4976690.27695444598794, 3908750.092154094949365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976685.371434499509633, 3907778.576825803611428 ], [ 4976712.186485286802053, 3907760.061416558921337 ], [ 4976721.371419840492308, 3907773.917403636500239 ], [ 4976694.845049427822232, 3907792.069267259445041 ], [ 4976685.371434499509633, 3907778.576825803611428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979173.787327722646296, 3901547.343216659966856 ], [ 4979223.960159790702164, 3901518.320922196377069 ], [ 4979248.348053172230721, 3901560.612732636742294 ], [ 4979227.875744771212339, 3901572.22075143456459 ], [ 4979223.858833853155375, 3901565.29359775595367 ], [ 4979194.15914255194366, 3901582.343703734688461 ], [ 4979173.787327722646296, 3901547.343216659966856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979103.723572521470487, 3903993.42590193124488 ], [ 4979087.236056306399405, 3904027.618773138150573 ], [ 4978986.552659783512354, 3903979.336909217294306 ], [ 4979002.751331786625087, 3903945.507488186005503 ], [ 4979103.723572521470487, 3903993.42590193124488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978825.536869337782264, 3906956.497342131566256 ], [ 4978850.909099710173905, 3906940.529905397910625 ], [ 4978875.587580574676394, 3906979.544959959108382 ], [ 4978850.215372230857611, 3906995.51237378641963 ], [ 4978825.536869337782264, 3906956.497342131566256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976332.745805016718805, 3908160.918810970615596 ], [ 4976372.817897100932896, 3908135.875858540181071 ], [ 4976389.461836748756468, 3908162.855803532525897 ], [ 4976349.678433266468346, 3908187.535191150382161 ], [ 4976332.745805016718805, 3908160.918810970615596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976276.931929713115096, 3907437.273626237176359 ], [ 4976286.157474574632943, 3907431.466405989602208 ], [ 4976295.054070313461125, 3907445.685785450972617 ], [ 4976286.693795698694885, 3907450.766510608140379 ], [ 4976297.026280117221177, 3907466.809493036009371 ], [ 4976269.926282062195241, 3907483.868200978729874 ], [ 4976244.670129245147109, 3907444.126087554264814 ], [ 4976270.904883528128266, 3907427.793847110588104 ], [ 4976276.931929713115096, 3907437.273626237176359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976237.514225416816771, 3909252.392906160093844 ], [ 4976251.524710445664823, 3909299.758821927476674 ], [ 4976214.07391594350338, 3909310.970292694400996 ], [ 4976188.908012816682458, 3909227.896589280571789 ], [ 4976215.987581482157111, 3909219.941057757940143 ], [ 4976226.855001030489802, 3909255.648286557290703 ], [ 4976237.514225416816771, 3909252.392906160093844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976102.25319304689765, 3910071.414965794887394 ], [ 4976080.037554299458861, 3910094.674117038026452 ], [ 4976028.028443826362491, 3910045.41010259790346 ], [ 4976050.244078022427857, 3910022.150909058284014 ], [ 4976102.25319304689765, 3910071.414965794887394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976116.127233700826764, 3901300.964870515279472 ], [ 4976144.918163779191673, 3901305.029100831598043 ], [ 4976141.415417669340968, 3901327.962188629433513 ], [ 4976160.704851166345179, 3901330.914639193098992 ], [ 4976157.200607030652463, 3901354.575983919203281 ], [ 4976109.120308968238533, 3901347.559312898665667 ], [ 4976116.127233700826764, 3901300.964870515279472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976099.799364226870239, 3908875.962488005403429 ], [ 4976124.235268875025213, 3908893.854876549914479 ], [ 4976093.344193254597485, 3908935.302910847123712 ], [ 4976069.196215402334929, 3908917.411137361545116 ], [ 4976099.799364226870239, 3908875.962488005403429 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978569.088676475919783, 3907719.898485546000302 ], [ 4978601.974777484312654, 3907690.473942521493882 ], [ 4978621.794012785889208, 3907712.728324581403285 ], [ 4978588.907917147502303, 3907742.15284375147894 ], [ 4978569.088676475919783, 3907719.898485546000302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978550.313945334404707, 3909907.931009015068412 ], [ 4978585.853724903427064, 3909847.924916447605938 ], [ 4978678.154280882328749, 3909902.013703686185181 ], [ 4978642.902264242060483, 3909962.020291166845709 ], [ 4978550.313945334404707, 3909907.931009015068412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978440.323835684917867, 3907208.382419991306961 ], [ 4978456.962404146790504, 3907237.184282898437232 ], [ 4978434.188233536668122, 3907250.244564851745963 ], [ 4978417.550423555076122, 3907221.078585263341665 ], [ 4978440.323835684917867, 3907208.382419991306961 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978455.386590966023505, 3896883.478423089720309 ], [ 4978482.656433066353202, 3896927.596193284727633 ], [ 4978433.337644872255623, 3896957.714014913421124 ], [ 4978413.818453833460808, 3896925.993193331640214 ], [ 4978441.217700930312276, 3896909.301498088985682 ], [ 4978433.4670075699687, 3896896.904590940102935 ], [ 4978455.386590966023505, 3896883.478423089720309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975930.719877646304667, 3906083.45222623180598 ], [ 4975972.795434033498168, 3906065.695418255869299 ], [ 4975986.265569252893329, 3906096.674063129350543 ], [ 4975970.702735177241266, 3906103.560871842782944 ], [ 4975979.585848952643573, 3906124.698612404055893 ], [ 4975953.360381348989904, 3906135.933298834133893 ], [ 4975930.719877646304667, 3906083.45222623180598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975851.099402620457113, 3897793.484939197078347 ], [ 4975887.656842288561165, 3897804.483126396778971 ], [ 4975875.185773518867791, 3897846.696866056416184 ], [ 4975838.62764676567167, 3897836.062824098393321 ], [ 4975851.099402620457113, 3897793.484939197078347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975797.97051780950278, 3912752.635559937451035 ], [ 4975733.981020185165107, 3912793.288644671905786 ], [ 4975638.71111014764756, 3912643.800913409795612 ], [ 4975702.700080211274326, 3912603.511737419292331 ], [ 4975797.97051780950278, 3912752.635559937451035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978302.447098549455404, 3904069.636957961600274 ], [ 4978298.033370474353433, 3904114.051630648318678 ], [ 4978268.955493391491473, 3904111.076865585520864 ], [ 4978273.368401195853949, 3904067.026318054180592 ], [ 4978302.447098549455404, 3904069.636957961600274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978257.856632363051176, 3907035.031890819314867 ], [ 4978271.62548347748816, 3907059.457961038686335 ], [ 4978230.690088174305856, 3907082.6755803944543 ], [ 4978216.921211879700422, 3907058.249530800618231 ], [ 4978257.856632363051176, 3907035.031890819314867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978253.805930897593498, 3905687.006622595246881 ], [ 4978269.839626421220601, 3905730.008199725765735 ], [ 4978254.854969442822039, 3905735.438385057263076 ], [ 4978256.286962570622563, 3905739.082741566002369 ], [ 4978225.164352419786155, 3905750.668954102788121 ], [ 4978208.27062542270869, 3905705.844920922070742 ], [ 4978229.30751761328429, 3905697.878619477618486 ], [ 4978228.734718057326972, 3905696.420877475757152 ], [ 4978253.805930897593498, 3905687.006622595246881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978228.460547965019941, 3911392.180759896058589 ], [ 4978244.067255077883601, 3911363.447346441447735 ], [ 4978276.27385597769171, 3911380.629947512410581 ], [ 4978260.667124278843403, 3911409.36334256734699 ], [ 4978228.460547965019941, 3911392.180759896058589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978123.054547157138586, 3908963.191245101392269 ], [ 4978102.575253249146044, 3908980.990400067996234 ], [ 4978073.278632835485041, 3908947.792359714861959 ], [ 4978093.470023136585951, 3908929.992573672439903 ], [ 4978123.054547157138586, 3908963.191245101392269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978107.750914875417948, 3904901.993240783922374 ], [ 4978081.531833101063967, 3904909.220411158632487 ], [ 4978079.8179796570912, 3904902.662416495848447 ], [ 4978051.292977532371879, 3904910.977134873624891 ], [ 4978039.28977872710675, 3904867.984228807967156 ], [ 4978085.677919347770512, 3904854.973561417777091 ], [ 4978090.822563006542623, 3904873.191026216838509 ], [ 4978098.889864340424538, 3904871.023301605135202 ], [ 4978107.750914875417948, 3904901.993240783922374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978063.002643061801791, 3908361.153151280246675 ], [ 4978086.368470210582018, 3908340.08288589399308 ], [ 4978115.66805228497833, 3908372.188535585068166 ], [ 4978084.801802386529744, 3908400.161426012404263 ], [ 4978071.588512862101197, 3908385.568181291222572 ], [ 4978079.088941045105457, 3908378.665527568664402 ], [ 4978063.002643061801791, 3908361.153151280246675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975690.700110644102097, 3906733.304523066617548 ], [ 4975713.713339114561677, 3906743.910987384151667 ], [ 4975699.832797617651522, 3906773.377550105098635 ], [ 4975656.970672735013068, 3906753.627599603962153 ], [ 4975676.345505962148309, 3906712.519919019192457 ], [ 4975696.194446063600481, 3906721.663430971093476 ], [ 4975690.700110644102097, 3906733.304523066617548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975534.948289924301207, 3903872.370842743199319 ], [ 4975531.508172920905054, 3903864.717134959995747 ], [ 4975554.855302621610463, 3903853.840363083872944 ], [ 4975577.219306517392397, 3903901.950906734447926 ], [ 4975532.25511590577662, 3903922.61553288763389 ], [ 4975513.619134284555912, 3903882.159312572330236 ], [ 4975534.948289924301207, 3903872.370842743199319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975449.637699098326266, 3909047.60603145789355 ], [ 4975420.802105315029621, 3909069.759962625335902 ], [ 4975408.740802539512515, 3909054.442081232555211 ], [ 4975399.224426445551217, 3909062.069683591835201 ], [ 4975365.62573825661093, 3909019.034352532587945 ], [ 4975385.81087507493794, 3909003.417317152488977 ], [ 4975398.733003747649491, 3909020.193452643230557 ], [ 4975416.899862644262612, 3909006.028903177008033 ], [ 4975449.637699098326266, 3909047.60603145789355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975428.967100780457258, 3906162.544888645876199 ], [ 4975477.387150729075074, 3906139.702251641545445 ], [ 4975492.583247580565512, 3906171.776528201065958 ], [ 4975463.761438636109233, 3906185.5553745534271 ], [ 4975460.033661318942904, 3906177.901084184180945 ], [ 4975440.4354607174173, 3906186.964850573334843 ], [ 4975428.967100780457258, 3906162.544888645876199 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977909.137239531613886, 3909372.752622355241328 ], [ 4977930.786931200884283, 3909345.852468917146325 ], [ 4977988.558159125968814, 3909392.219255842734128 ], [ 4977966.908446682617068, 3909419.119363500270993 ], [ 4977909.137239531613886, 3909372.752622355241328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977768.036270999349654, 3906784.930781411938369 ], [ 4977794.559762474149466, 3906768.964771427214146 ], [ 4977819.236100718379021, 3906809.799504092894495 ], [ 4977792.424702828750014, 3906825.764884243253618 ], [ 4977768.036270999349654, 3906784.930781411938369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977677.530693418346345, 3906829.892946333624423 ], [ 4977696.774702535942197, 3906852.50955550186336 ], [ 4977659.855241836979985, 3906883.019119867589325 ], [ 4977640.899155196733773, 3906860.403140976093709 ], [ 4977677.530693418346345, 3906829.892946333624423 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977616.572782913222909, 3911867.540323657914996 ], [ 4977586.010385010391474, 3911890.052477641962469 ], [ 4977568.211587992496789, 3911866.346499684266746 ], [ 4977533.900716841220856, 3911891.763920957222581 ], [ 4977553.708563612774014, 3911918.387152898591012 ], [ 4977522.569759281352162, 3911941.262304766103625 ], [ 4977492.140927861444652, 3911900.051528942771256 ], [ 4977497.618987275287509, 3911896.057532229926437 ], [ 4977486.13589754793793, 3911880.739896873943508 ], [ 4977568.88505204860121, 3911819.738859044387937 ], [ 4977577.209094907157123, 3911831.408573401626199 ], [ 4977585.282667214050889, 3911825.235237394459546 ], [ 4977616.572782913222909, 3911867.540323657914996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977621.142447412014008, 3907219.395973150152713 ], [ 4977591.151392794214189, 3907241.545133613049984 ], [ 4977569.043562244623899, 3907211.639948074240237 ], [ 4977599.034631866030395, 3907189.490763342939317 ], [ 4977621.142447412014008, 3907219.395973150152713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977592.986520262435079, 3912407.136383155360818 ], [ 4977606.306551661342382, 3912370.022720917593688 ], [ 4977640.826028672978282, 3912382.111557840835303 ], [ 4977627.218083501793444, 3912419.224599121604115 ], [ 4977592.986520262435079, 3912407.136383155360818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977560.971315851435065, 3913946.989944558590651 ], [ 4977569.027455698698759, 3913948.827501707244664 ], [ 4977564.084293487481773, 3913972.485829723998904 ], [ 4977512.293975815176964, 3913961.089164860080928 ], [ 4977522.465789332054555, 3913914.865490652620792 ], [ 4977565.912189818918705, 3913924.424012645147741 ], [ 4977560.971315851435065, 3913946.989944558590651 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975218.479071545414627, 3899137.668326729908586 ], [ 4975209.808670855127275, 3899152.580262160394341 ], [ 4975172.696486894972622, 3899131.750353269279003 ], [ 4975194.373567963950336, 3899093.92429746966809 ], [ 4975240.40326676145196, 3899120.234101907350123 ], [ 4975227.397277048788965, 3899142.784059725701809 ], [ 4975218.479071545414627, 3899137.668326729908586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977493.107091635465622, 3913776.069074973464012 ], [ 4977497.977794785052538, 3913787.003283024765551 ], [ 4977515.842490185052156, 3913778.665620832238346 ], [ 4977529.88342166133225, 3913809.282261695712805 ], [ 4977482.629888774827123, 3913830.667191476095468 ], [ 4977463.717440092936158, 3913789.48050414538011 ], [ 4977493.107091635465622, 3913776.069074973464012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977453.549385382793844, 3903648.732855432201177 ], [ 4977478.925436421297491, 3903632.035896026529372 ], [ 4977501.029469404369593, 3903665.218110110145062 ], [ 4977503.047516508959234, 3903664.129940175451338 ], [ 4977525.438696092925966, 3903697.676907559391111 ], [ 4977526.880048335529864, 3903696.951663159299642 ], [ 4977552.716071138158441, 3903735.603707871865481 ], [ 4977523.591191140003502, 3903754.841667923610657 ], [ 4977453.549385382793844, 3903648.732855432201177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977435.025974465534091, 3907962.564223832916468 ], [ 4977420.041207787580788, 3907968.72314368840307 ], [ 4977415.171691478230059, 3907956.696597211528569 ], [ 4977405.373286287300289, 3907961.045705206226557 ], [ 4977398.783852047286928, 3907945.37424392066896 ], [ 4977423.566280065104365, 3907935.230338153894991 ], [ 4977435.025974465534091, 3907962.564223832916468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977404.403935926035047, 3905531.554539074655622 ], [ 4977423.700109156779945, 3905529.774210908915848 ], [ 4977422.572683759965003, 3905518.119636740069836 ], [ 4977447.052656359039247, 3905515.986030298750848 ], [ 4977451.559263576753438, 3905564.060852630063891 ], [ 4977407.783187069930136, 3905567.974780803080648 ], [ 4977404.403935926035047, 3905531.554539074655622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977293.786805668845773, 3908590.397655088454485 ], [ 4977318.476656904444098, 3908624.313486624974757 ], [ 4977302.617912738583982, 3908635.568504710681736 ], [ 4977278.215964796021581, 3908601.653287880588323 ], [ 4977293.786805668845773, 3908590.397655088454485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977262.486513465642929, 3906893.475938486400992 ], [ 4977282.554374168626964, 3906935.392970046494156 ], [ 4977256.614802709780633, 3906947.719382115174085 ], [ 4977236.546152172610164, 3906906.166500127408653 ], [ 4977262.486513465642929, 3906893.475938486400992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977252.646678389981389, 3901113.961038921959698 ], [ 4977247.688583155162632, 3901143.809434872120619 ], [ 4977201.913647637702525, 3901136.067351785488427 ], [ 4977206.871693410910666, 3901106.218947523739189 ], [ 4977252.646678389981389, 3901113.961038921959698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974872.638564188033342, 3909927.649197957012802 ], [ 4974809.219556204974651, 3909968.30556258931756 ], [ 4974789.41552999522537, 3909937.678942637518048 ], [ 4974834.961602322757244, 3909908.63912613876164 ], [ 4974839.840630837716162, 3909916.295644395519048 ], [ 4974857.712879031896591, 3909905.04318474419415 ], [ 4974872.638564188033342, 3909927.649197957012802 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974848.650044875219464, 3902900.947612883057445 ], [ 4974829.32965406216681, 3902914.01780778169632 ], [ 4974803.198048285208642, 3902876.82434553373605 ], [ 4974822.807153266854584, 3902863.390576530247927 ], [ 4974848.650044875219464, 3902900.947612883057445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974804.419743128120899, 3898794.921792326495051 ], [ 4974764.352621659636497, 3898811.227850141003728 ], [ 4974747.442917707376182, 3898769.319211122114211 ], [ 4974770.214485146105289, 3898760.261288499925286 ], [ 4974770.501053368672729, 3898760.990119576919824 ], [ 4974787.795933773741126, 3898754.106088561471552 ], [ 4974804.419743128120899, 3898794.921792326495051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974724.402243879623711, 3900361.251494884490967 ], [ 4974734.392433108761907, 3900406.42356586875394 ], [ 4974705.003325873985887, 3900412.919448439031839 ], [ 4974695.013089722953737, 3900367.747388202231377 ], [ 4974724.402243879623711, 3900361.251494884490967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977081.013373201712966, 3908177.028514161705971 ], [ 4977105.981194164603949, 3908216.04257143009454 ], [ 4977081.475712563842535, 3908231.649332405533642 ], [ 4977056.219953401945531, 3908192.634699524845928 ], [ 4977081.013373201712966, 3908177.028514161705971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977025.455586699768901, 3911500.352752770297229 ], [ 4977097.122264041565359, 3911508.148430829402059 ], [ 4977096.242723277769983, 3911515.793398296460509 ], [ 4977129.6294214008376, 3911519.504152297973633 ], [ 4977125.521073906682432, 3911557.001320832874626 ], [ 4977089.256366153247654, 3911552.920456588733941 ], [ 4977090.427569353953004, 3911543.455429238267243 ], [ 4977021.639798761345446, 3911535.665745007339865 ], [ 4977025.455586699768901, 3911500.352752770297229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976890.821842158213258, 3912010.224167907610536 ], [ 4976909.616790931671858, 3911970.208444956224412 ], [ 4976936.363669561222196, 3911982.644402926787734 ], [ 4976917.568689528852701, 3912022.660107464063913 ], [ 4976890.821842158213258, 3912010.224167907610536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976895.322816045954823, 3903719.305048725102097 ], [ 4976846.306959643959999, 3903749.062371828127652 ], [ 4976820.763924351893365, 3903707.498562870081514 ], [ 4976841.234319790266454, 3903695.524565614759922 ], [ 4976848.696560943499207, 3903707.55633856356144 ], [ 4976877.529273129999638, 3903690.137700571678579 ], [ 4976895.322816045954823, 3903719.305048725102097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976880.295060974545777, 3903466.930911178700626 ], [ 4976855.150687688961625, 3903510.938762606587261 ], [ 4976830.1268917825073, 3903496.685874789953232 ], [ 4976833.595306220464408, 3903490.502815874293447 ], [ 4976812.598511960357428, 3903478.443062031175941 ], [ 4976818.956391428597271, 3903467.532268421258777 ], [ 4976809.176775075495243, 3903462.050078246276826 ], [ 4976827.674499687738717, 3903429.316508964635432 ], [ 4976842.63152658008039, 3903437.722466080449522 ], [ 4976839.163103299215436, 3903443.905523624736816 ], [ 4976880.295060974545777, 3903466.930911178700626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976817.931606942787766, 3912455.408316561486572 ], [ 4976778.156405879184604, 3912478.994740592315793 ], [ 4976762.377657644450665, 3912452.744530493859202 ], [ 4976802.440755449235439, 3912429.158678757958114 ], [ 4976817.931606942787766, 3912455.408316561486572 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976807.045120161026716, 3903796.682386131491512 ], [ 4976772.157796788029373, 3903817.729904539883137 ], [ 4976737.144210451282561, 3903760.488958775997162 ], [ 4976758.768644182011485, 3903747.424887171480805 ], [ 4976765.082057516090572, 3903757.997738756239414 ], [ 4976789.301201398484409, 3903743.482526487670839 ], [ 4976811.399969656020403, 3903779.577214240562171 ], [ 4976800.443767985329032, 3903786.108929179608822 ], [ 4976807.045120161026716, 3903796.682386131491512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974669.2223483286798, 3906387.149681212380528 ], [ 4974627.15177661459893, 3906403.087881511077285 ], [ 4974599.654468413442373, 3906330.206892863381654 ], [ 4974642.012351530604064, 3906314.633352811448276 ], [ 4974669.2223483286798, 3906387.149681212380528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974654.733196798712015, 3907013.063754389528185 ], [ 4974648.638185320422053, 3907037.448488675057888 ], [ 4974628.20458425860852, 3907032.674172198865563 ], [ 4974634.300301688723266, 3907007.925302731338888 ], [ 4974654.733196798712015, 3907013.063754389528185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974623.677482171915472, 3907572.308972848579288 ], [ 4974637.433438657782972, 3907604.74406516738236 ], [ 4974612.651040385477245, 3907615.254669331945479 ], [ 4974598.89505944121629, 3907582.819589483551681 ], [ 4974623.677482171915472, 3907572.308972848579288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974593.960723245516419, 3899188.492240995634347 ], [ 4974619.899313434027135, 3899179.804605571553111 ], [ 4974628.489831601269543, 3899204.946656837593764 ], [ 4974602.551262850873172, 3899213.634284098166972 ], [ 4974593.960723245516419, 3899188.492240995634347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976674.89850661251694, 3906434.907676270697266 ], [ 4976718.414440890774131, 3906416.790871174540371 ], [ 4976729.875506085343659, 3906444.124430577270687 ], [ 4976686.359608230181038, 3906462.241217417642474 ], [ 4976674.89850661251694, 3906434.907676270697266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976663.013120542280376, 3911499.238600198645145 ], [ 4976672.817629050463438, 3911491.247896192129701 ], [ 4976703.25569704733789, 3911528.816417755093426 ], [ 4976693.739826030097902, 3911536.443573375698179 ], [ 4976663.013120542280376, 3911499.238600198645145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976635.380575499497354, 3902417.36305582197383 ], [ 4976667.437866006977856, 3902373.005149538163096 ], [ 4976692.742512934841216, 3902391.26389510370791 ], [ 4976693.319974217563868, 3902390.536824271548539 ], [ 4976718.91181474365294, 3902409.160318320151418 ], [ 4976720.933682089671493, 3902406.251442836131901 ], [ 4976734.736389175988734, 3902416.111475233454257 ], [ 4976728.671537853777409, 3902424.473969554062933 ], [ 4976741.899026656523347, 3902433.968687232583761 ], [ 4976747.386417955160141, 3902426.333265542984009 ], [ 4976760.614651370793581, 3902435.463862917385995 ], [ 4976754.838527239859104, 3902443.462816712912172 ], [ 4976767.778018679469824, 3902452.956952478736639 ], [ 4976773.265413487330079, 3902445.321535984054208 ], [ 4976786.780102560296655, 3902455.1810003798455 ], [ 4976781.003974840044975, 3902463.179948655422777 ], [ 4976794.231426099315286, 3902472.674692316912115 ], [ 4976799.718824431300163, 3902465.039281127974391 ], [ 4976812.371063930913806, 3902474.168713692575693 ], [ 4976806.594179895706475, 3902482.531786106526852 ], [ 4976822.409652928821743, 3902493.852549526840448 ], [ 4976794.973441915586591, 3902531.665464960504323 ], [ 4976635.380575499497354, 3902417.36305582197383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976589.127760693430901, 3902642.664928682148457 ], [ 4976530.780440664850175, 3902728.115662296302617 ], [ 4976536.244490335695446, 3902731.768213928677142 ], [ 4976523.823336597532034, 3902750.313352533150464 ], [ 4976515.196050019934773, 3902744.46951129892841 ], [ 4976506.24185231141746, 3902757.559820586349815 ], [ 4976472.883084136992693, 3902734.915121105499566 ], [ 4976482.70419420208782, 3902720.370057996828109 ], [ 4976470.625666691921651, 3902712.334351535420865 ], [ 4976484.490424003452063, 3902691.971500097773969 ], [ 4976498.00659145321697, 3902701.102561546955258 ], [ 4976515.625550920143723, 3902675.649608453270048 ], [ 4976503.834989535622299, 3902667.614479486364871 ], [ 4976517.987771670334041, 3902647.252237964887172 ], [ 4976531.215973733924329, 3902656.38272364391014 ], [ 4976549.124469233676791, 3902630.202126396354288 ], [ 4976537.333897840231657, 3902622.166982959955931 ], [ 4976544.265573102980852, 3902612.349703658837825 ], [ 4976589.127760693430901, 3902642.664928682148457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976540.175721981562674, 3900820.817136123310775 ], [ 4976534.349883671849966, 3900852.848656195681542 ], [ 4976477.922886834479868, 3900842.901115437503904 ], [ 4976483.74865997582674, 3900810.869583321735263 ], [ 4976540.175721981562674, 3900820.817136123310775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976499.904426847584546, 3903458.863541597966105 ], [ 4976476.27384071983397, 3903467.189989601261914 ], [ 4976480.282940697856247, 3903478.12216807808727 ], [ 4976445.98934609349817, 3903490.432174840942025 ], [ 4976429.955121210776269, 3903445.611095797270536 ], [ 4976460.502933843992651, 3903434.385766940191388 ], [ 4976457.926180581562221, 3903427.097847238183022 ], [ 4976485.015410900115967, 3903417.321966583840549 ], [ 4976499.904426847584546, 3903458.863541597966105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974313.664224925450981, 3900093.165606208145618 ], [ 4974324.836701293475926, 3900123.410499138291925 ], [ 4974291.403835784643888, 3900135.724936520215124 ], [ 4974280.231326996348798, 3900105.480057259555906 ], [ 4974313.664224925450981, 3900093.165606208145618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974294.39254416897893, 3908396.052331973798573 ], [ 4974262.960227141156793, 3908421.115428808145225 ], [ 4974254.057135867886245, 3908409.809761124197394 ], [ 4974263.284782855771482, 3908402.545319105498493 ], [ 4974253.520095074549317, 3908390.145554726012051 ], [ 4974275.436139754019678, 3908372.710444454103708 ], [ 4974294.39254416897893, 3908396.052331973798573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974200.301392554305494, 3895796.571687427349389 ], [ 4974150.724529641680419, 3895812.859908434562385 ], [ 4974146.14224211871624, 3895799.378096820786595 ], [ 4974154.788760576397181, 3895796.846205523237586 ], [ 4974148.205168155021966, 3895775.713734023738652 ], [ 4974124.281234652735293, 3895783.677516672760248 ], [ 4974115.692003358155489, 3895757.079164927825332 ], [ 4974179.10398455709219, 3895736.448562585283071 ], [ 4974183.398932830430567, 3895749.565683950670063 ], [ 4974196.657149668782949, 3895745.586369425058365 ], [ 4974202.385884894989431, 3895761.983484116382897 ], [ 4974190.279876983724535, 3895765.965064992662519 ], [ 4974200.301392554305494, 3895796.571687427349389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974084.021746608428657, 3896481.999018100090325 ], [ 4974031.560071378014982, 3896501.194830706808716 ], [ 4974022.392035367898643, 3896476.051879601087421 ], [ 4974043.146136071532965, 3896468.44590829545632 ], [ 4974031.400010754354298, 3896436.015297209378332 ], [ 4974062.819617439061403, 3896424.424858736805618 ], [ 4974084.021746608428657, 3896481.999018100090325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974031.621655414812267, 3896323.13552632369101 ], [ 4974035.912290494889021, 3896338.437398368492723 ], [ 4974036.200334782712162, 3896338.437964004464447 ], [ 4974047.359681568108499, 3896376.329368168488145 ], [ 4973988.853195914067328, 3896393.328612922690809 ], [ 4973982.271764014847577, 3896371.103789744898677 ], [ 4973996.970579131506383, 3896366.763072300702333 ], [ 4973987.81318028550595, 3896336.158210715278983 ], [ 4974031.621655414812267, 3896323.13552632369101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976382.470317739993334, 3905957.293281766586006 ], [ 4976351.058591340668499, 3905969.97346667945385 ], [ 4976334.726566433906555, 3905930.613741081207991 ], [ 4976366.138331018388271, 3905917.933537382166833 ], [ 4976382.470317739993334, 3905957.293281766586006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976373.324718506075442, 3908730.869265767745674 ], [ 4976361.503915443085134, 3908738.855931354686618 ], [ 4976348.300313070416451, 3908719.165697769261897 ], [ 4976360.121120835654438, 3908711.179026472382247 ], [ 4976373.324718506075442, 3908730.869265767745674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976373.582153455354273, 3908465.053103290963918 ], [ 4976348.214329331181943, 3908480.294632515870035 ], [ 4976322.390869167633355, 3908436.909931951668113 ], [ 4976347.758719452656806, 3908421.668378742411733 ], [ 4976373.582153455354273, 3908465.053103290963918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976325.503779847174883, 3912255.213353442493826 ], [ 4976360.965284767560661, 3912229.432613478042185 ], [ 4976378.76415625680238, 3912253.501928749494255 ], [ 4976343.302665882743895, 3912279.282645612489432 ], [ 4976325.503779847174883, 3912255.213353442493826 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976293.452174147590995, 3909492.470846923533827 ], [ 4976319.679738949984312, 3909478.687551185488701 ], [ 4976343.770297116599977, 3909524.253521667327732 ], [ 4976317.542764290235937, 3909538.036794289480895 ], [ 4976293.452174147590995, 3909492.470846923533827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976298.543294456787407, 3903774.516315681859851 ], [ 4976309.387471102178097, 3903822.603873536922038 ], [ 4976285.763229554519057, 3903828.017452047672123 ], [ 4976284.05185086838901, 3903820.003056812565774 ], [ 4976253.802202859893441, 3903826.495490137953311 ], [ 4976244.958031690679491, 3903786.058806474786252 ], [ 4976298.543294456787407, 3903774.516315681859851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976271.144955274648964, 3900559.547453283332288 ], [ 4976262.695344937965274, 3900607.231274381279945 ], [ 4976237.360412533394992, 3900602.809860898181796 ], [ 4976245.809979262761772, 3900555.126031948719174 ], [ 4976271.144955274648964, 3900559.547453283332288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973748.011000230908394, 3899066.663622344844043 ], [ 4973745.143650838173926, 3899060.103677134029567 ], [ 4973728.712569590657949, 3899067.354196213651448 ], [ 4973711.796439831145108, 3899027.995104441884905 ], [ 4973748.405698074027896, 3899012.044853473547846 ], [ 4973768.477856446988881, 3899057.600349126849324 ], [ 4973748.011000230908394, 3899066.663622344844043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973702.705054737627506, 3909143.546988668851554 ], [ 4973649.676891243085265, 3909170.753455225378275 ], [ 4973628.164806625805795, 3909129.200403973925859 ], [ 4973656.120217396877706, 3909114.689616683870554 ], [ 4973668.166861716657877, 3909138.017596434801817 ], [ 4973693.239658401347697, 3909125.32188647473231 ], [ 4973702.705054737627506, 3909143.546988668851554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973707.51529433671385, 3899007.959584373049438 ], [ 4973688.201904184184968, 3899016.296893605031073 ], [ 4973679.886387000791728, 3898997.345898268744349 ], [ 4973699.200498703867197, 3898988.64445429481566 ], [ 4973707.51529433671385, 3899007.959584373049438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975983.131696877069771, 3901273.019751085434109 ], [ 4975977.273251962848008, 3901321.43721965700388 ], [ 4975947.329609662294388, 3901317.734953702893108 ], [ 4975952.899268805980682, 3901269.681021841708571 ], [ 4975983.131696877069771, 3901273.019751085434109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975970.468769970349967, 3906925.406260420568287 ], [ 4975920.90762107167393, 3906943.511979303322732 ], [ 4975908.878975410945714, 3906911.808018474839628 ], [ 4975958.440174547955394, 3906893.702277758158743 ], [ 4975970.468769970349967, 3906925.406260420568287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975973.186514065600932, 3901348.374579246621579 ], [ 4975966.177625253796577, 3901396.061448218300939 ], [ 4975936.235546483658254, 3901391.630935813765973 ], [ 4975943.244383279234171, 3901343.944059152621776 ], [ 4975973.186514065600932, 3901348.374579246621579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975792.07487955596298, 3903743.260712259914726 ], [ 4975785.154853607527912, 3903747.616244503762573 ], [ 4975772.236326741985977, 3903727.926938603632152 ], [ 4975817.5067382985726, 3903698.524184954818338 ], [ 4975846.788218572735786, 3903743.37181402835995 ], [ 4975808.150646959431469, 3903768.054276561830193 ], [ 4975792.07487955596298, 3903743.260712259914726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973608.861705277115107, 3897607.322849507909268 ], [ 4973630.078764204867184, 3897657.249990954063833 ], [ 4973604.711542417295277, 3897667.760338612832129 ], [ 4973603.277775137685239, 3897664.480376344174147 ], [ 4973580.79228819347918, 3897674.268099592067301 ], [ 4973575.631849247962236, 3897661.877634617500007 ], [ 4973563.524663183838129, 3897666.95188799733296 ], [ 4973548.901727424003184, 3897632.69521626830101 ], [ 4973608.861705277115107, 3897607.322849507909268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975563.071691136807203, 3905060.224641286768019 ], [ 4975546.017111197113991, 3905092.597892491612583 ], [ 4975516.677046211436391, 3905077.245096648577601 ], [ 4975534.019551428966224, 3905044.872408825904131 ], [ 4975563.071691136807203, 3905060.224641286768019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975552.644684956409037, 3897963.657330472953618 ], [ 4975557.592640722170472, 3897938.17822166858241 ], [ 4975539.741576646454632, 3897934.864990008063614 ], [ 4975543.814410325139761, 3897914.846062598749995 ], [ 4975553.315636255778372, 3897916.685906356666237 ], [ 4975558.552364482544363, 3897890.843251767102629 ], [ 4975606.92186495475471, 3897900.408406037371606 ], [ 4975592.664224666543305, 3897971.749071685131639 ], [ 4975552.644684956409037, 3897963.657330472953618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975524.051525176502764, 3911831.915994210634381 ], [ 4975508.213807947002351, 3911834.068801996298134 ], [ 4975502.548160295002162, 3911788.540715211071074 ], [ 4975497.652751297689974, 3911789.259096025489271 ], [ 4975495.951947882771492, 3911776.146868281532079 ], [ 4975496.815584475174546, 3911776.14861213741824 ], [ 4975494.550785442814231, 3911757.209115424659103 ], [ 4975514.707468715496361, 3911754.700889893807471 ], [ 4975524.051525176502764, 3911831.915994210634381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975493.565333019942045, 3911389.796823855023831 ], [ 4975426.181618016213179, 3911399.128315895795822 ], [ 4975424.196542534045875, 3911384.194857468362898 ], [ 4975491.580294272862375, 3911374.863360530696809 ], [ 4975493.565333019942045, 3911389.796823855023831 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975474.145801194943488, 3905890.993657821789384 ], [ 4975449.08310220669955, 3905896.769203910138458 ], [ 4975440.804018693976104, 3905861.43172001093626 ], [ 4975488.913158187642694, 3905850.24069784861058 ], [ 4975499.47366389259696, 3905896.506756905000657 ], [ 4975476.428026836365461, 3905901.55808613402769 ], [ 4975474.145801194943488, 3905890.993657821789384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975407.962485768832266, 3910440.329517669510096 ], [ 4975421.451615689322352, 3910461.112284779082984 ], [ 4975413.668962598778307, 3910465.830320695415139 ], [ 4975420.556366642937064, 3910476.768192266114056 ], [ 4975409.89038657490164, 3910483.665213000960648 ], [ 4975417.351370310410857, 3910495.696638723835349 ], [ 4975402.07324683945626, 3910505.497427070513368 ], [ 4975396.046585060656071, 3910496.017826167866588 ], [ 4975375.291910296306014, 3910509.084788744337857 ], [ 4975353.480279766023159, 3910475.176500549539924 ], [ 4975407.962485768832266, 3910440.329517669510096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975384.21613881830126, 3904078.16514870384708 ], [ 4975406.915185445919633, 3904102.971820755396038 ], [ 4975380.663050632923841, 3904126.587470367085189 ], [ 4975376.065945015288889, 3904121.480370772536844 ], [ 4975359.621380368247628, 3904136.740773949306458 ], [ 4975341.519433493725955, 3904117.041234194301069 ], [ 4975384.21613881830126, 3904078.16514870384708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973241.914138897322118, 3902369.072854541707784 ], [ 4973210.487041925080121, 3902388.311016024556011 ], [ 4973174.601470937952399, 3902330.344832170754671 ], [ 4973204.875984663143754, 3902311.468532067257911 ], [ 4973217.221114942803979, 3902331.155473144724965 ], [ 4973212.319117280654609, 3902334.423173443414271 ], [ 4973223.801700420677662, 3902353.380188167560846 ], [ 4973229.856319807469845, 3902349.750588282011449 ], [ 4973241.914138897322118, 3902369.072854541707784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973223.730704755522311, 3901794.439095308072865 ], [ 4973242.993350534699857, 3901811.22637336794287 ], [ 4973223.077273643575609, 3901834.492226107046008 ], [ 4973203.813928265124559, 3901818.069091592915356 ], [ 4973223.730704755522311, 3901794.439095308072865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973210.760343679226935, 3897628.762257615104318 ], [ 4973187.699613341130316, 3897638.185067326761782 ], [ 4973184.545350211672485, 3897630.896373782772571 ], [ 4973145.919744268059731, 3897646.115229645743966 ], [ 4973131.300482217222452, 3897609.674014021176845 ], [ 4973167.331744725815952, 3897595.54251613561064 ], [ 4973164.7528295526281, 3897588.619066340383142 ], [ 4973190.695311459712684, 3897578.473545687273145 ], [ 4973210.760343679226935, 3897628.762257615104318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973065.732493996620178, 3901739.15025187889114 ], [ 4973082.761615380644798, 3901719.520024300552905 ], [ 4973102.025105440057814, 3901735.94307108502835 ], [ 4973085.28396656177938, 3901755.573842090554535 ], [ 4973065.732493996620178, 3901739.15025187889114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975226.372827187180519, 3905244.889232955873013 ], [ 4975243.557570687495172, 3905290.804347906261683 ], [ 4975199.180626088753343, 3905307.101143529172987 ], [ 4975182.283766034059227, 3905261.186634411104023 ], [ 4975226.372827187180519, 3905244.889232955873013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975170.854105293750763, 3899475.849847713019699 ], [ 4975137.352151186205447, 3899522.027219276875257 ], [ 4975114.919466214254498, 3899505.960515103302896 ], [ 4975128.493178914301097, 3899487.417070921976119 ], [ 4975119.865269295871258, 3899481.209560137242079 ], [ 4975139.793487718328834, 3899453.575598936993629 ], [ 4975170.854105293750763, 3899475.849847713019699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975149.649509988725185, 3905596.122329109348357 ], [ 4975159.524382869713008, 3905553.902856160886586 ], [ 4975201.256746978498995, 3905563.818168780766428 ], [ 4975191.093867099843919, 3905606.037048637401313 ], [ 4975149.649509988725185, 3905596.122329109348357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975142.571625605225563, 3901227.989514804445207 ], [ 4975291.711888488382101, 3901247.952053256798536 ], [ 4975283.526596290059388, 3901308.381307544186711 ], [ 4975134.386662933044136, 3901288.418813799042255 ], [ 4975142.571625605225563, 3901227.989514804445207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975127.320725871250033, 3898779.181244121864438 ], [ 4975091.291470830328763, 3898792.581867047119886 ], [ 4975088.712437555193901, 3898786.022356540430337 ], [ 4975070.265428241342306, 3898792.90388716571033 ], [ 4975061.958104999735951, 3898770.311179001815617 ], [ 4975077.810775252059102, 3898764.51683779200539 ], [ 4975072.081033417023718, 3898749.211893712636083 ], [ 4975091.104110202752054, 3898742.33151839626953 ], [ 4975095.401045453734696, 3898753.992293701507151 ], [ 4975115.000891550444067, 3898746.748960479162633 ], [ 4975127.320725871250033, 3898779.181244121864438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972658.021708994172513, 3911028.827563301194459 ], [ 4972689.34560305904597, 3911058.018152397591621 ], [ 4972666.267987471073866, 3911082.370881801005453 ], [ 4972635.231983493082225, 3911053.180869789794087 ], [ 4972658.021708994172513, 3911028.827563301194459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972420.078389010392129, 3904605.445892503019422 ], [ 4972389.539839323610067, 3904613.398650923743844 ], [ 4972376.102220667526126, 3904562.758810339961201 ], [ 4972406.92878008261323, 3904554.80658507719636 ], [ 4972420.078389010392129, 3904605.445892503019422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974877.025001557543874, 3903401.320483727380633 ], [ 4974903.840250593610108, 3903384.259838735684752 ], [ 4974918.194331664592028, 3903406.500507099088281 ], [ 4974891.379095626994967, 3903423.561137998476624 ], [ 4974877.025001557543874, 3903401.320483727380633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974780.085356774739921, 3905805.487612936645746 ], [ 4974768.801193629391491, 3905832.775020170491189 ], [ 4974706.944252064451575, 3905807.162667512893677 ], [ 4974718.228362994268537, 3905779.875234733335674 ], [ 4974780.085356774739921, 3905805.487612936645746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974763.92468415107578, 3898881.504136376082897 ], [ 4974778.255920023657382, 3898916.489178522955626 ], [ 4974756.349256579764187, 3898925.184686400461942 ], [ 4974763.515597335062921, 3898942.31307603046298 ], [ 4974734.978788251057267, 3898953.90844399901107 ], [ 4974724.087778359651566, 3898926.941134164109826 ], [ 4974730.717230739071965, 3898924.405412420164794 ], [ 4974720.398616313003004, 3898899.259894819464535 ], [ 4974763.92468415107578, 3898881.504136376082897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972167.299597165547311, 3903820.626792358700186 ], [ 4972194.565759322606027, 3903868.379665651824325 ], [ 4972163.431886468082666, 3903886.163095091469586 ], [ 4972135.878412789665163, 3903838.045577618759125 ], [ 4972167.299597165547311, 3903820.626792358700186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972176.306311038322747, 3898002.928704757709056 ], [ 4972136.235476905480027, 3898021.423444683197886 ], [ 4972111.854531132616103, 3897967.85018933750689 ], [ 4972151.636711560189724, 3897949.718996888026595 ], [ 4972176.306311038322747, 3898002.928704757709056 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972109.902665448375046, 3907368.252940443344414 ], [ 4972082.228005593642592, 3907386.043042376171798 ], [ 4972054.093195927329361, 3907342.658116168342531 ], [ 4972081.76857053488493, 3907324.503854989539832 ], [ 4972109.902665448375046, 3907368.252940443344414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974726.389873149804771, 3909491.490912767592818 ], [ 4974721.800812219269574, 3909482.742596621625125 ], [ 4974703.643335391767323, 3909492.538046253379434 ], [ 4974687.578686837106943, 3909463.375481592025608 ], [ 4974731.387154660187662, 3909439.794029789976776 ], [ 4974744.296430394984782, 3909463.124215963296592 ], [ 4974735.073365358635783, 3909468.203710599802434 ], [ 4974742.818488341756165, 3909482.420301531907171 ], [ 4974726.389873149804771, 3909491.490912767592818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971989.643884455785155, 3902132.907331729773432 ], [ 4971919.577707844786346, 3902178.655632274691015 ], [ 4971902.34821826312691, 3902152.405728598125279 ], [ 4971972.126451245509088, 3902106.65684033324942 ], [ 4971989.643884455785155, 3902132.907331729773432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971886.436043730936944, 3907539.701225246768445 ], [ 4971916.125886869616807, 3907521.914720329456031 ], [ 4971926.458202783018351, 3907539.412545877508819 ], [ 4971932.511480733752251, 3907535.782642172183841 ], [ 4971950.307133954949677, 3907565.310915186535567 ], [ 4971914.851974018849432, 3907586.727832206524909 ], [ 4971886.436043730936944, 3907539.701225246768445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974463.393797870725393, 3896327.263965879566967 ], [ 4974512.715048267506063, 3896294.225845684763044 ], [ 4974546.317377720028162, 3896344.178216318134218 ], [ 4974485.171234747394919, 3896384.839578739367425 ], [ 4974469.949610838666558, 3896362.233395936898887 ], [ 4974481.48723594751209, 3896354.245387748349458 ], [ 4974463.393797870725393, 3896327.263965879566967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974447.588075173087418, 3902856.819112111348659 ], [ 4974468.836891672573984, 3902887.812328131869435 ], [ 4974436.828526420518756, 3902909.596828934270889 ], [ 4974444.006971607916057, 3902920.170839646365494 ], [ 4974422.380121145397425, 3902934.693286140449345 ], [ 4974393.664847911335528, 3902893.125537340994924 ], [ 4974422.212463041767478, 3902873.883055720943958 ], [ 4974414.459488800726831, 3902862.579652342945337 ], [ 4974429.454331935383379, 3902852.41364901792258 ], [ 4974437.4952771961689, 3902863.717626586556435 ], [ 4974447.588075173087418, 3902856.819112111348659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974321.098947522230446, 3904495.159865115303546 ], [ 4974293.381773804314435, 3904532.246551590971649 ], [ 4974253.702671833336353, 3904502.30947724217549 ], [ 4974282.862481886520982, 3904463.76907166512683 ], [ 4974290.913065921515226, 3904469.975195652339607 ], [ 4974300.152135501615703, 3904457.612963188905269 ], [ 4974320.56761908531189, 3904472.582664216402918 ], [ 4974309.885165374726057, 3904486.762697182130069 ], [ 4974321.098947522230446, 3904495.159865115303546 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974257.452267789281905, 3899388.826430421788245 ], [ 4974288.849125266075134, 3899387.067717004101723 ], [ 4974291.923117389902472, 3899434.774860417935997 ], [ 4974253.612613056786358, 3899437.248196102678776 ], [ 4974251.935528167523444, 3899411.391633164137602 ], [ 4974258.849237129092216, 3899410.677006947342306 ], [ 4974257.452267789281905, 3899388.826430421788245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974155.615673619322479, 3903863.065571412444115 ], [ 4974179.820399233140051, 3903855.102345073595643 ], [ 4974186.406266573816538, 3903874.050146950408816 ], [ 4974198.508627231232822, 3903870.068544891197234 ], [ 4974217.116451815702021, 3903925.817310153506696 ], [ 4974185.996365381404757, 3903935.951668174006045 ], [ 4974181.98927075881511, 3903923.563309187535197 ], [ 4974169.598973659798503, 3903927.544351758435369 ], [ 4974164.161375500261784, 3903910.41947105107829 ], [ 4974170.788830426521599, 3903908.247733472380787 ], [ 4974155.615673619322479, 3903863.065571412444115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974153.973666250705719, 3900308.416074271313846 ], [ 4974175.815191279165447, 3900332.127561904489994 ], [ 4974145.231135526672006, 3900360.469536785036325 ], [ 4974113.330325836315751, 3900326.1785001847893 ], [ 4974128.044912023469806, 3900312.734615506604314 ], [ 4974137.81619056686759, 3900323.31362761836499 ], [ 4974153.973666250705719, 3900308.416074271313846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971314.779411188326776, 3900805.841663747560233 ], [ 4971271.001244608312845, 3900807.216672368347645 ], [ 4971269.357298355549574, 3900762.061420453712344 ], [ 4971287.7904550479725, 3900761.367471446748823 ], [ 4971287.524829662404954, 3900749.350667865481228 ], [ 4971326.118466230109334, 3900748.330156275071204 ], [ 4971326.934286731295288, 3900774.184947474393994 ], [ 4971313.68507928494364, 3900774.888525494839996 ], [ 4971314.779411188326776, 3900805.841663747560233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974051.867669755592942, 3899799.889113660436124 ], [ 4974021.616189756430686, 3899805.291656609158963 ], [ 4974010.792718433775008, 3899743.732364619150758 ], [ 4974041.044265468604863, 3899738.329809688497335 ], [ 4974051.867669755592942, 3899799.889113660436124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973917.948958343826234, 3904058.865523108281195 ], [ 4973866.651161856018007, 3904079.520522730425 ], [ 4973845.155972390435636, 3904027.407658522948623 ], [ 4973868.211461596190929, 3904017.98537650052458 ], [ 4973863.340346564538777, 3904005.595372914802283 ], [ 4973889.854260730557144, 3903994.723355392925441 ], [ 4973903.324989109300077, 3904027.157436795532703 ], [ 4973893.815113144926727, 3904030.780119094531983 ], [ 4973899.259992792271078, 3904044.263646644540131 ], [ 4973910.211100602522492, 3904039.915527703706175 ], [ 4973917.948958343826234, 3904058.865523108281195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973905.69970291852951, 3908252.183779008686543 ], [ 4973929.623911983333528, 3908238.393646977376193 ], [ 4973948.850059299729764, 3908271.203257010784 ], [ 4973925.213785752654076, 3908284.993936650454998 ], [ 4973905.69970291852951, 3908252.183779008686543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973758.002766052260995, 3899996.67211213381961 ], [ 4973750.851005676202476, 3899971.89726910693571 ], [ 4973798.974241308867931, 3899958.518487179651856 ], [ 4973811.845475654117763, 3900004.059964559040964 ], [ 4973773.51946160569787, 3900014.90895438939333 ], [ 4973767.512626045383513, 3899993.777648810762912 ], [ 4973758.002766052260995, 3899996.67211213381961 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971139.943598851561546, 3904230.168240750208497 ], [ 4971105.626400819979608, 3904257.050271445419639 ], [ 4971111.65936072729528, 3904264.70822298200801 ], [ 4971089.742708970792592, 3904281.781739624217153 ], [ 4971065.036270110867918, 3904250.420633372385055 ], [ 4971081.762229710817337, 3904237.342915741726756 ], [ 4971076.303149126470089, 3904230.778429131954908 ], [ 4971093.317086271010339, 3904217.70125277666375 ], [ 4971098.201596694067121, 3904223.536414312198758 ], [ 4971120.982856905087829, 3904206.100378283299506 ], [ 4971139.943598851561546, 3904230.168240750208497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970992.593173726461828, 3894223.960228011012077 ], [ 4970999.660749258473516, 3894296.435010362882167 ], [ 4970968.256149048916996, 3894299.289944306947291 ], [ 4970965.994717753492296, 3894275.981495083775371 ], [ 4970946.114771110936999, 3894277.765383088961244 ], [ 4970944.13398118596524, 3894258.462875641416758 ], [ 4970963.150415535084903, 3894256.313260131049901 ], [ 4970960.323615572415292, 3894227.177699955180287 ], [ 4970992.593173726461828, 3894223.960228011012077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973655.251581991091371, 3902325.451696705073118 ], [ 4973635.060322960838675, 3902342.162356970366091 ], [ 4973618.10853033978492, 3902322.102115325629711 ], [ 4973638.299793830141425, 3902305.39144251961261 ], [ 4973655.251581991091371, 3902325.451696705073118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973641.199580734595656, 3900079.101794207468629 ], [ 4973594.815301727503538, 3900087.022288362961262 ], [ 4973586.551813881844282, 3900041.489885363262147 ], [ 4973632.93687863368541, 3900033.205248064827174 ], [ 4973641.199580734595656, 3900079.101794207468629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973583.057035338133574, 3896363.041015438269824 ], [ 4973640.988659447990358, 3896345.311508348677307 ], [ 4973648.143628551624715, 3896368.993883796036243 ], [ 4973627.968489365652204, 3896375.144768945872784 ], [ 4973631.974849799647927, 3896388.625374191906303 ], [ 4973594.506471904926002, 3896400.204536338802427 ], [ 4973583.057035338133574, 3896363.041015438269824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970611.625581974163651, 3894301.181645100004971 ], [ 4970648.525478624738753, 3894286.320129539817572 ], [ 4970660.284662786871195, 3894314.379685992375016 ], [ 4970623.096063478849828, 3894329.604784536641091 ], [ 4970611.625581974163651, 3894301.181645100004971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973028.887113588862121, 3911442.830683688633144 ], [ 4973051.886113441549242, 3911459.261005661915988 ], [ 4973036.009071377106011, 3911481.80664346460253 ], [ 4973012.722198997624218, 3911465.375780178699642 ], [ 4973028.887113588862121, 3911442.830683688633144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970496.680635145865381, 3898549.635215677786618 ], [ 4970539.639106691814959, 3898526.045503344852477 ], [ 4970555.715505800209939, 3898554.841264920309186 ], [ 4970512.757066027261317, 3898578.430951967369765 ], [ 4970496.680635145865381, 3898549.635215677786618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970473.441997161135077, 3897084.333860040642321 ], [ 4970454.712972323410213, 3897087.940867027733475 ], [ 4970457.282634789124131, 3897100.325982856098562 ], [ 4970422.13023741543293, 3897106.815990556031466 ], [ 4970414.714560694992542, 3897066.748152530286461 ], [ 4970468.307348746806383, 3897057.01472611958161 ], [ 4970473.441997161135077, 3897084.333860040642321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970324.788632675074041, 3903565.584255804307759 ], [ 4970337.703242350369692, 3903589.640500346198678 ], [ 4970312.914183169603348, 3903602.703953980468214 ], [ 4970299.998893030919135, 3903579.011851127259433 ], [ 4970324.788632675074041, 3903565.584255804307759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972990.18463234603405, 3906425.01109666749835 ], [ 4973029.376934992149472, 3906407.972392998170108 ], [ 4973054.605120476335287, 3906465.189724231604487 ], [ 4973015.124247989617288, 3906482.591967539396137 ], [ 4972990.18463234603405, 3906425.01109666749835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972707.798367886804044, 3905029.844380872324109 ], [ 4972698.518398323096335, 3905064.054978747852147 ], [ 4972674.63102572504431, 3905057.454887048806995 ], [ 4972684.198918334208429, 3905023.244832209777087 ], [ 4972707.798367886804044, 3905029.844380872324109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970102.198807197622955, 3903243.650908816140145 ], [ 4970144.293482731096447, 3903215.689368736930192 ], [ 4970178.469168956391513, 3903266.729923249687999 ], [ 4970136.37453752104193, 3903294.691410666331649 ], [ 4970102.198807197622955, 3903243.650908816140145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970019.089978751726449, 3902862.983010380528867 ], [ 4970040.641780950129032, 3902888.511300325859338 ], [ 4970015.261076198890805, 3902909.948963159229606 ], [ 4970011.812657375819981, 3902905.937264747917652 ], [ 4969969.993067224510014, 3902940.817995869554579 ], [ 4969935.798098192550242, 3902899.97335149673745 ], [ 4969979.636168735101819, 3902863.639703882858157 ], [ 4969995.440414430573583, 3902882.603178130928427 ], [ 4970019.089978751726449, 3902862.983010380528867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969993.699553701095283, 3893042.352504148148 ], [ 4970023.065177043899894, 3893052.601371999830008 ], [ 4970018.721526094712317, 3893064.973874208051711 ], [ 4970044.919565163552761, 3893074.488762403372675 ], [ 4970035.944835890084505, 3893098.869110392406583 ], [ 4970081.432217177934945, 3893114.97336559323594 ], [ 4970071.87734341993928, 3893141.537421860732138 ], [ 4970009.403923665173352, 3893119.576307199895382 ], [ 4970007.956265370361507, 3893123.579099511727691 ], [ 4969988.667532416991889, 3893116.625674459151924 ], [ 4969993.58929976914078, 3893103.161828562617302 ], [ 4969974.300548450089991, 3893096.208413894753903 ], [ 4969993.699553701095283, 3893042.352504148148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969950.835525394417346, 3897779.234016679693013 ], [ 4969942.684965468943119, 3897826.556137647014111 ], [ 4969896.038212646730244, 3897818.824947956949472 ], [ 4969900.404773104004562, 3897793.343757822178304 ], [ 4969907.891541818156838, 3897794.449699299875647 ], [ 4969911.674808159470558, 3897772.972884283401072 ], [ 4969950.835525394417346, 3897779.234016679693013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972565.494801570661366, 3902042.603845580480993 ], [ 4972574.169761446304619, 3902024.049735640641302 ], [ 4972588.84439246263355, 3902030.632120274472982 ], [ 4972580.169424555264413, 3902049.186225540004671 ], [ 4972565.494801570661366, 3902042.603845580480993 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972196.551216618157923, 3907833.049674711655825 ], [ 4972234.594805872067809, 3907813.094566433690488 ], [ 4972249.800035832449794, 3907841.889864255208522 ], [ 4972212.044396741315722, 3907861.845497438684106 ], [ 4972196.551216618157923, 3907833.049674711655825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969491.850425113923848, 3891283.433999420609325 ], [ 4969497.839068938046694, 3891317.672824737615883 ], [ 4969445.9650939386338, 3891326.682996977120638 ], [ 4969440.265137146227062, 3891292.080572092439979 ], [ 4969491.850425113923848, 3891283.433999420609325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969429.201504501514137, 3902766.516686209477484 ], [ 4969459.635448317974806, 3902817.549601453356445 ], [ 4969426.483089945279062, 3902837.153223339002579 ], [ 4969410.118780322372913, 3902809.085806699469686 ], [ 4969396.2809784617275, 3902817.436024817172438 ], [ 4969382.499923577532172, 3902794.106956233736128 ], [ 4969429.201504501514137, 3902766.516686209477484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969349.302983278408647, 3898654.611724850721657 ], [ 4969369.812991512939334, 3898620.784339210484177 ], [ 4969412.106234479695559, 3898646.349193789996207 ], [ 4969406.039557029493153, 3898656.533965942915529 ], [ 4969423.014431439340115, 3898666.760026003234088 ], [ 4969408.571057274006307, 3898690.402598751708865 ], [ 4969349.302983278408647, 3898654.611724850721657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969261.588606242090464, 3897290.788344154134393 ], [ 4969237.960060169920325, 3897296.208096814807504 ], [ 4969236.530290866270661, 3897290.379467924591154 ], [ 4969209.732075801119208, 3897296.521846538409591 ], [ 4969200.585139998234808, 3897257.179512707982212 ], [ 4969221.332068030722439, 3897252.4828439373523 ], [ 4969219.616857495158911, 3897245.197187640704215 ], [ 4969249.297423033975065, 3897237.967576534952968 ], [ 4969261.588606242090464, 3897290.788344154134393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971721.833550208248198, 3898137.891973710153252 ], [ 4971740.566803618334234, 3898131.736946223303676 ], [ 4971750.306978306733072, 3898159.793255903292447 ], [ 4971731.573058305308223, 3898166.312405450735241 ], [ 4971721.833550208248198, 3898137.891973710153252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971693.480637368746102, 3903575.765287804882973 ], [ 4971708.467898024246097, 3903568.8749311841093 ], [ 4971709.901578602381051, 3903572.154803995974362 ], [ 4971740.452738069929183, 3903558.011069644242525 ], [ 4971758.808023650199175, 3903597.735864076763391 ], [ 4971713.269657753407955, 3903618.769923677202314 ], [ 4971693.480637368746102, 3903575.765287804882973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971581.528679084032774, 3910456.921415520366281 ], [ 4971618.436326496303082, 3910426.403432440944016 ], [ 4971638.830996191129088, 3910450.8385691777803 ], [ 4971601.923359017819166, 3910481.35652469843626 ], [ 4971581.528679084032774, 3910456.921415520366281 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969135.499918289482594, 3892076.233111589681357 ], [ 4969106.977067477069795, 3892077.274709987919778 ], [ 4969104.792901583015919, 3892009.542893506586552 ], [ 4969143.975179612636566, 3892008.52027964964509 ], [ 4969145.627178047783673, 3892051.490402931347489 ], [ 4969134.679100854322314, 3892051.83502983301878 ], [ 4969135.499918289482594, 3892076.233111589681357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969002.482899149879813, 3898679.118297911714762 ], [ 4968977.150140242651105, 3898671.790702027734369 ], [ 4968974.253784047439694, 3898680.88881091075018 ], [ 4968952.663330921903253, 3898674.660273255780339 ], [ 4968968.600711815990508, 3898620.433183827903122 ], [ 4969015.52400282304734, 3898633.98934206739068 ], [ 4969002.482899149879813, 3898679.118297911714762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971267.408789386972785, 3902582.711684157140553 ], [ 4971220.992296865209937, 3902610.663421785924584 ], [ 4971221.567573943175375, 3902611.028622461948544 ], [ 4971188.124342106282711, 3902631.357792614027858 ], [ 4971167.165607566013932, 3902597.090542883146554 ], [ 4971246.737417981028557, 3902548.809039065148681 ], [ 4971267.408789386972785, 3902582.711684157140553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968817.918135679326952, 3913286.661677672993392 ], [ 4968822.760214203037322, 3913315.800918470602483 ], [ 4968775.537257797084749, 3913323.364133358933032 ], [ 4968770.982992057688534, 3913294.225410158280283 ], [ 4968817.918135679326952, 3913286.661677672993392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971129.935641554184258, 3901709.634461799636483 ], [ 4971132.287520442157984, 3901683.78554155305028 ], [ 4971153.019204613752663, 3901685.644682636018842 ], [ 4971155.076358919963241, 3901663.436525182332844 ], [ 4971204.602040402591228, 3901667.898104552179575 ], [ 4971203.130971455015242, 3901684.645385993644595 ], [ 4971190.173586240969598, 3901683.528912978246808 ], [ 4971187.523515990003943, 3901714.839235953986645 ], [ 4971129.935641554184258, 3901709.634461799636483 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971092.066214741207659, 3910790.282809113617986 ], [ 4971044.524640337564051, 3910811.678488530684263 ], [ 4971034.777567674405873, 3910789.448323287069798 ], [ 4971024.981231280602515, 3910793.799765624571592 ], [ 4971012.36603085976094, 3910765.738170314114541 ], [ 4971004.586265691556036, 3910769.365089644677937 ], [ 4970995.125685983337462, 3910747.863735614810139 ], [ 4971035.751897983253002, 3910729.732349005062133 ], [ 4971039.766163328662515, 3910738.478975249454379 ], [ 4971054.172812874428928, 3910731.951287709642202 ], [ 4971063.920565687119961, 3910753.817327638622373 ], [ 4971056.429354920051992, 3910757.080634169280529 ], [ 4971060.442934316582978, 3910766.191395192407072 ], [ 4971077.730497661046684, 3910758.576663176994771 ], [ 4971092.066214741207659, 3910790.282809113617986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971041.991462223231792, 3895393.270808022469282 ], [ 4971043.033065649680793, 3895452.989961517974734 ], [ 4971020.276142974384129, 3895453.311947769485414 ], [ 4971020.010336646810174, 3895441.295184774789959 ], [ 4971011.36804548278451, 3895441.64331481885165 ], [ 4971010.59218252915889, 3895393.94092542398721 ], [ 4971041.991462223231792, 3895393.270808022469282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971014.43238733522594, 3905608.173207816202193 ], [ 4971029.91193551197648, 3905645.707439198624343 ], [ 4970999.078272931277752, 3905658.394944714382291 ], [ 4970983.598689094185829, 3905620.860730797983706 ], [ 4971014.43238733522594, 3905608.173207816202193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970984.494096837937832, 3911047.889507501386106 ], [ 4971010.94392501283437, 3911067.237526688724756 ], [ 4971016.138697027228773, 3911060.328624306246638 ], [ 4971036.263763160444796, 3911074.931226109154522 ], [ 4971003.362446505576372, 3911119.29448707215488 ], [ 4970978.350072829984128, 3911101.04153394466266 ], [ 4970982.102028829045594, 3911095.950618687551469 ], [ 4970960.539538843557239, 3911080.252998943906277 ], [ 4970984.494096837937832, 3911047.889507501386106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971005.81480017863214, 3893306.015335191972554 ], [ 4971033.195580459199846, 3893298.783445543143898 ], [ 4971048.641787551343441, 3893358.165074977092445 ], [ 4971020.973661481402814, 3893365.032288088463247 ], [ 4971005.81480017863214, 3893306.015335191972554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970986.113086698576808, 3900216.432393246330321 ], [ 4970930.99813848733902, 3900429.71091624815017 ], [ 4970909.69619716051966, 3900424.209591010585427 ], [ 4970939.574326884932816, 3900308.471319335047156 ], [ 4970936.119652206078172, 3900307.736671640537679 ], [ 4970961.356300830841064, 3900210.196374129503965 ], [ 4970986.113086698576808, 3900216.432393246330321 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970916.856834732927382, 3898263.47385974926874 ], [ 4970934.350893435999751, 3898304.288754419889301 ], [ 4970892.553900189697742, 3898322.418028614483774 ], [ 4970875.060462248511612, 3898281.239031923003495 ], [ 4970916.856834732927382, 3898263.47385974926874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968383.147878841497004, 3902016.008660206571221 ], [ 4968404.689136809669435, 3902048.818218543659896 ], [ 4968345.296341990120709, 3902087.676069140434265 ], [ 4968323.755042910575867, 3902054.86655762931332 ], [ 4968383.147878841497004, 3902016.008660206571221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968366.491997599601746, 3892458.301910666748881 ], [ 4968341.946657340042293, 3892491.394618783146143 ], [ 4968285.555157671682537, 3892449.421097937040031 ], [ 4968315.58621833845973, 3892409.419496759306639 ], [ 4968333.999514485709369, 3892423.288629207294434 ], [ 4968328.801846972666681, 3892430.197972377296537 ], [ 4968366.491997599601746, 3892458.301910666748881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970672.008366290479898, 3904073.091252382379025 ], [ 4970684.730246032588184, 3904045.076542771421373 ], [ 4970712.927035622298717, 3904057.873022553510964 ], [ 4970699.917171196080744, 3904085.887189134024084 ], [ 4970672.008366290479898, 3904073.091252382379025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970590.636040453799069, 3893494.961333341896534 ], [ 4970645.398344443179667, 3893479.768479119520634 ], [ 4970657.130450543016195, 3893522.757259467616677 ], [ 4970602.368895816616714, 3893537.585962403099984 ], [ 4970590.636040453799069, 3893494.961333341896534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970568.765536744147539, 3892697.114767009858042 ], [ 4970540.220588012598455, 3892710.535183593630791 ], [ 4970518.985179984942079, 3892665.344285083934665 ], [ 4970547.530165977776051, 3892651.923846313264221 ], [ 4970568.765536744147539, 3892697.114767009858042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967984.170889344997704, 3905561.585330597590655 ], [ 4968003.965000096708536, 3905604.223156358115375 ], [ 4967975.43565088417381, 3905617.282269546762109 ], [ 4967955.353559273295105, 3905574.643963978160173 ], [ 4967984.170889344997704, 3905561.585330597590655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967863.153253515250981, 3902785.602623344864696 ], [ 4967843.906894916668534, 3902757.895296372938901 ], [ 4967898.687342178076506, 3902720.484842906240374 ], [ 4967917.933038973249495, 3902748.556338319554925 ], [ 4967863.153253515250981, 3902785.602623344864696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967812.781782459467649, 3913238.65575092472136 ], [ 4967882.160604477860034, 3913236.591294226236641 ], [ 4967883.248847144655883, 3913273.006513107102364 ], [ 4967813.870119073428214, 3913275.070967036765069 ], [ 4967812.781782459467649, 3913238.65575092472136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967748.639447598718107, 3900397.071140360552818 ], [ 4967779.772531924769282, 3900380.375021899584681 ], [ 4967805.89862382505089, 3900427.757219100371003 ], [ 4967774.764947681687772, 3900444.817437096033245 ], [ 4967748.639447598718107, 3900397.071140360552818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969837.274942154064775, 3893678.202612047549337 ], [ 4969844.268988926894963, 3893633.791514486540109 ], [ 4969903.88236310146749, 3893643.730820320080966 ], [ 4969896.600806563161314, 3893687.777253527194262 ], [ 4969837.274942154064775, 3893678.202612047549337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969771.049414052627981, 3910728.146775380708277 ], [ 4969722.961256452836096, 3910733.886094712186605 ], [ 4969718.710568399168551, 3910696.372751430142671 ], [ 4969709.496104071848094, 3910697.448527784552425 ], [ 4969706.375938605517149, 3910671.5894745150581 ], [ 4969749.856637177988887, 3910666.570073153357953 ], [ 4969750.703875690698624, 3910675.674921419471502 ], [ 4969764.525914934463799, 3910673.879213508684188 ], [ 4969771.049414052627981, 3910728.146775380708277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967498.125215129926801, 3905557.103094389196485 ], [ 4967511.634205522015691, 3905571.327478315681219 ], [ 4967492.599107551388443, 3905589.137160582002252 ], [ 4967479.090742531232536, 3905574.548655597027391 ], [ 4967498.125215129926801, 3905557.103094389196485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969616.693742863833904, 3892991.421811334788799 ], [ 4969593.372345831245184, 3892984.097287132404745 ], [ 4969592.212167726829648, 3892988.464747227262706 ], [ 4969565.147681237198412, 3892980.041130510158837 ], [ 4969570.653275603428483, 3892962.208711571991444 ], [ 4969536.390011995099485, 3892951.951541854068637 ], [ 4969549.718912605196238, 3892909.008281129878014 ], [ 4969608.167269393801689, 3892926.955665584187955 ], [ 4969601.213381102308631, 3892949.155017955694348 ], [ 4969627.414301172830164, 3892957.212987950071692 ], [ 4969616.693742863833904, 3892991.421811334788799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969495.809684474021196, 3898547.455930959898978 ], [ 4969473.365634772926569, 3898535.399362571071833 ], [ 4969499.374436534009874, 3898487.016742191743106 ], [ 4969553.184026681818068, 3898515.151402199175209 ], [ 4969534.399868559092283, 3898550.07413674518466 ], [ 4969503.035040290094912, 3898533.631959200836718 ], [ 4969495.809684474021196, 3898547.455930959898978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969469.597370282746851, 3905931.982750497758389 ], [ 4969507.060498550534248, 3905914.935814435128123 ], [ 4969530.292833741754293, 3905965.591850325930864 ], [ 4969492.829761180095375, 3905982.638754532206804 ], [ 4969469.597370282746851, 3905931.982750497758389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969375.191690098494291, 3905909.965607377234846 ], [ 4969286.136980523355305, 3905954.958589054644108 ], [ 4969257.443691004998982, 3905898.466901779640466 ], [ 4969346.497887493111193, 3905853.837957065086812 ], [ 4969375.191690098494291, 3905909.965607377234846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969311.990484168753028, 3899387.174842679873109 ], [ 4969359.217872282490134, 3899390.90063726529479 ], [ 4969358.039104195311666, 3899405.827866969630122 ], [ 4969378.197295570746064, 3899407.320476381108165 ], [ 4969376.136879993602633, 3899432.077643245924264 ], [ 4969309.039399477653205, 3899426.859761375933886 ], [ 4969311.990484168753028, 3899387.174842679873109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969288.821137886494398, 3896880.462793025653809 ], [ 4969265.718218980357051, 3896913.921446132007986 ], [ 4969239.251215563155711, 3896895.66769694769755 ], [ 4969233.475499153137207, 3896904.032369025517255 ], [ 4969212.186008943244815, 3896889.793316008988768 ], [ 4969241.064608934335411, 3896847.969945926684886 ], [ 4969288.821137886494398, 3896880.462793025653809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967063.601174319162965, 3913162.720332145690918 ], [ 4967070.731939299963415, 3913201.33061970770359 ], [ 4967000.759381055831909, 3913213.956025583203882 ], [ 4966996.195730910636485, 3913189.187191750388592 ], [ 4967017.792334226891398, 3913185.218511127401143 ], [ 4967015.51299692876637, 3913171.3775640334934 ], [ 4967063.601174319162965, 3913162.720332145690918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969037.828606872819364, 3891270.606930542271584 ], [ 4969004.079678770154715, 3891293.851188200525939 ], [ 4968979.941474854946136, 3891258.851990766823292 ], [ 4968988.306682435795665, 3891253.040787015110254 ], [ 4968975.088395613245666, 3891233.718510709702969 ], [ 4968999.895303587429225, 3891216.64851867267862 ], [ 4969014.263389333151281, 3891237.429363549686968 ], [ 4969035.896698058582842, 3891222.902666080277413 ], [ 4969052.563069606199861, 3891247.328901341184974 ], [ 4969031.506615961901844, 3891261.492482294328511 ], [ 4969037.828606872819364, 3891270.606930542271584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968930.492720068432391, 3891687.343523221090436 ], [ 4968913.477736845612526, 3891697.144824402406812 ], [ 4968932.719331192784011, 3891731.407029577996582 ], [ 4968909.360507470555604, 3891744.47424035705626 ], [ 4968863.984247559681535, 3891663.921426434535533 ], [ 4968884.459593215957284, 3891652.30558201065287 ], [ 4968888.767461512237787, 3891659.959914647508413 ], [ 4968908.665340880863369, 3891649.07132257334888 ], [ 4968930.492720068432391, 3891687.343523221090436 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966427.343455270864069, 3907729.512300836853683 ], [ 4966429.284214360639453, 3907773.939669874031097 ], [ 4966385.516438030637801, 3907776.05090450681746 ], [ 4966383.287684541195631, 3907731.623054936993867 ], [ 4966427.343455270864069, 3907729.512300836853683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966294.824484139680862, 3895058.637147495988756 ], [ 4966263.98276621196419, 3895070.237620553001761 ], [ 4966256.238732995465398, 3895050.197546883486211 ], [ 4966220.496381758712232, 3895063.974640862084925 ], [ 4966209.884521707892418, 3895036.283069669734687 ], [ 4966279.927810895256698, 3895009.454745317343622 ], [ 4966288.532352858223021, 3895031.68104234803468 ], [ 4966284.785154993645847, 3895033.131281389389187 ], [ 4966294.824484139680862, 3895058.637147495988756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968377.576410884037614, 3898787.982626218814403 ], [ 4968385.877848838455975, 3898817.127589493524283 ], [ 4968350.72181929834187, 3898827.261602437589318 ], [ 4968342.132328476756811, 3898798.116145215928555 ], [ 4968377.576410884037614, 3898787.982626218814403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968314.910201285034418, 3890985.311527722049505 ], [ 4968350.094324752688408, 3890964.981950907036662 ], [ 4968395.766518990509212, 3891042.621351724956185 ], [ 4968365.773381891660392, 3891060.046938508749008 ], [ 4968345.091351795010269, 3891025.054374481551349 ], [ 4968328.364265479147434, 3891034.856546848081052 ], [ 4968316.874642536044121, 3891015.173496197443455 ], [ 4968328.410810203291476, 3891008.275254099629819 ], [ 4968314.910201285034418, 3890985.311527722049505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968285.73822852037847, 3905676.084684412460774 ], [ 4968311.868452400900424, 3905717.641437641810626 ], [ 4968283.619368684478104, 3905735.070294700097293 ], [ 4968257.777062254026532, 3905693.514072212856263 ], [ 4968285.73822852037847, 3905676.084684412460774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966092.071348708122969, 3904183.765363770071417 ], [ 4966117.923932364210486, 3904222.042293313425034 ], [ 4966068.627540263347328, 3904255.095972683746368 ], [ 4966042.774311481043696, 3904217.183219986967742 ], [ 4966092.071348708122969, 3904183.765363770071417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966000.739285277202725, 3896256.131526350509375 ], [ 4966123.196777710691094, 3896233.395513375289738 ], [ 4966138.040758958086371, 3896313.892912853974849 ], [ 4966015.584226728416979, 3896336.264730808790773 ], [ 4966000.739285277202725, 3896256.131526350509375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968183.407750455662608, 3902771.230640321969986 ], [ 4968199.199957512319088, 3902797.839783818461001 ], [ 4968175.849179700948298, 3902812.000107469968498 ], [ 4968182.740864611230791, 3902823.300201734062284 ], [ 4968161.697092888876796, 3902835.643912067171186 ], [ 4968156.815505816601217, 3902827.62451013084501 ], [ 4968135.7711141416803, 3902840.332370650023222 ], [ 4968115.671310927718878, 3902806.797263414599001 ], [ 4968162.660176238976419, 3902778.84116455540061 ], [ 4968164.669646542519331, 3902782.485981900244951 ], [ 4968183.407750455662608, 3902771.230640321969986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968172.811039694584906, 3895643.728263153228909 ], [ 4968209.683569967746735, 3895642.700262982863933 ], [ 4968210.501288873143494, 3895669.283137502148747 ], [ 4968173.628795030526817, 3895670.311136580072343 ], [ 4968172.811039694584906, 3895643.728263153228909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965859.761058810167015, 3898413.365705420728773 ], [ 4965863.266278356313705, 3898383.876998324878514 ], [ 4965878.529045714996755, 3898385.358855535741895 ], [ 4965879.408227771520615, 3898376.257067000493407 ], [ 4965902.733812093734741, 3898378.844716447405517 ], [ 4965901.563575386069715, 3898389.766670417971909 ], [ 4965925.465190435759723, 3898392.355296560563147 ], [ 4965921.373571901582181, 3898428.033230253960937 ], [ 4965879.618256363086402, 3898423.230177580844611 ], [ 4965880.494414520449936, 3898415.949033559300005 ], [ 4965859.761058810167015, 3898413.365705420728773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967730.642017059959471, 3892316.277272199746221 ], [ 4967734.057513386011124, 3892340.315670088399202 ], [ 4967727.718337479047477, 3892341.032967678271234 ], [ 4967732.276107743382454, 3892370.899399404879659 ], [ 4967691.357088334858418, 3892377.018871333450079 ], [ 4967683.383107110857964, 3892323.478182054590434 ], [ 4967730.642017059959471, 3892316.277272199746221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965546.314277396537364, 3906497.643880686257035 ], [ 4965504.239123065024614, 3906519.786587154492736 ], [ 4965487.877173471264541, 3906489.172580958809704 ], [ 4965529.952362126670778, 3906467.029849292244762 ], [ 4965546.314277396537364, 3906497.643880686257035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965355.656569493934512, 3891078.608778725843877 ], [ 4965363.114327196963131, 3891098.648073860444129 ], [ 4965335.151866951957345, 3891108.797803260851651 ], [ 4965327.694091256707907, 3891088.758515760768205 ], [ 4965355.656569493934512, 3891078.608778725843877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967610.179508799687028, 3902360.588417830877006 ], [ 4967590.574909520335495, 3902373.299185613170266 ], [ 4967565.299221134744585, 3902334.657745168544352 ], [ 4967601.337547017261386, 3902311.051372747402638 ], [ 4967617.134999448433518, 3902335.111258532386273 ], [ 4967600.413317328318954, 3902346.006338850595057 ], [ 4967610.179508799687028, 3902360.588417830877006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967416.392302164807916, 3899664.232295720372349 ], [ 4967423.21630791015923, 3899715.586383498739451 ], [ 4967380.005718167871237, 3899720.974139696452767 ], [ 4967375.741213750094175, 3899688.559228162746876 ], [ 4967370.267804652452469, 3899689.278096009977162 ], [ 4967367.708218405023217, 3899670.338931070175022 ], [ 4967416.392302164807916, 3899664.232295720372349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967322.473317917436361, 3913282.962907153647393 ], [ 4967325.307602762244642, 3913308.82123214006424 ], [ 4967295.075805046595633, 3913312.410730170551687 ], [ 4967291.953628816641867, 3913286.551914941519499 ], [ 4967322.473317917436361, 3913282.962907153647393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967163.75606638751924, 3913175.635986670851707 ], [ 4967101.271583201363683, 3913186.089130233507603 ], [ 4967096.427614063024521, 3913156.950202112086117 ], [ 4967158.624298900365829, 3913146.496555542107671 ], [ 4967163.75606638751924, 3913175.635986670851707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967111.43397708889097, 3902338.977228752803057 ], [ 4967126.083040095865726, 3902361.214211735874414 ], [ 4967104.171727485023439, 3902375.742050588130951 ], [ 4967089.23405341245234, 3902353.868717915378511 ], [ 4967111.43397708889097, 3902338.977228752803057 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964907.449205120094121, 3906102.971982708666474 ], [ 4964924.383787846192718, 3906136.135478829499334 ], [ 4964865.307765985839069, 3906165.898318225517869 ], [ 4964848.373129295185208, 3906132.734858737327158 ], [ 4964907.449205120094121, 3906102.971982708666474 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964511.46428607404232, 3901851.464719864074141 ], [ 4964533.620381326414645, 3901863.152575201820582 ], [ 4964506.179161270149052, 3901914.450818369630724 ], [ 4964463.017780615948141, 3901891.805282213259488 ], [ 4964486.704001506790519, 3901847.4194370158948 ], [ 4964507.709342492744327, 3901858.377158300485462 ], [ 4964511.46428607404232, 3901851.464719864074141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966519.443658148869872, 3899373.951361205428839 ], [ 4966564.412782805971801, 3899350.722808847669512 ], [ 4966584.795304267667234, 3899390.0832380768843 ], [ 4966539.826227680779994, 3899413.31175687815994 ], [ 4966519.443658148869872, 3899373.951361205428839 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966522.241930008865893, 3897370.513115270994604 ], [ 4966548.173511667177081, 3897365.458986923564225 ], [ 4966554.744883077219129, 3897397.149348543025553 ], [ 4966528.524684461764991, 3897402.567114158533514 ], [ 4966522.241930008865893, 3897370.513115270994604 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966290.934628558345139, 3896864.348421096336097 ], [ 4966336.749265117570758, 3896854.593728305771947 ], [ 4966343.607829345390201, 3896887.012769054621458 ], [ 4966297.793245496228337, 3896896.767450326122344 ], [ 4966290.934628558345139, 3896864.348421096336097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966243.64054271671921, 3898962.385351836215705 ], [ 4966260.049537559039891, 3898967.146516181528568 ], [ 4966263.236009284853935, 3898956.22795040672645 ], [ 4966283.387994703836739, 3898961.723657832480967 ], [ 4966279.621823096647859, 3898974.826030492316931 ], [ 4966313.304437398910522, 3898983.985732798464596 ], [ 4966305.190550060011446, 3899013.466666628606617 ], [ 4966260.568860476836562, 3899001.011482562869787 ], [ 4966256.222406168468297, 3899016.661797588691115 ], [ 4966230.600596586242318, 3899009.700435650534928 ], [ 4966243.64054271671921, 3898962.385351836215705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966208.512923802249134, 3898956.136360483244061 ], [ 4966195.772621368058026, 3898996.533490726258606 ], [ 4966145.108600633218884, 3898980.427094554062933 ], [ 4966157.848226048983634, 3898940.394069723319262 ], [ 4966208.512923802249134, 3898956.136360483244061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966205.999179482460022, 3891847.235850133001804 ], [ 4966238.790532138198614, 3891877.877499720547348 ], [ 4966215.991062493994832, 3891901.871841801330447 ], [ 4966205.635587202385068, 3891892.387181743979454 ], [ 4966193.225720824673772, 3891905.475061479955912 ], [ 4966170.78984808921814, 3891884.31810953002423 ], [ 4966205.999179482460022, 3891847.235850133001804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964016.678880167193711, 3900419.639972763601691 ], [ 4964026.226943500339985, 3900391.981262169778347 ], [ 4964065.94959843531251, 3900405.517335353884846 ], [ 4964056.689499379135668, 3900433.176490767858922 ], [ 4964016.678880167193711, 3900419.639972763601691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963934.998730377294123, 3898898.174281121231616 ], [ 4963953.986437673680484, 3898911.677252209745347 ], [ 4963934.357931291684508, 3898938.955824308097363 ], [ 4963912.781552170403302, 3898923.263977775350213 ], [ 4963927.791370786726475, 3898902.532396187540144 ], [ 4963912.831257553771138, 3898891.948876275215298 ], [ 4963921.490264152176678, 3898880.310461803805083 ], [ 4963905.091783813200891, 3898868.632272882387042 ], [ 4963935.688684831373394, 3898826.441767782904208 ], [ 4963969.347972259856761, 3898850.891952964942902 ], [ 4963934.998730377294123, 3898898.174281121231616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963790.188255742192268, 3900496.476162828505039 ], [ 4963830.485142897814512, 3900511.105188876856118 ], [ 4963820.36074772849679, 3900539.127188099082559 ], [ 4963780.063897142186761, 3900524.498176988679916 ], [ 4963790.188255742192268, 3900496.476162828505039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965896.795851644128561, 3894323.52466643601656 ], [ 4965926.199751428328454, 3894310.828999353107065 ], [ 4965952.598890070803463, 3894372.774825784377754 ], [ 4965925.789447798393667, 3894384.382388693280518 ], [ 4965917.181372021324933, 3894363.976856519002467 ], [ 4965898.155747693032026, 3894371.956090616062284 ], [ 4965890.120754843577743, 3894353.372164433822036 ], [ 4965906.551984464749694, 3894346.481002082582563 ], [ 4965896.795851644128561, 3894323.52466643601656 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963579.893252436071634, 3892665.903446522075683 ], [ 4963585.943582360632718, 3892665.54884487669915 ], [ 4963585.394364790990949, 3892648.433933216612786 ], [ 4963621.69522300735116, 3892647.034606706351042 ], [ 4963623.634905004873872, 3892695.830904142931104 ], [ 4963580.995706445537508, 3892697.584375811275095 ], [ 4963579.893252436071634, 3892665.903446522075683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963553.579149380326271, 3893460.75506846467033 ], [ 4963555.034996132366359, 3893450.925881147850305 ], [ 4963525.657621147111058, 3893446.874250875320286 ], [ 4963531.191755524836481, 3893408.285299434326589 ], [ 4963544.440372896380723, 3893410.12678347947076 ], [ 4963546.186586299911141, 3893398.841537538915873 ], [ 4963561.451164613477886, 3893401.050330554135144 ], [ 4963559.703225739300251, 3893413.427959260996431 ], [ 4963585.912374146282673, 3893417.110508332494646 ], [ 4963579.212102283723652, 3893464.436704495921731 ], [ 4963553.579149380326271, 3893460.75506846467033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963533.254991120658815, 3903631.600065876729786 ], [ 4963556.57394268643111, 3903635.642207895405591 ], [ 4963554.830669095739722, 3903645.471001488156617 ], [ 4963573.831263146363199, 3903648.77809874759987 ], [ 4963566.861594797112048, 3903685.908489143941551 ], [ 4963524.542686887085438, 3903678.195132023654878 ], [ 4963533.254991120658815, 3903631.600065876729786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965474.169117922894657, 3897495.121340529527515 ], [ 4965476.80514111276716, 3897468.544207412283868 ], [ 4965506.755691594444215, 3897471.506541519425809 ], [ 4965504.119639070704579, 3897498.083671760745347 ], [ 4965474.169117922894657, 3897495.121340529527515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965458.967768277041614, 3906734.549793328158557 ], [ 4965486.63989847805351, 3906716.024615733884275 ], [ 4965525.416066128760576, 3906773.621300348080695 ], [ 4965497.743968311697245, 3906792.146438671275973 ], [ 4965458.967768277041614, 3906734.549793328158557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963369.239740678109229, 3904469.936476241331547 ], [ 4963393.16645288746804, 3904453.223952976521105 ], [ 4963417.874787947162986, 3904488.947572561912239 ], [ 4963393.948663131333888, 3904505.29594387486577 ], [ 4963369.239740678109229, 3904469.936476241331547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965209.18829311709851, 3899778.874007002916187 ], [ 4965195.009844332002103, 3899819.269276286009699 ], [ 4965157.589755343273282, 3899806.46356154885143 ], [ 4965164.244261379353702, 3899787.903791900258511 ], [ 4965155.896807534620166, 3899784.977112687658519 ], [ 4965163.420694733038545, 3899763.141591316554695 ], [ 4965209.18829311709851, 3899778.874007002916187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963102.676977705210447, 3899421.576756715774536 ], [ 4963159.077787066809833, 3899453.343959720339626 ], [ 4963142.038604970090091, 3899483.1760657527484 ], [ 4963085.637271462008357, 3899451.773027157410979 ], [ 4963102.676977705210447, 3899421.576756715774536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962859.054263591766357, 3899956.833957215771079 ], [ 4962839.138497488573194, 3899984.841159029863775 ], [ 4962800.587454819120467, 3899957.835897719953209 ], [ 4962820.791769622825086, 3899929.464983919169754 ], [ 4962859.054263591766357, 3899956.833957215771079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962868.960996357724071, 3893557.637136029545218 ], [ 4962838.983828590251505, 3893568.87873825756833 ], [ 4962822.341982147656381, 3893525.885796591639519 ], [ 4962852.607265355065465, 3893514.644621893763542 ], [ 4962868.960996357724071, 3893557.637136029545218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965015.321031427942216, 3900155.796574864536524 ], [ 4965036.319176884368062, 3900171.852508916519582 ], [ 4965020.157788964919746, 3900192.217481708619744 ], [ 4964999.44765298999846, 3900176.162028891034424 ], [ 4965015.321031427942216, 3900155.796574864536524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964814.818953850306571, 3904273.425461890175939 ], [ 4964822.544259089045227, 3904304.025008178781718 ], [ 4964780.772518165409565, 3904314.881246652919799 ], [ 4964773.04716854263097, 3904284.281712166033685 ], [ 4964814.818953850306571, 3904273.425461890175939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964647.475836624391377, 3900552.102173320949078 ], [ 4964671.625407562591136, 3900578.358565951697528 ], [ 4964645.090709493495524, 3900602.348315206822008 ], [ 4964621.228545578196645, 3900576.45654021948576 ], [ 4964647.475836624391377, 3900552.102173320949078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964580.095253952778876, 3898579.864499892573804 ], [ 4964571.470491698011756, 3898570.019088972359896 ], [ 4964553.299982417374849, 3898585.64739648764953 ], [ 4964530.876035823486745, 3898559.758053073193878 ], [ 4964588.271959868259728, 3898510.328863993752748 ], [ 4964619.320651444606483, 3898546.063677825964987 ], [ 4964580.095253952778876, 3898579.864499892573804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964560.821268886327744, 3906249.156093035824597 ], [ 4964528.246144044212997, 3906272.772164239548147 ], [ 4964534.854050299152732, 3906281.886098849587142 ], [ 4964553.591715484857559, 3906268.443418179638684 ], [ 4964568.2436748361215, 3906288.858406557701528 ], [ 4964547.776044436730444, 3906303.754816147033125 ], [ 4964538.294638000428677, 3906290.994932459201664 ], [ 4964526.47570638358593, 3906299.350922882556915 ], [ 4964496.308485550805926, 3906258.1554787135683 ], [ 4964542.720475762151182, 3906224.730104527901858 ], [ 4964560.821268886327744, 3906249.156093035824597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962346.486566815525293, 3898960.513656518887728 ], [ 4962390.521832787431777, 3898980.972301493864506 ], [ 4962377.807341697625816, 3899008.262592651881278 ], [ 4962333.772110858000815, 3898987.80396817298606 ], [ 4962346.486566815525293, 3898960.513656518887728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964483.421332570724189, 3891710.775480463169515 ], [ 4964494.944502011872828, 3891711.158141409512609 ], [ 4964494.324387589469552, 3891738.466779738198966 ], [ 4964444.485952911898494, 3891737.294276780914515 ], [ 4964445.110111877322197, 3891707.436744584236294 ], [ 4964457.209471084177494, 3891707.82031508628279 ], [ 4964457.513950305059552, 3891697.625207214616239 ], [ 4964483.729920508340001, 3891698.031480163801461 ], [ 4964483.421332570724189, 3891710.775480463169515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964422.590135002508759, 3901601.528191502671689 ], [ 4964462.868627198971808, 3901626.353806105442345 ], [ 4964445.83287809882313, 3901654.000346430577338 ], [ 4964405.266424130648375, 3901629.174294511787593 ], [ 4964422.590135002508759, 3901601.528191502671689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964255.118108691647649, 3900255.797663661651313 ], [ 4964293.460904572159052, 3900231.82644254527986 ], [ 4964312.709236553870142, 3900261.715960782486945 ], [ 4964297.141368489712477, 3900271.52254041004926 ], [ 4964304.036504258401692, 3900282.093363893684 ], [ 4964281.261024090461433, 3900296.62210196768865 ], [ 4964255.118108691647649, 3900255.797663661651313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962107.193821686320007, 3899496.512389004230499 ], [ 4962122.210786865092814, 3899469.95372404018417 ], [ 4962167.677678976207972, 3899495.512009571306407 ], [ 4962164.501249460503459, 3899500.969125506468117 ], [ 4962180.040502950549126, 3899509.731907051987946 ], [ 4962167.045116168446839, 3899532.652316824998707 ], [ 4962153.807736362330616, 3899525.349566088523716 ], [ 4962149.187384125776589, 3899533.353397242724895 ], [ 4962131.058258322067559, 3899523.130173652432859 ], [ 4962136.833417516201735, 3899513.307445627637208 ], [ 4962107.193821686320007, 3899496.512389004230499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962080.606956618838012, 3896521.895879908464849 ], [ 4962084.40460913348943, 3896486.945221796631813 ], [ 4962074.900859129615128, 3896485.838397972751409 ], [ 4962078.697403034195304, 3896451.615996988955885 ], [ 4962091.369085467420518, 3896453.091764595825225 ], [ 4962092.538408718071878, 3896441.805528773926198 ], [ 4962130.554017260670662, 3896445.868740474339575 ], [ 4962128.804715934209526, 3896459.702998743392527 ], [ 4962136.004683005623519, 3896460.442207961343229 ], [ 4962133.958475841209292, 3896480.102085487451404 ], [ 4962143.46222547441721, 3896481.208930196240544 ], [ 4962139.956415072083473, 3896513.611117751803249 ], [ 4962118.933194226585329, 3896511.030239906627685 ], [ 4962117.182242237962782, 3896525.956885300111026 ], [ 4962080.606956618838012, 3896521.895879908464849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961870.697706266306341, 3909809.078593585640192 ], [ 4961908.714274955913424, 3909800.032788276672363 ], [ 4961911.861336189322174, 3909813.146316730417311 ], [ 4961925.685492874123156, 3909809.890050791203976 ], [ 4961932.552084431052208, 3909838.302773526404053 ], [ 4961963.656832131557167, 3909830.703110335860401 ], [ 4961972.812223589979112, 3909868.586754573974758 ], [ 4961903.115246669389307, 3909885.231295155361295 ], [ 4961899.110001095570624, 3909868.475144734140486 ], [ 4961885.861676317639649, 3909871.732295346446335 ], [ 4961870.697706266306341, 3909809.078593585640192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961861.230501125566661, 3893587.411012479104102 ], [ 4961872.751801225356758, 3893588.520805911161005 ], [ 4961873.92170384619385, 3893576.870451610535383 ], [ 4961907.621942469850183, 3893579.834428003057837 ], [ 4961906.741751140914857, 3893590.392832569312304 ], [ 4961918.839195562526584, 3893591.503517091739923 ], [ 4961915.024286143481731, 3893637.742106921970844 ], [ 4961881.899717106483877, 3893635.143119924236089 ], [ 4961881.019537622109056, 3893645.701525675132871 ], [ 4961856.536620338447392, 3893643.479760912712663 ], [ 4961861.230501125566661, 3893587.411012479104102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964001.611017542891204, 3900839.458331215195358 ], [ 4963997.881547885946929, 3900830.349138390272856 ], [ 4963973.673663303256035, 3900840.506297514773905 ], [ 4963961.336126741953194, 3900811.356254117097706 ], [ 4964004.564543383195996, 3900793.218465776182711 ], [ 4964020.631505814380944, 3900831.477724120020866 ], [ 4964001.611017542891204, 3900839.458331215195358 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961686.381249869242311, 3893004.905572925228626 ], [ 4961694.532946112565696, 3892948.113760417792946 ], [ 4961719.590478665195405, 3892951.792755467351526 ], [ 4961720.173217528499663, 3892947.424088544677943 ], [ 4961741.77487706579268, 3892950.369644828140736 ], [ 4961740.028295932337642, 3892962.383260720409453 ], [ 4961751.836852209642529, 3892964.22169153066352 ], [ 4961746.30518305581063, 3893002.810999230481684 ], [ 4961714.046795988455415, 3892998.392882529646158 ], [ 4961712.591050458140671, 3893008.586294811684638 ], [ 4961686.381249869242311, 3893004.905572925228626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961658.552963273599744, 3898101.944755397737026 ], [ 4961672.142178471200168, 3898067.37285911757499 ], [ 4961702.366799390874803, 3898079.434612225275487 ], [ 4961688.77809917461127, 3898113.642364509869367 ], [ 4961658.552963273599744, 3898101.944755397737026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963824.510217023082078, 3893554.399749130941927 ], [ 4963864.244244106113911, 3893567.207213745918125 ], [ 4963852.376661240123212, 3893602.873032622039318 ], [ 4963818.976844101212919, 3893592.26038758829236 ], [ 4963823.609089373610914, 3893577.702568669803441 ], [ 4963817.274346961639822, 3893575.871893232688308 ], [ 4963824.510217023082078, 3893554.399749130941927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963753.54679205454886, 3903997.535183001775295 ], [ 4963759.645839062519372, 3903964.773029823321849 ], [ 4963804.266775204800069, 3903973.218666768167168 ], [ 4963797.880290057510138, 3904005.616223848890513 ], [ 4963753.54679205454886, 3903997.535183001775295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963655.460938200354576, 3904110.625006656628102 ], [ 4963630.397419760003686, 3904117.503959899302572 ], [ 4963628.107513710856438, 3904108.761201272718608 ], [ 4963610.245894304476678, 3904113.830875785090029 ], [ 4963599.936109790578485, 3904077.765643722377717 ], [ 4963642.86188256368041, 3904065.452867434825748 ], [ 4963655.460938200354576, 3904110.625006656628102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961419.88708175253123, 3893403.591144311707467 ], [ 4961456.176456183195114, 3893409.107324340380728 ], [ 4961453.559270749799907, 3893425.489205092191696 ], [ 4961472.855971109122038, 3893428.43109974777326 ], [ 4961468.492349034175277, 3893456.826616069301963 ], [ 4961412.906353213824332, 3893448.368553753010929 ], [ 4961419.88708175253123, 3893403.591144311707467 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961381.993567674420774, 3896209.149021127261221 ], [ 4961370.959244753234088, 3896268.485637763049453 ], [ 4961333.523706028237939, 3896261.51133120758459 ], [ 4961344.846537984907627, 3896201.811000526417047 ], [ 4961381.993567674420774, 3896209.149021127261221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961365.995784033089876, 3897664.186725684907287 ], [ 4961371.50422765314579, 3897640.162388389930129 ], [ 4961396.554165652953088, 3897646.025865626055747 ], [ 4961390.757670800201595, 3897670.049767723307014 ], [ 4961365.995784033089876, 3897664.186725684907287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963491.22001475840807, 3903809.594044360797852 ], [ 4963494.730537004768848, 3903774.642980165313929 ], [ 4963539.07021020911634, 3903779.08229131065309 ], [ 4963535.559630847536027, 3903814.033349808771163 ], [ 4963491.22001475840807, 3903809.594044360797852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961219.241279658861458, 3893500.878597847186029 ], [ 4961275.119096676819026, 3893506.787793021183461 ], [ 4961269.571417643688619, 3893556.665178778581321 ], [ 4961241.632563438266516, 3893553.710572351701558 ], [ 4961241.926054331474006, 3893550.069720970932394 ], [ 4961214.275264473631978, 3893547.115571523550898 ], [ 4961219.241279658861458, 3893500.878597847186029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961161.675030711106956, 3910145.202584145125002 ], [ 4961155.884652817621827, 3910167.041929782368243 ], [ 4961133.724760755896568, 3910161.547037743031979 ], [ 4961139.515662421472371, 3910139.34355576056987 ], [ 4961161.675030711106956, 3910145.202584145125002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963306.810080983676016, 3893757.497032665181905 ], [ 4963313.973706620745361, 3893781.904875903856009 ], [ 4963265.55546891130507, 3893796.030186754651368 ], [ 4963252.661088665947318, 3893751.950442222878337 ], [ 4963291.568462144583464, 3893740.723264161963016 ], [ 4963297.299150580540299, 3893760.395186330657452 ], [ 4963306.810080983676016, 3893757.497032665181905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960751.902489432133734, 3900023.93155456893146 ], [ 4960804.858931746333838, 3900048.770290897227824 ], [ 4960784.346336647868156, 3900092.435733697842807 ], [ 4960760.746597436256707, 3900081.11299422942102 ], [ 4960768.257728131487966, 3900065.466438713017851 ], [ 4960738.613609433174133, 3900051.585920989979059 ], [ 4960751.902489432133734, 3900023.93155456893146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962919.566577294841409, 3896778.438097787555307 ], [ 4962912.298427779227495, 3896821.758245509583503 ], [ 4962923.529130493290722, 3896823.596302226185799 ], [ 4962918.8798638721928, 3896849.806421231012791 ], [ 4962871.077825139276683, 3896841.721512752585113 ], [ 4962882.995138730853796, 3896772.191228142473847 ], [ 4962919.566577294841409, 3896778.438097787555307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962908.910483565181494, 3899565.107124632224441 ], [ 4962921.045845326967537, 3899540.000958058517426 ], [ 4962973.137215002439916, 3899564.84261970128864 ], [ 4962961.289825131185353, 3899589.949210107792169 ], [ 4962908.910483565181494, 3899565.107124632224441 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960571.050989174284041, 3897453.637525867205113 ], [ 4960582.638353002257645, 3897408.502406540326774 ], [ 4960641.663203183561563, 3897423.518155745696276 ], [ 4960630.07574660051614, 3897468.653250027447939 ], [ 4960571.050989174284041, 3897453.637525867205113 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962642.288175066933036, 3893530.341641659382731 ], [ 4962683.540054002776742, 3893493.264048896264285 ], [ 4962711.72364760376513, 3893524.258450320456177 ], [ 4962670.471777153201401, 3893561.336000508163124 ], [ 4962642.288175066933036, 3893530.341641659382731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962372.061506469734013, 3899187.041638014838099 ], [ 4962351.841518962755799, 3899225.608493824955076 ], [ 4962329.969756690785289, 3899214.287025017663836 ], [ 4962337.191245480440557, 3899200.4611218678765 ], [ 4962320.21179538872093, 3899191.696050567086786 ], [ 4962333.210259737446904, 3899166.955073652788997 ], [ 4962372.061506469734013, 3899187.041638014838099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960373.120431262999773, 3898478.738025915808976 ], [ 4960381.537725300528109, 3898434.326439151540399 ], [ 4960410.044459491036832, 3898439.465773704461753 ], [ 4960401.338568229228258, 3898484.24106121622026 ], [ 4960373.120431262999773, 3898478.738025915808976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960350.678319545462728, 3898858.492834957316518 ], [ 4960337.719659805297852, 3898857.017466993071139 ], [ 4960335.097852065227926, 3898877.404930053744465 ], [ 4960306.877469037659466, 3898873.722608792129904 ], [ 4960308.625150010921061, 3898860.252341276500374 ], [ 4960308.04911547806114, 3898860.251504206098616 ], [ 4960311.836203886196017, 3898830.762484308797866 ], [ 4960353.591336922720075, 3898835.921017793938518 ], [ 4960350.678319545462728, 3898858.492834957316518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962328.993411152623594, 3894198.765854361467063 ], [ 4962316.61152698751539, 3894195.469776183366776 ], [ 4962326.751744670793414, 3894157.615857359953225 ], [ 4962365.049150031991303, 3894167.870013169944286 ], [ 4962348.82495784945786, 3894228.29061152972281 ], [ 4962322.909506984055042, 3894221.332553890999407 ], [ 4962328.993411152623594, 3894198.765854361467063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962029.162449700757861, 3900242.860744169913232 ], [ 4962070.890175516717136, 3900264.407773706130683 ], [ 4962058.758697852492332, 3900287.693687916267663 ], [ 4962017.03099855221808, 3900266.146676913369447 ], [ 4962029.162449700757861, 3900242.860744169913232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962015.745255775749683, 3895796.451728648040444 ], [ 4962010.79705526586622, 3895830.308249682653695 ], [ 4962029.22837158292532, 3895832.885109023656696 ], [ 4962026.318047669716179, 3895852.543676547706127 ], [ 4962006.158999490551651, 3895849.600070277228951 ], [ 4962002.081592377275229, 3895879.088362494949251 ], [ 4961967.523408600129187, 3895873.938183951657265 ], [ 4961976.256463831290603, 3895813.505949322599918 ], [ 4961985.472405732609332, 3895814.612301330082119 ], [ 4961988.674616766162217, 3895792.40526717575267 ], [ 4962015.745255775749683, 3895796.451728648040444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960046.81979207880795, 3893469.66663283156231 ], [ 4959991.192450632341206, 3893489.613494019955397 ], [ 4959971.39343358296901, 3893435.329785211011767 ], [ 4960027.020872484892607, 3893415.382883705198765 ], [ 4960046.81979207880795, 3893469.66663283156231 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961678.016535476781428, 3899715.06974050309509 ], [ 4961700.467467463575304, 3899724.206773198675364 ], [ 4961690.638487012125552, 3899748.588701689615846 ], [ 4961667.899564241059124, 3899739.45124397194013 ], [ 4961678.016535476781428, 3899715.06974050309509 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959578.457057621330023, 3899092.244357543531805 ], [ 4959577.865969913080335, 3899102.803283447399735 ], [ 4959604.361240950413048, 3899104.297598475590348 ], [ 4959602.287465221248567, 3899144.713065443560481 ], [ 4959545.264281382784247, 3899142.082849455066025 ], [ 4959547.929566131904721, 3899090.744322352577001 ], [ 4959578.457057621330023, 3899092.244357543531805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961387.069626048207283, 3899175.357049740385264 ], [ 4961377.54070433229208, 3899191.728672349825501 ], [ 4961392.216895757243037, 3899200.125577643979341 ], [ 4961378.35581779293716, 3899224.501590906176716 ], [ 4961362.240654953755438, 3899215.374285472091287 ], [ 4961347.514485967345536, 3899240.47728381678462 ], [ 4961322.478510634042323, 3899226.238874873146415 ], [ 4961360.595170837827027, 3899160.024067824706435 ], [ 4961387.069626048207283, 3899175.357049740385264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961292.004551199264824, 3896482.11186942551285 ], [ 4961299.558222156018019, 3896438.79172146692872 ], [ 4961370.686961234547198, 3896450.914061352144927 ], [ 4961367.200011948123574, 3896471.300104815978557 ], [ 4961349.346242942847311, 3896467.996300583705306 ], [ 4961345.278881567530334, 3896491.294516666792333 ], [ 4961292.004551199264824, 3896482.11186942551285 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959288.761178913526237, 3898651.59975347854197 ], [ 4959267.737815312109888, 3898650.113489697687328 ], [ 4959267.438980118371546, 3898657.759794008452445 ], [ 4959242.671367294155061, 3898656.268254132010043 ], [ 4959246.497979768551886, 3898598.012887274846435 ], [ 4959275.009391739964485, 3898599.873856485355645 ], [ 4959275.603976947255433, 3898586.766023289877921 ], [ 4959292.595622497610748, 3898587.882456643972546 ], [ 4959288.761178913526237, 3898651.59975347854197 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958910.583745487034321, 3906465.676300742663443 ], [ 4958874.878180330619216, 3906466.71867595706135 ], [ 4958873.769264615140855, 3906436.130071517080069 ], [ 4958909.762806463055313, 3906435.088098402600735 ], [ 4958910.583745487034321, 3906465.676300742663443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958823.579170791432261, 3901350.970447518397123 ], [ 4958863.611899504438043, 3901349.569923286791891 ], [ 4958865.270532457157969, 3901399.093984890263528 ], [ 4958824.949887370690703, 3901400.494104065932333 ], [ 4958823.579170791432261, 3901350.970447518397123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960748.448495499789715, 3898258.624281906988472 ], [ 4960763.474440080113709, 3898225.510555321816355 ], [ 4960732.964214072562754, 3898211.628788813017309 ], [ 4960747.122346465475857, 3898181.06268773553893 ], [ 4960763.529039724729955, 3898188.369397178292274 ], [ 4960764.972909228876233, 3898185.822611300740391 ], [ 4960809.011181908659637, 3898205.914526807609946 ], [ 4960778.383148490451276, 3898272.141090208198875 ], [ 4960748.448495499789715, 3898258.624281906988472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960626.255033602006733, 3897717.348205482587218 ], [ 4960621.898322206921875, 3897742.102641963399947 ], [ 4960576.689450565725565, 3897734.025606625247747 ], [ 4960581.045588793233037, 3897709.635291829705238 ], [ 4960626.255033602006733, 3897717.348205482587218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958526.718769613653421, 3899439.965785530395806 ], [ 4958566.450139780528843, 3899450.216558933723718 ], [ 4958555.448613344691694, 3899491.347979208920151 ], [ 4958562.070327495224774, 3899493.177820939105004 ], [ 4958555.700234581716359, 3899517.565690492279828 ], [ 4958496.967342481017113, 3899502.190773018170148 ], [ 4958503.915425808168948, 3899476.347170871216804 ], [ 4958516.29534056968987, 3899479.641503190156072 ], [ 4958526.718769613653421, 3899439.965785530395806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960507.021291354671121, 3909143.602441767696291 ], [ 4960456.283758816309273, 3909188.680750442203134 ], [ 4960438.462761036120355, 3909168.627479896880686 ], [ 4960443.940426900982857, 3909163.53761904174462 ], [ 4960431.580610394477844, 3909149.682568008080125 ], [ 4960476.552582305856049, 3909109.693646272178739 ], [ 4960507.021291354671121, 3909143.602441767696291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960435.423249057494104, 3896441.159427844919264 ], [ 4960453.654939032159746, 3896382.925308289006352 ], [ 4960484.74985243100673, 3896392.438040198292583 ], [ 4960478.96187680400908, 3896411.000191786326468 ], [ 4960483.856490653939545, 3896412.463852882850915 ], [ 4960471.412177452817559, 3896452.499926492106169 ], [ 4960435.423249057494104, 3896441.159427844919264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958461.257465192116797, 3904491.458422209136188 ], [ 4958490.320425374433398, 3904506.428058410063386 ], [ 4958486.278434873558581, 3904514.069210968445987 ], [ 4958520.232577376998961, 3904531.958706816658378 ], [ 4958495.114249222911894, 3904579.625060450751334 ], [ 4958452.240062325261533, 3904556.98954060440883 ], [ 4958451.950593809597194, 3904558.081533276475966 ], [ 4958431.520313566550612, 3904547.493454685434699 ], [ 4958461.257465192116797, 3904491.458422209136188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957940.940733157098293, 3896458.394196230452508 ], [ 4957978.381845988333225, 3896461.722492087166756 ], [ 4957975.748664867132902, 3896491.577502027153969 ], [ 4957938.307593305595219, 3896488.249209770932794 ], [ 4957940.940733157098293, 3896458.394196230452508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957899.573758503422141, 3899967.820158721413463 ], [ 4957875.363441831432283, 3899980.895840751472861 ], [ 4957852.09352994710207, 3899937.896787457168102 ], [ 4957876.303873945958912, 3899924.821084801573306 ], [ 4957899.573758503422141, 3899967.820158721413463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959841.655569638125598, 3898924.757067167200148 ], [ 4959894.354226507246494, 3898930.658862391486764 ], [ 4959891.435846489854157, 3898957.236151614226401 ], [ 4959898.923221233300865, 3898957.975176773965359 ], [ 4959896.591342692263424, 3898977.270710427314043 ], [ 4959841.301155854947865, 3898971.001059573143721 ], [ 4959843.344978938810527, 3898951.705107644200325 ], [ 4959838.737241118215024, 3898951.334362017456442 ], [ 4959841.655569638125598, 3898924.757067167200148 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957796.217405403964221, 3899304.598612591158599 ], [ 4957805.716865669935942, 3899308.252830568235368 ], [ 4957789.530744788236916, 3899350.469898372422904 ], [ 4957754.986612477339804, 3899337.678409544285387 ], [ 4957779.265742846764624, 3899274.352781169116497 ], [ 4957804.309983253479004, 3899283.854209218174219 ], [ 4957796.217405403964221, 3899304.598612591158599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957568.708170455880463, 3900567.821689209435135 ], [ 4957577.632201102562249, 3900570.746791827958077 ], [ 4957582.550826183520257, 3900554.003449432551861 ], [ 4957609.611905838362873, 3900562.050910387653857 ], [ 4957588.203975096344948, 3900633.027356027625501 ], [ 4957552.218454336747527, 3900622.418948638718575 ], [ 4957568.708170455880463, 3900567.821689209435135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959556.340620109811425, 3899453.793914848938584 ], [ 4959559.004858828149736, 3899403.183637844864279 ], [ 4959585.499834740534425, 3899404.67793454322964 ], [ 4959584.905115343630314, 3899417.785767287947237 ], [ 4959617.160300992429256, 3899419.288311474490911 ], [ 4959615.378697890788317, 3899456.791161807719618 ], [ 4959556.340620109811425, 3899453.793914848938584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959414.633580811321735, 3907973.892928501591086 ], [ 4959429.858135831542313, 3907998.675528411287814 ], [ 4959407.381293932907283, 3908012.116480437107384 ], [ 4959392.156208947300911, 3907987.698024265002459 ], [ 4959414.633580811321735, 3907973.892928501591086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959380.057894015684724, 3906977.215083119925112 ], [ 4959451.794468871317804, 3906947.82230957550928 ], [ 4959464.420432751998305, 3906978.063193706329912 ], [ 4959392.395994707942009, 3907007.455525376368314 ], [ 4959380.057894015684724, 3906977.215083119925112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957424.213446228764951, 3905214.299334636889398 ], [ 4957466.292795890942216, 3905185.589643932878971 ], [ 4957481.811628460884094, 3905208.186702020931989 ], [ 4957439.732297508977354, 3905236.896368829067796 ], [ 4957424.213446228764951, 3905214.299334636889398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957350.845343572087586, 3899596.393107471056283 ], [ 4957350.311874535866082, 3899564.713078950066119 ], [ 4957434.699702342972159, 3899564.098296171985567 ], [ 4957434.945552770979702, 3899595.413809243123978 ], [ 4957350.845343572087586, 3899596.393107471056283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957146.219686781056225, 3900994.014783647377044 ], [ 4957160.090611114166677, 3900958.71267201891169 ], [ 4957215.068377940915525, 3900980.634005321189761 ], [ 4957201.197392595931888, 3901015.936089042574167 ], [ 4957146.219686781056225, 3900994.014783647377044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957033.685232422314584, 3898777.040765271056443 ], [ 4957101.329673076979816, 3898806.989554377272725 ], [ 4957088.619017754681408, 3898835.374731922987849 ], [ 4957064.727633068338037, 3898824.783120734151453 ], [ 4957065.883100130595267, 3898822.23575142538175 ], [ 4957022.130582859739661, 3898802.514473939780146 ], [ 4957033.685232422314584, 3898777.040765271056443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959030.235901237465441, 3906967.253521104343235 ], [ 4959058.103666617535055, 3907010.988521566148847 ], [ 4959016.89283740054816, 3907037.148048940114677 ], [ 4959022.352239450439811, 3907045.166620366275311 ], [ 4959003.619934503920376, 3907057.156640366185457 ], [ 4958980.348780943080783, 3907020.710783231072128 ], [ 4958995.045989491976798, 3907011.62813232280314 ], [ 4958990.736758143641055, 3907004.703577172476798 ], [ 4959011.485628139227629, 3906991.988119031302631 ], [ 4959005.739816728979349, 3906982.876752584706992 ], [ 4959030.235901237465441, 3906967.253521104343235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956791.351216155104339, 3898860.469097920693457 ], [ 4956779.784317321144044, 3898895.410271923057735 ], [ 4956735.160928467288613, 3898880.786127675324678 ], [ 4956746.727775505743921, 3898845.844934780150652 ], [ 4956791.351216155104339, 3898860.469097920693457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956739.173574197106063, 3897150.447223996277899 ], [ 4956763.929721061140299, 3897161.767934647854418 ], [ 4956769.706308939494193, 3897149.759294278454036 ], [ 4956810.007206705398858, 3897168.019053325522691 ], [ 4956790.941984242759645, 3897209.50460061384365 ], [ 4956725.596975304186344, 3897179.923790955450386 ], [ 4956739.173574197106063, 3897150.447223996277899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958490.290802362374961, 3905982.25214262958616 ], [ 4958549.677906193770468, 3905930.991977341473103 ], [ 4958567.21452496945858, 3905951.043555197305977 ], [ 4958550.782158655114472, 3905965.221866450738162 ], [ 4958556.24394051451236, 3905971.78381487634033 ], [ 4958513.289216609671712, 3906008.865622204262763 ], [ 4958490.290802362374961, 3905982.25214262958616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956614.109425012953579, 3892156.982145166490227 ], [ 4956599.064637263305485, 3892205.755567885935307 ], [ 4956553.277201557531953, 3892191.494395664427429 ], [ 4956568.321435778401792, 3892143.085075519513339 ], [ 4956614.109425012953579, 3892156.982145166490227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958419.416535928845406, 3897265.962422069627792 ], [ 4958427.264474213123322, 3897214.631010956596583 ], [ 4958493.786409603431821, 3897224.918725935276598 ], [ 4958485.938851629383862, 3897275.885989083442837 ], [ 4958419.416535928845406, 3897265.962422069627792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958378.924272971227765, 3904891.888822447974235 ], [ 4958392.761098461225629, 3904880.984007852617651 ], [ 4958378.389119297266006, 3904862.393455205019563 ], [ 4958404.909488239325583, 3904841.674631977919489 ], [ 4958440.839632770977914, 3904887.968998017720878 ], [ 4958400.195012712851167, 3904919.228061436209828 ], [ 4958378.924272971227765, 3904891.888822447974235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956376.948110036551952, 3893749.005510376300663 ], [ 4956368.806936085224152, 3893806.527217255905271 ], [ 4956331.364778833463788, 3893801.01639959635213 ], [ 4956332.818916713818908, 3893790.45856323139742 ], [ 4956299.120237045921385, 3893786.045062356162816 ], [ 4956305.807136825285852, 3893739.081172429025173 ], [ 4956376.948110036551952, 3893749.005510376300663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956247.468139003030956, 3900710.992583676241338 ], [ 4956174.031158636324108, 3900709.076405708678067 ], [ 4956174.938209793530405, 3900675.941732073668391 ], [ 4956197.68956337403506, 3900676.335436518769711 ], [ 4956197.988451349548995, 3900667.96082962397486 ], [ 4956248.386186516843736, 3900669.4829311077483 ], [ 4956247.468139003030956, 3900710.992583676241338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956130.105536742135882, 3900602.693334242794663 ], [ 4956129.48842709325254, 3900634.371863211039454 ], [ 4956096.369099673815072, 3900633.964772069826722 ], [ 4956096.98664241656661, 3900601.922112731728703 ], [ 4956130.105536742135882, 3900602.693334242794663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958107.626380399800837, 3904505.536310588475317 ], [ 4958026.117669955827296, 3904517.805097382050008 ], [ 4958020.124390825629234, 3904478.470735373906791 ], [ 4958047.773753812536597, 3904474.503140334505588 ], [ 4958044.918613150715828, 3904456.656806420534849 ], [ 4958073.720330595970154, 3904452.326684848871082 ], [ 4958075.148141570389271, 3904461.067788031417876 ], [ 4958100.49337297771126, 3904457.461220967117697 ], [ 4958107.626380399800837, 3904505.536310588475317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958088.992065431550145, 3905705.32323863171041 ], [ 4958063.919493521563709, 3905720.946527091786265 ], [ 4958041.222291042096913, 3905684.138171445578337 ], [ 4958104.047550735063851, 3905645.262205187696964 ], [ 4958122.435530766844749, 3905674.782072089146823 ], [ 4958084.394945505075157, 3905698.034308934118599 ], [ 4958088.992065431550145, 3905705.32323863171041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955933.246687920764089, 3906078.237912280950695 ], [ 4955924.311622730456293, 3906085.144878217484802 ], [ 4955938.971171031706035, 3906104.826896424870938 ], [ 4955916.490269964560866, 3906121.547930430620909 ], [ 4955888.034018144011497, 3906082.913301531225443 ], [ 4955919.449531856924295, 3906059.649404488503933 ], [ 4955933.246687920764089, 3906078.237912280950695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957633.393940694630146, 3897247.772914835717529 ], [ 4957632.215188415721059, 3897267.434313640464097 ], [ 4957614.934113525785506, 3897266.682669968344271 ], [ 4957615.82531126961112, 3897246.656751870177686 ], [ 4957633.393940694630146, 3897247.772914835717529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957511.414300415664911, 3899273.625952609814703 ], [ 4957494.420560930855572, 3899274.331291292794049 ], [ 4957493.302389201708138, 3899249.204816513694823 ], [ 4957510.008131433278322, 3899248.499088583048433 ], [ 4957511.414300415664911, 3899273.625952609814703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957500.597774898633361, 3905583.631416164338589 ], [ 4957439.487184016034007, 3905632.706778059713542 ], [ 4957416.777289907447994, 3905604.638088426552713 ], [ 4957462.898542188107967, 3905567.558805771637708 ], [ 4957466.06005244050175, 3905571.932642651721835 ], [ 4957481.04941217135638, 3905559.936514350585639 ], [ 4957500.597774898633361, 3905583.631416164338589 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957103.143266901373863, 3897879.189371997024864 ], [ 4957109.799967814236879, 3897855.165695274248719 ], [ 4957130.818237381055951, 3897861.019818458706141 ], [ 4957123.873491396196187, 3897885.043105639051646 ], [ 4957103.143266901373863, 3897879.189371997024864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956752.746093292720616, 3895161.226940480992198 ], [ 4956777.540161516517401, 3895145.238018782809377 ], [ 4956791.05044028069824, 3895166.739491890650243 ], [ 4956798.258121150545776, 3895162.015344495419413 ], [ 4956808.606976440176368, 3895178.050710306502879 ], [ 4956810.048705094493926, 3895176.96023023314774 ], [ 4956829.021412893198431, 3895206.479788761585951 ], [ 4956795.578942155465484, 3895227.555033444426954 ], [ 4956782.642885327339172, 3895207.510832515545189 ], [ 4956771.399062277749181, 3895214.778554073069245 ], [ 4956749.839557664468884, 3895180.886071193497628 ], [ 4956760.795332254841924, 3895173.617960247211158 ], [ 4956752.746093292720616, 3895161.226940480992198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954844.566514391452074, 3895692.22365150693804 ], [ 4954853.752745263278484, 3895717.360044156201184 ], [ 4954833.292029902338982, 3895724.617057383991778 ], [ 4954824.105782407335937, 3895699.480671611148864 ], [ 4954844.566514391452074, 3895692.22365150693804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954772.676531272940338, 3892590.484738997649401 ], [ 4954783.008966491557658, 3892621.448545342311263 ], [ 4954745.254068424925208, 3892634.145977032370865 ], [ 4954743.244285114109516, 3892628.681545879226178 ], [ 4954739.49737820867449, 3892630.133392088580877 ], [ 4954733.757012629881501, 3892613.01220342470333 ], [ 4954731.73951618745923, 3892613.737947719171643 ], [ 4954728.869556806050241, 3892604.995290165767074 ], [ 4954772.676531272940338, 3892590.484738997649401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955916.6131996139884, 3893298.344893508590758 ], [ 4955832.170142345130444, 3893326.638171317055821 ], [ 4955820.690158192068338, 3893293.123570980038494 ], [ 4955905.133777900598943, 3893264.466129631735384 ], [ 4955916.6131996139884, 3893298.344893508590758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955896.622055721469223, 3897186.125097667332739 ], [ 4955926.562215554527938, 3897198.179978287778795 ], [ 4955917.315976519137621, 3897220.744079675991088 ], [ 4955887.375837712548673, 3897208.689209189731628 ], [ 4955896.622055721469223, 3897186.125097667332739 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954015.318395218811929, 3892340.123066828586161 ], [ 4954032.917463154532015, 3892319.025073508732021 ], [ 4954056.517077101394534, 3892338.352666532620788 ], [ 4954038.917559146881104, 3892359.814772519748658 ], [ 4954015.318395218811929, 3892340.123066828586161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953659.190631083212793, 3900983.393438670318574 ], [ 4953658.288447329774499, 3901015.071684268303216 ], [ 4953615.667063100263476, 3901013.56380232796073 ], [ 4953616.856752678751945, 3900982.250031887087971 ], [ 4953659.190631083212793, 3900983.393438670318574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953657.655936904251575, 3892939.045008283574134 ], [ 4953632.293868888169527, 3892948.117660685908049 ], [ 4953620.521584366448224, 3892915.696044320706278 ], [ 4953666.634735863655806, 3892899.001695378683507 ], [ 4953681.85296003241092, 3892940.530701744370162 ], [ 4953660.813850210048258, 3892948.152028503362089 ], [ 4953657.655936904251575, 3892939.045008283574134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953577.847726074978709, 3894144.943036614451557 ], [ 4953642.053938031196594, 3894172.329983187839389 ], [ 4953628.765115947462618, 3894203.629050858318806 ], [ 4953607.74716994445771, 3894194.500524304341525 ], [ 4953606.302450974471867, 3894198.140073373913765 ], [ 4953562.826183805242181, 3894179.881340617779642 ], [ 4953577.847726074978709, 3894144.943036614451557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955411.123589186929166, 3894137.378658644389361 ], [ 4955384.908487745560706, 3894138.073616593610495 ], [ 4955383.815395805053413, 3894091.463741004001349 ], [ 4955397.643139988183975, 3894091.117173080798239 ], [ 4955398.196149975061417, 3894109.32431588601321 ], [ 4955410.295476082712412, 3894108.975559011567384 ], [ 4955411.123589186929166, 3894137.378658644389361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953211.306108041666448, 3895698.607098410371691 ], [ 4953214.803855537436903, 3895664.018991972319782 ], [ 4953245.045797633007169, 3895666.96800264948979 ], [ 4953241.548011591657996, 3895701.556105211842805 ], [ 4953211.306108041666448, 3895698.607098410371691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953186.845181737095118, 3900769.44768217811361 ], [ 4953142.779509433545172, 3900771.216006584931165 ], [ 4953139.99718607403338, 3900688.919279204215854 ], [ 4953184.062560454942286, 3900687.515080004464835 ], [ 4953186.845181737095118, 3900769.44768217811361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953078.568613539449871, 3894679.616657447069883 ], [ 4953077.628982461988926, 3894743.338102366309613 ], [ 4953057.177055118605494, 3894742.949766963720322 ], [ 4953057.477610877715051, 3894732.390384349506348 ], [ 4953001.306478474289179, 3894731.595722963102162 ], [ 4953001.93077128008008, 3894690.814023730810732 ], [ 4953023.823479130864143, 3894690.839891043957323 ], [ 4953023.815732219256461, 3894697.394201999530196 ], [ 4953054.637922018766403, 3894697.794779049232602 ], [ 4953054.947954963892698, 3894679.224572250619531 ], [ 4953078.568613539449871, 3894679.616657447069883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953049.89191909134388, 3892134.687787276227027 ], [ 4953068.017845482565463, 3892154.736292413901538 ], [ 4953049.272240967489779, 3892171.464018134400249 ], [ 4953031.146311912685633, 3892151.415525449439883 ], [ 4953049.89191909134388, 3892134.687787276227027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953025.833943443372846, 3893964.769406851846725 ], [ 4953073.926069720648229, 3893977.934929429087788 ], [ 4953066.40264645870775, 3894006.328066501300782 ], [ 4952976.841032982803881, 3893982.553850177209824 ], [ 4952988.414541647769511, 3893939.600320400670171 ], [ 4952992.734301726333797, 3893940.697806890122592 ], [ 4952996.495121558196843, 3893927.229484708979726 ], [ 4953033.356904868967831, 3893936.740387338679284 ], [ 4953025.833943443372846, 3893964.769406851846725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952826.882701702415943, 3893139.419466031249613 ], [ 4952823.388553799130023, 3893171.094547190703452 ], [ 4952798.616817146539688, 3893168.51656587049365 ], [ 4952796.8721107468009, 3893182.351404058746994 ], [ 4952747.328648434020579, 3893177.195513065438718 ], [ 4952753.15080205630511, 3893125.496079200413078 ], [ 4952806.726605014875531, 3893131.38497067661956 ], [ 4952805.855530541390181, 3893137.21000515948981 ], [ 4952826.882701702415943, 3893139.419466031249613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954645.122596200555563, 3894159.356301667634398 ], [ 4954680.600650318898261, 3894122.623388273641467 ], [ 4954703.618905361741781, 3894144.499750878661871 ], [ 4954692.658286613412201, 3894155.774106494616717 ], [ 4954705.605924881994724, 3894168.170596106909215 ], [ 4954681.088485813699663, 3894193.629112351685762 ], [ 4954645.122596200555563, 3894159.356301667634398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953692.219798652455211, 3900819.574675764422864 ], [ 4953726.198958717286587, 3900823.257015653885901 ], [ 4953722.415412280708551, 3900856.02416530624032 ], [ 4953688.43673263117671, 3900851.977700409945101 ], [ 4953692.219798652455211, 3900819.574675764422864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953630.312106220051646, 3892201.651944502256811 ], [ 4953655.984033313579857, 3892175.10150504950434 ], [ 4953712.096298774704337, 3892229.060198636259884 ], [ 4953686.712894963100553, 3892255.246805076487362 ], [ 4953630.312106220051646, 3892201.651944502256811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951668.555314695462584, 3894124.144268441013992 ], [ 4951699.660474005155265, 3894129.641413789242506 ], [ 4951684.578293313272297, 3894220.292396885808557 ], [ 4951629.855441516265273, 3894211.491409344598651 ], [ 4951633.915954475291073, 3894187.09937091358006 ], [ 4951657.532946038991213, 3894191.131490400526673 ], [ 4951668.555314695462584, 3894124.144268441013992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953433.152293947525322, 3892050.301939697004855 ], [ 4953425.363834528252482, 3892058.667569336481392 ], [ 4953407.234189583919942, 3892041.895974752493203 ], [ 4953434.349552663043141, 3892012.798154411837459 ], [ 4953489.889478375203907, 3892064.206794677302241 ], [ 4953470.562567895278335, 3892084.938940883614123 ], [ 4953433.152293947525322, 3892050.301939697004855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953227.682893823832273, 3894038.926886304747313 ], [ 4953239.251579869538546, 3894000.343001921661198 ], [ 4953319.59469214361161, 3894024.107094449922442 ], [ 4953307.158221169374883, 3894065.602940225508064 ], [ 4953283.832904925569892, 3894058.656689116265625 ], [ 4953281.519677883014083, 3894065.936508058570325 ], [ 4953255.314968694932759, 3894057.894464728888124 ], [ 4953258.207795321941376, 3894047.702303573489189 ], [ 4953227.682893823832273, 3894038.926886304747313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953109.51508813071996, 3899435.547473517246544 ], [ 4953137.444389060139656, 3899442.134932702872902 ], [ 4953131.076616581529379, 3899468.708863258827478 ], [ 4953103.147341728210449, 3899462.12141059152782 ], [ 4953109.51508813071996, 3899435.547473517246544 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951319.337075540795922, 3892649.758857577107847 ], [ 4951301.768032983876765, 3892646.097928616218269 ], [ 4951300.899304249323905, 3892650.102370313834399 ], [ 4951260.000344904139638, 3892642.045859860721976 ], [ 4951261.738197447732091, 3892633.672845925204456 ], [ 4951234.376310178078711, 3892628.180388715583831 ], [ 4951241.619438724592328, 3892591.411497194319963 ], [ 4951327.737539943307638, 3892608.621742043178529 ], [ 4951319.337075540795922, 3892649.758857577107847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951295.458234167657793, 3892878.768960142042488 ], [ 4951334.627520051784813, 3892887.551847378257662 ], [ 4951336.365380140952766, 3892879.17883706651628 ], [ 4951354.798101829364896, 3892883.204884935636073 ], [ 4951353.060236255638301, 3892891.577894071117043 ], [ 4951365.444873696193099, 3892894.140663782134652 ], [ 4951357.337413977831602, 3892930.908560556359589 ], [ 4951315.287796908989549, 3892921.758290129713714 ], [ 4951311.233491978608072, 3892940.688438026234508 ], [ 4951283.008091876283288, 3892934.830835948232561 ], [ 4951295.458234167657793, 3892878.768960142042488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951002.203946489840746, 3897291.685677741654217 ], [ 4951087.17480699904263, 3897291.051604157313704 ], [ 4951087.706413256935775, 3897331.106431331019849 ], [ 4951002.735679349862039, 3897331.740503260865808 ], [ 4951002.203946489840746, 3897291.685677741654217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952664.524701414629817, 3894763.607524773105979 ], [ 4952659.916148222982883, 3894763.238010734785348 ], [ 4952658.165233279578388, 3894782.534797007218003 ], [ 4952624.465500433929265, 3894779.58241350017488 ], [ 4952629.13738202676177, 3894725.696789090987295 ], [ 4952667.445741018280387, 3894729.018692890182137 ], [ 4952664.524701414629817, 3894763.607524773105979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950676.406169654801488, 3889687.593523687217385 ], [ 4950656.872455752454698, 3889634.409494658000767 ], [ 4950689.442734907381237, 3889622.42891961755231 ], [ 4950712.135690816678107, 3889684.719628526829183 ], [ 4950696.571068435907364, 3889690.528622734360397 ], [ 4950693.12365058157593, 3889681.421652435325086 ], [ 4950676.406169654801488, 3889687.593523687217385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950428.478142672218382, 3894336.877409230917692 ], [ 4950393.334912086836994, 3894336.111030249390751 ], [ 4950393.63126762304455, 3894328.46464719530195 ], [ 4950380.380634092725813, 3894328.086156654171646 ], [ 4950381.276003744453192, 3894299.320953772868961 ], [ 4950429.381863470189273, 3894300.46551259374246 ], [ 4950428.478142672218382, 3894336.877409230917692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950163.134191213175654, 3895172.994717713445425 ], [ 4950168.861638822592795, 3895204.31596891535446 ], [ 4950109.798340319655836, 3895215.176363818813115 ], [ 4950101.779269721359015, 3895171.836409919895232 ], [ 4950127.133352329954505, 3895167.129957471974194 ], [ 4950129.424897928722203, 3895179.148674675729126 ], [ 4950163.134191213175654, 3895172.994717713445425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950024.058297855779529, 3893775.319147132337093 ], [ 4950003.880033150315285, 3893787.677931530866772 ], [ 4949997.841042399406433, 3893777.839999340474606 ], [ 4949960.366829611361027, 3893801.104186129756272 ], [ 4949938.798384037800133, 3893766.488938303198665 ], [ 4949996.162839404307306, 3893730.865609080530703 ], [ 4950024.058297855779529, 3893775.319147132337093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949724.145901408046484, 3893803.037720553111285 ], [ 4949719.216295388527215, 3893833.619307006709278 ], [ 4949671.116500603035092, 3893825.921710748225451 ], [ 4949676.046438316814601, 3893794.975987368728966 ], [ 4949724.145901408046484, 3893803.037720553111285 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952045.823221577331424, 3891698.021476923488081 ], [ 4952019.874756753444672, 3891715.469922539778054 ], [ 4951982.484161264263093, 3891661.536176112480462 ], [ 4951983.349276972003281, 3891660.808908564504236 ], [ 4951974.145235967822373, 3891647.689772420097142 ], [ 4952003.554205407388508, 3891627.332215649541467 ], [ 4952036.62964793574065, 3891675.799125073943287 ], [ 4952032.593410017900169, 3891678.343401122838259 ], [ 4952045.823221577331424, 3891698.021476923488081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951830.264827245846391, 3893273.723172639496624 ], [ 4951833.758206070400774, 3893241.683832395356148 ], [ 4951860.258016845211387, 3893244.62702087406069 ], [ 4951856.764606810174882, 3893276.66635773004964 ], [ 4951830.264827245846391, 3893273.723172639496624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951580.497768265195191, 3896085.607485692948103 ], [ 4951521.161316471174359, 3896084.448212884832174 ], [ 4951521.780876795761287, 3896045.851219001691788 ], [ 4951511.699216904118657, 3896045.839867548085749 ], [ 4951512.299907594919205, 3896023.992794235236943 ], [ 4951520.076784369535744, 3896024.365679611451924 ], [ 4951520.090725595131516, 3896011.985304011963308 ], [ 4951555.807830278761685, 3896012.753806174267083 ], [ 4951554.896067994646728, 3896054.99176077824086 ], [ 4951581.107963914982975, 3896055.385453263763338 ], [ 4951580.497768265195191, 3896085.607485692948103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948498.49267566204071, 3890585.422230299096555 ], [ 4948551.229742689058185, 3890572.002994741313159 ], [ 4948560.414369595237076, 3890606.240350721869618 ], [ 4948507.676995938643813, 3890620.023696121759713 ], [ 4948498.49267566204071, 3890585.422230299096555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948234.285743423737586, 3898634.223095901310444 ], [ 4948276.62573614064604, 3898633.17324692895636 ], [ 4948277.174680854193866, 3898660.119395059533417 ], [ 4948234.835096130147576, 3898660.805113862268627 ], [ 4948234.285743423737586, 3898634.223095901310444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950934.817333112470806, 3893888.461022029165179 ], [ 4950961.612722881138325, 3893884.121078958269209 ], [ 4950959.609105912037194, 3893872.466746546793729 ], [ 4950974.879672107286751, 3893869.934726126026362 ], [ 4950977.170547971501946, 3893882.317634687293321 ], [ 4950995.034551744349301, 3893879.060236239805818 ], [ 4950999.900322005152702, 3893907.467658490873873 ], [ 4950939.970431216061115, 3893917.597008192446083 ], [ 4950934.817333112470806, 3893888.461022029165179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950883.236858738586307, 3892334.667699289508164 ], [ 4950919.833978461101651, 3892325.60485373204574 ], [ 4950929.012976329773664, 3892361.663693081587553 ], [ 4950892.415902557782829, 3892370.726526335347444 ], [ 4950883.236858738586307, 3892334.667699289508164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948041.060319609940052, 3897442.233811453916132 ], [ 4947990.933977120555937, 3897450.923002972733229 ], [ 4947976.324339586310089, 3897370.435873996000737 ], [ 4948026.450827369466424, 3897361.746655649039894 ], [ 4948041.060319609940052, 3897442.233811453916132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950737.778577308170497, 3893624.250892543699592 ], [ 4950769.461850488558412, 3893628.655207377392799 ], [ 4950765.686513850465417, 3893656.324838478583843 ], [ 4950734.003272676840425, 3893651.920528012793511 ], [ 4950737.778577308170497, 3893624.250892543699592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950582.452711971476674, 3890769.314886651467532 ], [ 4950653.015883873216808, 3890789.783131891395897 ], [ 4950643.184529302641749, 3890822.543905088212341 ], [ 4950572.909936721436679, 3890801.711871882900596 ], [ 4950582.452711971476674, 3890769.314886651467532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950390.102641287259758, 3892002.771904468536377 ], [ 4950407.667489035055041, 3892010.801770564634353 ], [ 4950395.826955255120993, 3892037.370296727865934 ], [ 4950377.973636377602816, 3892029.704253970179707 ], [ 4950390.102641287259758, 3892002.771904468536377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950371.772643002681434, 3896955.632114545442164 ], [ 4950373.181270211003721, 3896984.763988196849823 ], [ 4950331.989957289770246, 3896986.540037853177637 ], [ 4950330.580891595222056, 3896957.772295253816992 ], [ 4950371.772643002681434, 3896955.632114545442164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950106.515232499688864, 3894516.773632368072867 ], [ 4950135.031984710134566, 3894518.260773439425975 ], [ 4950133.560758365318179, 3894547.025369205977768 ], [ 4950105.044036587700248, 3894545.538229663390666 ], [ 4950106.515232499688864, 3894516.773632368072867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949718.2837995570153, 3893626.064994864165783 ], [ 4949772.147335697896779, 3893631.948145613539964 ], [ 4949766.331795447506011, 3893682.919983707834035 ], [ 4949712.468360195867717, 3893677.036844435613602 ], [ 4949718.2837995570153, 3893626.064994864165783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946808.421423274092376, 3890930.776479386724532 ], [ 4946820.771032332442701, 3890971.570559329353273 ], [ 4946795.410808583721519, 3890979.193140109535307 ], [ 4946782.773062424734235, 3890938.398798039648682 ], [ 4946808.421423274092376, 3890930.776479386724532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949490.457881807349622, 3900715.787791658192873 ], [ 4949493.078556714579463, 3900688.48078478500247 ], [ 4949535.409999738447368, 3900692.530733691062778 ], [ 4949532.789282202720642, 3900719.837736503221095 ], [ 4949490.457881807349622, 3900715.787791658192873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949427.538903892971575, 3890677.411831194069237 ], [ 4949437.877851296216249, 3890708.737675987649709 ], [ 4949378.508109971880913, 3890727.974281706381589 ], [ 4949368.16872004698962, 3890697.012586987111717 ], [ 4949427.538903892971575, 3890677.411831194069237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946664.528302765451372, 3891373.055661007761955 ], [ 4946661.047730192542076, 3891397.813082041218877 ], [ 4946635.986365338787436, 3891394.512253996916115 ], [ 4946639.466915250755847, 3891369.754829772282392 ], [ 4946664.528302765451372, 3891373.055661007761955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949243.583933344110847, 3888601.691389816813171 ], [ 4949297.770457305014133, 3888583.905608006753027 ], [ 4949292.887102390639484, 3888569.699540225788951 ], [ 4949314.792396329343319, 3888562.439843975007534 ], [ 4949333.174376858398318, 3888618.17055158643052 ], [ 4949257.371180047281086, 3888642.852161074522883 ], [ 4949243.583933344110847, 3888601.691389816813171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949169.281918169930577, 3890787.837323765736073 ], [ 4949202.419151436537504, 3890782.77396244276315 ], [ 4949206.99890093319118, 3890811.544837076216936 ], [ 4949173.573598781600595, 3890816.607893626671284 ], [ 4949169.281918169930577, 3890787.837323765736073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948883.298078961670399, 3888724.757952833548188 ], [ 4948949.012909705750644, 3888703.342041906900704 ], [ 4948957.629301651380956, 3888729.932232168503106 ], [ 4948934.57136292476207, 3888737.555160626769066 ], [ 4948938.017623085528612, 3888748.482536464929581 ], [ 4948895.360804684460163, 3888762.275492825079709 ], [ 4948883.298078961670399, 3888724.757952833548188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946157.385970087721944, 3892092.462442172225565 ], [ 4946155.052242932841182, 3892123.775309558492154 ], [ 4946132.582950632087886, 3892121.933863116893917 ], [ 4946135.204741584137082, 3892090.62126048328355 ], [ 4946157.385970087721944, 3892092.462442172225565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945748.950174785219133, 3892957.620196576230228 ], [ 4945754.185076110064983, 3892903.369833311997354 ], [ 4945780.97429252974689, 3892905.943163173273206 ], [ 4945775.73933762870729, 3892960.193521303590387 ], [ 4945748.950174785219133, 3892957.620196576230228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948255.778150355443358, 3891287.580308959353715 ], [ 4948306.765706371515989, 3891293.457622050773352 ], [ 4948300.372589040547609, 3891348.070405445061624 ], [ 4948249.097037407569587, 3891342.192814975511283 ], [ 4948255.778150355443358, 3891287.580308959353715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947788.619331802241504, 3898735.00742028420791 ], [ 4947750.30603557638824, 3898741.888082679361105 ], [ 4947744.864551701582968, 3898710.567565128672868 ], [ 4947782.889872217550874, 3898703.686610780190676 ], [ 4947788.619331802241504, 3898735.00742028420791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944709.230056838132441, 3892009.230962939560413 ], [ 4944732.855400913394988, 3892007.066818926483393 ], [ 4944735.70990667399019, 3892037.291954029817134 ], [ 4944712.084588922560215, 3892039.456095565110445 ], [ 4944709.230056838132441, 3892009.230962939560413 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947160.077109119854867, 3897329.218316693790257 ], [ 4947182.54795120190829, 3897324.870433768257499 ], [ 4947191.145387387834489, 3897370.030772975645959 ], [ 4947162.624831581488252, 3897375.465204222127795 ], [ 4947156.319335551932454, 3897343.051611147355288 ], [ 4947162.657477215863764, 3897341.601202980615199 ], [ 4947160.077109119854867, 3897329.218316693790257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944454.758404633030295, 3891776.696341461502016 ], [ 4944503.443631176836789, 3891779.651431115809828 ], [ 4944501.691138760186732, 3891807.323655726853758 ], [ 4944493.912946781143546, 3891806.952801726292819 ], [ 4944492.450132408179343, 3891832.804636958520859 ], [ 4944451.542872736230493, 3891830.584534507710487 ], [ 4944454.758404633030295, 3891776.696341461502016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946317.774386048316956, 3898045.026343270670623 ], [ 4946217.503792834468186, 3898085.351393781602383 ], [ 4946194.802151248790324, 3898028.890240101609379 ], [ 4946295.072581507265568, 3897988.929235450457782 ], [ 4946317.774386048316956, 3898045.026343270670623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943631.920855146832764, 3892520.27683668769896 ], [ 4943662.45515476167202, 3892523.579429185017943 ], [ 4943657.228650975972414, 3892572.732394723687321 ], [ 4943673.071787775494158, 3892574.566245633643121 ], [ 4943670.456858522258699, 3892601.145432183984667 ], [ 4943623.791135237552226, 3892596.372887372970581 ], [ 4943631.920855146832764, 3892520.27683668769896 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943537.683764796704054, 3889432.393287470098585 ], [ 4943545.771910949610174, 3889407.275185159873217 ], [ 4943566.798823669552803, 3889414.211054638959467 ], [ 4943558.710659947246313, 3889439.329150736797601 ], [ 4943537.683764796704054, 3889432.393287470098585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942497.081418360583484, 3889693.72277166089043 ], [ 4942548.934995852410793, 3889702.866990114562213 ], [ 4942549.224553491920233, 3889701.046580992639065 ], [ 4942600.214042389765382, 3889709.826086217071861 ], [ 4942592.688359518535435, 3889753.515436207409948 ], [ 4942571.08263307902962, 3889749.857017543632537 ], [ 4942571.37190296780318, 3889748.40073608700186 ], [ 4942544.86908062081784, 3889743.646072479896247 ], [ 4942544.578658574260771, 3889746.558864126913249 ], [ 4942510.009474084712565, 3889740.705464477650821 ], [ 4942510.298740763217211, 3889739.249182370956987 ], [ 4942489.845451870933175, 3889735.591740310192108 ], [ 4942497.081418360583484, 3889693.72277166089043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944808.231835282407701, 3891467.494838823564351 ], [ 4944866.997440932318568, 3891474.464829633012414 ], [ 4944864.675079117529094, 3891494.48983525717631 ], [ 4944868.708105978555977, 3891494.857506029307842 ], [ 4944865.515379736199975, 3891521.800181273836643 ], [ 4944811.070678661577404, 3891515.562235901132226 ], [ 4944814.263670212589204, 3891488.255426463205367 ], [ 4944805.909835681319237, 3891487.15572162065655 ], [ 4944808.231835282407701, 3891467.494838823564351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942188.40680028218776, 3890195.612784304656088 ], [ 4942189.88818739913404, 3890143.179535619914532 ], [ 4942202.276662720367312, 3890143.553314558696002 ], [ 4942201.987133296206594, 3890145.373727889265865 ], [ 4942211.494784837588668, 3890145.381138531025499 ], [ 4942210.014491136185825, 3890196.357875765766948 ], [ 4942188.40680028218776, 3890195.612784304656088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944680.976013791747391, 3891372.346203266642988 ], [ 4944720.442193223163486, 3891376.021907886490226 ], [ 4944715.206861614249647, 3891432.821318912319839 ], [ 4944664.793717040680349, 3891428.407829648815095 ], [ 4944667.411644426174462, 3891399.643991132266819 ], [ 4944678.358386592008173, 3891400.745912204496562 ], [ 4944680.976013791747391, 3891372.346203266642988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944373.501019314862788, 3892464.100428262725472 ], [ 4944376.399104809388518, 3892444.075864545069635 ], [ 4944364.876916259527206, 3892442.609442337881774 ], [ 4944369.804753098636866, 3892407.293235127814114 ], [ 4944417.62176360655576, 3892413.524579420220107 ], [ 4944413.563142651692033, 3892443.015474156476557 ], [ 4944429.117904743179679, 3892445.213650297373533 ], [ 4944425.638272324576974, 3892471.427888211794198 ], [ 4944373.501019314862788, 3892464.100428262725472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944177.288099767640233, 3892832.794388874899596 ], [ 4944211.278648743405938, 3892836.464681788813323 ], [ 4944208.953781611286104, 3892860.131041105370969 ], [ 4944227.677527085877955, 3892861.967679503373802 ], [ 4944224.772750977426767, 3892890.003082864917815 ], [ 4944205.184781053103507, 3892888.165708501823246 ], [ 4944202.860856325365603, 3892910.739684660453349 ], [ 4944169.734332885593176, 3892907.434267131611705 ], [ 4944177.288099767640233, 3892832.794388874899596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943901.990616796538234, 3890309.881486531812698 ], [ 4943939.726428340189159, 3890317.559989986475557 ], [ 4943942.330163881182671, 3890304.81771288998425 ], [ 4943967.679443648084998, 3890309.936909321229905 ], [ 4943964.497633340768516, 3890324.863462707027793 ], [ 4943983.797839365899563, 3890328.521053309552372 ], [ 4943976.85429850500077, 3890362.743201133329421 ], [ 4943894.469424887560308, 3890345.923807755112648 ], [ 4943901.990616796538234, 3890309.881486531812698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943638.535604801960289, 3892879.677020034752786 ], [ 4943637.074276003055274, 3892904.800661674235016 ], [ 4943629.296389854513109, 3892904.430057586636394 ], [ 4943627.831130791455507, 3892934.287365913856775 ], [ 4943594.703053050674498, 3892932.803297602105886 ], [ 4943595.290715400129557, 3892918.966907166875899 ], [ 4943590.681723077781498, 3892918.598948316648602 ], [ 4943593.02086934261024, 3892877.090256297495216 ], [ 4943638.535604801960289, 3892879.677020034752786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943110.626136933453381, 3889513.607278190087527 ], [ 4943145.461361575871706, 3889546.771241122391075 ], [ 4943129.024762672372162, 3889563.871861996129155 ], [ 4943126.433784566819668, 3889561.320860038511455 ], [ 4943109.420085097663105, 3889579.513406518381089 ], [ 4943077.175842994824052, 3889548.900486590340734 ], [ 4943110.626136933453381, 3889513.607278190087527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943059.11144945025444, 3889796.856791256461293 ], [ 4943096.598272921517491, 3889757.561430180445313 ], [ 4943134.024153780192137, 3889793.276382366660982 ], [ 4943118.741058049723506, 3889809.285567524377257 ], [ 4943113.846964980475605, 3889804.547926899511367 ], [ 4943091.643232552334666, 3889827.834055414423347 ], [ 4943059.11144945025444, 3889796.856791256461293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992785.547527750022709, 3907640.377285037655383 ], [ 4992839.093478286638856, 3907643.432957862503827 ], [ 4992836.067757998593152, 3907698.40894349431619 ], [ 4992799.218518271110952, 3907696.490130302030593 ], [ 4992800.73861167114228, 3907666.271158830262721 ], [ 4992784.041991404257715, 3907665.134304215665907 ], [ 4992785.547527750022709, 3907640.377285037655383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993890.514514042064548, 3910655.451075443997979 ], [ 4993886.406268708407879, 3910684.206512703094631 ], [ 4993862.233302541077137, 3910680.499834399670362 ], [ 4993860.477419472299516, 3910691.054959710687399 ], [ 4993812.131485829129815, 3910683.641671480145305 ], [ 4993818.284394225105643, 3910643.96774169197306 ], [ 4993842.169508286751807, 3910647.673602513968945 ], [ 4993843.929322469979525, 3910635.661953045520931 ], [ 4993858.605863315053284, 3910637.886414305772632 ], [ 4993856.557167712599039, 3910650.261415617074817 ], [ 4993890.514514042064548, 3910655.451075443997979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991347.695695647969842, 3903979.971228146459907 ], [ 4991299.278146337717772, 3903995.138515210244805 ], [ 4991284.426525789313018, 3903948.126793359871954 ], [ 4991332.844151208177209, 3903932.95947997411713 ], [ 4991347.695695647969842, 3903979.971228146459907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992517.643492995761335, 3912466.25211318442598 ], [ 4992518.422099830582738, 3912498.297956763301045 ], [ 4992468.616533457301557, 3912499.622410310897976 ], [ 4992467.838832572102547, 3912467.212436864618212 ], [ 4992517.643492995761335, 3912466.25211318442598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992409.719056147150695, 3912781.670088566374034 ], [ 4992465.60021595377475, 3912768.709347286727279 ], [ 4992473.287703431211412, 3912800.77351143443957 ], [ 4992417.117774102836847, 3912814.097605738323182 ], [ 4992409.719056147150695, 3912781.670088566374034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992371.688144157640636, 3911488.894539791159332 ], [ 4992381.122689602896571, 3911513.680603312328458 ], [ 4992363.831475499086082, 3911520.553366170264781 ], [ 4992354.109034696593881, 3911495.76654669130221 ], [ 4992371.688144157640636, 3911488.894539791159332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989669.878011335618794, 3908670.405458446592093 ], [ 4989650.283299693837762, 3908676.909959838259965 ], [ 4989648.568804712966084, 3908671.807734940666705 ], [ 4989629.83876218367368, 3908677.950319539755583 ], [ 4989617.266991184093058, 3908640.048508724663407 ], [ 4989655.591796658933163, 3908627.401403874158859 ], [ 4989669.878011335618794, 3908670.405458446592093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989492.146855475381017, 3908478.419578944332898 ], [ 4989534.7627844363451, 3908476.707186528481543 ], [ 4989536.394024358130991, 3908514.581146869808435 ], [ 4989493.491166406311095, 3908515.928674973547459 ], [ 4989492.146855475381017, 3908478.419578944332898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989253.295959432609379, 3907862.429648718331009 ], [ 4989254.534272372722626, 3907828.204311170149595 ], [ 4989302.901339829899371, 3907829.783299650531262 ], [ 4989301.662965342402458, 3907864.008634995669127 ], [ 4989253.295959432609379, 3907862.429648718331009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991264.043616697192192, 3903481.984946586191654 ], [ 4991232.311218799091876, 3903503.386067245621234 ], [ 4991200.468144088052213, 3903456.694296106230468 ], [ 4991232.200571468099952, 3903435.293138461187482 ], [ 4991264.043616697192192, 3903481.984946586191654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988649.808701149187982, 3908551.66886391164735 ], [ 4988669.929747315123677, 3908564.828126598149538 ], [ 4988647.385739523917437, 3908599.364185538608581 ], [ 4988608.293484417721629, 3908573.776856734417379 ], [ 4988636.327911909669638, 3908531.243613172322512 ], [ 4988655.299153013154864, 3908543.671715355943888 ], [ 4988649.808701149187982, 3908551.66886391164735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990100.400377518497407, 3908522.574878459330648 ], [ 4990066.078023619949818, 3908546.15558558376506 ], [ 4990038.252030232921243, 3908506.393850286956877 ], [ 4990072.287428774870932, 3908482.448240261059254 ], [ 4990100.400377518497407, 3908522.574878459330648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987238.070325713604689, 3906478.071138990111649 ], [ 4987209.257991489954293, 3906485.647176294587553 ], [ 4987195.845662641339004, 3906436.456396197434515 ], [ 4987224.658045726828277, 3906428.880344744771719 ], [ 4987238.070325713604689, 3906478.071138990111649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987206.843269144184887, 3906179.041878166608512 ], [ 4987223.349654108285904, 3906140.848515214864165 ], [ 4987279.438753088004887, 3906165.019010596442968 ], [ 4987271.621456381864846, 3906182.478149766102433 ], [ 4987275.936064833775163, 3906184.309412263799459 ], [ 4987262.037178478203714, 3906215.954769179224968 ], [ 4987232.697857617400587, 3906203.502212807070464 ], [ 4987237.61963960994035, 3906192.590331703424454 ], [ 4987206.843269144184887, 3906179.041878166608512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987202.744950721971691, 3901160.933168991934508 ], [ 4987170.775984257459641, 3901161.582999321632087 ], [ 4987171.027358421124518, 3901176.512992013711482 ], [ 4987147.987069807015359, 3901176.820619961246848 ], [ 4987147.446797427721322, 3901162.254050295334309 ], [ 4987129.878356248140335, 3901162.575110849458724 ], [ 4987129.094709131866693, 3901129.801389299798757 ], [ 4987201.961392398923635, 3901128.159445342142135 ], [ 4987202.744950721971691, 3901160.933168991934508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987097.755245642736554, 3901696.312696899287403 ], [ 4987127.456274003721774, 3901680.727841003332287 ], [ 4987140.069676418788731, 3901704.427292659413069 ], [ 4987110.368666828610003, 3901720.012134838383645 ], [ 4987097.755245642736554, 3901696.312696899287403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987078.205638144165277, 3905797.115901234559715 ], [ 4987115.051623319275677, 3905801.575776088982821 ], [ 4987110.645017771981657, 3905837.249926135409623 ], [ 4987124.46268733497709, 3905838.740325018763542 ], [ 4987122.114516029134393, 3905856.9411765281111 ], [ 4987110.024509553797543, 3905855.455013170372695 ], [ 4987108.55534733645618, 3905867.467773680575192 ], [ 4987071.996501785703003, 3905863.372742861043662 ], [ 4987074.346422555856407, 3905844.443626957014203 ], [ 4987072.907602377235889, 3905844.07597027765587 ], [ 4987078.205638144165277, 3905797.115901234559715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987078.644491544924676, 3895623.296146802138537 ], [ 4987107.704731539823115, 3895636.84013371868059 ], [ 4987099.308414306491613, 3895654.29780096327886 ], [ 4987070.537132371217012, 3895640.390400550328195 ], [ 4987078.644491544924676, 3895623.296146802138537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986926.409503429196775, 3904874.762146230321378 ], [ 4986957.988153165206313, 3904914.165593443438411 ], [ 4986945.005369841121137, 3904924.329545481596142 ], [ 4986956.489627908915281, 3904938.194637818727642 ], [ 4986929.368727720342577, 3904959.976253883447498 ], [ 4986876.544756055809557, 3904894.667578166816384 ], [ 4986901.933513867668808, 3904874.702337399125099 ], [ 4986911.694548148661852, 3904886.742540404200554 ], [ 4986926.409503429196775, 3904874.762146230321378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988853.926148124039173, 3907527.512230866122991 ], [ 4988844.911636811681092, 3907562.810413590166718 ], [ 4988804.627908407710493, 3907552.5133904106915 ], [ 4988813.643285755068064, 3907516.85106411203742 ], [ 4988853.926148124039173, 3907527.512230866122991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988829.517286529764533, 3908303.053433710709214 ], [ 4988844.039504760876298, 3908252.839642544277012 ], [ 4988867.344256442971528, 3908259.452670125290751 ], [ 4988869.959331675432622, 3908249.991799623239785 ], [ 4988892.976162932813168, 3908256.604124837554991 ], [ 4988878.161356592550874, 3908308.637817299924791 ], [ 4988848.814992873929441, 3908300.188915503676981 ], [ 4988846.491510221734643, 3908308.193990842439234 ], [ 4988829.517286529764533, 3908303.053433710709214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988789.871380471624434, 3912963.859887439757586 ], [ 4988796.996619366109371, 3912992.280240647029132 ], [ 4988756.957647605799139, 3913002.375343849416822 ], [ 4988749.544503080658615, 3912973.954277774319053 ], [ 4988789.871380471624434, 3912963.859887439757586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986560.31295826844871, 3908235.539269669912755 ], [ 4986556.651463848538697, 3908202.030164111871272 ], [ 4986601.290137654170394, 3908197.404973826836795 ], [ 4986604.951577070169151, 3908230.914085383526981 ], [ 4986560.31295826844871, 3908235.539269669912755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986462.178584422916174, 3909640.125373982358724 ], [ 4986472.109294328838587, 3909700.231423904187977 ], [ 4986431.499336561188102, 3909706.687265659216791 ], [ 4986427.811390579678118, 3909684.102072722744197 ], [ 4986414.274731292389333, 3909686.25403545005247 ], [ 4986410.866721391677856, 3909666.946721074637026 ], [ 4986424.404273422434926, 3909664.430625803302974 ], [ 4986421.567655044607818, 3909646.945361346937716 ], [ 4986462.178584422916174, 3909640.125373982358724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988392.723847954533994, 3906929.178487041965127 ], [ 4988345.210719051770866, 3906930.880466190632433 ], [ 4988344.155373580753803, 3906892.279792716726661 ], [ 4988391.667660791426897, 3906890.941941906698048 ], [ 4988392.723847954533994, 3906929.178487041965127 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988372.005930684506893, 3905771.185973713174462 ], [ 4988370.775936830788851, 3905802.498269320931286 ], [ 4988327.876083973795176, 3905800.934616866987199 ], [ 4988329.106936872005463, 3905769.258189412765205 ], [ 4988372.005930684506893, 3905771.185973713174462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988369.408833164721727, 3904966.447561755310744 ], [ 4988366.183157765306532, 3904989.743953422177583 ], [ 4988351.214221556670964, 3904987.885910897050053 ], [ 4988347.107435564510524, 3905018.098613189999014 ], [ 4988318.035261694341898, 3905013.656454191543162 ], [ 4988320.381587623618543, 3904996.548105847556144 ], [ 4988315.776180962100625, 3904995.808347530197352 ], [ 4988321.049283868633211, 3904959.772439960855991 ], [ 4988369.408833164721727, 3904966.447561755310744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986069.340412875637412, 3909935.943159528076649 ], [ 4986063.392046744003892, 3909895.510041892994195 ], [ 4986089.024725665338337, 3909891.566426039207727 ], [ 4986087.60719895362854, 3909882.459679307416081 ], [ 4986114.967289122752845, 3909878.520256952848285 ], [ 4986122.046954753808677, 3909927.331177284009755 ], [ 4986100.159623991698027, 3909930.191402526572347 ], [ 4986101.857131956145167, 3909942.576023446395993 ], [ 4986082.273003656417131, 3909945.441822819877416 ], [ 4986080.571972255595028, 3909934.513726814649999 ], [ 4986069.340412875637412, 3909935.943159528076649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985764.154376974329352, 3911139.761133391875774 ], [ 4985770.429271396249533, 3911164.173134059645236 ], [ 4985820.55196569673717, 3911151.54888807842508 ], [ 4985830.533427546732128, 3911190.89927796041593 ], [ 4985802.3031857162714, 3911198.114099049475044 ], [ 4985803.731236794963479, 3911202.851263551507145 ], [ 4985787.887939341366291, 3911206.818666270468384 ], [ 4985786.463384508155286, 3911200.624977723229676 ], [ 4985769.467673877254128, 3911204.953756349626929 ], [ 4985763.19366267323494, 3911180.177624063100666 ], [ 4985732.370713338255882, 3911188.114559451583773 ], [ 4985733.225628999061882, 3911191.757944575510919 ], [ 4985688.864244417287409, 3911202.939638358075172 ], [ 4985689.720038891769946, 3911206.218890901189297 ], [ 4985673.876760415732861, 3911210.186360877007246 ], [ 4985680.436111648567021, 3911236.055556867737323 ], [ 4985666.321032873354852, 3911239.66304266359657 ], [ 4985668.603155148215592, 3911248.407714494504035 ], [ 4985653.047789145261049, 3911252.375887130387127 ], [ 4985652.763396246358752, 3911250.918672064319253 ], [ 4985621.07690767198801, 3911258.853665157221258 ], [ 4985610.809024770744145, 3911218.774399290792644 ], [ 4985655.746993290260434, 3911207.229825573507696 ], [ 4985646.048803146928549, 3911169.700846358202398 ], [ 4985764.154376974329352, 3911139.761133391875774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985692.201400466263294, 3904048.83617597958073 ], [ 4985688.294621397741139, 3904116.919439221266657 ], [ 4985657.1983308410272, 3904115.388364975340664 ], [ 4985659.311805194243789, 3904074.610677724704146 ], [ 4985650.961797447875142, 3904074.22653398476541 ], [ 4985651.864950684830546, 3904057.84277124889195 ], [ 4985660.214963506907225, 3904058.226915262173861 ], [ 4985660.817942405119538, 3904046.940277450717986 ], [ 4985692.201400466263294, 3904048.83617597958073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987445.046124031767249, 3908602.565374869853258 ], [ 4987469.825477111153305, 3908594.979645895771682 ], [ 4987479.534634202718735, 3908627.411395065952092 ], [ 4987454.755308227613568, 3908634.997115249745548 ], [ 4987445.046124031767249, 3908602.565374869853258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987346.775223749689758, 3906416.071690023411065 ], [ 4987372.121682602912188, 3906412.856858848128468 ], [ 4987375.513296854682267, 3906438.718597984407097 ], [ 4987350.166861964389682, 3906441.933426019269973 ], [ 4987346.775223749689758, 3906416.071690023411065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985323.467483250424266, 3906402.431737355422229 ], [ 4985252.060978510417044, 3906401.533298116642982 ], [ 4985252.761744476854801, 3906349.099928146228194 ], [ 4985297.102309579029679, 3906349.933842876460403 ], [ 4985297.440585810691118, 3906328.814981026109308 ], [ 4985324.506686045788229, 3906328.879507709294558 ], [ 4985323.467483250424266, 3906402.431737355422229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985277.887119515798986, 3901483.268277778755873 ], [ 4985253.408908042125404, 3901482.845841397531331 ], [ 4985253.747192834503949, 3901461.727041511330754 ], [ 4985278.224556039087474, 3901462.513607253786176 ], [ 4985277.887119515798986, 3901483.268277778755873 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987031.219143020920455, 3908288.030741698574275 ], [ 4987032.284333081915975, 3908323.354222098365426 ], [ 4986977.000924044288695, 3908324.675460478290915 ], [ 4986976.223577596247196, 3908289.352686529513448 ], [ 4987031.219143020920455, 3908288.030741698574275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984948.48153312318027, 3915668.731683006044477 ], [ 4984916.943727495148778, 3915616.221572300419211 ], [ 4984942.309709656052291, 3915600.988065721001476 ], [ 4984980.728797541931272, 3915664.802695162594318 ], [ 4984957.092466620728374, 3915678.947865173686296 ], [ 4984950.211146597750485, 3915667.643381652422249 ], [ 4984948.48153312318027, 3915668.731683006044477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984927.921716190874577, 3909891.338338181842119 ], [ 4984887.021937358193099, 3909898.888225703965873 ], [ 4984875.934435293078423, 3909839.508288890589029 ], [ 4984916.834301282651722, 3909831.958384776487947 ], [ 4984927.921716190874577, 3909891.338338181842119 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986435.354634062387049, 3896719.580519421026111 ], [ 4986421.438655567355454, 3896756.688050482887775 ], [ 4986379.135622918605804, 3896740.563793880864978 ], [ 4986393.050668757408857, 3896703.820369267836213 ], [ 4986435.354634062387049, 3896719.580519421026111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984509.966095166280866, 3906801.777979687321931 ], [ 4984520.795196853578091, 3906849.504806999117136 ], [ 4984519.93140188138932, 3906849.50277305347845 ], [ 4984524.204074064269662, 3906869.17597830761224 ], [ 4984536.879061108455062, 3906866.656902336515486 ], [ 4984543.432009809650481, 3906896.167054016143084 ], [ 4984532.484622836112976, 3906898.690195566043258 ], [ 4984539.037568378262222, 3906928.200346761383116 ], [ 4984545.663408100605011, 3906926.759424586780369 ], [ 4984549.084266195073724, 3906941.33277576835826 ], [ 4984505.583589831367135, 3906951.061907328665257 ], [ 4984500.455696358345449, 3906927.745367740280926 ], [ 4984489.220395515672863, 3906930.26784919667989 ], [ 4984483.807123485952616, 3906905.858244551345706 ], [ 4984493.601921564899385, 3906903.696502653416246 ], [ 4984487.90157366823405, 3906878.922089592088014 ], [ 4984476.95418494194746, 3906881.445253746584058 ], [ 4984471.540891729295254, 3906857.035652303602546 ], [ 4984480.183123324066401, 3906855.235326048918068 ], [ 4984475.624198448844254, 3906834.833189903758466 ], [ 4984465.829376760870218, 3906836.994938269257545 ], [ 4984460.415207709185779, 3906812.949470006860793 ], [ 4984509.966095166280866, 3906801.777979687321931 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984472.747853711247444, 3907812.521926602814347 ], [ 4984475.027233412489295, 3907822.723000446334481 ], [ 4984494.327383637428284, 3907818.762964134570211 ], [ 4984501.724189514294267, 3907856.65015771985054 ], [ 4984449.297754175961018, 3907867.086637194268405 ], [ 4984441.895739115774632, 3907831.384240813087672 ], [ 4984456.586569612845778, 3907828.50573501130566 ], [ 4984454.024401353672147, 3907816.119202435016632 ], [ 4984472.747853711247444, 3907812.521926602814347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984332.32730685453862, 3916235.327230564784259 ], [ 4984324.255210787989199, 3916240.770291082095355 ], [ 4984304.176276060752571, 3916211.228260666131973 ], [ 4984336.752530603669584, 3916189.456685562152416 ], [ 4984372.320424588397145, 3916241.975603444036096 ], [ 4984347.816296943463385, 3916258.304080200381577 ], [ 4984332.32730685453862, 3916235.327230564784259 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984331.465584905818105, 3909491.934002541005611 ], [ 4984338.018960197456181, 3909521.080021114088595 ], [ 4984297.114513789303601, 3909530.451459340751171 ], [ 4984290.274047615006566, 3909500.940644171554595 ], [ 4984331.465584905818105, 3909491.934002541005611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986275.897550118155777, 3909167.393471613526344 ], [ 4986275.576155127957463, 3909181.229743147268891 ], [ 4986251.969569937326014, 3909180.444355215877295 ], [ 4986253.555343872867525, 3909120.002135002985597 ], [ 4986268.813551048748195, 3909120.403187455609441 ], [ 4986268.500089796259999, 3909130.962282047607005 ], [ 4986304.773753229528666, 3909132.142484764102846 ], [ 4986303.822748296894133, 3909168.18933662166819 ], [ 4986275.897550118155777, 3909167.393471613526344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985957.113459980115294, 3909913.460521312430501 ], [ 4985964.187263250350952, 3909964.820317655336112 ], [ 4985911.485228010453284, 3909971.611955098807812 ], [ 4985904.411325875669718, 3909920.252172401640564 ], [ 4985957.113459980115294, 3909913.460521312430501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985490.739280505105853, 3905447.348428903147578 ], [ 4985539.594387558288872, 3905487.519791356753558 ], [ 4985496.277085283771157, 3905539.851203272119164 ], [ 4985458.055134069174528, 3905508.444492078386247 ], [ 4985467.874015603214502, 3905496.45159858930856 ], [ 4985456.665866694413126, 3905487.321515002753586 ], [ 4985476.591599117033184, 3905463.336419223342091 ], [ 4985477.165751488879323, 3905464.066055570263416 ], [ 4985490.739280505105853, 3905447.348428903147578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983752.876091157086194, 3909820.486196748446673 ], [ 4983746.602433013729751, 3909794.618163853883743 ], [ 4983799.605721628293395, 3909781.996855416335166 ], [ 4983808.72950423695147, 3909820.25205688457936 ], [ 4983783.379911988042295, 3909826.383304006885737 ], [ 4983780.241828614845872, 3909813.995480176992714 ], [ 4983752.876091157086194, 3909820.486196748446673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983680.068676630035043, 3900387.116279315203428 ], [ 4983738.346451328136027, 3900343.556011289358139 ], [ 4983764.186961574479938, 3900377.844401699490845 ], [ 4983705.909218952059746, 3900421.40461459569633 ], [ 4983680.068676630035043, 3900387.116279315203428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985055.231216004118323, 3909503.474643274210393 ], [ 4985010.003622693009675, 3909514.655395000241697 ], [ 4985002.588128170929849, 3909485.143032360356301 ], [ 4985047.52872908487916, 3909473.597453869413584 ], [ 4985055.231216004118323, 3909503.474643274210393 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984719.56964953802526, 3915580.797589614521712 ], [ 4984737.636320132762194, 3915609.242759658955038 ], [ 4984672.774804735556245, 3915650.600847094785422 ], [ 4984654.420255930162966, 3915622.15504051418975 ], [ 4984719.56964953802526, 3915580.797589614521712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984653.001462672837079, 3906952.501748407725245 ], [ 4984662.687121627852321, 3906996.584616637788713 ], [ 4984640.486439036205411, 3907009.27686459897086 ], [ 4984636.453701837919652, 3907009.995615751482546 ], [ 4984638.448595157824457, 3907018.739497928414494 ], [ 4984617.9944126913324, 3907023.424973237328231 ], [ 4984613.669455063529313, 3907025.963700371794403 ], [ 4984610.250360225327313, 3907010.662079576868564 ], [ 4984594.680683546699584, 3907019.728678900748491 ], [ 4984586.614356668666005, 3907021.530325885396451 ], [ 4984588.606690322980285, 3907031.36659538326785 ], [ 4984567.576666918583214, 3907036.050751680508256 ], [ 4984560.407595847733319, 3907023.653359590098262 ], [ 4984545.992235606536269, 3907031.630309907719493 ], [ 4984538.79056231956929, 3907033.06987573299557 ], [ 4984541.357914070598781, 3907043.271628483198583 ], [ 4984516.294322803616524, 3907049.038721329532564 ], [ 4984505.467009638436139, 3907000.583629339933395 ], [ 4984528.513417966663837, 3906995.540040633641183 ], [ 4984526.235701875761151, 3906984.610706841107458 ], [ 4984553.315725083462894, 3906978.484241454862058 ], [ 4984558.764094159007072, 3906987.964518416672945 ], [ 4984576.62520479504019, 3906984.001151353120804 ], [ 4984574.061293199658394, 3906972.342874379828572 ], [ 4984602.580991812050343, 3906966.219851529225707 ], [ 4984608.029346032068133, 3906975.70013840124011 ], [ 4984625.602541810832918, 3906971.736125007271767 ], [ 4984622.75243737641722, 3906959.348903765901923 ], [ 4984653.001462672837079, 3906952.501748407725245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984669.920659195631742, 3894288.432067993562669 ], [ 4984672.263846688903868, 3894272.051766062621027 ], [ 4984665.640895624645054, 3894270.943753281142563 ], [ 4984670.033191198483109, 3894240.731362405233085 ], [ 4984734.250583052635193, 3894249.986174769699574 ], [ 4984727.514135031960905, 3894296.942979824729264 ], [ 4984669.920659195631742, 3894288.432067993562669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984581.590118251740932, 3915014.6073356885463 ], [ 4984612.707350050099194, 3915001.936021980829537 ], [ 4984635.319024537689984, 3915056.245358659420162 ], [ 4984604.201844798400998, 3915068.916646603029221 ], [ 4984581.590118251740932, 3915014.6073356885463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984272.160315218381584, 3907403.85820839041844 ], [ 4984265.329516753554344, 3907369.977873508352786 ], [ 4984314.300025252625346, 3907360.261189617682248 ], [ 4984321.130764525383711, 3907394.141536742448807 ], [ 4984272.160315218381584, 3907403.85820839041844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984174.302186580374837, 3907756.837341442238539 ], [ 4984208.324754276312888, 3907736.525619722437114 ], [ 4984250.198317606933415, 3907806.17307449458167 ], [ 4984216.175806072540581, 3907826.484744072426111 ], [ 4984174.302186580374837, 3907756.837341442238539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982555.179386026225984, 3916770.131384535226971 ], [ 4982591.180007395334542, 3916760.381943832151592 ], [ 4982602.597376774065197, 3916802.283488478511572 ], [ 4982593.093330333009362, 3916804.810723200906068 ], [ 4982598.803255933336914, 3916825.215296848211437 ], [ 4982571.442446113564074, 3916832.799643578007817 ], [ 4982562.309356365352869, 3916798.914284706115723 ], [ 4982548.772438327781856, 3916802.88886783644557 ], [ 4982545.06228937767446, 3916789.043289723806083 ], [ 4982559.462689397856593, 3916785.070675643160939 ], [ 4982555.179386026225984, 3916770.131384535226971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982302.842140763998032, 3905203.594777465797961 ], [ 4982278.918366930447519, 3905214.100257412064821 ], [ 4982267.171981400810182, 3905187.85608865134418 ], [ 4982291.095773938111961, 3905177.350598421879113 ], [ 4982302.842140763998032, 3905203.594777465797961 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983566.408290170133114, 3916481.879087081179023 ], [ 4983592.346655216068029, 3916467.373897795099765 ], [ 4983618.432525529526174, 3916513.315397911705077 ], [ 4983629.384369330480695, 3916507.150543502531946 ], [ 4983636.550472775474191, 3916519.911893255542964 ], [ 4983590.725812188349664, 3916545.659047673456371 ], [ 4983569.798869079910219, 3916509.197038670070469 ], [ 4983579.021199191920459, 3916504.120554553810507 ], [ 4983566.408290170133114, 3916481.879087081179023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981736.376224728301167, 3904849.470018719788641 ], [ 4981797.485453533940017, 3904821.569492223206908 ], [ 4981805.508761907927692, 3904839.065895926207304 ], [ 4981744.398744707927108, 3904867.330534401349723 ], [ 4981736.376224728301167, 3904849.470018719788641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982992.351661004126072, 3916911.324526155833155 ], [ 4983004.675343458540738, 3916934.293333688750863 ], [ 4982983.350453837774694, 3916945.532484908588231 ], [ 4982989.368800452910364, 3916956.834488999098539 ], [ 4982944.413157287053764, 3916980.764074798673391 ], [ 4982927.505174879916012, 3916948.681403314694762 ], [ 4982948.830038540996611, 3916937.442207735963166 ], [ 4982939.086688560433686, 3916918.848966522142291 ], [ 4982961.563712822273374, 3916907.248292819131166 ], [ 4982970.162450504489243, 3916922.925835503265262 ], [ 4982992.351661004126072, 3916911.324526155833155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982947.250292518176138, 3915118.951672387309372 ], [ 4982927.461861263029277, 3915087.226559987757355 ], [ 4982960.322852431796491, 3915066.910520877223462 ], [ 4982997.604410604573786, 3915127.078325168695301 ], [ 4982976.850431361235678, 3915139.775320764631033 ], [ 4982959.357267152518034, 3915111.3326659607701 ], [ 4982947.250292518176138, 3915118.951672387309372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982949.336526400409639, 3902048.415129022672772 ], [ 4982944.408213664777577, 3902062.604931359644979 ], [ 4982934.912298152223229, 3902059.305953501258045 ], [ 4982927.663418915122747, 3902080.773056593723595 ], [ 4982898.310894703492522, 3902071.238298187963665 ], [ 4982917.739431671798229, 3902013.021883029956371 ], [ 4982949.106224470771849, 3902023.289548782166094 ], [ 4982941.566833588294685, 3902045.848374302033335 ], [ 4982949.336526400409639, 3902048.415129022672772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982872.828799207694829, 3917195.075020862743258 ], [ 4982900.188490506261587, 3917187.855112062301487 ], [ 4982920.161217555403709, 3917264.005097442772239 ], [ 4982882.722050149925053, 3917273.750798161141574 ], [ 4982870.169076320715249, 3917225.29209198243916 ], [ 4982879.960820961743593, 3917222.765615039039403 ], [ 4982872.828799207694829, 3917195.075020862743258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981148.236820005811751, 3907623.203040451277047 ], [ 4981117.217359472997487, 3907588.90546652674675 ], [ 4981172.898704712279141, 3907538.779321074020118 ], [ 4981203.918152478523552, 3907573.076958231627941 ], [ 4981148.236820005811751, 3907623.203040451277047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981144.856276785954833, 3906168.851472107693553 ], [ 4981072.822898901998997, 3906190.538930002134293 ], [ 4981061.104135489091277, 3906151.550714551936835 ], [ 4981133.424736105836928, 3906130.227997672744095 ], [ 4981144.856276785954833, 3906168.851472107693553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980947.229894530959427, 3906083.933062148280442 ], [ 4980918.989956527017057, 3906093.701903015375137 ], [ 4980909.548578227870166, 3906066.371038136072457 ], [ 4980968.909546363167465, 3906046.11150532681495 ], [ 4980978.637192745693028, 3906074.171291173435748 ], [ 4980964.805554810911417, 3906078.874266122002155 ], [ 4980966.521055979654193, 3906084.340058777015656 ], [ 4980949.519660568796098, 3906090.128393572289497 ], [ 4980947.229894530959427, 3906083.933062148280442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982353.519241648726165, 3902924.974338403437287 ], [ 4982314.476484986022115, 3902998.07600021129474 ], [ 4982280.82417216617614, 3902980.157117830123752 ], [ 4982310.034383846446872, 3902925.239633834920824 ], [ 4982317.225452292710543, 3902928.897287010215223 ], [ 4982327.057934975251555, 3902910.713063691277057 ], [ 4982353.519241648726165, 3902924.974338403437287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980666.369592383503914, 3904965.061543638817966 ], [ 4980690.583322122693062, 3904953.462876667734236 ], [ 4980712.65329413395375, 3904999.756438190117478 ], [ 4980674.891388521529734, 3905017.879493578337133 ], [ 4980661.133325790986419, 3904989.082662745378911 ], [ 4980674.681544854305685, 3904982.558247928973287 ], [ 4980666.369592383503914, 3904965.061543638817966 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980475.614570065401495, 3916255.313283282332122 ], [ 4980442.22939900867641, 3916253.783155572135001 ], [ 4980444.046258602291346, 3916213.004116108175367 ], [ 4980465.631199476309121, 3916214.144095043186098 ], [ 4980465.329721624962986, 3916220.333713728934526 ], [ 4980477.417830924503505, 3916220.724499248433858 ], [ 4980475.614570065401495, 3916255.313283282332122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980431.137950749136508, 3903776.380974998231977 ], [ 4980415.532546672970057, 3903801.471685864031315 ], [ 4980367.795353705994785, 3903771.871976990252733 ], [ 4980383.688695119693875, 3903746.781872500665486 ], [ 4980431.137950749136508, 3903776.380974998231977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980416.923471234738827, 3903169.706725108902901 ], [ 4980464.965700407512486, 3903192.024553086142987 ], [ 4980451.946850053034723, 3903219.305722346063703 ], [ 4980404.192629788070917, 3903196.988551140762866 ], [ 4980416.923471234738827, 3903169.706725108902901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980307.62228124961257, 3903373.379874458536506 ], [ 4980328.449700002558529, 3903330.822279816959053 ], [ 4980370.160398253239691, 3903351.305365682579577 ], [ 4980357.143322448246181, 3903377.858324237167835 ], [ 4980342.472123639658093, 3903370.907563221640885 ], [ 4980334.662537624128163, 3903386.548042064532638 ], [ 4980307.62228124961257, 3903373.379874458536506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980283.861642075702548, 3903309.240544050466269 ], [ 4980307.743113056756556, 3903318.396299912594259 ], [ 4980296.740267546847463, 3903345.681976420804858 ], [ 4980273.14678643271327, 3903336.526862661354244 ], [ 4980283.861642075702548, 3903309.240544050466269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980244.917210098356009, 3908717.607371727470309 ], [ 4980226.740411509759724, 3908735.045831415336579 ], [ 4980208.070113353431225, 3908714.977563647087663 ], [ 4980225.958202199079096, 3908697.902590408921242 ], [ 4980244.917210098356009, 3908717.607371727470309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980069.115241254679859, 3907087.729444695170969 ], [ 4980091.848084714263678, 3907093.969464810099453 ], [ 4980084.883571027778089, 3907118.715205432381481 ], [ 4980062.151543913409114, 3907112.111060630530119 ], [ 4980069.115241254679859, 3907087.729444695170969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980017.735555690713227, 3901747.626795669551939 ], [ 4980041.668690023943782, 3901733.842161280103028 ], [ 4980060.603287169709802, 3901767.019512617960572 ], [ 4980036.670969053171575, 3901780.440001128707081 ], [ 4980017.735555690713227, 3901747.626795669551939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979970.738262074999511, 3903749.881810872815549 ], [ 4979954.846104007214308, 3903774.608029891736805 ], [ 4979926.377360712736845, 3903756.3392812483944 ], [ 4979942.269503280520439, 3903731.613045656122267 ], [ 4979970.738262074999511, 3903749.881810872815549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979951.669100042432547, 3900746.486515381839126 ], [ 4979921.412716336548328, 3900754.067195238079876 ], [ 4979911.706653974950314, 3900714.719881568104029 ], [ 4979941.67508169170469, 3900707.138562048785388 ], [ 4979951.669100042432547, 3900746.486515381839126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979914.527260255068541, 3906150.47957801213488 ], [ 4979954.600123387761414, 3906127.990910702385008 ], [ 4979989.595003083348274, 3906189.24156353995204 ], [ 4979949.809344714507461, 3906212.094938801135868 ], [ 4979914.527260255068541, 3906150.47957801213488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979740.406834757886827, 3899496.329473483841866 ], [ 4979729.519480370916426, 3899470.088384953793138 ], [ 4979739.320561598055065, 3899466.104275890626013 ], [ 4979733.5904540726915, 3899452.254847203847021 ], [ 4979759.246413466520607, 3899441.750899710692465 ], [ 4979775.863835779950023, 3899481.841436434071511 ], [ 4979740.406834757886827, 3899496.329473483841866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979528.25302420463413, 3904890.106967808213085 ], [ 4979546.407470377162099, 3904883.956106758676469 ], [ 4979558.136101914569736, 3904919.666461370419711 ], [ 4979560.153348527848721, 3904918.942575109191239 ], [ 4979579.606854465790093, 3904977.610002283938229 ], [ 4979559.436012148857117, 3904984.1205974528566 ], [ 4979528.25302420463413, 3904890.106967808213085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979387.216462200507522, 3900202.704807381611317 ], [ 4979397.064492406323552, 3900176.872833745088428 ], [ 4979440.230278192088008, 3900192.988005322404206 ], [ 4979430.382212297990918, 3900218.819963376037776 ], [ 4979387.216462200507522, 3900202.704807381611317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980944.660561537370086, 3909702.675392063800246 ], [ 4980976.094394615851343, 3909679.076616949867457 ], [ 4981003.937410754151642, 3909716.644208095502108 ], [ 4980972.50440636370331, 3909739.878820138517767 ], [ 4980944.660561537370086, 3909702.675392063800246 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980793.36702155508101, 3904700.618873406201601 ], [ 4980808.843940571881831, 3904733.425025259610265 ], [ 4980763.010816222056746, 3904755.171384456101805 ], [ 4980747.533853956498206, 3904722.365258567035198 ], [ 4980793.36702155508101, 3904700.618873406201601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980692.982530484907329, 3902827.304219065234065 ], [ 4980705.432308479212224, 3902797.108862861525267 ], [ 4980754.631703522987664, 3902817.244975059758872 ], [ 4980742.181879427284002, 3902847.440308834426105 ], [ 4980692.982530484907329, 3902827.304219065234065 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980676.13646755926311, 3899114.952642817050219 ], [ 4980685.360179564915597, 3899111.695863397791982 ], [ 4980677.628871341235936, 3899091.287461859639734 ], [ 4980706.74252989795059, 3899080.427934284321964 ], [ 4980723.347486001439393, 3899125.616849810350686 ], [ 4980685.298984432592988, 3899139.369644293561578 ], [ 4980676.13646755926311, 3899114.952642817050219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979135.147887910716236, 3907719.291332649998367 ], [ 4979124.12919292319566, 3907755.316698422189802 ], [ 4979112.620156361721456, 3907751.650588065385818 ], [ 4979105.659849068149924, 3907774.940069927833974 ], [ 4979079.476212028414011, 3907766.872791900299489 ], [ 4979082.955570105463266, 3907755.592178020160645 ], [ 4979063.677335334941745, 3907749.724573478102684 ], [ 4979072.375333051197231, 3907721.705100271385163 ], [ 4979094.243318501859903, 3907728.306550666224211 ], [ 4979100.332020522095263, 3907708.656513193622231 ], [ 4979135.147887910716236, 3907719.291332649998367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978944.921328893862665, 3907811.007678930647671 ], [ 4979002.424985826015472, 3907848.636847334448248 ], [ 4978984.226502544246614, 3907876.27179727749899 ], [ 4978926.722097895108163, 3907839.006797851063311 ], [ 4978944.921328893862665, 3907811.007678930647671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978813.685158831998706, 3904424.298931990750134 ], [ 4978819.391156218014657, 3904314.707551260013133 ], [ 4978860.276624737307429, 3904316.979960472788662 ], [ 4978858.772820898331702, 3904346.835525194648653 ], [ 4978857.045070048421621, 3904346.831821363884956 ], [ 4978852.842715315520763, 3904426.567629092372954 ], [ 4978813.685158831998706, 3904424.298931990750134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980428.983102442696691, 3904493.351290201302618 ], [ 4980362.713765503838658, 3904511.047883992083371 ], [ 4980349.576667032204568, 3904461.497085229028016 ], [ 4980415.84611729439348, 3904443.800459577701986 ], [ 4980428.983102442696691, 3904493.351290201302618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980419.492148329503834, 3907234.15161094116047 ], [ 4980426.170616977848113, 3907208.677060212474316 ], [ 4980452.068876324221492, 3907215.652621927205473 ], [ 4980445.391187007538974, 3907240.763035833835602 ], [ 4980419.492148329503834, 3907234.15161094116047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980318.719471081160009, 3901075.736742881592363 ], [ 4980361.109779165126383, 3901050.704911284614354 ], [ 4980384.637941182591021, 3901090.446936678607017 ], [ 4980368.200693127699196, 3901100.242309445049614 ], [ 4980379.677964406087995, 3901119.566495813429356 ], [ 4980353.436964089050889, 3901134.802273902110755 ], [ 4980318.719471081160009, 3901075.736742881592363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980313.522239716723561, 3898853.800102117005736 ], [ 4980347.82272311206907, 3898841.859194137621671 ], [ 4980356.41039851307869, 3898865.91068434342742 ], [ 4980322.109941927716136, 3898877.851581542752683 ], [ 4980313.522239716723561, 3898853.800102117005736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978652.820984939113259, 3907475.380338212940842 ], [ 4978672.068379053846002, 3907495.812871166039258 ], [ 4978638.890150746330619, 3907527.057362959720194 ], [ 4978619.354829322546721, 3907506.624238633085042 ], [ 4978652.820984939113259, 3907475.380338212940842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978475.266111546196043, 3909187.880657849367708 ], [ 4978489.131397061981261, 3909166.426366844214499 ], [ 4978539.158860460855067, 3909198.576664185617119 ], [ 4978525.294327659532428, 3909219.666798815596849 ], [ 4978475.266111546196043, 3909187.880657849367708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978353.731050012633204, 3905683.213334747124463 ], [ 4978308.775421589612961, 3905700.232035468798131 ], [ 4978297.606677046045661, 3905671.441905648913234 ], [ 4978342.562346447259188, 3905654.423186536878347 ], [ 4978353.731050012633204, 3905683.213334747124463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980219.640989416278899, 3898979.218960900790989 ], [ 4980234.550697564147413, 3899009.838632947765291 ], [ 4980179.193411083891988, 3899036.298729204107076 ], [ 4980164.571670459583402, 3899005.679718686733395 ], [ 4980219.640989416278899, 3898979.218960900790989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980194.930594249628484, 3907354.914092542137951 ], [ 4980213.336299248971045, 3907364.786047632806003 ], [ 4980206.976357285864651, 3907376.424325142521411 ], [ 4980210.427474344149232, 3907378.252559174783528 ], [ 4980198.862503155134618, 3907400.075121900998056 ], [ 4980177.293625424616039, 3907388.375577756669372 ], [ 4980194.930594249628484, 3907354.914092542137951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980127.365811832249165, 3902578.813973018433899 ], [ 4980148.16003798134625, 3902551.549696524627507 ], [ 4980153.047678181901574, 3902555.201720824930817 ], [ 4980165.177863709628582, 3902539.206536982674152 ], [ 4980190.478386903181672, 3902558.196836467832327 ], [ 4980157.553157248534262, 3902601.820392060559243 ], [ 4980127.365811832249165, 3902578.813973018433899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980117.717599986121058, 3903696.676050348673016 ], [ 4980134.201044828630984, 3903665.032726291101426 ], [ 4980166.129322859458625, 3903681.488621194381267 ], [ 4980149.933815649710596, 3903713.132557129487395 ], [ 4980117.717599986121058, 3903696.676050348673016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979984.285207892768085, 3908486.540457957424223 ], [ 4980005.931320769712329, 3908462.555037871468812 ], [ 4980032.654779206961393, 3908486.646236524917185 ], [ 4980011.296575607731938, 3908510.632265105843544 ], [ 4979984.285207892768085, 3908486.540457957424223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979886.488355467095971, 3908970.98731974652037 ], [ 4979931.460998406633735, 3908944.139689914416522 ], [ 4979944.65709450095892, 3908966.016472198534757 ], [ 4979921.882069444283843, 3908979.803768980782479 ], [ 4979928.766433483920991, 3908991.471047760453075 ], [ 4979922.136581703089178, 3908995.09789568465203 ], [ 4979919.267831570468843, 3908990.357906969729811 ], [ 4979903.700093272142112, 3908999.7913664043881 ], [ 4979886.488355467095971, 3908970.98731974652037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978212.576015261001885, 3906663.156975806690753 ], [ 4978249.488681959919631, 3906636.289479300845414 ], [ 4978267.002429705113173, 3906659.995220783632249 ], [ 4978230.376939146779478, 3906687.227434640750289 ], [ 4978212.576015261001885, 3906663.156975806690753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977919.273995176889002, 3905658.26089193392545 ], [ 4977889.852240367792547, 3905682.595693516079336 ], [ 4977855.959205572493374, 3905642.469772859942168 ], [ 4977885.669685706496239, 3905617.771411431953311 ], [ 4977919.273995176889002, 3905658.26089193392545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979869.128558821976185, 3902278.205371882766485 ], [ 4979883.768699858337641, 3902299.721046432387084 ], [ 4979861.561648637987673, 3902314.601982721593231 ], [ 4979847.208684552460909, 3902293.451077391393483 ], [ 4979869.128558821976185, 3902278.205371882766485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979818.831684933975339, 3902628.754038149490952 ], [ 4979858.927176997065544, 3902598.2544279624708 ], [ 4979878.454021300189197, 3902623.786205113865435 ], [ 4979838.646521590650082, 3902654.286414451897144 ], [ 4979818.831684933975339, 3902628.754038149490952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979620.467960690148175, 3899554.329618004150689 ], [ 4979603.71121362131089, 3899578.325847970787436 ], [ 4979566.32685286924243, 3899552.027309995610267 ], [ 4979582.794782424345613, 3899528.394560832995921 ], [ 4979620.467960690148175, 3899554.329618004150689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979543.119242976419628, 3907594.183543484192342 ], [ 4979552.104134407825768, 3907566.893114132340997 ], [ 4979580.300921414978802, 3907576.057618780061603 ], [ 4979571.603927926160395, 3907603.348663805983961 ], [ 4979543.119242976419628, 3907594.183543484192342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977911.667662223801017, 3906943.994872626382858 ], [ 4977930.624230206944048, 3906966.246913184877485 ], [ 4977895.721704865805805, 3906996.032146217767149 ], [ 4977876.765896528027952, 3906973.415999367833138 ], [ 4977911.667662223801017, 3906943.994872626382858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977890.026053830049932, 3902594.396826878655702 ], [ 4977903.907300957478583, 3902566.752118594944477 ], [ 4977936.126992081291974, 3902582.841830648016185 ], [ 4977921.957742936909199, 3902610.485915286000818 ], [ 4977890.026053830049932, 3902594.396826878655702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977782.884187079034746, 3908075.810768750496209 ], [ 4977758.08949931897223, 3908091.78043623873964 ], [ 4977746.035210711881518, 3908073.548468864522874 ], [ 4977743.440115827135742, 3908075.363674291409552 ], [ 4977729.664420903660357, 3908054.215036254841834 ], [ 4977757.054225493222475, 3908036.430138594005257 ], [ 4977782.884187079034746, 3908075.810768750496209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977741.344941440038383, 3910988.785018955357373 ], [ 4977642.444439206272364, 3911062.496249615214765 ], [ 4977610.866298113018274, 3911019.826419111341238 ], [ 4977709.766104819253087, 3910946.479205587878823 ], [ 4977741.344941440038383, 3910988.785018955357373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977717.825171379372478, 3904234.081972788088024 ], [ 4977728.975242834538221, 3904272.339214145671576 ], [ 4977699.297845054417849, 3904280.651882138568908 ], [ 4977688.14773487392813, 3904242.394652903545648 ], [ 4977717.825171379372478, 3904234.081972788088024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977700.447846901603043, 3901950.942458255682141 ], [ 4977727.237259550951421, 3901947.721562915481627 ], [ 4977730.065829949453473, 3901972.124285007361323 ], [ 4977749.942079126834869, 3901969.617146681528538 ], [ 4977756.45393172185868, 3902022.793966422323138 ], [ 4977710.077133032493293, 3902028.158461784478277 ], [ 4977700.447846901603043, 3901950.942458255682141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977600.285337168723345, 3906318.489469071384519 ], [ 4977636.01554748788476, 3906306.183934987988323 ], [ 4977647.749908315017819, 3906340.07283497788012 ], [ 4977612.019737585447729, 3906352.378353719133884 ], [ 4977600.285337168723345, 3906318.489469071384519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977593.762081154622138, 3907781.55872295005247 ], [ 4977603.226838892325759, 3907799.05692244740203 ], [ 4977626.575219330377877, 3907786.361270678695291 ], [ 4977638.333391247317195, 3907808.598014756571501 ], [ 4977582.701964484527707, 3907838.340172835625708 ], [ 4977561.478223882615566, 3907798.969395086634904 ], [ 4977593.762081154622138, 3907781.55872295005247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979287.828292888589203, 3899948.326816435903311 ], [ 4979329.837768539786339, 3899966.624094422440976 ], [ 4979318.26169603317976, 3899992.452355938032269 ], [ 4979276.253039121627808, 3899973.790966846980155 ], [ 4979287.828292888589203, 3899948.326816435903311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979265.176515238359571, 3908571.641661459114403 ], [ 4979258.5065563544631, 3908593.839344702661037 ], [ 4979226.280732708051801, 3908584.30234334571287 ], [ 4979232.951453086920083, 3908561.740521406754851 ], [ 4979265.176515238359571, 3908571.641661459114403 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979043.809608586132526, 3901725.123443259391934 ], [ 4979036.044932288117707, 3901720.008912974968553 ], [ 4979026.798048038966954, 3901734.554272274021059 ], [ 4978989.985847882926464, 3901711.170774686150253 ], [ 4979014.258126287721097, 3901673.353310163598508 ], [ 4979058.835820769891143, 3901701.487245716620237 ], [ 4979043.809608586132526, 3901725.123443259391934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979013.365007357671857, 3906509.746236045844853 ], [ 4979033.827206558547914, 3906501.051061822567135 ], [ 4979040.416045811027288, 3906516.722910089883953 ], [ 4979020.241791507229209, 3906525.418698433786631 ], [ 4979013.365007357671857, 3906509.746236045844853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978956.69352415855974, 3906619.592354416847229 ], [ 4979056.705366631038487, 3906573.926682905294001 ], [ 4979072.467330979183316, 3906608.553143717814237 ], [ 4978972.168438673950732, 3906653.854008592665195 ], [ 4978956.69352415855974, 3906619.592354416847229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977356.86436999682337, 3904165.961584624368697 ], [ 4977397.497220286168158, 3904151.481191475875676 ], [ 4977408.090885603800416, 3904180.633846861310303 ], [ 4977367.45807358622551, 3904195.11422425461933 ], [ 4977356.86436999682337, 3904165.961584624368697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977288.700666134245694, 3901640.205299573019147 ], [ 4977296.559857766143978, 3901600.167286381591111 ], [ 4977321.892917436547577, 3901604.953830267768353 ], [ 4977314.033689417876303, 3901644.991836169268936 ], [ 4977288.700666134245694, 3901640.205299573019147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977224.707386233843863, 3916317.891702122520655 ], [ 4977216.070962918922305, 3916318.601974695920944 ], [ 4977215.246165095828474, 3916300.029409928712994 ], [ 4977249.789607477374375, 3916298.280733242630959 ], [ 4977252.835789564065635, 3916355.82029493432492 ], [ 4977226.640243188478053, 3916357.222228736616671 ], [ 4977224.707386233843863, 3916317.891702122520655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977196.999933569692075, 3913590.106734659988433 ], [ 4977247.928280747495592, 3913601.136856813915074 ], [ 4977239.211295987479389, 3913640.080984712578356 ], [ 4977214.178951209411025, 3913634.566819220781326 ], [ 4977212.435109029524028, 3913642.574126081541181 ], [ 4977186.53918435703963, 3913637.058187331072986 ], [ 4977196.999933569692075, 3913590.106734659988433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977140.08027480635792, 3911477.650581662543118 ], [ 4977143.104547536000609, 3911407.7433145288378 ], [ 4977178.223218514584005, 3911409.272933098953217 ], [ 4977174.910972506739199, 3911479.179597066249698 ], [ 4977140.08027480635792, 3911477.650581662543118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978971.287389851175249, 3895397.839396874886006 ], [ 4978998.060801542364061, 3895405.179491464048624 ], [ 4979000.384010162204504, 3895396.445371396373957 ], [ 4979033.491479240357876, 3895405.255628095008433 ], [ 4979030.297836679033935, 3895416.900911430828273 ], [ 4979050.449884097091854, 3895422.406178855802864 ], [ 4979042.898633003234863, 3895451.156184267718345 ], [ 4978984.457339927554131, 3895435.373030537273735 ], [ 4978979.811723150312901, 3895452.477146106772125 ], [ 4978958.219414737075567, 3895446.968839603941888 ], [ 4978971.287389851175249, 3895397.839396874886006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978922.837954930961132, 3908038.90713485982269 ], [ 4978914.450014337897301, 3908056.731619548518211 ], [ 4978894.603152630850673, 3908047.585722906049341 ], [ 4978902.991082874126732, 3908029.76123212184757 ], [ 4978922.837954930961132, 3908038.90713485982269 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978796.953942384570837, 3909412.509336329530925 ], [ 4978781.309652295894921, 3909457.992421579547226 ], [ 4978758.293723148293793, 3909450.296360743697733 ], [ 4978763.799750798381865, 3909433.558041892945766 ], [ 4978736.181226382963359, 3909424.03148457640782 ], [ 4978746.031523860991001, 3909395.286078625358641 ], [ 4978796.953942384570837, 3909412.509336329530925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978743.231385889463127, 3906398.106619376223534 ], [ 4978752.962784024886787, 3906425.437344812788069 ], [ 4978711.756760027259588, 3906439.914477179292589 ], [ 4978702.025325316004455, 3906412.583766412455589 ], [ 4978743.231385889463127, 3906398.106619376223534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978683.154756465926766, 3904733.531516021117568 ], [ 4978658.376681664958596, 3904740.032940038945526 ], [ 4978656.092494399286807, 3904730.924769044853747 ], [ 4978626.992777016013861, 3904738.509385169483721 ], [ 4978616.424752859398723, 3904698.068209940567613 ], [ 4978661.082627109251916, 3904686.511368881911039 ], [ 4978665.938959024846554, 3904704.72832670994103 ], [ 4978675.158176282420754, 3904702.563236338086426 ], [ 4978683.154756465926766, 3904733.531516021117568 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978649.629739209078252, 3908564.857620578724891 ], [ 4978670.530694511719048, 3908484.793129624333233 ], [ 4978713.406537626869977, 3908495.808768053539097 ], [ 4978692.505462917499244, 3908575.873226209077984 ], [ 4978649.629739209078252, 3908564.857620578724891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978559.546056238934398, 3905579.145654658786952 ], [ 4978555.536565441638231, 3905568.94141241395846 ], [ 4978577.726226853206754, 3905560.613710518460721 ], [ 4978597.201610095798969, 3905609.81306466832757 ], [ 4978551.95698276348412, 3905627.194873454514891 ], [ 4978536.491027669049799, 3905588.199790426995605 ], [ 4978559.546056238934398, 3905579.145654658786952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978571.62211914267391, 3896945.628131462261081 ], [ 4978536.147686520591378, 3896967.036172719206661 ], [ 4978515.193864135071635, 3896932.763310115784407 ], [ 4978528.172640633769333, 3896924.780104460660368 ], [ 4978531.616681398823857, 3896930.613522492814809 ], [ 4978554.401177099905908, 3896916.825148285366595 ], [ 4978571.62211914267391, 3896945.628131462261081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977068.039206580258906, 3900422.092738677747548 ], [ 4977096.565634873695672, 3900415.233515661675483 ], [ 4977111.69797948282212, 3900478.623698463197798 ], [ 4977083.17161451280117, 3900485.482905677054077 ], [ 4977068.039206580258906, 3900422.092738677747548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976894.45110725145787, 3913732.582850622013211 ], [ 4976873.46462354902178, 3913719.430576817132533 ], [ 4976894.835510825738311, 3913685.974542106967419 ], [ 4976918.408961720764637, 3913700.952861240599304 ], [ 4976923.02903182245791, 3913694.043896748684347 ], [ 4976942.290626906789839, 3913706.100232143420726 ], [ 4976909.944884410127997, 3913757.011902592144907 ], [ 4976887.808504616841674, 3913743.128967518918216 ], [ 4976894.45110725145787, 3913732.582850622013211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976786.910384165123105, 3901834.702000793069601 ], [ 4976731.632974344305694, 3901826.941078434232622 ], [ 4976737.477636327035725, 3901785.806347465608269 ], [ 4976765.979968240484595, 3901789.870649695396423 ], [ 4976764.227231899276376, 3901801.883350451942533 ], [ 4976791.001628544181585, 3901805.944110094569623 ], [ 4976786.910384165123105, 3901834.702000793069601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978492.879358071833849, 3904974.18068976374343 ], [ 4978461.474011153914034, 3904982.852969354949892 ], [ 4978464.045418852008879, 3904992.325868343934417 ], [ 4978440.707393288612366, 3904998.830559560563415 ], [ 4978426.702364446595311, 3904949.642977638635784 ], [ 4978445.718822891823947, 3904944.221470904536545 ], [ 4978444.290687662549317, 3904938.756455868948251 ], [ 4978470.79856653790921, 3904931.166122429538518 ], [ 4978475.370132149197161, 3904947.925915210973471 ], [ 4978484.87797818146646, 3904945.397242403123528 ], [ 4978492.879358071833849, 3904974.18068976374343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978459.778286764398217, 3904156.270606081467122 ], [ 4978426.953112026676536, 3904155.108350068330765 ], [ 4978428.201025231741369, 3904109.958697854075581 ], [ 4978461.026255085133016, 3904111.120955362915993 ], [ 4978459.778286764398217, 3904156.270606081467122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978393.67274843621999, 3908971.412223045248538 ], [ 4978409.325957437045872, 3908921.559354584664106 ], [ 4978447.017290633171797, 3908933.291808277834207 ], [ 4978431.076109602116048, 3908983.144042409956455 ], [ 4978393.67274843621999, 3908971.412223045248538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978384.638021786697209, 3908616.727902526501566 ], [ 4978406.798005936667323, 3908621.144624089822173 ], [ 4978407.091340900398791, 3908618.596320493146777 ], [ 4978428.675494552589953, 3908623.011835162527859 ], [ 4978422.563468824140728, 3908653.950093007646501 ], [ 4978378.818603165447712, 3908645.481997199356556 ], [ 4978384.638021786697209, 3908616.727902526501566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978379.324629455804825, 3895266.216438490897417 ], [ 4978448.126573028042912, 3895286.754001144785434 ], [ 4978432.461584188975394, 3895338.427075785584748 ], [ 4978363.659761152230203, 3895317.889552594162524 ], [ 4978379.324629455804825, 3895266.216438490897417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978323.275327547453344, 3907956.425379218999296 ], [ 4978337.054474567994475, 3907975.753666683565825 ], [ 4978320.618308468721807, 3907987.37098663719371 ], [ 4978306.551235963590443, 3907968.042096068151295 ], [ 4978323.275327547453344, 3907956.425379218999296 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978304.01529800798744, 3909704.584892255719751 ], [ 4978299.683637836016715, 3909710.765951013658196 ], [ 4978281.573700965382159, 3909697.61872359411791 ], [ 4978288.214752969332039, 3909688.529502582736313 ], [ 4978268.667606888338923, 3909674.28683475125581 ], [ 4978285.991935288533568, 3909650.654977910686284 ], [ 4978314.450114612467587, 3909671.470972495619208 ], [ 4978320.801735715009272, 3909663.109410422388464 ], [ 4978335.462276087142527, 3909673.700405532959849 ], [ 4978329.11065290402621, 3909682.061964209191501 ], [ 4978347.795605588704348, 3909695.574578324798495 ], [ 4978328.448982979170978, 3909722.479294535238296 ], [ 4978304.01529800798744, 3909704.584892255719751 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978328.862823129631579, 3895697.602845411747694 ], [ 4978315.310504891909659, 3895704.128406397532672 ], [ 4978322.192807574756444, 3895718.708204233087599 ], [ 4978294.800151384435594, 3895731.758728681597859 ], [ 4978273.865907597355545, 3895687.654622466769069 ], [ 4978315.098206583410501, 3895668.443248579278588 ], [ 4978328.862823129631579, 3895697.602845411747694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978237.468117312528193, 3905515.830007885117084 ], [ 4978245.544505857862532, 3905509.292764336336404 ], [ 4978260.764700242318213, 3905528.624037402682006 ], [ 4978223.267666015774012, 3905558.767450760118663 ], [ 4978195.123858150094748, 3905523.387008388992399 ], [ 4978224.544519726186991, 3905499.780803769826889 ], [ 4978237.468117312528193, 3905515.830007885117084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978168.814362052828074, 3911825.372815668117255 ], [ 4978154.123311476781964, 3911829.711292919702828 ], [ 4978120.67665199842304, 3911718.57983661070466 ], [ 4978135.655637354589999, 3911714.241950949653983 ], [ 4978168.814362052828074, 3911825.372815668117255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976582.785506221465766, 3908938.491213008761406 ], [ 4976589.954738180153072, 3908952.343014844693244 ], [ 4976573.525923527777195, 3908961.048362584784627 ], [ 4976566.357435124926269, 3908946.832434068899602 ], [ 4976582.785506221465766, 3908938.491213008761406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976460.985362770035863, 3909785.941409330815077 ], [ 4976527.230875107459724, 3909772.240578769240528 ], [ 4976533.789645138196647, 3909802.841222690418363 ], [ 4976517.66050317324698, 3909806.085233773104846 ], [ 4976519.373670813627541, 3909813.007279807236046 ], [ 4976490.283053336665034, 3909819.137708913069218 ], [ 4976488.574370476417243, 3909810.030877560377121 ], [ 4976466.972146851010621, 3909814.720198003109545 ], [ 4976460.985362770035863, 3909785.941409330815077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976462.322037239558995, 3908294.821342200506479 ], [ 4976477.313886232674122, 3908285.020578506868333 ], [ 4976491.953445922583342, 3908306.534484188072383 ], [ 4976477.248771033249795, 3908316.699962490703911 ], [ 4976462.322037239558995, 3908294.821342200506479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976364.865502416156232, 3914958.621873788069934 ], [ 4976335.521017615683377, 3914950.914869774598628 ], [ 4976346.837337801232934, 3914906.877876735758036 ], [ 4976376.181867538020015, 3914914.58489289926365 ], [ 4976364.865502416156232, 3914958.621873788069934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976366.080753254704177, 3909455.114075749181211 ], [ 4976329.482640538364649, 3909471.789125322364271 ], [ 4976319.450050306506455, 3909450.284733915235847 ], [ 4976356.336089970543981, 3909433.610261399298906 ], [ 4976366.080753254704177, 3909455.114075749181211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976342.557041963562369, 3906745.921218284871429 ], [ 4976382.899008669890463, 3906730.710416674613953 ], [ 4976396.072182027623057, 3906765.694124401547015 ], [ 4976355.731007020920515, 3906780.540776049252599 ], [ 4976342.557041963562369, 3906745.921218284871429 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976318.811055639758706, 3901050.493286302313209 ], [ 4976322.343834158033133, 3901012.995055972598493 ], [ 4976371.005892097018659, 3901017.464383708313107 ], [ 4976367.17459793202579, 3901060.059826557524502 ], [ 4976358.248286647722125, 3901059.313260457944125 ], [ 4976357.065700529143214, 3901074.2401975216344 ], [ 4976328.559563351795077, 3901071.632847687229514 ], [ 4976330.328568769618869, 3901051.609280402306467 ], [ 4976318.811055639758706, 3901050.493286302313209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976265.670569660142064, 3908015.492585133295506 ], [ 4976282.891275390982628, 3908042.109510370995849 ], [ 4976242.241800174117088, 3908067.879678504075855 ], [ 4976225.021815879270434, 3908040.898648099973798 ], [ 4976265.670569660142064, 3908015.492585133295506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976260.155778323300183, 3909162.134372065309435 ], [ 4976266.826101908460259, 3909138.479412544053048 ], [ 4976298.477980894967914, 3909147.283425730187446 ], [ 4976291.807631584815681, 3909170.938377519603819 ], [ 4976260.155778323300183, 3909162.134372065309435 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978105.723095584660769, 3905860.383794901892543 ], [ 4978130.504628427326679, 3905851.697075286414474 ], [ 4978138.806390050798655, 3905874.654958533588797 ], [ 4978114.024875648319721, 3905883.341670616995543 ], [ 4978105.723095584660769, 3905860.383794901892543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978016.949707064777613, 3895947.827704526018351 ], [ 4978038.285294647328556, 3895938.405396469403058 ], [ 4978049.466870073229074, 3895963.189841201528907 ], [ 4978028.419346394948661, 3895972.61274893861264 ], [ 4978016.949707064777613, 3895947.827704526018351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977975.199726451188326, 3911082.859957029577345 ], [ 4977976.308985039591789, 3911102.889617602806538 ], [ 4977950.971935985609889, 3911104.292663780041039 ], [ 4977949.862658572383225, 3911084.263004228938371 ], [ 4977975.199726451188326, 3911082.859957029577345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977877.865060545504093, 3911233.041579641401768 ], [ 4977897.97245667502284, 3911254.203689050395042 ], [ 4977864.511101145297289, 3911285.812734608072788 ], [ 4977844.403702470473945, 3911264.650649825111032 ], [ 4977877.865060545504093, 3911233.041579641401768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977863.403298919089139, 3906345.98830499034375 ], [ 4977896.250383992679417, 3906335.497702250257134 ], [ 4977904.259651055559516, 3906360.639695092570037 ], [ 4977871.125424028374255, 3906370.765551097225398 ], [ 4977863.403298919089139, 3906345.98830499034375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976256.095594113692641, 3901721.093872179277241 ], [ 4976212.907283174805343, 3901716.271810988895595 ], [ 4976213.492937470786273, 3901711.539306815247983 ], [ 4976192.474373766221106, 3901709.311543960124254 ], [ 4976195.70103928539902, 3901680.551798584870994 ], [ 4976259.907244023866951, 3901687.965760531835258 ], [ 4976256.095594113692641, 3901721.093872179277241 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976041.682058765552938, 3907444.075526450295001 ], [ 4976007.415239368565381, 3907445.826333458535373 ], [ 4976004.930763377808034, 3907393.386236892081797 ], [ 4976039.196906984783709, 3907391.999557437375188 ], [ 4976041.682058765552938, 3907444.075526450295001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976027.65111439768225, 3907123.610628589987755 ], [ 4976050.723286438733339, 3907105.086936259642243 ], [ 4976075.997877995483577, 3907136.089724672026932 ], [ 4976052.925715019926429, 3907154.613395656459033 ], [ 4976027.65111439768225, 3907123.610628589987755 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976027.128645109944046, 3905826.207366521004587 ], [ 4975996.864994856528938, 3905840.710963925346732 ], [ 4975974.213201498612761, 3905793.691818693187088 ], [ 4976004.188949196599424, 3905779.187609457876533 ], [ 4976027.128645109944046, 3905826.207366521004587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976007.418033334426582, 3909281.053585731424391 ], [ 4976037.095328169874847, 3909269.825974874664098 ], [ 4976055.13608733471483, 3909317.564139245543629 ], [ 4976025.45883756224066, 3909328.791730512864888 ], [ 4976007.418033334426582, 3909281.053585731424391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975921.949957166798413, 3901477.172620431520045 ], [ 4975923.423977928236127, 3901460.425599727313966 ], [ 4975912.481861749663949, 3901459.675080567598343 ], [ 4975913.955877524800599, 3901442.928059510886669 ], [ 4975926.337948402389884, 3901443.681508692447096 ], [ 4975928.4005471104756, 3901420.745461651589721 ], [ 4975958.922280422411859, 3901423.356491207145154 ], [ 4975954.198821004480124, 3901480.151289177592844 ], [ 4975921.949957166798413, 3901477.172620431520045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977655.77396930474788, 3902379.795041870325804 ], [ 4977636.267758181318641, 3902343.340998727828264 ], [ 4977663.656427045352757, 3902328.833233519457281 ], [ 4977675.703426473774016, 3902351.79878337867558 ], [ 4977684.640742246061563, 3902347.083845242857933 ], [ 4977705.580663246102631, 3902386.453984304796904 ], [ 4977676.750604546628892, 3902401.686943016946316 ], [ 4977663.269081200473011, 3902376.169462953228503 ], [ 4977655.77396930474788, 3902379.795041870325804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977537.240387437865138, 3905624.68607127899304 ], [ 4977551.25507852435112, 3905669.867777418810874 ], [ 4977530.509361382573843, 3905676.378691711928695 ], [ 4977533.656155230477452, 3905686.216842089314014 ], [ 4977509.741545674391091, 3905693.44939887477085 ], [ 4977492.579985067248344, 3905638.429568020626903 ], [ 4977537.240387437865138, 3905624.68607127899304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977451.292703506536782, 3908169.425425595603883 ], [ 4977469.74685263633728, 3908156.355266320519149 ], [ 4977485.24944160412997, 3908177.871518758125603 ], [ 4977467.083216928876936, 3908190.942269949242473 ], [ 4977451.292703506536782, 3908169.425425595603883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977321.712107778526843, 3901691.616614818107337 ], [ 4977358.559990561567247, 3901698.612005905248225 ], [ 4977353.611004436388612, 3901724.090840469114482 ], [ 4977316.763155340217054, 3901717.095456067472696 ], [ 4977321.712107778526843, 3901691.616614818107337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977293.967280224896967, 3906571.284708218183368 ], [ 4977275.301636889576912, 3906547.213070373982191 ], [ 4977312.216561342589557, 3906518.887766495812684 ], [ 4977330.88143147341907, 3906543.323560004122555 ], [ 4977293.967280224896967, 3906571.284708218183368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975792.318113451823592, 3907737.422882604412735 ], [ 4975814.230513679794967, 3907722.537949769292027 ], [ 4975827.148556817322969, 3907741.499062479939312 ], [ 4975804.948242887854576, 3907756.383400356397033 ], [ 4975792.318113451823592, 3907737.422882604412735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975684.283175183460116, 3911179.349540349561721 ], [ 4975683.729537952691317, 3911168.424428064841777 ], [ 4975703.882990456186235, 3911167.737003017682582 ], [ 4975704.155376725830138, 3911175.384348493535072 ], [ 4975723.733792258426547, 3911174.33163980441168 ], [ 4975724.56643832474947, 3911189.626914981286973 ], [ 4975667.84790067281574, 3911192.06090080132708 ], [ 4975667.296469705179334, 3911180.043394189327955 ], [ 4975684.283175183460116, 3911179.349540349561721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975686.20973835606128, 3906675.762568339705467 ], [ 4975718.763202863745391, 3906667.453501399606466 ], [ 4975725.046805668622255, 3906692.59134786715731 ], [ 4975692.493369622156024, 3906700.900407316628844 ], [ 4975686.20973835606128, 3906675.762568339705467 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975661.075629768893123, 3911408.7063466347754 ], [ 4975734.50863684527576, 3911397.567045702598989 ], [ 4975737.067827381193638, 3911413.229958049487323 ], [ 4975663.346979382447898, 3911424.368669021409005 ], [ 4975661.075629768893123, 3911408.7063466347754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975558.781160902231932, 3898062.713113021105528 ], [ 4975508.616891725920141, 3898086.280260105151683 ], [ 4975492.555798621848226, 3898052.383744209073484 ], [ 4975542.720116795040667, 3898028.816567615140229 ], [ 4975558.781160902231932, 3898062.713113021105528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976893.465879978612065, 3913096.439474741928279 ], [ 4976899.490672688931227, 3913106.283558867871761 ], [ 4976878.161546629853547, 3913119.348189217504114 ], [ 4976853.489614756777883, 3913078.514160654973239 ], [ 4976897.011523795314133, 3913052.386667351704091 ], [ 4976915.660135275684297, 3913082.648382352199405 ], [ 4976893.465879978612065, 3913096.439474741928279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976878.34527172986418, 3912613.56722540454939 ], [ 4976865.665427414700389, 3912620.095373037736863 ], [ 4976849.895891500636935, 3912589.475527456495911 ], [ 4976891.104311175644398, 3912568.805243560578674 ], [ 4976915.474451622925699, 3912616.557201626244932 ], [ 4976887.233794268220663, 3912630.699901304673404 ], [ 4976878.34527172986418, 3912613.56722540454939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976856.005233897827566, 3903932.968796036671847 ], [ 4976744.668825732544065, 3904021.222586495801806 ], [ 4976716.808666274882853, 3903986.208450091071427 ], [ 4976732.672907535918057, 3903973.496598945464939 ], [ 4976726.066307968460023, 3903965.472068255767226 ], [ 4976736.738966983743012, 3903956.754948473069817 ], [ 4976742.771144234575331, 3903964.050032699946314 ], [ 4976759.212088417261839, 3903950.975256809964776 ], [ 4976752.893453996628523, 3903942.951314450707287 ], [ 4976763.566130650229752, 3903934.234205442480743 ], [ 4976769.310342898592353, 3903941.528700675349683 ], [ 4976786.039276716299355, 3903928.454536299686879 ], [ 4976782.87996131926775, 3903924.442561835516244 ], [ 4976809.704184571281075, 3903903.378384751733392 ], [ 4976805.970448757521808, 3903898.636957203503698 ], [ 4976819.816028060391545, 3903887.377510454971343 ], [ 4976856.005233897827566, 3903932.968796036671847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975405.687329141423106, 3904283.578541218303144 ], [ 4975421.265750453807414, 3904269.408813352230936 ], [ 4975418.679988652467728, 3904266.490549331065267 ], [ 4975438.009242583066225, 3904248.687077708542347 ], [ 4975475.075198220089078, 3904288.816305903717875 ], [ 4975454.591909371316433, 3904307.709817885886878 ], [ 4975461.488231359981, 3904315.006358601152897 ], [ 4975447.351811590604484, 3904328.086577328853309 ], [ 4975405.687329141423106, 3904283.578541218303144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976828.777418248355389, 3900250.091372566763312 ], [ 4976875.175191333517432, 3900235.986265008803457 ], [ 4976883.757983616553247, 3900263.677956214174628 ], [ 4976837.072251657955348, 3900277.782453530468047 ], [ 4976828.777418248355389, 3900250.091372566763312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976794.377805829979479, 3912291.135479004122317 ], [ 4976760.643203441053629, 3912316.919216790702194 ], [ 4976741.694726798683405, 3912292.119005523156375 ], [ 4976775.42858939152211, 3912266.699376095086336 ], [ 4976794.377805829979479, 3912291.135479004122317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976754.737113178707659, 3908486.957464484497905 ], [ 4976743.190466335974634, 3908501.498911671806127 ], [ 4976732.555695963092148, 3908492.737770632375032 ], [ 4976744.101588716730475, 3908478.560449841432273 ], [ 4976754.737113178707659, 3908486.957464484497905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976672.228439247235656, 3900329.148574186488986 ], [ 4976627.271691148169339, 3900342.892870776820928 ], [ 4976618.404409420676529, 3900313.380021484568715 ], [ 4976663.073200413957238, 3900299.63511650217697 ], [ 4976672.228439247235656, 3900329.148574186488986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976646.420322600752115, 3900135.013756635133177 ], [ 4976654.22344218660146, 3900121.921139982994646 ], [ 4976627.470604262314737, 3900106.572520731016994 ], [ 4976640.765311053954065, 3900084.023820990230888 ], [ 4976693.982982409186661, 3900114.720518202055246 ], [ 4976673.173121364787221, 3900150.362395016942173 ], [ 4976646.420322600752115, 3900135.013756635133177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976543.877019993029535, 3910217.24508114065975 ], [ 4976484.783567267470062, 3910253.536810341756791 ], [ 4976469.86316095944494, 3910229.10924059804529 ], [ 4976528.955897846259177, 3910193.181610407307744 ], [ 4976543.877019993029535, 3910217.24508114065975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976521.258665164932609, 3912255.25124983349815 ], [ 4976557.002235288731754, 3912232.384414839092642 ], [ 4976573.645685226656497, 3912258.272147415205836 ], [ 4976537.902135242708027, 3912281.138960645534098 ], [ 4976521.258665164932609, 3912255.25124983349815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975153.769403345882893, 3903398.59697686880827 ], [ 4975107.356829825788736, 3903423.264847375452518 ], [ 4975084.406163226813078, 3903379.887242248747498 ], [ 4975130.818060291931033, 3903355.583462534006685 ], [ 4975153.769403345882893, 3903398.59697686880827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975141.071988319046795, 3905709.350102463271469 ], [ 4975181.364398689009249, 3905719.262497783172876 ], [ 4975169.750200728885829, 3905767.304585318081081 ], [ 4975129.457858213223517, 3905757.392207124270499 ], [ 4975141.071988319046795, 3905709.350102463271469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975122.219746134243906, 3910946.628022857476026 ], [ 4975092.529360020533204, 3910965.503417365252972 ], [ 4975066.988332450389862, 3910925.033485220745206 ], [ 4975074.771521276794374, 3910919.951216035522521 ], [ 4975062.718149894848466, 3910900.992157565895468 ], [ 4975084.625383001752198, 3910887.198994834907353 ], [ 4975122.219746134243906, 3910946.628022857476026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975096.436956636607647, 3907866.378660303540528 ], [ 4975130.437162880785763, 3907853.702190028969198 ], [ 4975139.887430466711521, 3907879.210399992298335 ], [ 4975106.175172452814877, 3907891.887435615528375 ], [ 4975096.436956636607647, 3907866.378660303540528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975033.930380982346833, 3902988.709257278591394 ], [ 4975056.592763967812061, 3903032.450362166389823 ], [ 4974995.767926097847521, 3903063.64393016602844 ], [ 4974982.859411611221731, 3903038.493066095281392 ], [ 4974972.481483109295368, 3903043.934285748749971 ], [ 4974959.285692336037755, 3903018.418727926444262 ], [ 4974983.788854924961925, 3903005.723119100090116 ], [ 4974992.96903289295733, 3903023.219772250391543 ], [ 4975020.066147901117802, 3903009.436990457121283 ], [ 4975014.615790568292141, 3902998.866281986702234 ], [ 4975033.930380982346833, 3902988.709257278591394 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975010.094047700054944, 3909288.506965608336031 ], [ 4974950.427009223029017, 3909323.708503087982535 ], [ 4974934.932516859844327, 3909297.459993415977806 ], [ 4974994.599593119695783, 3909262.258422091603279 ], [ 4975010.094047700054944, 3909288.506965608336031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976393.729580549523234, 3908047.43460943736136 ], [ 4976414.192001695744693, 3908037.645039684139192 ], [ 4976426.520920335315168, 3908062.795485553331673 ], [ 4976406.058513801544905, 3908072.585046069696546 ], [ 4976393.729580549523234, 3908047.43460943736136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976368.851198967546225, 3908385.298399056307971 ], [ 4976356.167993905954063, 3908392.555031640455127 ], [ 4976344.404539723880589, 3908372.503625846933573 ], [ 4976357.37566645257175, 3908365.247578306589276 ], [ 4976368.851198967546225, 3908385.298399056307971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976357.503308795392513, 3912934.751825753133744 ], [ 4976395.839627582579851, 3912910.433553662151098 ], [ 4976413.343418274074793, 3912937.779498351272196 ], [ 4976375.007122515700758, 3912962.097745894920081 ], [ 4976357.503308795392513, 3912934.751825753133744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976323.794929780997336, 3912386.661970432382077 ], [ 4976361.559987862594426, 3912360.5218186522834 ], [ 4976377.920156977139413, 3912384.224050825927407 ], [ 4976340.155116156674922, 3912410.364180001895875 ], [ 4976323.794929780997336, 3912386.661970432382077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976275.274832343682647, 3906840.457684635650367 ], [ 4976248.480037057772279, 3906848.77786449668929 ], [ 4976244.189381590113044, 3906834.932064577471465 ], [ 4976270.696257431060076, 3906826.611290923319757 ], [ 4976275.274832343682647, 3906840.457684635650367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976253.503250738605857, 3909739.635123059619218 ], [ 4976231.026132753118873, 3909749.784832573495805 ], [ 4976221.280724303796887, 3909728.645194453187287 ], [ 4976182.089734639041126, 3909746.407539853360504 ], [ 4976169.763599433936179, 3909720.164786381181329 ], [ 4976203.191383957862854, 3909704.939563721884042 ], [ 4976192.873857822269201, 3909681.978102933149785 ], [ 4976221.115006379783154, 3909668.92709299037233 ], [ 4976253.503250738605857, 3909739.635123059619218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974831.638935470953584, 3905366.447488481644541 ], [ 4974794.176731577143073, 3905380.938083262648433 ], [ 4974789.878560228273273, 3905370.369700175710022 ], [ 4974778.351230435073376, 3905375.080447237472981 ], [ 4974771.188081195577979, 3905357.223726642783731 ], [ 4974781.56290119420737, 3905352.874812277965248 ], [ 4974773.253758769482374, 3905332.102755048777908 ], [ 4974819.073772361502051, 3905313.987474730238318 ], [ 4974828.243098616600037, 3905336.58191942749545 ], [ 4974820.750646649859846, 3905339.480035085696727 ], [ 4974831.638935470953584, 3905366.447488481644541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974812.549340821802616, 3909742.185797021724284 ], [ 4974870.197056817822158, 3909708.436446904670447 ], [ 4974885.977820615284145, 3909735.41376313008368 ], [ 4974828.330142475664616, 3909769.163079950492829 ], [ 4974812.549340821802616, 3909742.185797021724284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974604.826638231985271, 3907785.653002368751913 ], [ 4974623.488741957582533, 3907812.271718995645642 ], [ 4974570.149589383974671, 3907849.307305940892547 ], [ 4974546.606521038338542, 3907815.760431369300932 ], [ 4974565.059495241381228, 3907802.688279994297773 ], [ 4974569.940430593676865, 3907809.616477671079338 ], [ 4974604.826638231985271, 3907785.653002368751913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974597.036521219648421, 3910113.900641865562648 ], [ 4974537.361743441782892, 3910154.200953312218189 ], [ 4974519.56415799446404, 3910127.948101660236716 ], [ 4974579.526864105835557, 3910087.648322804830968 ], [ 4974597.036521219648421, 3910113.900641865562648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976136.925766535103321, 3909587.553385038860142 ], [ 4976164.015377024188638, 3909574.499963274691254 ], [ 4976185.802896570414305, 3909620.061087417416275 ], [ 4976159.001223121769726, 3909633.115075969602913 ], [ 4976136.925766535103321, 3909587.553385038860142 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976136.22052913531661, 3909650.911030171904713 ], [ 4976147.399587804451585, 3909674.966627040412277 ], [ 4976120.311573818325996, 3909687.291804034728557 ], [ 4976109.13249609619379, 3909663.236218248959631 ], [ 4976136.22052913531661, 3909650.911030171904713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976129.47427848726511, 3911121.265701707452536 ], [ 4976161.551668359898031, 3911061.613431799225509 ], [ 4976174.779559781774879, 3911068.923131718300283 ], [ 4976155.41749545186758, 3911104.932723050937057 ], [ 4976160.881376614794135, 3911107.856954136863351 ], [ 4976148.166770960204303, 3911131.135483157355338 ], [ 4976129.47427848726511, 3911121.265701707452536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976059.320784236304462, 3907266.050872010644525 ], [ 4976074.949093227274716, 3907226.756484140641987 ], [ 4976102.280659797601402, 3907237.372097063343972 ], [ 4976086.651573784649372, 3907277.030599927529693 ], [ 4976059.320784236304462, 3907266.050872010644525 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976046.742179777473211, 3903550.425050840713084 ], [ 4976068.940894079394639, 3903538.089859779458493 ], [ 4976077.549449417740107, 3903553.036805580370128 ], [ 4976104.648819557391107, 3903538.162723556626588 ], [ 4976124.732165392488241, 3903574.616857435088605 ], [ 4976075.434135622344911, 3903601.82608727645129 ], [ 4976046.742179777473211, 3903550.425050840713084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974458.153369897045195, 3909445.805920332670212 ], [ 4974473.941915585659444, 3909469.141678451560438 ], [ 4974433.005547849461436, 3909496.370560971088707 ], [ 4974417.216982752084732, 3909473.034826515242457 ], [ 4974458.153369897045195, 3909445.805920332670212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974413.608733189292252, 3900235.374019951093942 ], [ 4974403.016730114817619, 3900202.945452549960464 ], [ 4974444.22780688200146, 3900189.554155338555574 ], [ 4974454.819765604101121, 3900221.982738714665174 ], [ 4974413.608733189292252, 3900235.374019951093942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974231.991818176582456, 3903391.666028698440641 ], [ 4974190.178251944482327, 3903421.078255013562739 ], [ 4974171.225400697439909, 3903394.095213890541345 ], [ 4974213.038987991400063, 3903364.682958567980677 ], [ 4974231.991818176582456, 3903391.666028698440641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974213.633395325392485, 3908322.338285032659769 ], [ 4974228.269000760279596, 3908346.764005200471729 ], [ 4974187.049001194536686, 3908371.079628340434283 ], [ 4974172.413371664471924, 3908346.653930261731148 ], [ 4974213.633395325392485, 3908322.338285032659769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974217.939460532739758, 3900732.025948547758162 ], [ 4974219.68466738332063, 3900723.290252555161715 ], [ 4974242.140559559687972, 3900727.33995658531785 ], [ 4974233.700344584882259, 3900772.111386436969042 ], [ 4974191.955874121747911, 3900764.382380469236523 ], [ 4974198.650103727355599, 3900728.710764174815267 ], [ 4974217.939460532739758, 3900732.025948547758162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975662.798134186305106, 3909705.296235810033977 ], [ 4975659.624585890211165, 3909708.567002968396991 ], [ 4975627.7368482677266, 3909674.273973537608981 ], [ 4975658.024010060355067, 3909645.932941144797951 ], [ 4975701.116279467940331, 3909691.900957153644413 ], [ 4975674.001934425905347, 3909717.335307110566646 ], [ 4975662.798134186305106, 3909705.296235810033977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975606.907609457150102, 3909866.129756070673466 ], [ 4975639.499942288734019, 3909836.700965588912368 ], [ 4975678.854410727508366, 3909880.112456341274083 ], [ 4975646.549986028112471, 3909909.54178277309984 ], [ 4975606.907609457150102, 3909866.129756070673466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975521.291300600394607, 3909635.460683275014162 ], [ 4975540.328873343765736, 3909617.656644762028009 ], [ 4975558.715590927749872, 3909636.992835730779916 ], [ 4975539.678019619546831, 3909654.796861434355378 ], [ 4975521.291300600394607, 3909635.460683275014162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975414.524915804155171, 3908613.125175127293915 ], [ 4975411.081706848926842, 3908607.292115263640881 ], [ 4975388.886006031185389, 3908620.356150137726218 ], [ 4975372.816440685652196, 3908593.742108174599707 ], [ 4975439.40438459534198, 3908554.185888763517141 ], [ 4975458.917110629379749, 3908586.633035353384912 ], [ 4975414.524915804155171, 3908613.125175127293915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975376.791605771519244, 3899185.323613717220724 ], [ 4975384.611981280148029, 3899163.491543268319219 ], [ 4975420.300767773762345, 3899175.943878958933055 ], [ 4975404.658511213958263, 3899220.336259699892253 ], [ 4975357.457298092544079, 3899203.855332607869059 ], [ 4975365.567132637836039, 3899181.29557844530791 ], [ 4975376.791605771519244, 3899185.323613717220724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974145.959519056603312, 3904526.12985737901181 ], [ 4974135.833742929622531, 3904550.142605657689273 ], [ 4974114.830125241540372, 3904541.362122561782598 ], [ 4974104.416426504962146, 3904565.374316434375942 ], [ 4974068.45125366654247, 3904550.374211173970252 ], [ 4974075.972475983202457, 3904532.910684118978679 ], [ 4974062.449971314519644, 3904527.058001337572932 ], [ 4974070.549972583539784, 3904508.139084579888731 ], [ 4974086.374706609174609, 3904514.724560818634927 ], [ 4974091.580839299596846, 3904503.082590281497687 ], [ 4974145.959519056603312, 3904526.12985737901181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973843.221578869968653, 3908987.608839670196176 ], [ 4973883.570889064110816, 3908966.204036279115826 ], [ 4973898.487928187474608, 3908993.907330257818103 ], [ 4973858.138647581450641, 3909015.312111615668982 ], [ 4973843.221578869968653, 3908987.608839670196176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975324.358624324202538, 3909352.860822138842195 ], [ 4975348.013010587543249, 3909329.968086331151426 ], [ 4975397.429211532697082, 3909381.410327169578522 ], [ 4975373.775561709888279, 3909403.938889085315168 ], [ 4975324.358624324202538, 3909352.860822138842195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975246.358622135594487, 3904756.628887265454978 ], [ 4975270.878639395348728, 3904734.830274531152099 ], [ 4975261.397371252067387, 3904724.251401078421623 ], [ 4975272.359404212795198, 3904714.441884194035083 ], [ 4975314.01904062833637, 3904761.134505804162472 ], [ 4975297.287679729983211, 3904776.030243660323322 ], [ 4975300.161359286867082, 3904778.949076087214053 ], [ 4975281.410680613480508, 3904795.661420279182494 ], [ 4975246.358622135594487, 3904756.628887265454978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975249.725070283748209, 3898064.275225791148841 ], [ 4975272.75762003660202, 3898069.055199075955898 ], [ 4975267.521200717426836, 3898094.897912103682756 ], [ 4975306.388528320007026, 3898102.986912407446653 ], [ 4975298.536426954902709, 3898140.476523196790367 ], [ 4975256.789632227271795, 3898132.017618103884161 ], [ 4975259.117977579124272, 3898120.006002926267684 ], [ 4975239.252284094691277, 3898115.960662086494267 ], [ 4975249.725070283748209, 3898064.275225791148841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975227.25445899926126, 3905092.683972734492272 ], [ 4975258.562754006125033, 3905131.708965007215738 ], [ 4975241.546630376018584, 3905145.147641497198492 ], [ 4975245.855635735206306, 3905150.254142655991018 ], [ 4975232.877409779466689, 3905160.42375385388732 ], [ 4975227.420992900617421, 3905153.13016002625227 ], [ 4975213.57746366597712, 3905164.026305735111237 ], [ 4975179.684897819533944, 3905121.354862209409475 ], [ 4975197.565587433986366, 3905107.553750800900161 ], [ 4975201.586656928062439, 3905112.659666669089347 ], [ 4975227.25445899926126, 3905092.683972734492272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975148.910568317398429, 3905533.854319456033409 ], [ 4975121.173606117255986, 3905580.771693120710552 ], [ 4975088.38651355355978, 3905561.407000365667045 ], [ 4975116.123438292182982, 3905514.489593418315053 ], [ 4975148.910568317398429, 3905533.854319456033409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975145.369553662836552, 3898252.685176432598382 ], [ 4975184.813467355445027, 3898260.411028076894581 ], [ 4975174.628904069773853, 3898312.09707354567945 ], [ 4975135.185063382610679, 3898304.371236602775753 ], [ 4975145.369553662836552, 3898252.685176432598382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975095.740690340287983, 3909794.094566114246845 ], [ 4975049.050562927499413, 3909819.126188891939819 ], [ 4975024.38373477011919, 3909772.831956041045487 ], [ 4975047.151921599172056, 3909760.86115726782009 ], [ 4975056.043291267938912, 3909777.629065537825227 ], [ 4975080.252449363470078, 3909764.932915207929909 ], [ 4975095.740690340287983, 3909794.094566114246845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973842.393763780593872, 3895136.066423366311938 ], [ 4973842.052277834154665, 3895163.375462369527668 ], [ 4973831.970286970958114, 3895163.355739757418633 ], [ 4973831.888378558680415, 3895205.230464580003172 ], [ 4973795.017866806127131, 3895204.79424042860046 ], [ 4973795.041354478336871, 3895192.778014907613397 ], [ 4973788.127996879629791, 3895192.764502511825413 ], [ 4973788.485084258019924, 3895157.444645499810576 ], [ 4973775.810578661970794, 3895157.419877222273499 ], [ 4973775.853267832659185, 3895135.572195103392005 ], [ 4973842.393763780593872, 3895136.066423366311938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973821.247703203000128, 3899614.458788179326802 ], [ 4973854.379449552856386, 3899609.061657080892473 ], [ 4973861.777167860418558, 3899655.320697309914976 ], [ 4973828.645476989448071, 3899660.717819454614073 ], [ 4973821.247703203000128, 3899614.458788179326802 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973738.478842771612108, 3900850.520156159531325 ], [ 4973735.83781351428479, 3900875.640014197211713 ], [ 4973556.167490039020777, 3900855.262555096298456 ], [ 4973559.096349414438009, 3900830.143240239005536 ], [ 4973738.478842771612108, 3900850.520156159531325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973659.282736397348344, 3898042.556461881846189 ], [ 4973721.250271212309599, 3898021.19368611369282 ], [ 4973733.281252174638212, 3898055.081269188318402 ], [ 4973697.253858214244246, 3898067.391368953045458 ], [ 4973701.837400733493268, 3898080.144864810630679 ], [ 4973675.609313492663205, 3898089.196947383228689 ], [ 4973659.282736397348344, 3898042.556461881846189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973565.874247952364385, 3896607.70273200981319 ], [ 4973543.103392741642892, 3896615.669278250541538 ], [ 4973533.363814151845872, 3896587.976473066955805 ], [ 4973610.323412354104221, 3896561.180672052782029 ], [ 4973623.499555879272521, 3896599.075832860078663 ], [ 4973569.599650449119508, 3896617.541485649067909 ], [ 4973565.874247952364385, 3896607.70273200981319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973508.153878168202937, 3903330.895330134313554 ], [ 4973488.340617024339736, 3903301.726313258055598 ], [ 4973530.728121368214488, 3903273.04237710731104 ], [ 4973550.54135783854872, 3903302.211424733512104 ], [ 4973508.153878168202937, 3903330.895330134313554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973423.239488888531923, 3910429.847618677653372 ], [ 4973406.224802233278751, 3910444.74402709165588 ], [ 4973392.724213339388371, 3910429.06011182256043 ], [ 4973410.026088912971318, 3910414.528385349549353 ], [ 4973423.239488888531923, 3910429.847618677653372 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974990.46968196798116, 3903553.025713522452861 ], [ 4974968.852505656890571, 3903562.814037961419672 ], [ 4974972.00631080660969, 3903569.73883698368445 ], [ 4974918.6830027801916, 3903594.393220840487629 ], [ 4974904.347198189236224, 3903563.049303726293147 ], [ 4974979.287746908143163, 3903528.606558599043638 ], [ 4974990.46968196798116, 3903553.025713522452861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974980.307261802256107, 3899129.180287604220212 ], [ 4974948.595852597616613, 3899144.046256746631116 ], [ 4974931.102618123404682, 3899106.141760488040745 ], [ 4974962.525319781154394, 3899091.639324334915727 ], [ 4974980.307261802256107, 3899129.180287604220212 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974968.656519955024123, 3903372.737123801372945 ], [ 4974980.411555276252329, 3903398.613942691124976 ], [ 4974950.147926531732082, 3903412.026307995431125 ], [ 4974938.392868011258543, 3903386.14950212975964 ], [ 4974968.656519955024123, 3903372.737123801372945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974736.692632748745382, 3906051.190177175682038 ], [ 4974765.117492808960378, 3906092.029538149014115 ], [ 4974725.616119435057044, 3906118.896654762793332 ], [ 4974712.122084873728454, 3906099.206683951430023 ], [ 4974723.655614501796663, 3906091.218732747249305 ], [ 4974709.012702250853181, 3906070.069950239732862 ], [ 4974736.692632748745382, 3906051.190177175682038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973342.876407210715115, 3898269.886808328796178 ], [ 4973356.064080559648573, 3898301.591688079293817 ], [ 4973324.64414933975786, 3898314.639480545185506 ], [ 4973311.455740141682327, 3898283.298744685482234 ], [ 4973342.876407210715115, 3898269.886808328796178 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973294.545774593017995, 3903891.60706780385226 ], [ 4973251.588502358645201, 3903917.74136310024187 ], [ 4973229.486481853760779, 3903880.921339918859303 ], [ 4973249.667880682274699, 3903868.579918680246919 ], [ 4973244.501444391906261, 3903859.830770649481565 ], [ 4973267.276654857210815, 3903846.401987479068339 ], [ 4973294.545774593017995, 3903891.60706780385226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973292.991971598006785, 3898893.909259455744177 ], [ 4973341.127491189166903, 3898875.067733624018729 ], [ 4973356.31757209636271, 3898913.694980653002858 ], [ 4973346.517240985296667, 3898917.681415916420519 ], [ 4973353.968968535773456, 3898936.630632232874632 ], [ 4973328.316455370746553, 3898946.412432719953358 ], [ 4973317.711343472823501, 3898919.810379787348211 ], [ 4973305.316755425184965, 3898924.884195359423757 ], [ 4973292.991971598006785, 3898893.909259455744177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973228.726312721148133, 3903529.533188313245773 ], [ 4973181.736989952623844, 3903555.659792018588632 ], [ 4973166.814764405600727, 3903528.685248082969338 ], [ 4973213.516152152791619, 3903502.558061897754669 ], [ 4973228.726312721148133, 3903529.533188313245773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973219.391728476621211, 3898229.593461903743446 ], [ 4973259.746797926723957, 3898213.285664033610374 ], [ 4973274.940897328779101, 3898250.092206262052059 ], [ 4973216.137577650137246, 3898274.01104012131691 ], [ 4973205.817295358516276, 3898248.866113717202097 ], [ 4973224.264901694841683, 3898241.619177016429603 ], [ 4973219.391728476621211, 3898229.593461903743446 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973147.447643927298486, 3909082.751002478878945 ], [ 4973117.456034569069743, 3909108.182361821178347 ], [ 4973126.073572618886828, 3909118.394708514679223 ], [ 4973103.291646711528301, 3909137.649753081146628 ], [ 4973083.757515208795667, 3909115.03584658075124 ], [ 4973102.213805062696338, 3909099.41376216057688 ], [ 4973072.626048965379596, 3909064.764092293567955 ], [ 4973106.944017725065351, 3909035.335576242767274 ], [ 4973147.447643927298486, 3909082.751002478878945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973153.52524044457823, 3904147.318661906756461 ], [ 4973197.869063091464341, 3904148.496740137692541 ], [ 4973197.548019520007074, 3904165.610294174868613 ], [ 4973203.595188274979591, 3904165.621984524652362 ], [ 4973202.680621667765081, 3904191.837675768416375 ], [ 4973151.714490592479706, 3904190.282667054794729 ], [ 4973152.319948676042259, 3904174.99031847435981 ], [ 4973142.530001059174538, 3904174.60728058218956 ], [ 4973143.140376328490674, 3904156.766021838411689 ], [ 4973153.218290944583714, 3904157.149616125505418 ], [ 4973153.52524044457823, 3904147.318661906756461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974728.229879004880786, 3898003.151143324561417 ], [ 4974740.841448753140867, 3898034.127294001169503 ], [ 4974676.271486856043339, 3898060.216239007655531 ], [ 4974663.371828943490982, 3898029.239545783028007 ], [ 4974728.229879004880786, 3898003.151143324561417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973019.992679669521749, 3910232.071745651308447 ], [ 4972993.769651979207993, 3910244.765874760691077 ], [ 4972972.550223143771291, 3910200.664955537300557 ], [ 4973007.705772400833666, 3910183.98255262337625 ], [ 4973017.741436035372317, 3910205.121585748158395 ], [ 4973009.096147038042545, 3910209.474521917756647 ], [ 4973019.992679669521749, 3910232.071745651308447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972917.007614477537572, 3910638.609812270384282 ], [ 4972905.473769499920309, 3910648.055087369401008 ], [ 4972876.178163413889706, 3910611.949628142174333 ], [ 4972906.453662081621587, 3910587.610923559870571 ], [ 4972927.133529772050679, 3910612.775857103057206 ], [ 4972908.391187069937587, 3910628.033391517587006 ], [ 4972917.007614477537572, 3910638.609812270384282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974218.172834204509854, 3899006.048035422340035 ], [ 4974221.61323481798172, 3899014.065681542269886 ], [ 4974245.537197966128588, 3899004.645454746671021 ], [ 4974259.582462664693594, 3899038.901397317647934 ], [ 4974213.751427738927305, 3899057.381691484712064 ], [ 4974196.554441347718239, 3899014.744567612186074 ], [ 4974218.172834204509854, 3899006.048035422340035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974163.89297451544553, 3899951.223567055538297 ], [ 4974203.943685026839375, 3899942.19918417558074 ], [ 4974215.362734416499734, 3899993.564082317985594 ], [ 4974175.312096514739096, 3900002.588448475580662 ], [ 4974163.89297451544553, 3899951.223567055538297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974141.702810710296035, 3900250.859296974726021 ], [ 4974166.488937066867948, 3900241.804822255391628 ], [ 4974175.943542268127203, 3900266.948445975780487 ], [ 4974151.156719154678285, 3900276.367041247431189 ], [ 4974141.702810710296035, 3900250.859296974726021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974107.940807607956231, 3908921.492078491486609 ], [ 4974118.839093026705086, 3908942.997336589731276 ], [ 4974094.631084282882512, 3908954.966084592975676 ], [ 4974083.733500431291759, 3908933.096705092582852 ], [ 4974107.940807607956231, 3908921.492078491486609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974067.577661951072514, 3901038.692196355666965 ], [ 4974058.549683609046042, 3901089.652756015304476 ], [ 4973971.893677270971239, 3901074.189135511871427 ], [ 4973981.499627797864377, 3901022.137289407197386 ], [ 4974005.107281832955778, 3901026.189056335482746 ], [ 4974005.981270679272711, 3901021.09294203016907 ], [ 4974046.574849549680948, 3901028.091138694435358 ], [ 4974045.697992022149265, 3901034.643768905662 ], [ 4974067.577661951072514, 3901038.692196355666965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972635.891585475765169, 3903481.420141827315092 ], [ 4972637.901789377443492, 3903484.337035374250263 ], [ 4972655.202141241170466, 3903472.71792404493317 ], [ 4972674.443727570585907, 3903500.064578204415739 ], [ 4972611.58398531191051, 3903543.275980425532907 ], [ 4972590.333551038987935, 3903512.284220582805574 ], [ 4972635.891585475765169, 3903481.420141827315092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972597.514517309144139, 3906686.432832714635879 ], [ 4972533.224057703278959, 3906728.913490324746817 ], [ 4972504.226177528500557, 3906685.16233117878437 ], [ 4972568.228761699981987, 3906642.681055418215692 ], [ 4972597.514517309144139, 3906686.432832714635879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972560.583959124982357, 3902201.355545646511018 ], [ 4972609.302233441732824, 3902175.595308961812407 ], [ 4972622.502062171697617, 3902200.381440673023462 ], [ 4972573.783820001408458, 3902226.141653810162097 ], [ 4972560.583959124982357, 3902201.355545646511018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973984.651504725217819, 3896039.022209845948964 ], [ 4974048.926863676868379, 3896018.392992228735238 ], [ 4974057.516791789792478, 3896044.627198504284024 ], [ 4974033.593839322216809, 3896052.226934916805476 ], [ 4974044.760461739264429, 3896086.477049305569381 ], [ 4974004.120110326446593, 3896099.505928496364504 ], [ 4973984.651504725217819, 3896039.022209845948964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973853.536267855204642, 3910042.521153713110834 ], [ 4973871.33170741982758, 3910070.23008806630969 ], [ 4973834.434548398479819, 3910093.826474030036479 ], [ 4973816.638374113477767, 3910066.481695029418916 ], [ 4973853.536267855204642, 3910042.521153713110834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973844.662773586809635, 3898981.646093984134495 ], [ 4973858.993725650943816, 3899017.35890582529828 ], [ 4973822.387257602997124, 3899031.852490725927055 ], [ 4973808.056264742277563, 3898996.139698091894388 ], [ 4973844.662773586809635, 3898981.646093984134495 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973734.57627250533551, 3900341.822080204728991 ], [ 4973766.860176958143711, 3900327.684051825664937 ], [ 4973780.623757246881723, 3900358.662046014796942 ], [ 4973748.339882669970393, 3900372.800058112945408 ], [ 4973734.57627250533551, 3900341.822080204728991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973626.891963936388493, 3899440.38915320718661 ], [ 4973666.680096232332289, 3899418.618897535838187 ], [ 4973682.177299585193396, 3899447.051291809417307 ], [ 4973642.38990649022162, 3899468.457395937759429 ], [ 4973626.891963936388493, 3899440.38915320718661 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973595.696743694134057, 3900965.306977761909366 ], [ 4973721.809989794157445, 3900980.118127558846027 ], [ 4973718.880994098260999, 3901005.237426944077015 ], [ 4973592.767864333465695, 3900990.426290668547153 ], [ 4973595.696743694134057, 3900965.306977761909366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973543.327003757469356, 3899757.74813171941787 ], [ 4973556.227113956585526, 3899788.724319368135184 ], [ 4973510.685140603221953, 3899807.570510235615075 ], [ 4973489.757580734789371, 3899757.643958842847496 ], [ 4973512.528594275005162, 3899748.22083627898246 ], [ 4973520.55598742607981, 3899767.171228231862187 ], [ 4973543.327003757469356, 3899757.74813171941787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973513.833378182724118, 3900410.212596752680838 ], [ 4973557.605934852734208, 3900412.118404413107783 ], [ 4973556.385192700661719, 3900447.436693286988884 ], [ 4973512.323985141701996, 3900445.894456738606095 ], [ 4973513.833378182724118, 3900410.212596752680838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973464.08910143096, 3899182.996385846752673 ], [ 4973419.130676655098796, 3899197.474296994972974 ], [ 4973409.111675245687366, 3899165.775517294183373 ], [ 4973454.069440308026969, 3899151.66171856969595 ], [ 4973464.08910143096, 3899182.996385846752673 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973457.178179899230599, 3901702.766464772168547 ], [ 4973432.935675740242004, 3901729.300934553146362 ], [ 4973377.163047719746828, 3901679.306775814387947 ], [ 4973402.271623458713293, 3901651.681544675957412 ], [ 4973427.56997328158468, 3901674.670890823472291 ], [ 4973436.227970115840435, 3901665.220299740321934 ], [ 4973450.314589612185955, 3901677.992235751822591 ], [ 4973441.079203715547919, 3901688.169962759129703 ], [ 4973457.178179899230599, 3901702.766464772168547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973436.994451019912958, 3904088.150116249453276 ], [ 4973461.114571817219257, 3904123.51771097863093 ], [ 4973415.844633143395185, 3904154.380961787886918 ], [ 4973391.437226310372353, 3904118.648718293290585 ], [ 4973436.994451019912958, 3904088.150116249453276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973297.161272586323321, 3910419.771493902429938 ], [ 4973316.476240186020732, 3910406.336005608551204 ], [ 4973318.773742915131152, 3910409.25352042214945 ], [ 4973354.809159041382372, 3910384.198220969177783 ], [ 4973370.887413432821631, 3910406.805640021339059 ], [ 4973338.599566827528179, 3910429.319254174362868 ], [ 4973348.935481044463813, 3910443.904606797266752 ], [ 4973325.584375777281821, 3910460.245310842990875 ], [ 4973297.161272586323321, 3910419.771493902429938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971906.979186216369271, 3906570.056461194530129 ], [ 4971887.086305861361325, 3906583.491845595650375 ], [ 4971876.174980786629021, 3906567.449482831638306 ], [ 4971896.067867520265281, 3906554.014090481679887 ], [ 4971906.979186216369271, 3906570.056461194530129 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971763.215681705623865, 3912586.712156542576849 ], [ 4971729.474659343250096, 3912618.692459840793163 ], [ 4971708.501881245523691, 3912596.440931531600654 ], [ 4971741.955036018975079, 3912564.460061281919479 ], [ 4971763.215681705623865, 3912586.712156542576849 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972982.112126137129962, 3899997.716418008785695 ], [ 4972956.174156226217747, 3900006.769767357502133 ], [ 4972936.692753757350147, 3899953.205120011232793 ], [ 4972981.653158868663013, 3899936.905749841127545 ], [ 4972993.11169904563576, 3899968.97128620184958 ], [ 4972974.378034496679902, 3899975.853705690708011 ], [ 4972982.112126137129962, 3899997.716418008785695 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972915.656878085806966, 3903105.080778426025063 ], [ 4972849.335974743589759, 3903150.469749568495899 ], [ 4972832.966342154890299, 3903127.133931027259678 ], [ 4972851.420992153696716, 3903114.424770175945014 ], [ 4972841.656518610194325, 3903100.569039835594594 ], [ 4972858.957904506474733, 3903088.585932622663677 ], [ 4972866.998039595782757, 3903100.61770147876814 ], [ 4972898.13958592992276, 3903079.557927633170038 ], [ 4972915.656878085806966, 3903105.080778426025063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971714.845467993058264, 3903393.01154293352738 ], [ 4971708.243382453918457, 3903381.711079817730933 ], [ 4971738.802282342687249, 3903363.561916558537632 ], [ 4971760.044918462634087, 3903399.286688757129014 ], [ 4971698.639244033955038, 3903435.584462106693536 ], [ 4971684.286617750301957, 3903411.160733750555664 ], [ 4971714.845467993058264, 3903393.01154293352738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971560.325916644185781, 3905020.75306492112577 ], [ 4971577.245480585843325, 3905057.926163412630558 ], [ 4971537.474191374145448, 3905076.058284003287554 ], [ 4971520.554583974182606, 3905038.885210137814283 ], [ 4971560.325916644185781, 3905020.75306492112577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972811.540978313423693, 3903787.626830431632698 ], [ 4972871.225864104926586, 3903748.051103942561895 ], [ 4972888.166114666499197, 3903773.93697081040591 ], [ 4972828.76992426533252, 3903813.149083035066724 ], [ 4972811.540978313423693, 3903787.626830431632698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972683.473550764843822, 3906906.532930186018348 ], [ 4972652.052148244343698, 3906925.771798133384436 ], [ 4972634.829916016198695, 3906897.700695806648582 ], [ 4972666.251338917762041, 3906878.461808060761541 ], [ 4972683.473550764843822, 3906906.532930186018348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971247.875577422790229, 3907508.6465970040299 ], [ 4971222.501643373630941, 3907528.262526226695627 ], [ 4971161.030570849776268, 3907450.224009035155177 ], [ 4971176.3129349546507, 3907438.236042859498411 ], [ 4971186.941133721731603, 3907451.728679297491908 ], [ 4971194.149416288360953, 3907446.280095894820988 ], [ 4971218.278256993740797, 3907476.912049677222967 ], [ 4971228.369852888397872, 3907469.284045105800033 ], [ 4971238.423518332652748, 3907482.047369464766234 ], [ 4971231.50316115655005, 3907487.496476695872843 ], [ 4971247.875577422790229, 3907508.6465970040299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971136.521202133968472, 3903902.079583206214011 ], [ 4971149.438979874365032, 3903923.951442615594715 ], [ 4971117.728588126599789, 3903942.463274806272238 ], [ 4971105.09875660482794, 3903920.591964603401721 ], [ 4971136.521202133968472, 3903902.079583206214011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971132.870223722420633, 3897955.819901141803712 ], [ 4971149.299252034164965, 3897949.660186130553484 ], [ 4971158.756140106357634, 3897975.530971438158303 ], [ 4971098.229330296628177, 3897997.630582383368164 ], [ 4971079.887439031153917, 3897948.074897568207234 ], [ 4971124.274007253348827, 3897931.771372056100518 ], [ 4971132.870223722420633, 3897955.819901141803712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972395.979109777137637, 3898959.551471413578838 ], [ 4972378.399038848467171, 3898965.344107722863555 ], [ 4972377.253900700248778, 3898961.700627305544913 ], [ 4972348.722992437891662, 3898970.749626617878675 ], [ 4972347.291218859143555, 3898966.377342100255191 ], [ 4972317.318861873820424, 3898976.151894920505583 ], [ 4972307.869669147767127, 3898947.003526588436216 ], [ 4972318.244483878836036, 3898943.746064772829413 ], [ 4972313.090627120807767, 3898927.714543923735619 ], [ 4972342.486311034299433, 3898918.303020583000034 ], [ 4972340.768593351356685, 3898912.837802410591394 ], [ 4972360.942226156592369, 3898906.321812942158431 ], [ 4972366.670014250092208, 3898923.446824919432402 ], [ 4972382.808641308918595, 3898918.379699213895947 ], [ 4972395.979109777137637, 3898959.551471413578838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972316.322547424584627, 3903138.163557272870094 ], [ 4972333.256796979345381, 3903167.69036295870319 ], [ 4972326.626540777273476, 3903171.319072000216693 ], [ 4972340.690742037259042, 3903195.742592368274927 ], [ 4972319.06940449308604, 3903208.0819549462758 ], [ 4972313.042776740156114, 3903197.146568842232227 ], [ 4972280.466813366860151, 3903215.655379245057702 ], [ 4972252.912856949493289, 3903167.537761367391795 ], [ 4972278.569942474365234, 3903153.021221910137683 ], [ 4972281.152695038355887, 3903157.759830885566771 ], [ 4972316.322547424584627, 3903138.163557272870094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970819.941886558197439, 3913011.355134190991521 ], [ 4970846.077155729755759, 3913044.175370548851788 ], [ 4970830.798118368722498, 3913056.163566522765905 ], [ 4970836.254785853438079, 3913063.092171165160835 ], [ 4970805.408218492753804, 3913087.432184429839253 ], [ 4970763.763793477788568, 3913035.284331071656197 ], [ 4970782.791106784716249, 3913020.025808263104409 ], [ 4970793.130762245506048, 3913032.789540861267596 ], [ 4970819.941886558197439, 3913011.355134190991521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970824.18498126603663, 3905406.092638921458274 ], [ 4970866.266273819841444, 3905383.958278398960829 ], [ 4970875.448983775451779, 3905401.08941984269768 ], [ 4970868.531527834013104, 3905404.717961817979813 ], [ 4970876.565131282433867, 3905420.390455681830645 ], [ 4970884.635044908151031, 3905416.39991282299161 ], [ 4970893.817059284076095, 3905433.895191247109324 ], [ 4970850.583363525569439, 3905456.391513641458005 ], [ 4970824.18498126603663, 3905406.092638921458274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970727.908740771003067, 3892788.075262570288032 ], [ 4970739.383772752247751, 3892814.313660783693194 ], [ 4970682.587419237941504, 3892838.241672590840608 ], [ 4970671.401093624532223, 3892811.639700203668326 ], [ 4970727.908740771003067, 3892788.075262570288032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972053.963862793520093, 3906801.921857081353664 ], [ 4972028.022443115711212, 3906816.438099325634539 ], [ 4972005.354224135167897, 3906774.884231303818524 ], [ 4972029.566011479124427, 3906761.457094559445977 ], [ 4972037.026106133125722, 3906775.308206946123391 ], [ 4972064.984475795179605, 3906760.06752404756844 ], [ 4972077.322873776778579, 3906782.667039887048304 ], [ 4972051.094179099425673, 3906796.818584402091801 ], [ 4972053.963862793520093, 3906801.921857081353664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971940.84218498505652, 3901134.368623117916286 ], [ 4971941.449076502583921, 3901117.98388741677627 ], [ 4971966.790405604988337, 3901119.124088311102241 ], [ 4971966.184185792692006, 3901135.144694071263075 ], [ 4971940.84218498505652, 3901134.368623117916286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970445.27180368360132, 3908536.930906110908836 ], [ 4970425.067870624363422, 3908564.20384271396324 ], [ 4970397.752076249569654, 3908544.490719346795231 ], [ 4970418.244576421566308, 3908516.854158341884613 ], [ 4970445.27180368360132, 3908536.930906110908836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970185.373377690091729, 3890929.662084648851305 ], [ 4970210.680622357875109, 3890954.833020700141788 ], [ 4970189.610072392970324, 3890976.278237042482942 ], [ 4970164.014726274646819, 3890951.106796362437308 ], [ 4970185.373377690091729, 3890929.662084648851305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971621.843622410669923, 3907073.114887349307537 ], [ 4971588.112240513786674, 3907096.356121212709695 ], [ 4971561.407112929038703, 3907057.708114807493985 ], [ 4971594.850590381771326, 3907034.466308502014726 ], [ 4971621.843622410669923, 3907073.114887349307537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971226.995973392389715, 3901705.081078098155558 ], [ 4971266.440675342455506, 3901710.252288734074682 ], [ 4971262.644671690650284, 3901738.283295213710517 ], [ 4971223.20001017767936, 3901733.112090055365115 ], [ 4971226.995973392389715, 3901705.081078098155558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969455.043319861404598, 3903290.547582598403096 ], [ 4969481.849344557151198, 3903276.758698042016476 ], [ 4969503.086547089740634, 3903317.21537328325212 ], [ 4969469.650722857564688, 3903334.633651262149215 ], [ 4969461.615018357522786, 3903319.325727833900601 ], [ 4969468.244196583516896, 3903316.060441539157182 ], [ 4969455.043319861404598, 3903290.547582598403096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969459.547134273685515, 3897889.407992009539157 ], [ 4969463.595850232988596, 3897880.312006254680455 ], [ 4969487.482550958171487, 3897891.278760022483766 ], [ 4969465.218203932978213, 3897939.303962270729244 ], [ 4969412.839674743823707, 3897915.541613333392888 ], [ 4969430.767864314839244, 3897876.247713337652385 ], [ 4969459.547134273685515, 3897889.407992009539157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970886.383374027907848, 3903846.268448810558766 ], [ 4970897.245273879729211, 3903889.984263930935413 ], [ 4970864.114696329459548, 3903897.933964501600713 ], [ 4970853.252073749899864, 3903854.582292570266873 ], [ 4970886.383374027907848, 3903846.268448810558766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969375.51521582249552, 3911194.61774022039026 ], [ 4969376.30451010260731, 3911236.130300948861986 ], [ 4969331.968318574130535, 3911237.14331423304975 ], [ 4969330.891070738434792, 3911195.630239560268819 ], [ 4969375.51521582249552, 3911194.61774022039026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969253.323633409105241, 3902401.706894408445805 ], [ 4969224.768829548731446, 3902426.780936753377318 ], [ 4969190.566876285709441, 3902388.850291092414409 ], [ 4969195.470322493463755, 3902384.489467964041978 ], [ 4969180.812591827474535, 3902368.077432324644178 ], [ 4969204.464610503055155, 3902347.000034947413951 ], [ 4969253.323633409105241, 3902401.706894408445805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969162.30943660158664, 3902247.152990805916488 ], [ 4969136.644742333330214, 3902266.406183483079076 ], [ 4969121.130103019997478, 3902245.987215508706868 ], [ 4969117.09253220167011, 3902249.257201519794762 ], [ 4969087.211865210905671, 3902210.241996623575687 ], [ 4969118.931973529979587, 3902186.629972356371582 ], [ 4969131.861303844489157, 3902203.403023568913341 ], [ 4969141.377020259387791, 3902196.501493006478995 ], [ 4969158.328982944600284, 3902218.379557623062283 ], [ 4969147.082137831486762, 3902227.098651190288365 ], [ 4969162.30943660158664, 3902247.152990805916488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970850.473560770042241, 3891468.698669967707247 ], [ 4970816.464079518802464, 3891476.282648344058543 ], [ 4970800.178144345991313, 3891402.698658956214786 ], [ 4970834.187042420729995, 3891395.478787614963949 ], [ 4970850.473560770042241, 3891468.698669967707247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970646.549025567248464, 3899280.355322217103094 ], [ 4970647.687692252919078, 3899287.640019706916064 ], [ 4970629.824884812347591, 3899290.884368431288749 ], [ 4970621.842801271006465, 3899246.081685896962881 ], [ 4970674.854626857675612, 3899236.711729459930211 ], [ 4970681.698637160472572, 3899273.865599518176168 ], [ 4970646.549025567248464, 3899280.355322217103094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970636.25773686543107, 3896886.91005631396547 ], [ 4970663.063382129184902, 3896877.127816526219249 ], [ 4970671.948390023782849, 3896901.176712670363486 ], [ 4970645.142765455879271, 3896910.958943736273795 ], [ 4970636.25773686543107, 3896886.91005631396547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970596.43559739831835, 3904926.112210456747562 ], [ 4970621.80349538475275, 3904910.865284381434321 ], [ 4970648.502746650017798, 3904954.610129761043936 ], [ 4970623.134874677285552, 3904969.85703103384003 ], [ 4970596.43559739831835, 3904926.112210456747562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970509.236101604066789, 3897356.404383688233793 ], [ 4970521.523420062847435, 3897409.953988215420395 ], [ 4970489.82647046353668, 3897417.178501736838371 ], [ 4970482.396309446543455, 3897385.121466908138245 ], [ 4970486.718806533142924, 3897384.036994791589677 ], [ 4970481.860925655812025, 3897362.908567180857062 ], [ 4970509.236101604066789, 3897356.404383688233793 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969015.175647509284317, 3911141.903674629982561 ], [ 4968991.578082257881761, 3911136.763870928436518 ], [ 4968988.094337493181229, 3911153.143658310640603 ], [ 4968967.95011062733829, 3911148.738277463242412 ], [ 4968971.723669845610857, 3911131.266603807453066 ], [ 4968960.212765347212553, 3911128.697229705285281 ], [ 4968968.630657011643052, 3911089.749966892413795 ], [ 4969023.596204840578139, 3911101.499901993200183 ], [ 4969015.175647509284317, 3911141.903674629982561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968990.135608908720315, 3912272.492039069999009 ], [ 4969055.27019399497658, 3912230.368426389992237 ], [ 4969121.012957342900336, 3912331.714497208129615 ], [ 4969055.878514034673572, 3912373.837953177280724 ], [ 4968990.135608908720315, 3912272.492039069999009 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969025.701758467592299, 3891771.990372974425554 ], [ 4969049.820018130354583, 3891817.913445310201496 ], [ 4969021.272957675158978, 3891832.42785011511296 ], [ 4968997.154015731997788, 3891786.868930451571941 ], [ 4969025.701758467592299, 3891771.990372974425554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968892.271582253277302, 3898622.482561841607094 ], [ 4968903.793020434677601, 3898622.13885609805584 ], [ 4968904.33226172439754, 3898642.895225361920893 ], [ 4968892.810832431539893, 3898643.238930892199278 ], [ 4968893.358472400344908, 3898659.261624258942902 ], [ 4968836.040028855204582, 3898660.61660579778254 ], [ 4968835.512983633205295, 3898632.941788304131478 ], [ 4968855.387632979080081, 3898632.24872155347839 ], [ 4968854.580970838665962, 3898599.839718237984926 ], [ 4968891.737494491040707, 3898598.813161830883473 ], [ 4968892.271582253277302, 3898622.482561841607094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968571.971013965085149, 3895526.085927054751664 ], [ 4968576.243087911047041, 3895553.767280872911215 ], [ 4968524.956259715370834, 3895561.323753906413913 ], [ 4968520.971546798013151, 3895534.007042901590466 ], [ 4968571.971013965085149, 3895526.085927054751664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968550.736826243810356, 3897771.271787104196846 ], [ 4968567.078197074122727, 3897814.632002845406532 ], [ 4968536.814708738587797, 3897826.230901273433119 ], [ 4968538.821297965943813, 3897831.696379506029189 ], [ 4968516.628392490558326, 3897840.032331677619368 ], [ 4968497.992327502928674, 3897791.206164424307644 ], [ 4968550.736826243810356, 3897771.271787104196846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970082.522769750095904, 3899332.851805871818215 ], [ 4970103.251706228591502, 3899337.259037842042744 ], [ 4970091.634613491594791, 3899390.400940642692149 ], [ 4970044.994584931060672, 3899380.484711055643857 ], [ 4970053.124367708340287, 3899344.450577419251204 ], [ 4970078.747520012781024, 3899349.959068343043327 ], [ 4970082.522769750095904, 3899332.851805871818215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969863.751642868854105, 3913113.749900554772466 ], [ 4969857.780280144885182, 3913072.956164814066142 ], [ 4969909.321960286237299, 3913065.402674478944391 ], [ 4969917.284550697542727, 3913119.308828178327531 ], [ 4969914.117381876334548, 3913119.66722397133708 ], [ 4969916.390613055787981, 3913136.05734129762277 ], [ 4969880.974076492711902, 3913141.091070951893926 ], [ 4969876.709501517005265, 3913111.58855268638581 ], [ 4969863.751642868854105, 3913113.749900554772466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969654.825687501579523, 3899011.643583753611892 ], [ 4969683.886396787129343, 3899027.71766202012077 ], [ 4969686.487722708843648, 3899022.624527452513576 ], [ 4969706.340443836525083, 3899033.948346036951989 ], [ 4969687.27040022239089, 3899067.77807836048305 ], [ 4969638.644367945380509, 3899040.744860392529517 ], [ 4969654.825687501579523, 3899011.643583753611892 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968284.886301836930215, 3890855.629279196728021 ], [ 4968302.686240150593221, 3890891.345005865674466 ], [ 4968274.42734176851809, 3890905.496572805102915 ], [ 4968241.98504192661494, 3890840.624998363200575 ], [ 4968275.433672874234617, 3890824.297704148571938 ], [ 4968290.076616121456027, 3890853.08946100436151 ], [ 4968284.886301836930215, 3890855.629279196728021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968050.417370498180389, 3901251.480989407282323 ], [ 4968072.906094049103558, 3901236.95493542496115 ], [ 4968093.586287768557668, 3901268.670335292816162 ], [ 4968071.097579487599432, 3901283.19637225009501 ], [ 4968050.417370498180389, 3901251.480989407282323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969473.662717585451901, 3898690.883433716837317 ], [ 4969513.940273716114461, 3898716.080703529063612 ], [ 4969495.166109976358712, 3898745.541535851079971 ], [ 4969433.599343806505203, 3898706.833307864610106 ], [ 4969450.062130279839039, 3898681.373719157185405 ], [ 4969471.351378979161382, 3898694.884717865847051 ], [ 4969473.662717585451901, 3898690.883433716837317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967977.197901424020529, 3913212.359504112042487 ], [ 4967980.022696075960994, 3913243.315747733227909 ], [ 4967932.518316841684282, 3913247.238621477037668 ], [ 4967929.693467885255814, 3913216.282382780686021 ], [ 4967977.197901424020529, 3913212.359504112042487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967964.202643308788538, 3913401.686225429642946 ], [ 4968011.713726548478007, 3913393.757952789310366 ], [ 4968016.270066179335117, 3913422.168284645304084 ], [ 4967969.046892946586013, 3913430.097049991600215 ], [ 4967964.202643308788538, 3913401.686225429642946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967900.813587186858058, 3901495.552545971237123 ], [ 4967927.230158032849431, 3901540.750615320168436 ], [ 4967903.302457210607827, 3901554.910164660774171 ], [ 4967901.006134821102023, 3901550.536610515322536 ], [ 4967873.619438639841974, 3901566.510835734196007 ], [ 4967855.529850632883608, 3901535.528353109955788 ], [ 4967873.979440192691982, 3901525.000564021524042 ], [ 4967867.949362398125231, 3901514.794445107225329 ], [ 4967900.813587186858058, 3901495.552545971237123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969282.210761389695108, 3891713.094457875471562 ], [ 4969306.318222727626562, 3891764.843797620851547 ], [ 4969273.447618664242327, 3891780.442592569161206 ], [ 4969249.052664603106678, 3891728.328640050254762 ], [ 4969282.210761389695108, 3891713.094457875471562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967638.024152971804142, 3896071.016293992288411 ], [ 4967665.106872945092618, 3896067.421749003231525 ], [ 4967669.090488012880087, 3896095.830726926214993 ], [ 4967641.719749252311885, 3896099.424770839978009 ], [ 4967638.024152971804142, 3896071.016293992288411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967606.585725774057209, 3913454.958466222509742 ], [ 4967612.863990583457053, 3913486.648901604581624 ], [ 4967561.895098554901779, 3913496.756718343589455 ], [ 4967555.616776044480503, 3913465.066294671036303 ], [ 4967606.585725774057209, 3913454.958466222509742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967624.042043501511216, 3895827.389568961691111 ], [ 4967590.616343862377107, 3895834.250384587794542 ], [ 4967585.759668994694948, 3895810.937729795463383 ], [ 4967619.185396351851523, 3895804.076908216811717 ], [ 4967624.042043501511216, 3895827.389568961691111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967588.762692571617663, 3902589.225665550678968 ], [ 4967577.277496027760208, 3902569.542796449735761 ], [ 4967601.491472749970853, 3902555.747574625536799 ], [ 4967633.362724656239152, 3902610.422196773346514 ], [ 4967599.924098663963377, 3902629.663442613556981 ], [ 4967579.538630438968539, 3902594.307594901882112 ], [ 4967588.762692571617663, 3902589.225665550678968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968857.121413207612932, 3903831.672969381324947 ], [ 4968825.125177738256752, 3903849.822865585330874 ], [ 4968807.326840215362608, 3903818.476079331245273 ], [ 4968839.32310086954385, 3903800.326162288896739 ], [ 4968857.121413207612932, 3903831.672969381324947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968761.544332756660879, 3894040.044827774632722 ], [ 4968795.525517163798213, 3894046.295099759008735 ], [ 4968785.635883958078921, 3894100.16871340200305 ], [ 4968782.467776758596301, 3894099.798982533626258 ], [ 4968778.977481025271118, 3894118.727523630019277 ], [ 4968746.724149935878813, 3894112.844453933183104 ], [ 4968751.958919004537165, 3894084.815764282364398 ], [ 4968743.607507453300059, 3894083.344492437317967 ], [ 4968747.388424832373857, 3894062.959944371599704 ], [ 4968756.891473662108183, 3894064.797381545417011 ], [ 4968761.544332756660879, 3894040.044827774632722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968709.562710579484701, 3899496.799937853589654 ], [ 4968663.461768817156553, 3899507.642481063026935 ], [ 4968657.745236220769584, 3899482.871541194152087 ], [ 4968669.270799407735467, 3899479.978831006214023 ], [ 4968664.411875321529806, 3899458.850705495569855 ], [ 4968698.699308802373707, 3899450.900348233059049 ], [ 4968709.562710579484701, 3899496.799937853589654 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968469.016438332386315, 3907887.414678116794676 ], [ 4968489.498488030396402, 3907864.874490794725716 ], [ 4968507.895957591943443, 3907881.656918315216899 ], [ 4968487.126624988391995, 3907903.832454702816904 ], [ 4968469.016438332386315, 3907887.414678116794676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968445.753761889412999, 3914245.132712241727859 ], [ 4968399.696098200976849, 3914245.780099344905466 ], [ 4968399.467684134840965, 3914211.915279771201313 ], [ 4968445.23755310382694, 3914211.267386557068676 ], [ 4968445.753761889412999, 3914245.132712241727859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966950.283224055543542, 3896510.070842567831278 ], [ 4966914.852765373885632, 3896510.738888884428889 ], [ 4966913.786576505750418, 3896460.123070744331926 ], [ 4966949.217101868242025, 3896459.45502304751426 ], [ 4966950.283224055543542, 3896510.070842567831278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968159.865299069322646, 3901905.286375388968736 ], [ 4968165.610371734015644, 3901913.671411242801696 ], [ 4968178.296315875835717, 3901905.318552528042346 ], [ 4968200.126533254981041, 3901937.764317927882075 ], [ 4968172.15963407792151, 3901956.286144052166492 ], [ 4968180.488917661830783, 3901969.045264574699104 ], [ 4968160.306524152867496, 3901982.482867267448455 ], [ 4968124.402542295865715, 3901928.528867938555777 ], [ 4968159.865299069322646, 3901905.286375388968736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966716.392767039127648, 3903149.589657824486494 ], [ 4966670.612714732997119, 3903145.14267237810418 ], [ 4966668.265866064466536, 3903170.627875730860978 ], [ 4966639.761034305207431, 3903168.030799264553934 ], [ 4966645.038621749728918, 3903112.32767180306837 ], [ 4966719.324231520295143, 3903119.007614204660058 ], [ 4966716.392767039127648, 3903149.589657824486494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966553.139113665558398, 3891341.679951729718596 ], [ 4966541.623174613341689, 3891336.926879827398807 ], [ 4966536.705883658491075, 3891348.570706747472286 ], [ 4966496.112287868745625, 3891331.752452760003507 ], [ 4966513.757986600510776, 3891289.179127796087414 ], [ 4966554.927832200191915, 3891305.998378947842866 ], [ 4966547.407217788510025, 3891323.828000436071306 ], [ 4966558.635677103884518, 3891328.216461860109121 ], [ 4966553.139113665558398, 3891341.679951729718596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967965.742658923380077, 3902911.041808695998043 ], [ 4968011.871698621660471, 3902880.535033612046391 ], [ 4968034.850680125877261, 3902914.439207728952169 ], [ 4967988.721039046533406, 3902945.310073878150433 ], [ 4967965.742658923380077, 3902911.041808695998043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966317.451113484799862, 3899259.275043544825166 ], [ 4966326.143410290591419, 3899228.338558703195304 ], [ 4966405.02357966452837, 3899249.590509894769639 ], [ 4966396.330587196163833, 3899280.891098723281175 ], [ 4966317.451113484799862, 3899259.275043544825166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966301.119118174538016, 3896802.827584666199982 ], [ 4966287.866259242407978, 3896804.626024266239256 ], [ 4966289.291202805005014, 3896813.731651829555631 ], [ 4966261.632732700556517, 3896817.690748487133533 ], [ 4966260.77898064814508, 3896811.499115630052984 ], [ 4966239.171163560822606, 3896814.375979030039161 ], [ 4966233.195463221520185, 3896770.6704266006127 ], [ 4966295.714713849127293, 3896762.036012697964907 ], [ 4966301.119118174538016, 3896802.827584666199982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966293.925463063642383, 3891984.659485265612602 ], [ 4966312.396850910969079, 3891964.66336767282337 ], [ 4966330.805988348089159, 3891981.808272479102015 ], [ 4966312.334598523564637, 3892001.804377623833716 ], [ 4966293.925463063642383, 3891984.659485265612602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966272.513615150935948, 3897544.147686036303639 ], [ 4966306.225492682307959, 3897536.921578464098275 ], [ 4966323.941171611659229, 3897621.793515976518393 ], [ 4966292.246829220093787, 3897628.294722695369273 ], [ 4966285.389005313627422, 3897595.511552070267498 ], [ 4966268.965759843587875, 3897598.761208618991077 ], [ 4966263.823281146585941, 3897573.62764218589291 ], [ 4966278.229713723063469, 3897570.738733668811619 ], [ 4966272.513615150935948, 3897544.147686036303639 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966200.591330466791987, 3900076.187565841246396 ], [ 4966207.837727058678865, 3900048.525782831478864 ], [ 4966232.595756790600717, 3900054.757422732654959 ], [ 4966225.636731208302081, 3900082.783810408785939 ], [ 4966200.591330466791987, 3900076.187565841246396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966171.855466696433723, 3895556.560225975699723 ], [ 4966178.104380945675075, 3895609.369422946125269 ], [ 4966133.447185310535133, 3895614.756762764882296 ], [ 4966124.357168965041637, 3895538.274426959455013 ], [ 4966156.625172646716237, 3895534.687019234988838 ], [ 4966159.466768629848957, 3895557.996043326333165 ], [ 4966171.855466696433723, 3895556.560225975699723 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965989.921134268864989, 3895314.110825978219509 ], [ 4965946.996055942028761, 3895316.952453288715333 ], [ 4965942.488876481540501, 3895255.771242658142 ], [ 4966087.397994994185865, 3895245.816933095920831 ], [ 4966089.650208590552211, 3895277.135806521866471 ], [ 4965987.9544393485412, 3895284.248952661640942 ], [ 4965989.921134268864989, 3895314.110825978219509 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965837.947163970209658, 3898888.519147896207869 ], [ 4965813.742268223315477, 3898895.397476358804852 ], [ 4965808.587543124333024, 3898877.54655836801976 ], [ 4965833.080470761284232, 3898870.668703068513423 ], [ 4965837.947163970209658, 3898888.519147896207869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967339.775131945498288, 3899668.106235020793974 ], [ 4967317.590979551896453, 3899672.437765432987362 ], [ 4967311.593346249312162, 3899642.932936564087868 ], [ 4967333.777522007934749, 3899638.601401282474399 ], [ 4967339.775131945498288, 3899668.106235020793974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967253.358600210398436, 3895637.041229305323213 ], [ 4967298.87328056525439, 3895635.66264154529199 ], [ 4967299.681296153925359, 3895668.435669533908367 ], [ 4967254.167294399812818, 3895669.450127640273422 ], [ 4967253.358600210398436, 3895637.041229305323213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967139.476844429038465, 3902275.30220481660217 ], [ 4967161.886461293324828, 3902306.291598577518016 ], [ 4967122.384675106033683, 3902334.62634831154719 ], [ 4967099.975657710805535, 3902303.272857198491693 ], [ 4967139.476844429038465, 3902275.30220481660217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965656.759784793481231, 3898205.839636504184455 ], [ 4965690.165182919241488, 3898209.172015549149364 ], [ 4965684.306579513475299, 3898268.515503176953644 ], [ 4965650.90125444252044, 3898265.183131301775575 ], [ 4965656.759784793481231, 3898205.839636504184455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965639.534778059460223, 3898694.837697277311236 ], [ 4965637.198154128156602, 3898714.496858325786889 ], [ 4965647.853046395815909, 3898715.606846030335873 ], [ 4965645.515816694125533, 3898735.630135612096637 ], [ 4965632.557985885068774, 3898733.788086000829935 ], [ 4965629.342885814607143, 3898762.18491784343496 ], [ 4965594.211859899573028, 3898757.757375145796686 ], [ 4965602.387532124295831, 3898690.406814516056329 ], [ 4965639.534778059460223, 3898694.837697277311236 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965609.681788004003465, 3901949.02134852996096 ], [ 4965607.049063043668866, 3901973.777891334146261 ], [ 4965506.27208551671356, 3901963.051958537194878 ], [ 4965508.905318307690322, 3901937.931276307906955 ], [ 4965609.681788004003465, 3901949.02134852996096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966883.279543765820563, 3913232.327004023827612 ], [ 4966887.264471525326371, 3913258.915502407588065 ], [ 4966864.22986878734082, 3913262.153579732403159 ], [ 4966860.244300492107868, 3913235.92921692924574 ], [ 4966883.279543765820563, 3913232.327004023827612 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965363.632998429238796, 3896926.89742385642603 ], [ 4965396.178898558020592, 3896928.407373800873756 ], [ 4965395.281894160434604, 3896948.433029180858284 ], [ 4965362.447980465367436, 3896946.922607610467821 ], [ 4965363.632998429238796, 3896926.89742385642603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965274.484262741170824, 3901059.627369590569288 ], [ 4965326.885380953550339, 3901068.088258369360119 ], [ 4965318.739164776168764, 3901118.324910398107022 ], [ 4965289.371628227643669, 3901113.543075548950583 ], [ 4965294.318830464966595, 3901082.235958489589393 ], [ 4965271.573311581276357, 3901078.557387741748244 ], [ 4965274.484262741170824, 3901059.627369590569288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965199.524823866784573, 3899523.967067745048553 ], [ 4965243.57905332185328, 3899530.957613431848586 ], [ 4965238.342428996227682, 3899562.992497715167701 ], [ 4965194.28884607180953, 3899555.637831281870604 ], [ 4965199.524823866784573, 3899523.967067745048553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965093.062692981213331, 3906698.629492173437029 ], [ 4965102.828059366904199, 3906713.574829399585724 ], [ 4965127.0406030761078, 3906697.592558457516134 ], [ 4965141.976256472058594, 3906720.193119908217341 ], [ 4965120.358092542737722, 3906734.358954438939691 ], [ 4965127.251833185553551, 3906744.565899769309908 ], [ 4965112.839145195670426, 3906754.373926338274032 ], [ 4965116.860691343434155, 3906760.206599578261375 ], [ 4965093.224669027142227, 3906775.825689120683819 ], [ 4965068.523640207946301, 3906738.279825320467353 ], [ 4965079.764900414273143, 3906731.015524098649621 ], [ 4965068.850764269940555, 3906714.24766295729205 ], [ 4965093.062692981213331, 3906698.629492173437029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965042.021894256584346, 3892781.125245205126703 ], [ 4965067.649359095841646, 3892788.44957644212991 ], [ 4965071.996116096153855, 3892772.799126744270325 ], [ 4965095.032026675529778, 3892779.391002452932298 ], [ 4965080.835844038054347, 3892828.525230922270566 ], [ 4965032.172536582686007, 3892814.609045183751732 ], [ 4965042.021894256584346, 3892781.125245205126703 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964999.650773598812521, 3906773.124248861335218 ], [ 4965003.635580156929791, 3906801.533014968037605 ], [ 4964987.507822318002582, 3906803.691549155861139 ], [ 4964985.514819060452282, 3906789.851297947578132 ], [ 4964977.162412194535136, 3906791.294231495819986 ], [ 4964974.882062780670822, 3906777.089381814934313 ], [ 4964999.650773598812521, 3906773.124248861335218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966247.475181398913264, 3908023.429165136534721 ], [ 4966274.596320999786258, 3907989.610316042788327 ], [ 4966297.59874136839062, 3908008.219606545288116 ], [ 4966270.190282718278468, 3908041.673819325864315 ], [ 4966247.475181398913264, 3908023.429165136534721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966180.906083789654076, 3894794.816964535042644 ], [ 4966196.973564200103283, 3894833.077387406490743 ], [ 4966166.417865309864283, 3894845.77083698194474 ], [ 4966151.783354075625539, 3894811.882375641725957 ], [ 4966144.865033599548042, 3894814.783854139968753 ], [ 4966123.632427802309394, 3894764.498578229453415 ], [ 4966149.288115837611258, 3894753.617541777901351 ], [ 4966169.087071529589593, 3894799.895021240692586 ], [ 4966180.906083789654076, 3894794.816964535042644 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966111.545751295052469, 3900107.353995300829411 ], [ 4966121.994137889705598, 3900059.306236441247165 ], [ 4966177.558904237113893, 3900071.415361003484577 ], [ 4966174.946171783842146, 3900083.79142419854179 ], [ 4966193.083735851570964, 3900087.82718069665134 ], [ 4966187.859479811042547, 3900111.851046035066247 ], [ 4966168.569915595464408, 3900107.813367653638124 ], [ 4966166.247020113281906, 3900119.097525379620492 ], [ 4966111.545751295052469, 3900107.353995300829411 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964812.195873213931918, 3895230.247432189062238 ], [ 4964843.32896825671196, 3895216.096861633006483 ], [ 4964851.654252331703901, 3895233.588566753547639 ], [ 4964855.978047598153353, 3895231.774934022221714 ], [ 4964869.470009561628103, 3895260.563032721634954 ], [ 4964821.040626557543874, 3895282.696376565843821 ], [ 4964813.290269295684993, 3895265.933870601467788 ], [ 4964825.974167876876891, 3895260.128360668197274 ], [ 4964812.195873213931918, 3895230.247432189062238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964642.627174137160182, 3899630.844740967266262 ], [ 4964676.010332939215004, 3899646.920385457575321 ], [ 4964654.04874568246305, 3899692.037054073531181 ], [ 4964620.953638438135386, 3899675.961901169735938 ], [ 4964609.105931696482003, 3899700.339508320204914 ], [ 4964588.961206087842584, 3899690.475502878427505 ], [ 4964602.831419966183603, 3899662.095717184711248 ], [ 4964622.976161805912852, 3899671.959732862189412 ], [ 4964642.627174137160182, 3899630.844740967266262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964599.139917527325451, 3900343.741605794988573 ], [ 4964591.372688427567482, 3900338.267124283127487 ], [ 4964603.496941643767059, 3900320.808422750327736 ], [ 4964640.894825453869998, 3900347.086157171986997 ], [ 4964626.173260388895869, 3900367.817823250312358 ], [ 4964634.515888188034296, 3900373.65737408446148 ], [ 4964620.660695393569767, 3900392.933920631650835 ], [ 4964582.974854660220444, 3900366.655749307014048 ], [ 4964599.139917527325451, 3900343.741605794988573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964540.234965222887695, 3903835.296083453577012 ], [ 4964531.512182481586933, 3903887.352781319059432 ], [ 4964493.223011435009539, 3903881.100911858957261 ], [ 4964501.945721972733736, 3903829.04420175915584 ], [ 4964540.234965222887695, 3903835.296083453577012 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964484.820170043967664, 3900512.149815345648676 ], [ 4964445.610092887654901, 3900538.304155464749783 ], [ 4964428.659084552899003, 3900512.787791595328599 ], [ 4964467.581182479858398, 3900486.63296404434368 ], [ 4964484.820170043967664, 3900512.149815345648676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964477.205504930578172, 3901486.186582878697664 ], [ 4964507.188608619384468, 3901466.207643157336861 ], [ 4964521.840302166529, 3901488.443194857332855 ], [ 4964531.065922355279326, 3901482.26783053483814 ], [ 4964545.431358225643635, 3901503.410542604513466 ], [ 4964505.934676290489733, 3901529.564346415456384 ], [ 4964477.205504930578172, 3901486.186582878697664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964386.803922248072922, 3896623.812807048670948 ], [ 4964387.111246844753623, 3896611.797026101965457 ], [ 4964413.60988262295723, 3896612.567822544369847 ], [ 4964413.293190997093916, 3896630.409660514909774 ], [ 4964374.985469008795917, 3896629.255786615889519 ], [ 4964375.282857139594853, 3896623.43019140465185 ], [ 4964386.803922248072922, 3896623.812807048670948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964361.426729923114181, 3906336.955303210765123 ], [ 4964398.323614794760942, 3906311.5253103710711 ], [ 4964415.560668812133372, 3906335.949815268628299 ], [ 4964378.663216606713831, 3906361.743915532715619 ], [ 4964361.426729923114181, 3906336.955303210765123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965558.796901857480407, 3897877.23284339113161 ], [ 4965549.164759773761034, 3897954.412489915266633 ], [ 4965514.608118987642229, 3897950.350131607614458 ], [ 4965524.240763019770384, 3897872.806344060227275 ], [ 4965558.796901857480407, 3897877.23284339113161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964291.922336707822978, 3896876.002486913930625 ], [ 4964363.909775630570948, 3896889.954777036327869 ], [ 4964358.682455259375274, 3896916.52785263210535 ], [ 4964286.98254010360688, 3896902.940166098065674 ], [ 4964291.922336707822978, 3896876.002486913930625 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964096.809052177704871, 3900017.039491575211287 ], [ 4964152.931639715097845, 3900041.161616282071918 ], [ 4964140.501536042429507, 3900069.908067894633859 ], [ 4964084.378997503779829, 3900045.785968729760498 ], [ 4964096.809052177704871, 3900017.039491575211287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964096.499694102443755, 3894428.741344946902245 ], [ 4964071.446180786937475, 3894423.603618881199509 ], [ 4964073.187330603599548, 3894415.59555352665484 ], [ 4964036.615259459242225, 3894407.890610524453223 ], [ 4964047.645204892382026, 3894355.473587501328439 ], [ 4964076.154411892406642, 3894361.345054075587541 ], [ 4964074.123452175408602, 3894370.445044414605945 ], [ 4964107.528006386943161, 3894377.416730171535164 ], [ 4964096.499694102443755, 3894428.741344946902245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965233.361588253639638, 3897678.611747893504798 ], [ 4965265.615573888644576, 3897681.941713059321046 ], [ 4965258.008159320801497, 3897754.391082141082734 ], [ 4965225.466230568476021, 3897751.060654740314931 ], [ 4965233.361588253639638, 3897678.611747893504798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965204.919339717365801, 3900275.90485239867121 ], [ 4965241.794932268559933, 3900269.046708554960787 ], [ 4965245.221155758015811, 3900287.258833392523229 ], [ 4965255.304802039638162, 3900285.090559421107173 ], [ 4965259.586672257632017, 3900308.401911976747215 ], [ 4965212.627496764995158, 3900317.428317803889513 ], [ 4965204.919339717365801, 3900275.90485239867121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965102.92767343763262, 3899946.564462220296264 ], [ 4965114.801868752576411, 3899906.165380862541497 ], [ 4965143.300791411660612, 3899914.586903267540038 ], [ 4965131.426556911319494, 3899954.985972246620804 ], [ 4965102.92767343763262, 3899946.564462220296264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964013.441449084319174, 3906797.025844962801784 ], [ 4963955.24557497818023, 3906818.052932050544769 ], [ 4963937.471885529346764, 3906768.866904323454946 ], [ 4963995.379919325001538, 3906747.839321332983673 ], [ 4964013.441449084319174, 3906797.025844962801784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963964.016141732223332, 3907640.276576208882034 ], [ 4963936.941528144292533, 3907646.423792593646795 ], [ 4963929.221971895545721, 3907612.183128098025918 ], [ 4963956.008115885779262, 3907606.399577441159636 ], [ 4963964.016141732223332, 3907640.276576208882034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963915.543078493326902, 3893735.151989366393536 ], [ 4963950.388245654292405, 3893742.489891241304576 ], [ 4963939.647470231167972, 3893794.179136822931468 ], [ 4963904.802367210388184, 3893786.841248645912856 ], [ 4963915.543078493326902, 3893735.151989366393536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964924.810428536497056, 3902507.204473046585917 ], [ 4964888.527541888877749, 3902505.689009699504822 ], [ 4964889.732670273631811, 3902472.919193737674505 ], [ 4964926.015601095743477, 3902474.434658683370799 ], [ 4964924.810428536497056, 3902507.204473046585917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964917.122332686558366, 3899440.120969181880355 ], [ 4964903.248124504461884, 3899470.685364030301571 ], [ 4964877.058061840943992, 3899458.990675535518676 ], [ 4964880.238002966158092, 3899451.713234434835613 ], [ 4964824.404615390114486, 3899426.497678914573044 ], [ 4964835.098820190876722, 3899403.210690012667328 ], [ 4964917.122332686558366, 3899440.120969181880355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964927.926518741063774, 3891726.059087547473609 ], [ 4964963.92402386944741, 3891734.856676874682307 ], [ 4964956.093405078165233, 3891766.887253250461072 ], [ 4964920.384033697657287, 3891758.09014219744131 ], [ 4964927.926518741063774, 3891726.059087547473609 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964886.94996030908078, 3902945.192398004699498 ], [ 4964918.317770631052554, 3902958.352062708232552 ], [ 4964901.550847421400249, 3902998.01509304670617 ], [ 4964870.183075276203454, 3902984.855447597336024 ], [ 4964886.94996030908078, 3902945.192398004699498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964653.265332359820604, 3906595.958612171933055 ], [ 4964673.924227609299123, 3906640.780191759578884 ], [ 4964624.36256751883775, 3906663.640442348551005 ], [ 4964593.37263295520097, 3906597.318462518509477 ], [ 4964615.272098672576249, 3906587.158108299132437 ], [ 4964625.602471702732146, 3906609.022685076110065 ], [ 4964653.265332359820604, 3906595.958612171933055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963402.313334925100207, 3902844.143259495031089 ], [ 4963442.328652472235262, 3902852.581063142046332 ], [ 4963435.655510820448399, 3902884.249972205609083 ], [ 4963395.6402383800596, 3902875.81217832909897 ], [ 4963402.313334925100207, 3902844.143259495031089 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964531.531282249838114, 3902266.241904808208346 ], [ 4964543.976047710515559, 3902228.028221203945577 ], [ 4964563.548791293054819, 3902234.249981659930199 ], [ 4964567.022758740000427, 3902222.967527691740543 ], [ 4964590.912869287654757, 3902230.652790155727416 ], [ 4964574.994071874767542, 3902280.148904881440103 ], [ 4964531.531282249838114, 3902266.241904808208346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963325.850778168998659, 3893371.550253938883543 ], [ 4963278.576699160039425, 3893390.411004304420203 ], [ 4963263.941166180185974, 3893354.339376619551331 ], [ 4963311.215298231691122, 3893335.478600912261754 ], [ 4963325.850778168998659, 3893371.550253938883543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963117.758623851463199, 3900648.355002322234213 ], [ 4963135.098094617947936, 3900610.148330919910222 ], [ 4963156.970652119256556, 3900620.013946414459497 ], [ 4963139.3431585598737, 3900658.220155066810548 ], [ 4963117.758623851463199, 3900648.355002322234213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963050.303863188251853, 3893650.407215111888945 ], [ 4963038.255733996629715, 3893617.616887887939811 ], [ 4963073.420521275140345, 3893604.927062146365643 ], [ 4963092.641540035605431, 3893656.299139816779643 ], [ 4963066.123528711497784, 3893666.089358177036047 ], [ 4963058.951152612455189, 3893647.14350222889334 ], [ 4963050.303863188251853, 3893650.407215111888945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964325.648740908131003, 3904407.001311844680458 ], [ 4964326.570983954705298, 3904370.589668400585651 ], [ 4964368.899673783220351, 3904371.38581644045189 ], [ 4964368.264746967703104, 3904408.162050765007734 ], [ 4964325.648740908131003, 3904407.001311844680458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964252.113489582203329, 3894392.212784649804235 ], [ 4964234.834238719195127, 3894389.27211765665561 ], [ 4964233.379357506521046, 3894398.373017332516611 ], [ 4964187.011929803527892, 3894391.380467594601214 ], [ 4964194.577243057079613, 3894344.055777789559215 ], [ 4964258.224025253206491, 3894353.989011242985725 ], [ 4964252.113489582203329, 3894392.212784649804235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964229.935893611982465, 3900514.654048944357783 ], [ 4964223.901876545511186, 3900505.905271608848125 ], [ 4964246.102896630764008, 3900490.283173352014273 ], [ 4964274.263340726494789, 3900530.018447482492775 ], [ 4964239.375811111181974, 3900554.7234868388623 ], [ 4964217.249942764639854, 3900523.372893774881959 ], [ 4964229.935893611982465, 3900514.654048944357783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964201.092922996729612, 3900361.309064918197691 ], [ 4964155.25132554396987, 3900392.186923623550683 ], [ 4964138.011948112398386, 3900366.670285550877452 ], [ 4964183.85356914345175, 3900335.792397912591696 ], [ 4964201.092922996729612, 3900361.309064918197691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962878.997917522676289, 3893587.147111911326647 ], [ 4962900.522213751450181, 3893639.61500437464565 ], [ 4962869.679213593713939, 3893651.947617918718606 ], [ 4962848.154303727671504, 3893599.843877737876028 ], [ 4962878.997917522676289, 3893587.147111911326647 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962784.945751020684838, 3893491.235755776520818 ], [ 4962786.05754370149225, 3893517.454748444724828 ], [ 4962730.167154133319855, 3893519.917355671990663 ], [ 4962728.497135430574417, 3893482.045382031239569 ], [ 4962763.644522123970091, 3893480.643118371255696 ], [ 4962764.203240836039186, 3893491.931974391918629 ], [ 4962784.945751020684838, 3893491.235755776520818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962697.397118614986539, 3897210.680534151848406 ], [ 4962647.277916789054871, 3897211.331558842211962 ], [ 4962646.7691406654194, 3897167.635222592391074 ], [ 4962661.17147187422961, 3897167.293277347460389 ], [ 4962660.932802041061223, 3897135.24950503045693 ], [ 4962705.291430911980569, 3897134.589620824437588 ], [ 4962705.793935302644968, 3897182.291373459622264 ], [ 4962697.152877867221832, 3897182.278048092033714 ], [ 4962697.397118614986539, 3897210.680534151848406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962649.7745576268062, 3897086.438952174969018 ], [ 4962650.705966277979314, 3897042.744837241712958 ], [ 4962665.39584016893059, 3897042.767466633114964 ], [ 4962666.007259098812938, 3897019.828245638404042 ], [ 4962701.434685629792511, 3897020.611113654915243 ], [ 4962700.179221143946052, 3897087.609019949100912 ], [ 4962649.7745576268062, 3897086.438952174969018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963952.366243966855109, 3905006.129768514074385 ], [ 4963954.031456895172596, 3905045.458600696176291 ], [ 4963928.977985872887075, 3905046.511192411649972 ], [ 4963927.60068775061518, 3905007.182819072622806 ], [ 4963952.366243966855109, 3905006.129768514074385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963873.344792130403221, 3894186.604934936854988 ], [ 4963865.79270017053932, 3894225.918893011752516 ], [ 4963802.436419988051057, 3894214.166404983028769 ], [ 4963812.314292978495359, 3894161.383339399471879 ], [ 4963836.216983372345567, 3894165.790741661097854 ], [ 4963833.603033867664635, 3894179.259373297914863 ], [ 4963873.344792130403221, 3894186.604934936854988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962627.802630559541285, 3893583.482151008676738 ], [ 4962636.471752038225532, 3893566.017311636824161 ], [ 4962659.212210812605917, 3893577.340323339216411 ], [ 4962634.073550834320486, 3893626.823135227430612 ], [ 4962600.106659267097712, 3893610.020941864233464 ], [ 4962616.288642783649266, 3893577.638370390981436 ], [ 4962627.802630559541285, 3893583.482151008676738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962418.376280939206481, 3899035.270320186857134 ], [ 4962433.10188901424408, 3899011.260299099609256 ], [ 4962475.113079070113599, 3899036.813802291173488 ], [ 4962460.099432242102921, 3899060.823359122499824 ], [ 4962418.376280939206481, 3899035.270320186857134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962408.668204505927861, 3896534.776596608106047 ], [ 4962447.911142863333225, 3896489.684660319704562 ], [ 4962469.19838229753077, 3896507.923766802996397 ], [ 4962459.676233659498394, 3896518.833050727378577 ], [ 4962480.100432517006993, 3896536.342584192752838 ], [ 4962441.145549651235342, 3896581.4349161144346 ], [ 4962426.18746205046773, 3896568.303337931632996 ], [ 4962435.421537676826119, 3896557.393600484821945 ], [ 4962408.668204505927861, 3896534.776596608106047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962336.674384421668947, 3896900.616603506729007 ], [ 4962372.103648164309561, 3896900.306651356630027 ], [ 4962372.114232206717134, 3896893.388206347823143 ], [ 4962390.549243490211666, 3896893.052285564597696 ], [ 4962391.058442696928978, 3896936.748609868809581 ], [ 4962361.101389455609024, 3896937.431035272777081 ], [ 4962361.363809442147613, 3896954.181395812425762 ], [ 4962337.456124396063387, 3896954.508970788680017 ], [ 4962336.674384421668947, 3896900.616603506729007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963682.620035822503269, 3900770.132162260822952 ], [ 4963685.512652317993343, 3900762.125860396772623 ], [ 4963707.100914405658841, 3900769.442563275340945 ], [ 4963691.765781466849148, 3900814.570513379760087 ], [ 4963650.604136287234724, 3900800.668588611762971 ], [ 4963663.046596569009125, 3900763.546919336542487 ], [ 4963682.620035822503269, 3900770.132162260822952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961883.745959827676415, 3896796.87945983139798 ], [ 4961887.818146530538797, 3896770.668291669338942 ], [ 4961915.463343331590295, 3896775.079654068686068 ], [ 4961911.39168113283813, 3896800.926689434796572 ], [ 4961883.745959827676415, 3896796.87945983139798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961462.993789244443178, 3899057.492415453307331 ], [ 4961426.892288729548454, 3899124.074215974658728 ], [ 4961394.372762015089393, 3899106.547385903075337 ], [ 4961405.635252932086587, 3899086.537060002796352 ], [ 4961415.707610254175961, 3899092.01405984070152 ], [ 4961440.834590350277722, 3899045.442982065491378 ], [ 4961462.993789244443178, 3899057.492415453307331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961428.946013513021171, 3899291.577094612643123 ], [ 4961443.95262024924159, 3899271.572379870340228 ], [ 4961469.844898874871433, 3899290.910004384350032 ], [ 4961454.55027115996927, 3899310.914274080190808 ], [ 4961428.946013513021171, 3899291.577094612643123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961430.872309227474034, 3897810.299638053402305 ], [ 4961423.919896017760038, 3897836.870715470984578 ], [ 4961389.65758656617254, 3897828.08041533594951 ], [ 4961396.610511999577284, 3897801.145200305618346 ], [ 4961430.872309227474034, 3897810.299638053402305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961412.156506824307144, 3896071.189044577069581 ], [ 4961399.660618211142719, 3896144.724505938589573 ], [ 4961360.784138880670071, 3896138.112139347940683 ], [ 4961369.211938563734293, 3896088.23899563960731 ], [ 4961381.019146314822137, 3896090.077266910113394 ], [ 4961385.086598343215883, 3896066.779061755631119 ], [ 4961412.156506824307144, 3896071.189044577069581 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962891.3598747048527, 3904200.098773758392781 ], [ 4962890.384840681217611, 3904271.831100128591061 ], [ 4962918.604285368695855, 3904272.23897315049544 ], [ 4962917.984327433630824, 3904300.640242759604007 ], [ 4962872.19997910130769, 3904299.841027837712318 ], [ 4962871.886640878394246, 3904316.226445131003857 ], [ 4962868.431699179112911, 3904315.856962995138019 ], [ 4962867.769500490278006, 3904371.568007529247552 ], [ 4962809.027151803486049, 3904370.748835096135736 ], [ 4962810.004218460991979, 3904297.559980250895023 ], [ 4962788.69581506960094, 3904297.162903110962361 ], [ 4962789.647499383427203, 3904240.359913432504982 ], [ 4962829.385362948291004, 3904240.785500168334693 ], [ 4962830.025511309504509, 3904199.275539695750922 ], [ 4962891.3598747048527, 3904200.098773758392781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962862.636729578487575, 3895409.951717345509678 ], [ 4962850.789314221590757, 3895433.965909391175956 ], [ 4962816.536227278411388, 3895417.527107399422675 ], [ 4962828.095564795657992, 3895393.51245494466275 ], [ 4962862.636729578487575, 3895409.951717345509678 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961115.087310428731143, 3900793.875060885213315 ], [ 4961130.994120324030519, 3900748.746495924890041 ], [ 4961166.111370965838432, 3900761.179060258436948 ], [ 4961149.916512951254845, 3900806.307177210692316 ], [ 4961115.087310428731143, 3900793.875060885213315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962609.963678248226643, 3899747.074633777607232 ], [ 4962636.724290212616324, 3899762.773424427490681 ], [ 4962604.095392918214202, 3899817.342726436909288 ], [ 4962577.334816376678646, 3899801.643967754673213 ], [ 4962609.963678248226643, 3899747.074633777607232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962503.31790872849524, 3897549.022543494589627 ], [ 4962515.175826283171773, 3897517.361463096924126 ], [ 4962545.402367800474167, 3897528.331773765850812 ], [ 4962533.543860165402293, 3897560.356969873420894 ], [ 4962503.31790872849524, 3897549.022543494589627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960845.238991762511432, 3891795.110928128007799 ], [ 4960878.659923696890473, 3891793.703655820339918 ], [ 4960880.337490952573717, 3891828.298328584525734 ], [ 4960846.628509326837957, 3891829.705174528062344 ], [ 4960845.238991762511432, 3891795.110928128007799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960800.342214269563556, 3900182.399429030250758 ], [ 4960809.018751636147499, 3900157.651343556586653 ], [ 4960845.288936669006944, 3900170.085179925896227 ], [ 4960836.323830577544868, 3900195.196959112305194 ], [ 4960800.342214269563556, 3900182.399429030250758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962304.096528753638268, 3900879.779117072466761 ], [ 4962284.476689241826534, 3900903.417630659416318 ], [ 4962277.573694011196494, 3900897.581005595624447 ], [ 4962261.705051547847688, 3900916.491567304357886 ], [ 4962239.844625807367265, 3900898.615828360896558 ], [ 4962275.33309480920434, 3900856.066719684749842 ], [ 4962304.096528753638268, 3900879.779117072466761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962234.467948073521256, 3899325.200895115733147 ], [ 4962278.790712761692703, 3899345.659800657071173 ], [ 4962266.077617912553251, 3899372.221892168745399 ], [ 4962221.755442513152957, 3899351.39887805422768 ], [ 4962234.467948073521256, 3899325.200895115733147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962005.8610037593171, 3896616.091977289412171 ], [ 4961997.735129311680794, 3896656.133900218643248 ], [ 4961961.453558879904449, 3896648.432206888217479 ], [ 4961969.578829964622855, 3896608.75440180208534 ], [ 4962005.8610037593171, 3896616.091977289412171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960590.547717502340674, 3893578.238925378769636 ], [ 4960601.244293506257236, 3893552.401436639484018 ], [ 4960628.882343392819166, 3893564.09402769850567 ], [ 4960635.530984738841653, 3893548.44622961897403 ], [ 4960658.8511155936867, 3893557.947753161657602 ], [ 4960637.747551675885916, 3893608.530727624893188 ], [ 4960604.350743212737143, 3893595.009052322246134 ], [ 4960608.109561556018889, 3893585.547206435352564 ], [ 4960590.547717502340674, 3893578.238925378769636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960470.720744132995605, 3897913.386716477572918 ], [ 4960480.001926000230014, 3897869.340565266087651 ], [ 4960510.811336238868535, 3897875.939883809536695 ], [ 4960501.530637851916254, 3897919.621895605698228 ], [ 4960470.720744132995605, 3897913.386716477572918 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961963.08797746244818, 3894808.489443511236459 ], [ 4961899.157776536419988, 3894795.648179813288152 ], [ 4961906.125755367800593, 3894759.609938953537494 ], [ 4961970.34465139079839, 3894772.08752705482766 ], [ 4961963.08797746244818, 3894808.489443511236459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961761.771115417592227, 3896121.235259260050952 ], [ 4961747.526817744597793, 3896207.512455625459552 ], [ 4961716.425557079724967, 3896202.367806607391685 ], [ 4961730.669757580384612, 3896116.090594021603465 ], [ 4961761.771115417592227, 3896121.235259260050952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960430.916509662754834, 3898149.648869310971349 ], [ 4960439.908989590592682, 3898105.966407212428749 ], [ 4960468.703023840673268, 3898111.834480903111398 ], [ 4960459.99852386303246, 3898155.517353675328195 ], [ 4960430.916509662754834, 3898149.648869310971349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960147.077224556356668, 3907792.51317894179374 ], [ 4960120.882157796993852, 3907788.469819854479283 ], [ 4960118.554028027690947, 3907805.580650933086872 ], [ 4960064.723770137876272, 3907797.85606533056125 ], [ 4960071.701754042878747, 3907750.893132955767214 ], [ 4960080.049387109465897, 3907752.361722721718252 ], [ 4960081.505310502834618, 3907741.075738451909274 ], [ 4960109.140566273592412, 3907744.757009879220277 ], [ 4960107.684631465002894, 3907756.042992671020329 ], [ 4960151.439277377910912, 3907762.660679006017745 ], [ 4960147.077224556356668, 3907792.51317894179374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961579.148851336911321, 3898425.172777615953237 ], [ 4961601.887824123725295, 3898435.038411166984588 ], [ 4961593.218203000724316, 3898454.324279584456235 ], [ 4961570.479243383742869, 3898444.458653245121241 ], [ 4961579.148851336911321, 3898425.172777615953237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961526.472015486098826, 3892059.751846906729043 ], [ 4961571.113426570780575, 3892068.193716518115252 ], [ 4961565.30575936101377, 3892098.77180036297068 ], [ 4961572.793907590210438, 3892100.239544219803065 ], [ 4961567.857612215913832, 3892126.085264483001083 ], [ 4961515.440060701221228, 3892116.175238458905369 ], [ 4961526.472015486098826, 3892059.751846906729043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959961.628561904653907, 3897415.247587293852121 ], [ 4959976.17708944529295, 3897313.312258407007903 ], [ 4959960.3383743846789, 3897311.104666473343968 ], [ 4959963.53873748332262, 3897288.89737144112587 ], [ 4960052.811438011936843, 3897301.406500019598752 ], [ 4960046.11728338804096, 3897349.461942408699542 ], [ 4960108.032369347289205, 3897357.926357720512897 ], [ 4960105.701784278266132, 3897376.12946835020557 ], [ 4960158.689345986582339, 3897383.488708178512752 ], [ 4960128.42369278986007, 3897597.917261985130608 ], [ 4960079.756482831202447, 3897590.928450712468475 ], [ 4960096.634354351088405, 3897471.882448865100741 ], [ 4960090.011193480342627, 3897470.78048899024725 ], [ 4960095.248920761048794, 3897434.010967007372528 ], [ 4959961.628561904653907, 3897415.247587293852121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961189.877007847651839, 3895426.713190191891044 ], [ 4961195.107431653887033, 3895396.134109598118812 ], [ 4961216.12998828291893, 3895399.806648403406143 ], [ 4961217.581629100255668, 3895392.16209365054965 ], [ 4961274.02620143443346, 3895401.713433443102986 ], [ 4961267.343493587337434, 3895440.30117934755981 ], [ 4961189.877007847651839, 3895426.713190191891044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961117.781946279108524, 3908876.500482868403196 ], [ 4961132.115285255946219, 3908918.396953449584544 ], [ 4961115.696340222842991, 3908923.834569286089391 ], [ 4961117.702520993538201, 3908930.027792890090495 ], [ 4961084.287759447470307, 3908941.630461346823722 ], [ 4961079.700644172728062, 3908928.51490286923945 ], [ 4961061.841090266592801, 3908934.678680424112827 ], [ 4961049.800140886567533, 3908900.068285864777863 ], [ 4961061.322463229298592, 3908896.079902562778443 ], [ 4961058.167864738032222, 3908887.700188850983977 ], [ 4961103.968750753439963, 3908872.110404151957482 ], [ 4961106.548057178966701, 3908880.125137632247061 ], [ 4961117.781946279108524, 3908876.500482868403196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961108.569732303731143, 3893146.417014352977276 ], [ 4961175.967121336609125, 3893155.256112372968346 ], [ 4961170.721691900864244, 3893195.666610243730247 ], [ 4961161.504818695597351, 3893194.56053924234584 ], [ 4961158.881305828690529, 3893215.311981691513211 ], [ 4961119.710291107185185, 3893210.156059060711414 ], [ 4961124.08006482757628, 3893177.390955230686814 ], [ 4961104.782606589607894, 3893174.813439258374274 ], [ 4961108.569732303731143, 3893146.417014352977276 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959892.891087790951133, 3896943.23678518505767 ], [ 4959912.471897713840008, 3896947.270366178825498 ], [ 4959909.572143237106502, 3896960.738987064454705 ], [ 4959918.786204192787409, 3896962.937017516233027 ], [ 4959912.697610336355865, 3896990.602101800963283 ], [ 4959870.944757727906108, 3896981.802971293684095 ], [ 4959877.322918041609228, 3896953.045905367471278 ], [ 4959890.28042723890394, 3896955.977564707864076 ], [ 4959892.891087790951133, 3896943.23678518505767 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959853.624658006243408, 3908034.60182278463617 ], [ 4959780.738343321718276, 3908064.356022946536541 ], [ 4959767.827418206259608, 3908032.658032421022654 ], [ 4959840.713804427534342, 3908002.90379782859236 ], [ 4959853.624658006243408, 3908034.60182278463617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959809.710303495638072, 3909343.229492158163339 ], [ 4959837.380555143579841, 3909321.421283781994134 ], [ 4959852.899182832799852, 3909341.106716725509614 ], [ 4959825.51684351451695, 3909362.915322742424905 ], [ 4959809.710303495638072, 3909343.229492158163339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959775.210640824399889, 3899466.851293785031885 ], [ 4959717.881384688429534, 3899477.328952901996672 ], [ 4959708.733819130808115, 3899429.250697132665664 ], [ 4959734.950134925544262, 3899424.190401883330196 ], [ 4959736.664124356582761, 3899434.024367036763579 ], [ 4959768.065685572102666, 3899428.243269371800125 ], [ 4959775.210640824399889, 3899466.851293785031885 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959674.058992106467485, 3893060.214734450448304 ], [ 4959627.09476972091943, 3893065.245453016832471 ], [ 4959621.694022672250867, 3893014.259731975384057 ], [ 4959668.658333073370159, 3893009.229004129301757 ], [ 4959674.058992106467485, 3893060.214734450448304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960974.470857177861035, 3895581.877182338386774 ], [ 4960963.702638546936214, 3895656.507764577865601 ], [ 4960931.159258117899299, 3895652.090154908131808 ], [ 4960932.9074567258358, 3895638.619953748304397 ], [ 4960926.859444052912295, 3895637.882767748553306 ], [ 4960932.969810599461198, 3895596.381054764147848 ], [ 4960944.201159594580531, 3895598.218283188529313 ], [ 4960947.399846833199263, 3895577.831769980955869 ], [ 4960974.470857177861035, 3895581.877182338386774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959574.466197990812361, 3908957.276919944211841 ], [ 4959593.720769197680056, 3908982.065377461258322 ], [ 4959553.656282342039049, 3909013.687728277407587 ], [ 4959534.113788228482008, 3908988.898888750001788 ], [ 4959574.466197990812361, 3908957.276919944211841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959516.858942514285445, 3892793.448357574176043 ], [ 4959536.43194336630404, 3892805.128340072929859 ], [ 4959531.523139886558056, 3892813.132179139647633 ], [ 4959552.823574104346335, 3892825.54289076756686 ], [ 4959530.87646144721657, 3892862.652749615721405 ], [ 4959490.002549052238464, 3892838.926219721324742 ], [ 4959516.858942514285445, 3892793.448357574176043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959257.996847381815314, 3899428.245395455975085 ], [ 4959259.492516682483256, 3899388.921468320768327 ], [ 4959291.74826998449862, 3899390.059492689557374 ], [ 4959292.336146987043321, 3899381.685334379319102 ], [ 4959318.543662619777024, 3899382.814830963499844 ], [ 4959316.748549619689584, 3899430.149191231932491 ], [ 4959257.996847381815314, 3899428.245395455975085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959098.750748111866415, 3906158.61366465780884 ], [ 4959110.516231511719525, 3906187.032497186213732 ], [ 4959087.179348360747099, 3906196.831177034880966 ], [ 4959075.126418231986463, 3906168.047818444669247 ], [ 4959098.750748111866415, 3906158.61366465780884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960502.935925113968551, 3901887.550222764257342 ], [ 4960542.365357504226267, 3901904.357847998850048 ], [ 4960528.207278084009886, 3901936.38064449140802 ], [ 4960489.066400036215782, 3901919.209330358542502 ], [ 4960502.935925113968551, 3901887.550222764257342 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960445.580282215960324, 3895006.50500576198101 ], [ 4960496.82015138771385, 3895030.248156431131065 ], [ 4960482.372596772387624, 3895060.813911945559084 ], [ 4960431.420831460505724, 3895037.07120823347941 ], [ 4960445.580282215960324, 3895006.50500576198101 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959033.742253165692091, 3898532.897859109099954 ], [ 4959019.295164208859205, 3898565.64923903439194 ], [ 4958976.694207035936415, 3898547.018789248540998 ], [ 4958980.161699566058815, 3898539.012800241354853 ], [ 4958964.042758213356137, 3898531.707581964321434 ], [ 4958975.021789695136249, 3898507.326291134115309 ], [ 4959033.742253165692091, 3898532.897859109099954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960007.085448513738811, 3909431.9976203488186 ], [ 4960017.4153150934726, 3909456.045252731535584 ], [ 4960001.571156655438244, 3909462.576776586472988 ], [ 4960014.483741035684943, 3909492.454249900765717 ], [ 4959979.04958532191813, 3909507.696704529691488 ], [ 4959956.095493242144585, 3909453.407918221317232 ], [ 4960007.085448513738811, 3909431.9976203488186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959926.737661253660917, 3899043.585723381023854 ], [ 4959966.468562201596797, 3899054.202693100087345 ], [ 4959958.361136048100889, 3899084.049672687891871 ], [ 4959918.630276065319777, 3899073.432714771013707 ], [ 4959926.737661253660917, 3899043.585723381023854 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959930.808022632263601, 3892811.518929268699139 ], [ 4959924.115610389970243, 3892857.753635766915977 ], [ 4959895.313732656650245, 3892853.342674977146089 ], [ 4959896.477051416411996, 3892845.697646191343665 ], [ 4959880.63569631613791, 3892843.490106952376664 ], [ 4959886.455417700111866, 3892803.080193698406219 ], [ 4959899.41649812925607, 3892804.919466759543866 ], [ 4959900.579296611249447, 3892797.638566219713539 ], [ 4959916.420677123591304, 3892799.846117144450545 ], [ 4959914.966650173068047, 3892809.31136984564364 ], [ 4959930.808022632263601, 3892811.518929268699139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958655.583733378909528, 3901213.458938928321004 ], [ 4958671.447125508449972, 3901196.366893231868744 ], [ 4958715.454608499072492, 3901236.118418589234352 ], [ 4958699.590704345144331, 3901253.574568434618413 ], [ 4958655.583733378909528, 3901213.458938928321004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959881.252005225047469, 3898828.68365091085434 ], [ 4959936.259175041690469, 3898831.67580648791045 ], [ 4959933.602033284492791, 3898876.82409134041518 ], [ 4959911.426288640126586, 3898875.699794997926801 ], [ 4959910.834018094465137, 3898886.986970548983663 ], [ 4959891.538450843654573, 3898885.86683352664113 ], [ 4959892.131760307587683, 3898873.851399225648493 ], [ 4959878.884019347839057, 3898873.104096720460802 ], [ 4959881.252005225047469, 3898828.68365091085434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959634.753949978388846, 3899401.835190359503031 ], [ 4959661.249443496577442, 3899402.96543243015185 ], [ 4959660.654687121510506, 3899416.073263487778604 ], [ 4959680.813916966319084, 3899417.194470519665629 ], [ 4959678.442146479152143, 3899464.527983977925032 ], [ 4959631.787517999298871, 3899462.276539494283497 ], [ 4959634.753949978388846, 3899401.835190359503031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958203.181099741719663, 3905586.773198779672384 ], [ 4958231.076704302802682, 3905612.300770402420312 ], [ 4958210.024671792052686, 3905635.576214155647904 ], [ 4958181.841126545332372, 3905610.048268273007125 ], [ 4958203.181099741719663, 3905586.773198779672384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959382.076706458814442, 3899262.741990454029292 ], [ 4959388.196280206553638, 3899212.500735079869628 ], [ 4959438.589846218936145, 3899218.762497664429247 ], [ 4959433.346116022206843, 3899260.62999628437683 ], [ 4959410.309213683009148, 3899257.684239396359771 ], [ 4959409.433284398168325, 3899266.057985598221421 ], [ 4959382.076706458814442, 3899262.741990454029292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959304.513382855802774, 3907662.403980634640902 ], [ 4959242.274658476002514, 3907695.816035757772624 ], [ 4959218.1524493759498, 3907650.993721324019134 ], [ 4959251.576759959571064, 3907633.198512440081686 ], [ 4959247.844056415371597, 3907625.910596725065261 ], [ 4959261.386755778454244, 3907618.647114986088127 ], [ 4959263.397068163380027, 3907622.291277363430709 ], [ 4959302.872996219433844, 3907600.863376331981272 ], [ 4959321.825907625257969, 3907636.211012662854046 ], [ 4959297.333871235139668, 3907649.28506695991382 ], [ 4959304.513382855802774, 3907662.403980634640902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959282.297600192017853, 3901590.849392978940159 ], [ 4959336.441925595514476, 3901589.105416236910969 ], [ 4959338.098123126663268, 3901639.72190348431468 ], [ 4959322.257779859006405, 3901640.427720111329108 ], [ 4959321.983203940093517, 3901630.959937910549343 ], [ 4959283.678794863633811, 3901632.362224904820323 ], [ 4959282.297600192017853, 3901590.849392978940159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959106.391379313543439, 3899302.77071320777759 ], [ 4959113.385240026749671, 3899244.883896563667804 ], [ 4959151.396300096996129, 3899249.671160217374563 ], [ 4959147.607462248764932, 3899281.345126590225846 ], [ 4959158.837905396707356, 3899282.817483787424862 ], [ 4959155.632791089825332, 3899309.030323004815727 ], [ 4959106.391379313543439, 3899302.77071320777759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959042.498076600953937, 3904594.954552056733519 ], [ 4959088.628432270139456, 3904554.236778487917036 ], [ 4959116.228619111701846, 3904585.226803911849856 ], [ 4959091.721599822863936, 3904607.040151593275368 ], [ 4959113.284414377994835, 3904631.103181748650968 ], [ 4959091.66058053728193, 3904650.371674404479563 ], [ 4959042.498076600953937, 3904594.954552056733519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958992.425105229951441, 3899651.082876460626721 ], [ 4958989.794168002903461, 3899678.753067544661462 ], [ 4958956.965796976350248, 3899675.429821116384119 ], [ 4958959.59670072235167, 3899647.759626883082092 ], [ 4958992.425105229951441, 3899651.082876460626721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957613.395158659666777, 3901171.610165528953075 ], [ 4957630.467551982961595, 3901111.915889523923397 ], [ 4957671.922773175872862, 3901123.624208730645478 ], [ 4957660.638261328451335, 3901162.5708680851385 ], [ 4957643.653108178637922, 3901157.814167659729719 ], [ 4957637.577161634340882, 3901178.561372065916657 ], [ 4957613.395158659666777, 3901171.610165528953075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957269.209411658346653, 3893458.883198317140341 ], [ 4957332.899921512231231, 3893439.669786353129894 ], [ 4957344.372091634199023, 3893477.554571825545281 ], [ 4957280.681663224473596, 3893496.767957039177418 ], [ 4957269.209411658346653, 3893458.883198317140341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958594.393111136741936, 3900896.944554379209876 ], [ 4958583.395668562501669, 3900935.52709145937115 ], [ 4958558.925695110112429, 3900928.574635128956288 ], [ 4958569.923105363734066, 3900889.992088198661804 ], [ 4958594.393111136741936, 3900896.944554379209876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958516.364145142957568, 3905037.367433339823037 ], [ 4958529.869051430374384, 3905058.141646613366902 ], [ 4958517.476054865866899, 3905066.135344060603529 ], [ 4958531.267380771227181, 3905088.002349418122321 ], [ 4958507.346282478421926, 3905103.262685644906014 ], [ 4958495.277601663954556, 3905085.039392500184476 ], [ 4958481.443866387009621, 3905093.759372315835208 ], [ 4958463.054872530512512, 3905064.967531364411116 ], [ 4958495.33412741869688, 3905044.256770661566406 ], [ 4958498.207075907848775, 3905048.994459009729326 ], [ 4958516.364145142957568, 3905037.367433339823037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957022.886906446889043, 3891740.231832638848573 ], [ 4957068.107893557287753, 3891747.574607161805034 ], [ 4957064.041115903295577, 3891772.694044866133481 ], [ 4957018.820654409006238, 3891764.987149383872747 ], [ 4957022.886906446889043, 3891740.231832638848573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956930.072635916993022, 3900022.955801436677575 ], [ 4956918.468360472470522, 3900086.299039571546018 ], [ 4956910.981702513061464, 3900085.196714697405696 ], [ 4956907.209146710112691, 3900106.675386975053698 ], [ 4956881.007066261954606, 3900101.906946232542396 ], [ 4956896.383800298906863, 3900017.08501788508147 ], [ 4956930.072635916993022, 3900022.955801436677575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958214.544197945855558, 3898999.301520715001971 ], [ 4958204.142588081769645, 3899023.319792088586837 ], [ 4958172.191372795961797, 3899009.803075099363923 ], [ 4958182.304943361319602, 3898985.784395807888359 ], [ 4958214.544197945855558, 3898999.301520715001971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956740.207600561901927, 3896149.092802886385471 ], [ 4956723.456705897115171, 3896182.570585381705314 ], [ 4956667.324205490760505, 3896154.822743916418403 ], [ 4956684.075047400780022, 3896121.344926985912025 ], [ 4956740.207600561901927, 3896149.092802886385471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957821.002425174228847, 3905006.917467577848583 ], [ 4957823.91117930226028, 3904985.43768411455676 ], [ 4957806.349101875908673, 3904983.228999895974994 ], [ 4957809.545798685401678, 3904961.749606917146593 ], [ 4957815.591797326691449, 3904962.486095620319247 ], [ 4957817.337346782907844, 3904949.379747145343572 ], [ 4957829.141396874561906, 3904950.852337430231273 ], [ 4957831.465336447581649, 3904935.926121225580573 ], [ 4957861.982808451168239, 3904939.973125785123557 ], [ 4957857.912786461412907, 3904968.369815694633871 ], [ 4957863.958782302215695, 3904969.106315279379487 ], [ 4957861.339930411428213, 3904989.129964317660779 ], [ 4957852.99082219414413, 3904988.026196870021522 ], [ 4957849.792109939269722, 3905010.962107231840491 ], [ 4957821.002425174228847, 3905006.917467577848583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957802.31334794126451, 3905621.545664872974157 ], [ 4957774.348055286332965, 3905646.996834791265428 ], [ 4957733.232794056646526, 3905602.152823739219457 ], [ 4957761.197599510662258, 3905577.065742413979024 ], [ 4957802.31334794126451, 3905621.545664872974157 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957457.876700223423541, 3907371.095587982330471 ], [ 4957497.079345570877194, 3907338.012454664334655 ], [ 4957524.101170537993312, 3907370.092514113523066 ], [ 4957484.61061283107847, 3907403.175220370292664 ], [ 4957457.876700223423541, 3907371.095587982330471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957429.113431098870933, 3897723.050403422210366 ], [ 4957427.934358054772019, 3897743.075945694930851 ], [ 4957407.773780810646713, 3897741.956429493613541 ], [ 4957408.952838880009949, 3897721.930886338464916 ], [ 4957429.113431098870933, 3897723.050403422210366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957412.275097374804318, 3907452.235558668151498 ], [ 4957385.179767514578998, 3907474.775275903753936 ], [ 4957338.035878179594874, 3907418.271493232343346 ], [ 4957365.13122527860105, 3907395.731729240622371 ], [ 4957412.275097374804318, 3907452.235558668151498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957227.625232268124819, 3898914.940748958848417 ], [ 4957230.252477949485183, 3898888.726914920844138 ], [ 4957264.521617400459945, 3898892.414109540637583 ], [ 4957261.894826506264508, 3898918.263811072800308 ], [ 4957227.625232268124819, 3898914.940748958848417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957221.677665176801383, 3900776.365749893710017 ], [ 4957231.504653407260776, 3900750.161524186376482 ], [ 4957244.170182502828538, 3900754.912177136167884 ], [ 4957260.354606571607292, 3900712.694745331536978 ], [ 4957302.956732159480453, 3900728.773591556120664 ], [ 4957291.685775202699006, 3900757.888896705117077 ], [ 4957283.914251807145774, 3900754.60130354994908 ], [ 4957278.1333232158795, 3900770.251155541744083 ], [ 4957266.907303627580404, 3900765.866545854136348 ], [ 4957257.658718918450177, 3900790.250882383435965 ], [ 4957221.677665176801383, 3900776.365749893710017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956893.267491626553237, 3891722.945645640604198 ], [ 4956843.13676907774061, 3891724.699873224832118 ], [ 4956841.197238734923303, 3891666.436774180736393 ], [ 4956891.328069780021906, 3891664.682543055620044 ], [ 4956893.267491626553237, 3891722.945645640604198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956774.443398591130972, 3897488.406009705737233 ], [ 4956772.132405957207084, 3897493.500769399572164 ], [ 4956732.406593333929777, 3897476.334210800938308 ], [ 4956748.873954569920897, 3897438.850609786342829 ], [ 4956764.131017237901688, 3897445.425095370505005 ], [ 4956766.731007208116353, 3897439.602457910310477 ], [ 4956793.790653323754668, 3897451.290371681097895 ], [ 4956787.434203340671957, 3897466.211278744973242 ], [ 4956820.826664496213198, 3897480.820629766210914 ], [ 4956810.426680299453437, 3897504.111160906497389 ], [ 4956774.443398591130972, 3897488.406009705737233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956161.088794098235667, 3893376.948917494621128 ], [ 4956167.964782755821943, 3893406.088141031097621 ], [ 4956146.064411482773721, 3893411.157505990471691 ], [ 4956149.503356801345944, 3893424.998859719373286 ], [ 4956129.043854127638042, 3893429.70598042011261 ], [ 4956126.46534660924226, 3893418.778774910606444 ], [ 4956092.749649762175977, 3893427.110015837475657 ], [ 4956085.013132249005139, 3893395.056666862685233 ], [ 4956161.088794098235667, 3893376.948917494621128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954740.756120334379375, 3900867.469485318288207 ], [ 4954744.226137022487819, 3900856.185771571006626 ], [ 4954721.48353220988065, 3900848.874833340290934 ], [ 4954731.313952253200114, 3900817.936006504110992 ], [ 4954810.482012775726616, 3900842.795604461804032 ], [ 4954798.628268258646131, 3900879.557961376849562 ], [ 4954781.643340635113418, 3900874.074811122845858 ], [ 4954779.90855235606432, 3900879.534600727725774 ], [ 4954740.756120334379375, 3900867.469485318288207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954651.667972675524652, 3895151.251592442858964 ], [ 4954593.982949536293745, 3895210.533009832724929 ], [ 4954567.225748680531979, 3895184.646672840695828 ], [ 4954592.896212609484792, 3895157.732953229453415 ], [ 4954596.348830685019493, 3895161.014397064689547 ], [ 4954627.787724098190665, 3895128.281803042627871 ], [ 4954651.667972675524652, 3895151.251592442858964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955821.359330028295517, 3900611.397674518637359 ], [ 4955820.161904478445649, 3900646.716766125988215 ], [ 4955806.626460820436478, 3900646.33522916212678 ], [ 4955806.029864853248, 3900662.356192230712622 ], [ 4955774.639490805566311, 3900661.223460080567747 ], [ 4955775.229051714763045, 3900650.664440746419132 ], [ 4955751.326145774684846, 3900649.905485453549773 ], [ 4955752.223796118050814, 3900623.689261538907886 ], [ 4955765.183255187235773, 3900624.070031384937465 ], [ 4955765.777957076206803, 3900609.50558625580743 ], [ 4955821.359330028295517, 3900611.397674518637359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955784.821605152450502, 3893856.020442881155759 ], [ 4955735.830402378924191, 3893870.88683153456077 ], [ 4955728.65945652499795, 3893846.845135358162224 ], [ 4955736.440175903961062, 3893844.670342965051532 ], [ 4955731.563985745422542, 3893828.278294085524976 ], [ 4955742.803434058092535, 3893824.651425071060658 ], [ 4955735.631547800265253, 3893801.337983983568847 ], [ 4955765.026058371178806, 3893792.636617094278336 ], [ 4955769.615565942600369, 3893807.935917351860553 ], [ 4955777.108228472992778, 3893805.760766891296953 ], [ 4955786.001487920060754, 3893834.538361819926649 ], [ 4955778.796903776936233, 3893836.713879839517176 ], [ 4955784.821605152450502, 3893856.020442881155759 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954465.977935194037855, 3895297.765507723670453 ], [ 4954487.557331137359142, 3895317.81927830260247 ], [ 4954461.597270851954818, 3895346.189259185921401 ], [ 4954439.73027282487601, 3895325.771024950779974 ], [ 4954465.977935194037855, 3895297.765507723670453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954290.915455376729369, 3894533.243072382640094 ], [ 4954278.222760573029518, 3894547.792630277108401 ], [ 4954254.338526609353721, 3894527.372079063672572 ], [ 4954267.031218090094626, 3894512.822510068304837 ], [ 4954290.915455376729369, 3894533.243072382640094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954225.197375854477286, 3895974.385096831712872 ], [ 4954226.394684719853103, 3895937.609517940320075 ], [ 4954284.866310027427971, 3895939.501957392785698 ], [ 4954283.956969412043691, 3895976.27788770198822 ], [ 4954225.197375854477286, 3895974.385096831712872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955253.180267920717597, 3900805.118372627533972 ], [ 4955279.376416687853634, 3900814.254784472752362 ], [ 4955275.328794489614666, 3900826.630088642239571 ], [ 4955305.843472034670413, 3900836.864384831860662 ], [ 4955302.375062418170273, 3900846.691507206298411 ], [ 4955317.056857262738049, 3900851.443806590512395 ], [ 4955301.15849100984633, 3900897.668203557375818 ], [ 4955279.856049808673561, 3900890.358617094345391 ], [ 4955284.481500310823321, 3900876.527523779775947 ], [ 4955258.860944780521095, 3900867.755965147167444 ], [ 4955260.305992196314037, 3900863.75236079422757 ], [ 4955248.215235482901335, 3900859.731630430091172 ], [ 4955256.021070432849228, 3900836.073038762435317 ], [ 4955243.93030062597245, 3900832.052310395054519 ], [ 4955253.180267920717597, 3900805.118372627533972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953974.021520091220737, 3894552.518410293851048 ], [ 4953948.946714501827955, 3894563.411764923017472 ], [ 4953959.00057521276176, 3894586.728244568221271 ], [ 4953932.196544573642313, 3894598.347768815234303 ], [ 4953908.928032799623907, 3894545.156673444435 ], [ 4953922.186034888960421, 3894539.346721498295665 ], [ 4953920.174900176934898, 3894534.974730797577649 ], [ 4953959.083868496119976, 3894518.272116538137197 ], [ 4953974.021520091220737, 3894552.518410293851048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953943.812075042165816, 3891205.412267923355103 ], [ 4953917.58043903298676, 3891217.396612072363496 ], [ 4953894.594402571208775, 3891166.390749702695757 ], [ 4953928.896856802515686, 3891151.139038597233593 ], [ 4953936.079875691793859, 3891167.169409244786948 ], [ 4953928.296757928095758, 3891170.801229783799499 ], [ 4953943.812075042165816, 3891205.412267923355103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953707.479523531161249, 3893189.625562781002373 ], [ 4953747.536895240657032, 3893177.657711429987103 ], [ 4953755.857260714285076, 3893205.705671591218561 ], [ 4953715.800366783514619, 3893217.309382694773376 ], [ 4953707.479523531161249, 3893189.625562781002373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953649.037955975160003, 3901043.826823098119348 ], [ 4953641.763941835612059, 3901105.356073678936809 ], [ 4953559.697696150280535, 3901095.425772342365235 ], [ 4953567.259518995881081, 3901033.896846202667803 ], [ 4953649.037955975160003, 3901043.826823098119348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953396.616600297391415, 3895138.79757847962901 ], [ 4953395.215067071840167, 3895106.388422157149762 ], [ 4953481.061438640579581, 3895102.121665630955249 ], [ 4953483.031123983673751, 3895141.085829657968134 ], [ 4953456.528123867698014, 3895142.510580060072243 ], [ 4953455.960298307240009, 3895135.591448817402124 ], [ 4953396.616600297391415, 3895138.79757847962901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953124.887432813644409, 3900801.781718970742077 ], [ 4953074.203073500655591, 3900799.172744316980243 ], [ 4953075.976758508011699, 3900760.577042035758495 ], [ 4953126.949187328107655, 3900763.186361556407064 ], [ 4953124.887432813644409, 3900801.781718970742077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954247.573158549144864, 3894171.974025095812976 ], [ 4954302.530031386762857, 3894224.111958133988082 ], [ 4954279.166634225286543, 3894248.479873712174594 ], [ 4954224.209766062907875, 3894196.341987690888345 ], [ 4954247.573158549144864, 3894171.974025095812976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954176.608734764158726, 3890725.047240765299648 ], [ 4954169.12782755959779, 3890717.027262701187283 ], [ 4954190.183102138340473, 3890697.75426301592961 ], [ 4954216.079043174162507, 3890725.09560738876462 ], [ 4954165.315155972726643, 3890772.005934162065387 ], [ 4954146.900117016397417, 3890752.684607863426208 ], [ 4954176.608734764158726, 3890725.047240765299648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952855.896052572876215, 3891494.321510101202875 ], [ 4952893.670939976349473, 3891465.235686885658652 ], [ 4952927.9029406234622, 3891508.971384263597429 ], [ 4952917.810143464244902, 3891516.970315115060657 ], [ 4952933.344153250567615, 3891536.6515406020917 ], [ 4952898.74094461183995, 3891563.556273261085153 ], [ 4952880.617919646203518, 3891540.594867378473282 ], [ 4952887.826739562675357, 3891535.1414261367172 ], [ 4952855.896052572876215, 3891494.321510101202875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953773.536173718050122, 3893117.972065528389066 ], [ 4953785.352251894772053, 3893113.980948632117361 ], [ 4953782.769676980562508, 3893105.602866198867559 ], [ 4953809.571601657196879, 3893096.896227400284261 ], [ 4953811.580216331407428, 3893103.45297435624525 ], [ 4953842.128504468128085, 3893093.658520130906254 ], [ 4953854.757172118872404, 3893132.271461672149599 ], [ 4953785.590974947437644, 3893154.763637891504914 ], [ 4953773.536173718050122, 3893117.972065528389066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952012.539226057939231, 3892587.184769751504064 ], [ 4952022.715127130970359, 3892505.995777310803533 ], [ 4952050.655652255751193, 3892509.304928937461227 ], [ 4952047.166927200742066, 3892536.974691987968981 ], [ 4952053.503546135500073, 3892538.074336812831461 ], [ 4952046.528607284650207, 3892591.229096273891628 ], [ 4952012.539226057939231, 3892587.184769751504064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952700.427483621053398, 3891898.321555687580258 ], [ 4952781.120110975578427, 3891875.475988894235343 ], [ 4952789.726992258802056, 3891906.072861248627305 ], [ 4952770.706530733034015, 3891911.512479044962674 ], [ 4952776.444026930257678, 3891932.274519586935639 ], [ 4952749.354466379620135, 3891939.889461481012404 ], [ 4952744.190574891865253, 3891921.312868385575712 ], [ 4952709.896167434751987, 3891931.104180758818984 ], [ 4952700.427483621053398, 3891898.321555687580258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951837.128692957572639, 3893570.859923059120774 ], [ 4951834.504958140663803, 3893598.166585981380194 ], [ 4951810.884988195262849, 3893596.319081443361938 ], [ 4951810.300148325972259, 3893603.965118101332337 ], [ 4951758.163786836899817, 3893599.536357963923365 ], [ 4951762.542337597347796, 3893548.927446760237217 ], [ 4951815.254530816338956, 3893553.720998466946185 ], [ 4951814.084847125224769, 3893569.013071268331259 ], [ 4951837.128692957572639, 3893570.859923059120774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951684.140998211689293, 3894352.10652276314795 ], [ 4951721.310950276441872, 3894343.77366641536355 ], [ 4951726.470125455409288, 3894366.719629334751517 ], [ 4951735.978761869482696, 3894364.545637968927622 ], [ 4951749.452151847071946, 3894422.457401609513909 ], [ 4951707.672026386484504, 3894431.877382117323577 ], [ 4951701.078709904104471, 3894403.467865177895874 ], [ 4951690.705895083025098, 3894405.640890362672508 ], [ 4951685.832700895145535, 3894384.51590162049979 ], [ 4951691.307177213951945, 3894383.429713796824217 ], [ 4951684.140998211689293, 3894352.10652276314795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951641.198557280935347, 3890547.644457268994302 ], [ 4951644.896189223974943, 3890589.887484971433878 ], [ 4951660.167448761872947, 3890588.448241300415248 ], [ 4951663.016792427748442, 3890616.48932067444548 ], [ 4951620.948849630542099, 3890620.447175915818661 ], [ 4951620.946381719782948, 3890622.631941185798496 ], [ 4951587.234335913322866, 3890625.871033282484859 ], [ 4951584.675074177794158, 3890596.00964913610369 ], [ 4951593.030964950099587, 3890595.290821959264576 ], [ 4951590.184422316029668, 3890564.70085760531947 ], [ 4951595.370744154788554, 3890564.3425826379098 ], [ 4951594.232291989959776, 3890551.960945903323591 ], [ 4951641.198557280935347, 3890547.644457268994302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951524.680267635732889, 3888609.989038231782615 ], [ 4951533.667161902412772, 3888561.206062501296401 ], [ 4951612.021018836647272, 3888576.223654796369374 ], [ 4951602.456089303828776, 3888626.462462758645415 ], [ 4951580.851087817922235, 3888622.432679606601596 ], [ 4951584.328329460695386, 3888604.958478024229407 ], [ 4951552.929034925997257, 3888599.09703178377822 ], [ 4951550.030118649825454, 3888614.751251101493835 ], [ 4951524.680267635732889, 3888609.989038231782615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951494.946023926138878, 3892502.483833578415215 ], [ 4951489.440455203875899, 3892530.879656210076064 ], [ 4951464.094287121668458, 3892526.117489753756672 ], [ 4951469.311744591221213, 3892497.721338178496808 ], [ 4951494.946023926138878, 3892502.483833578415215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951092.988313991576433, 3901134.448529237881303 ], [ 4951091.815318115055561, 3901153.382000410929322 ], [ 4951066.761165555566549, 3901152.261802306864411 ], [ 4951067.646554910577834, 3901132.963880723807961 ], [ 4951092.988313991576433, 3901134.448529237881303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950915.844548041932285, 3892024.830453391652554 ], [ 4950895.323068854399025, 3892085.617243438027799 ], [ 4950836.862065060064197, 3892066.254043572582304 ], [ 4950855.070280623622239, 3892013.111356424633414 ], [ 4950891.068362434394658, 3892025.167254262138158 ], [ 4950893.669608313590288, 3892017.523428117390722 ], [ 4950915.844548041932285, 3892024.830453391652554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951699.052819575183094, 3899243.108530260622501 ], [ 4951709.738605170510709, 3899217.267418374307454 ], [ 4951724.70828555431217, 3899223.474594636354595 ], [ 4951713.73447491042316, 3899249.315374219790101 ], [ 4951699.052819575183094, 3899243.108530260622501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951678.780259142629802, 3891198.383812830783427 ], [ 4951696.894232017919421, 3891230.447595776990056 ], [ 4951649.616348189301789, 3891256.611323634162545 ], [ 4951631.502336665056646, 3891224.547572041396052 ], [ 4951678.780259142629802, 3891198.383812830783427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951574.616816445253789, 3891595.165832465980202 ], [ 4951482.398945063352585, 3891619.458566879387945 ], [ 4951474.653541443869472, 3891589.955473011359572 ], [ 4951566.871506934985518, 3891565.662712447810918 ], [ 4951574.616816445253789, 3891595.165832465980202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950676.107758171856403, 3893645.302778872195631 ], [ 4950676.999479608610272, 3893620.178879278246313 ], [ 4950705.517950045876205, 3893620.938368370290846 ], [ 4950703.434813437052071, 3893681.745568414684385 ], [ 4950673.188369379378855, 3893680.620061522815377 ], [ 4950674.667392425239086, 3893645.301202310714871 ], [ 4950676.107758171856403, 3893645.302778872195631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950655.667017759755254, 3893897.257446709088981 ], [ 4950650.482147896662354, 3893896.887647149153054 ], [ 4950651.369456962682307, 3893875.76915374584496 ], [ 4950685.360202300362289, 3893877.262864641845226 ], [ 4950683.292677978985012, 3893923.869073232170194 ], [ 4950654.486856418661773, 3893922.745164248161018 ], [ 4950655.667017759755254, 3893897.257446709088981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950622.427545111626387, 3894262.806351174600422 ], [ 4950651.52107008267194, 3894263.930541082285345 ], [ 4950648.564347698353231, 3894333.475903419777751 ], [ 4950616.302174230106175, 3894332.348255021497607 ], [ 4950618.078303936868906, 3894288.654742115642875 ], [ 4950621.53509899508208, 3894288.658518709708005 ], [ 4950622.427545111626387, 3894262.806351174600422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950480.015414809808135, 3897010.369004296138883 ], [ 4950481.131133210845292, 3897043.870118484832346 ], [ 4950385.787422880530357, 3897047.043768773321062 ], [ 4950384.671585803851485, 3897013.542658478487283 ], [ 4950480.015414809808135, 3897010.369004296138883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950460.86183022428304, 3889983.758540373295546 ], [ 4950466.871435297653079, 3890021.270239830948412 ], [ 4950438.919434046372771, 3890025.973542543128133 ], [ 4950441.49583731405437, 3890041.269710106775165 ], [ 4950418.442945595830679, 3890044.885969964787364 ], [ 4950409.857250141911209, 3889991.713988905772567 ], [ 4950460.86183022428304, 3889983.758540373295546 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950423.332988968119025, 3891645.23400571430102 ], [ 4950441.43589970190078, 3891688.584912501275539 ], [ 4950437.1125114466995, 3891690.400859723798931 ], [ 4950445.733190912753344, 3891710.801400108262897 ], [ 4950419.216702308505774, 3891721.69646471273154 ], [ 4950392.493449108675122, 3891657.580918567255139 ], [ 4950423.332988968119025, 3891645.23400571430102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950365.792762607336044, 3900614.401236557867378 ], [ 4950364.968607346527278, 3900577.623200445901603 ], [ 4950393.481284611858428, 3900576.925842720083892 ], [ 4950394.593399358913302, 3900613.70419199578464 ], [ 4950365.792762607336044, 3900614.401236557867378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950140.003192210569978, 3892304.728488977067173 ], [ 4950127.296052393503487, 3892333.845104732550681 ], [ 4950081.511273949407041, 3892314.133034941274673 ], [ 4950094.218373431824148, 3892285.016397877596319 ], [ 4950140.003192210569978, 3892304.728488977067173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950751.520586982369423, 3893702.189498361665756 ], [ 4950750.916471131145954, 3893727.677841015160084 ], [ 4950725.566910182125866, 3893726.921777874697 ], [ 4950726.171002007089555, 3893701.433434664271772 ], [ 4950751.520586982369423, 3893702.189498361665756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950720.937925546430051, 3893482.222265293821692 ], [ 4950721.540022065863013, 3893458.554566415492445 ], [ 4950748.330211906693876, 3893459.312206066679209 ], [ 4950747.440016930922866, 3893482.979588272981346 ], [ 4950720.937925546430051, 3893482.222265293821692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950526.189569033682346, 3893755.47007869835943 ], [ 4950524.704402494244277, 3893796.615000083111227 ], [ 4950493.881541243754327, 3893795.853195699863136 ], [ 4950495.367056768387556, 3893754.344144405797124 ], [ 4950526.189569033682346, 3893755.47007869835943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949633.219122625887394, 3890430.021158314775676 ], [ 4949675.003194120712578, 3890422.054485965985805 ], [ 4949681.306523956358433, 3890455.196793455630541 ], [ 4949639.810224831104279, 3890463.527887908741832 ], [ 4949633.219122625887394, 3890430.021158314775676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949270.395771459676325, 3894667.730837562121451 ], [ 4949283.127465087920427, 3894613.124787027016282 ], [ 4949332.950153171084821, 3894624.828910820186138 ], [ 4949329.188223454169929, 3894641.210778380744159 ], [ 4949338.980064841918647, 3894643.405780888628215 ], [ 4949336.086125179193914, 3894656.147266290616244 ], [ 4949361.429516652598977, 3894661.99981770850718 ], [ 4949353.039167681708932, 3894696.94741346873343 ], [ 4949308.112535953521729, 3894686.3407480455935 ], [ 4949310.4265340231359, 3894677.239942422602326 ], [ 4949270.395771459676325, 3894667.730837562121451 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950135.914758810773492, 3900933.495345163624734 ], [ 4950168.745411021634936, 3900934.258911310695112 ], [ 4950168.142778812907636, 3900959.019116863142699 ], [ 4950135.311765478923917, 3900958.619681233540177 ], [ 4950135.914758810773492, 3900933.495345163624734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950004.647123416885734, 3894147.802030891180038 ], [ 4950014.412206405773759, 3894175.122132837772369 ], [ 4950001.156040078029037, 3894179.84162576822564 ], [ 4950003.740468023344874, 3894187.491093480959535 ], [ 4949973.48211469873786, 3894198.018479929305613 ], [ 4949971.759546878747642, 3894192.554708335082978 ], [ 4949958.21532941609621, 3894197.273914716206491 ], [ 4949951.897288591600955, 3894179.060731387231499 ], [ 4949933.453979806043208, 3894185.595363774336874 ], [ 4949923.688818397000432, 3894158.275291067548096 ], [ 4949969.220623400062323, 3894142.302230198867619 ], [ 4949974.676792752929032, 3894158.329723877832294 ], [ 4950004.647123416885734, 3894147.802030891180038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949109.528500252403319, 3898682.452895146794617 ], [ 4949117.887474334798753, 3898676.271355703473091 ], [ 4949138.884164522401989, 3898703.96699066227302 ], [ 4949092.476527321152389, 3898739.239459757693112 ], [ 4949074.068217315711081, 3898715.187836850062013 ], [ 4949089.345283596776426, 3898703.551505303010345 ], [ 4949064.033905493095517, 3898670.389498456846923 ], [ 4949086.805531736463308, 3898652.934847187716514 ], [ 4949109.528500252403319, 3898682.452895146794617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949725.665070789866149, 3891008.718304489739239 ], [ 4949685.610118334181607, 3891017.050856663845479 ], [ 4949679.876969760283828, 3890989.735189100261778 ], [ 4949719.931961110793054, 3890981.402628511190414 ], [ 4949725.665070789866149, 3891008.718304489739239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949604.027077123522758, 3900895.787667310796678 ], [ 4949606.357933597639203, 3900870.301013574469835 ], [ 4949663.08808765001595, 3900875.094620248768479 ], [ 4949660.757177779451013, 3900900.581269133836031 ], [ 4949604.027077123522758, 3900895.787667310796678 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949598.79162541218102, 3893297.494743952993304 ], [ 4949629.116189097985625, 3893225.065158922225237 ], [ 4949667.989736156538129, 3893241.127878142520785 ], [ 4949657.303935989737511, 3893266.605582302901894 ], [ 4949667.67009659204632, 3893270.986080394126475 ], [ 4949657.5616166125983, 3893295.372009505517781 ], [ 4949645.755463656969368, 3893290.625865690875798 ], [ 4949636.513163388706744, 3893313.192075121682137 ], [ 4949598.79162541218102, 3893297.494743952993304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949508.365125636570156, 3890802.392565526068211 ], [ 4949509.850040326826274, 3890760.155276832170784 ], [ 4949542.692371018230915, 3890761.646329053211957 ], [ 4949541.207787963561714, 3890803.519488353282213 ], [ 4949508.365125636570156, 3890802.392565526068211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949259.346262952312827, 3893937.277039076201618 ], [ 4949289.297949264757335, 3893944.590835764538497 ], [ 4949270.494080298580229, 3894020.674125440884382 ], [ 4949240.542473707348108, 3894013.360349372960627 ], [ 4949259.346262952312827, 3893937.277039076201618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948200.924590630456805, 3888527.80058762524277 ], [ 4948186.514178778976202, 3888531.791550386231393 ], [ 4948179.913128850050271, 3888505.931884472258389 ], [ 4948223.720307284034789, 3888494.323714159894735 ], [ 4948233.192732602357864, 3888530.017715096008033 ], [ 4948203.795650190673769, 3888537.999036136548966 ], [ 4948200.924590630456805, 3888527.80058762524277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947747.141546801663935, 3899030.27570321643725 ], [ 4947688.372068954631686, 3899044.783021063078195 ], [ 4947678.329843700863421, 3899005.811261519324034 ], [ 4947737.099401280283928, 3898991.303922052495182 ], [ 4947747.141546801663935, 3899030.27570321643725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946607.67600860260427, 3890559.539999545551836 ], [ 4946608.241574700921774, 3890570.82849873136729 ], [ 4946634.172154472209513, 3890569.760584091767669 ], [ 4946635.299825525842607, 3890595.978859896305948 ], [ 4946555.779190718196332, 3890599.545176183339208 ], [ 4946554.651442280039191, 3890573.326903658919036 ], [ 4946579.717699229717255, 3890572.258123048581183 ], [ 4946579.152121187187731, 3890560.969624458346516 ], [ 4946607.67600860260427, 3890559.539999545551836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946511.960045162588358, 3890321.674377474933863 ], [ 4946462.110400054603815, 3890328.910144038498402 ], [ 4946447.798468987457454, 3890229.12569206347689 ], [ 4946497.936063073575497, 3890222.254297454841435 ], [ 4946511.960045162588358, 3890321.674377474933863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946352.540511601604521, 3892275.072211428545415 ], [ 4946354.870035721920431, 3892248.493021951057017 ], [ 4946383.964552574791014, 3892251.069103913847357 ], [ 4946381.634999907575548, 3892277.648290905170143 ], [ 4946352.540511601604521, 3892275.072211428545415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946234.020768471993506, 3891779.383286161348224 ], [ 4946236.350217448547482, 3891752.804094072896987 ], [ 4946268.325877220369875, 3891755.746855619829148 ], [ 4946265.708303773775697, 3891782.325776924844831 ], [ 4946234.020768471993506, 3891779.383286161348224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946027.258809642866254, 3892307.906135333701968 ], [ 4946032.473250516690314, 3892276.595908961258829 ], [ 4946046.875290341675282, 3892279.158086625859141 ], [ 4946041.372745729982853, 3892310.468044607434422 ], [ 4946027.258809642866254, 3892307.906135333701968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944832.569916876964271, 3891310.212845168542117 ], [ 4944890.47156582865864, 3891317.182128565385938 ], [ 4944887.568175342865288, 3891342.668540581595153 ], [ 4944867.979442595504224, 3891340.466557151637971 ], [ 4944864.205706608481705, 3891372.870640915818512 ], [ 4944825.604792531579733, 3891368.103099757339805 ], [ 4944827.34519269503653, 3891354.631887197960168 ], [ 4944815.534463844262064, 3891353.165020124055445 ], [ 4944817.566468841396272, 3891335.688653868623078 ], [ 4944829.377205257304013, 3891337.15552182123065 ], [ 4944832.569916876964271, 3891310.212845168542117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944289.838225076906383, 3890248.309311002492905 ], [ 4944282.042111496441066, 3890268.329662459436804 ], [ 4944257.849028788506985, 3890258.841625078581274 ], [ 4944265.645127086900175, 3890238.821266726125032 ], [ 4944289.838225076906383, 3890248.309311002492905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944277.247825105674565, 3892838.341747532598674 ], [ 4944258.523443266749382, 3892837.233330856077373 ], [ 4944259.982239874079823, 3892815.751005096361041 ], [ 4944278.418554590083659, 3892816.859176009427756 ], [ 4944277.247825105674565, 3892838.341747532598674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943821.073607942089438, 3892662.445021444931626 ], [ 4943846.424053685739636, 3892663.558701614849269 ], [ 4943842.898504819720984, 3892745.120488413609564 ], [ 4943808.329791563563049, 3892743.63494657445699 ], [ 4943810.974178299307823, 3892682.099474635906518 ], [ 4943820.192543647252023, 3892682.471340463031083 ], [ 4943821.073607942089438, 3892662.445021444931626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944459.460311892442405, 3891669.646725024562329 ], [ 4944464.98158077057451, 3891614.668144410010427 ], [ 4944508.480131841264665, 3891619.075277086813003 ], [ 4944505.573356005363166, 3891648.931269120890647 ], [ 4944518.53666493203491, 3891650.034869743045419 ], [ 4944516.210166074335575, 3891675.157697599381208 ], [ 4944459.460311892442405, 3891669.646725024562329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943407.936997888609767, 3892691.959866628050804 ], [ 4943447.703626230359077, 3892678.51992289815098 ], [ 4943460.635496556758881, 3892717.128207705914974 ], [ 4943478.501465518027544, 3892711.316920160781592 ], [ 4943488.272799214348197, 3892739.727012192364782 ], [ 4943438.997107369825244, 3892756.072073183953762 ], [ 4943422.328553213737905, 3892707.265122264157981 ], [ 4943413.972039044834673, 3892709.807130099739879 ], [ 4943407.936997888609767, 3892691.959866628050804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943220.350091285072267, 3892746.425164735876024 ], [ 4943221.75419904384762, 3892790.849971436429769 ], [ 4943154.052780621685088, 3892793.343624779954553 ], [ 4943152.358995116315782, 3892750.73922740155831 ], [ 4943181.744325186125934, 3892749.670798296574503 ], [ 4943181.183308792300522, 3892731.099794911686331 ], [ 4943203.078207289800048, 3892730.389408119022846 ], [ 4943203.640992645174265, 3892746.77564331702888 ], [ 4943220.350091285072267, 3892746.425164735876024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944088.799448071978986, 3892210.423786037135869 ], [ 4944086.450201129540801, 3892262.856258565559983 ], [ 4944081.841102961450815, 3892262.488215657882392 ], [ 4944080.664632029831409, 3892290.889220792334527 ], [ 4944052.144879952073097, 3892289.772632057778537 ], [ 4944055.382105842232704, 3892209.30303390789777 ], [ 4944088.799448071978986, 3892210.423786037135869 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942456.144582787528634, 3892281.547932166140527 ], [ 4942461.074250391684473, 3892240.769458337686956 ], [ 4942478.646192940883338, 3892242.603968816343695 ], [ 4942479.516495657153428, 3892234.957963130436838 ], [ 4942509.474795468151569, 3892238.622918606270105 ], [ 4942512.37612405885011, 3892212.772108596749604 ], [ 4942539.741936350241303, 3892216.070919324178249 ], [ 4942531.910511227324605, 3892283.064314406830817 ], [ 4942518.948002986609936, 3892281.233415245078504 ], [ 4942516.91929096262902, 3892296.52519666031003 ], [ 4942499.347674055024981, 3892294.326533091720194 ], [ 4942500.505780899897218, 3892287.044883563648909 ], [ 4942456.144582787528634, 3892281.547932166140527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993110.673690676689148, 3911385.990546984598041 ], [ 4993079.829315001145005, 3911401.201673537027091 ], [ 4993072.098335883580148, 3911385.523259272798896 ], [ 4993102.942725110799074, 3911370.312123994342983 ], [ 4993110.673690676689148, 3911385.990546984598041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992802.964747078716755, 3907154.670640840660781 ], [ 4992813.731564031913877, 3907112.09579548612237 ], [ 4992854.01443235296756, 3907122.39882629737258 ], [ 4992843.248525773175061, 3907164.609525717794895 ], [ 4992802.964747078716755, 3907154.670640840660781 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991542.829589808359742, 3913264.778338480275124 ], [ 4991501.9216318866238, 3913276.687749960459769 ], [ 4991492.504994085989892, 3913244.983469439670444 ], [ 4991533.41299600340426, 3913233.074043857399374 ], [ 4991542.829589808359742, 3913264.778338480275124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990227.631128248758614, 3908645.613986408337951 ], [ 4990229.946580460295081, 3908640.886203250847757 ], [ 4990250.653834770433605, 3908649.678562799002975 ], [ 4990231.830151367932558, 3908692.233777230139822 ], [ 4990191.567331117577851, 3908674.652057689614594 ], [ 4990208.362491288222373, 3908637.189469735138118 ], [ 4990227.631128248758614, 3908645.613986408337951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989652.017104784958065, 3908448.238942842930555 ], [ 4989665.869453614577651, 3908435.529562773648649 ], [ 4989659.55294599570334, 3908428.594956111628562 ], [ 4989676.579790745861828, 3908412.980601807124913 ], [ 4989701.846726536750793, 3908440.354922818485647 ], [ 4989685.397568116895854, 3908455.242467098403722 ], [ 4989681.665809094905853, 3908450.863368489779532 ], [ 4989666.947863143868744, 3908464.298802077304572 ], [ 4989652.017104784958065, 3908448.238942842930555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989347.982999104075134, 3908673.22901616524905 ], [ 4989355.360724236816168, 3908715.851261976640671 ], [ 4989342.111251085065305, 3908718.00247802445665 ], [ 4989340.688303147442639, 3908711.444480150938034 ], [ 4989303.819003520533442, 3908717.905461824964732 ], [ 4989295.868139601312578, 3908674.189380200114101 ], [ 4989320.352661166340113, 3908669.517672635614872 ], [ 4989321.771003660745919, 3908677.896321913227439 ], [ 4989347.982999104075134, 3908673.22901616524905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989296.471051912754774, 3908322.438597976695746 ], [ 4989303.552741994149983, 3908368.337265296839178 ], [ 4989278.20696900319308, 3908371.914408992044628 ], [ 4989279.907724346034229, 3908382.478566269390285 ], [ 4989254.273131091147661, 3908386.419134058523923 ], [ 4989246.622902456671, 3908337.605978303123266 ], [ 4989272.545456855557859, 3908333.666132237296551 ], [ 4989271.413152458146214, 3908326.016477134544402 ], [ 4989296.471051912754774, 3908322.438597976695746 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988791.858861414715648, 3908279.654246067162603 ], [ 4988736.584412978962064, 3908277.330559422262013 ], [ 4988738.425323082134128, 3908232.182722116820514 ], [ 4988762.896424660459161, 3908232.97246458241716 ], [ 4988762.591123963706195, 3908239.890219672117382 ], [ 4988793.395471011288464, 3908241.060036800801754 ], [ 4988791.858861414715648, 3908279.654246067162603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988438.103932718746364, 3907435.071963470894843 ], [ 4988403.538325989618897, 3907440.811674606986344 ], [ 4988396.729123092256486, 3907400.375944352243096 ], [ 4988431.294780314899981, 3907394.636224591638893 ], [ 4988438.103932718746364, 3907435.071963470894843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988121.899557643570006, 3908153.445087511558086 ], [ 4988052.474277482368052, 3908168.20183128491044 ], [ 4988044.790119947865605, 3908132.13358996110037 ], [ 4988088.289275505580008, 3908122.774311534594744 ], [ 4988089.997761337086558, 3908130.4253482776694 ], [ 4988115.923967733979225, 3908125.027865046169609 ], [ 4988121.899557643570006, 3908153.445087511558086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987790.642808955162764, 3908678.794524408411235 ], [ 4987817.720976528711617, 3908673.035473116673529 ], [ 4987823.694050186313689, 3908702.54503066232428 ], [ 4987796.903822761960328, 3908708.304789134766906 ], [ 4987790.642808955162764, 3908678.794524408411235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987394.670736136846244, 3907662.979000532533973 ], [ 4987421.746253501623869, 3907658.676075288560241 ], [ 4987425.71619264036417, 3907683.446867632679641 ], [ 4987436.084998377598822, 3907682.015876283869147 ], [ 4987440.058508744463325, 3907705.330149600282311 ], [ 4987431.70516908261925, 3907706.766103611327708 ], [ 4987435.959426144137979, 3907732.994128901977092 ], [ 4987396.210028506815434, 3907739.450632186606526 ], [ 4987388.271001778542995, 3907689.544925105758011 ], [ 4987398.640699567273259, 3907687.749788937158883 ], [ 4987394.670736136846244, 3907662.979000532533973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987192.658857857808471, 3905036.360513009130955 ], [ 4987137.352607371285558, 3905044.235754696186632 ], [ 4987133.102976725436747, 3905015.82304123044014 ], [ 4987139.440583969466388, 3905014.746184175368398 ], [ 4987133.492701808921993, 3904974.312952316831797 ], [ 4987182.750319559127092, 3904967.151125153061002 ], [ 4987192.658857857808471, 3905036.360513009130955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986785.170809403993189, 3908356.250564044341445 ], [ 4986730.729930118657649, 3908366.313549010083079 ], [ 4986725.332298879511654, 3908336.441513220779598 ], [ 4986779.77234850730747, 3908326.742648049257696 ], [ 4986785.170809403993189, 3908356.250564044341445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986773.937493315897882, 3907767.784815684426576 ], [ 4986795.534294402226806, 3907766.745092923752964 ], [ 4986796.358087356202304, 3907783.133068590424955 ], [ 4986774.760411417111754, 3907784.536921116057783 ], [ 4986773.937493315897882, 3907767.784815684426576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986669.523197702132165, 3909854.375520236324519 ], [ 4986618.257603443227708, 3909862.261668561492115 ], [ 4986605.787556106224656, 3909781.029664814006537 ], [ 4986657.053301531821489, 3909773.143493103329092 ], [ 4986669.523197702132165, 3909854.375520236324519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986636.387887900695205, 3896017.297756602521986 ], [ 4986660.558117502368987, 3895909.574086523614824 ], [ 4986693.954058337956667, 3895916.937969712540507 ], [ 4986677.063770346343517, 3895992.271759605966508 ], [ 4986706.716754231601954, 3895998.898289402481169 ], [ 4986699.436651198193431, 3896031.28813210921362 ], [ 4986636.387887900695205, 3896017.297756602521986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986410.61312556732446, 3905378.557524531148374 ], [ 4986415.994055969640613, 3905415.712040725629777 ], [ 4986404.760590565390885, 3905417.14132916321978 ], [ 4986410.994765152223408, 3905458.667498654220253 ], [ 4986349.64009378477931, 3905467.622090966440737 ], [ 4986343.125818167813122, 3905422.818068847060204 ], [ 4986373.658783974125981, 3905418.522463890258223 ], [ 4986371.10785311460495, 3905401.76620813831687 ], [ 4986384.069888853468001, 3905399.976963427383453 ], [ 4986381.519845236092806, 3905382.856576986145228 ], [ 4986410.61312556732446, 3905378.557524531148374 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986015.373386114835739, 3910586.883024897892028 ], [ 4986009.714735136367381, 3910545.722334641031921 ], [ 4986035.921692312695086, 3910542.144185452256352 ], [ 4986034.505939095281065, 3910532.309175709728152 ], [ 4986061.289575574919581, 3910528.368308658245951 ], [ 4986068.367404693737626, 3910577.907496739178896 ], [ 4986048.496729359962046, 3910580.408496249932796 ], [ 4986050.764732078649104, 3910594.979294123128057 ], [ 4986030.317410049960017, 3910597.843049416318536 ], [ 4986028.332898329943419, 3910585.093602754175663 ], [ 4986015.373386114835739, 3910586.883024897892028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986040.879451928660274, 3897616.571920257527381 ], [ 4986041.490621545352042, 3897602.008180938661098 ], [ 4986012.691055768169463, 3897600.482255383394659 ], [ 4986014.504342721775174, 3897565.165984644088894 ], [ 4986062.312244742177427, 3897567.465999097097665 ], [ 4986059.887715203687549, 3897617.346005559433252 ], [ 4986040.879451928660274, 3897616.571920257527381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985883.496574084274471, 3904491.35155268618837 ], [ 4985899.679103057831526, 3904467.721911577042192 ], [ 4985907.440805071033537, 3904473.202562853693962 ], [ 4985934.315477693453431, 3904433.941003271378577 ], [ 4985971.113531032577157, 3904459.154698737431318 ], [ 4985951.175218761898577, 3904487.873099235352129 ], [ 4985956.636756391264498, 3904491.89169953763485 ], [ 4985933.519566780887544, 3904525.33617309294641 ], [ 4985883.496574084274471, 3904491.35155268618837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985843.743156192824244, 3908210.866696413140744 ], [ 4985848.006759415380657, 3908233.8173035280779 ], [ 4985830.723873124457896, 3908237.052951496094465 ], [ 4985834.419527437537909, 3908256.724997808691114 ], [ 4985796.397044195793569, 3908263.916283454746008 ], [ 4985788.438588953576982, 3908220.929513243958354 ], [ 4985843.743156192824244, 3908210.866696413140744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985823.372682252898812, 3909738.354906529188156 ], [ 4985835.474140250124037, 3909734.378531173337251 ], [ 4985831.184512757696211, 3909722.351831187494099 ], [ 4985849.913828786462545, 3909715.842463667970151 ], [ 4985853.62939845956862, 3909727.139520280994475 ], [ 4985873.799096926115453, 3909720.269499891903251 ], [ 4985888.665694332681596, 3909763.637088787276298 ], [ 4985838.241101558320224, 3909780.994206212460995 ], [ 4985823.372682252898812, 3909738.354906529188156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985731.497288960963488, 3909992.663227872457355 ], [ 4985752.807858664542437, 3909990.165450749918818 ], [ 4985755.62651555147022, 3910015.297398338560015 ], [ 4985734.315965502522886, 3910017.795173273421824 ], [ 4985731.497288960963488, 3909992.663227872457355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985463.981054427102208, 3909896.255530088674277 ], [ 4985471.642046434804797, 3909943.247001071460545 ], [ 4985439.384364314377308, 3909948.631908955052495 ], [ 4985431.7233174899593, 3909901.64044700935483 ], [ 4985463.981054427102208, 3909896.255530088674277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985204.519948176108301, 3909196.865568542852998 ], [ 4985227.562006179243326, 3909192.914964848663658 ], [ 4985231.253631471656263, 3909214.40759379370138 ], [ 4985208.499497607350349, 3909218.358879720792174 ], [ 4985204.519948176108301, 3909196.865568542852998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984504.172465469688177, 3906571.996883142739534 ], [ 4984487.750764994882047, 3906575.963685470167547 ], [ 4984486.039439135231078, 3906569.041145558934659 ], [ 4984427.557025341317058, 3906582.376471624244004 ], [ 4984420.147771113552153, 3906549.587151195388287 ], [ 4984429.654758851975203, 3906547.424709555692971 ], [ 4984426.519151538610458, 3906533.944444706197828 ], [ 4984453.599605469033122, 3906527.817880550865084 ], [ 4984455.59373829420656, 3906536.925876769702882 ], [ 4984494.197598090395331, 3906528.277536038309336 ], [ 4984504.172465469688177, 3906571.996883142739534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984424.391802974976599, 3909642.903365398291498 ], [ 4984468.468184036202729, 3909631.354786334559321 ], [ 4984475.885080674663186, 3909660.50287334388122 ], [ 4984431.809600444510579, 3909671.687309530563653 ], [ 4984424.391802974976599, 3909642.903365398291498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984174.680293187499046, 3907103.584668102674186 ], [ 4984129.724181783385575, 3907120.229514455422759 ], [ 4984120.281320164911449, 3907095.082286643795669 ], [ 4984107.602221197448671, 3907099.422211236320436 ], [ 4984098.445557347498834, 3907075.003925670869648 ], [ 4984108.531599084846675, 3907071.386195263359696 ], [ 4984100.234456446021795, 3907048.790581917390227 ], [ 4984088.130346326157451, 3907053.49599288078025 ], [ 4984078.97450037766248, 3907028.713584306649864 ], [ 4984089.060556822456419, 3907025.095846692100167 ], [ 4984080.762531897984445, 3907002.864370332099497 ], [ 4984069.235115776769817, 3907007.20700589613989 ], [ 4984060.078385275788605, 3906982.788734789937735 ], [ 4984069.8765260996297, 3906979.170317023992538 ], [ 4984061.864699070341885, 3906957.667780918069184 ], [ 4984050.04933621827513, 3906962.009751523844898 ], [ 4984040.606343798339367, 3906936.862554159481078 ], [ 4984086.428201648406684, 3906919.491319955326617 ], [ 4984090.719914552755654, 3906931.153590235859156 ], [ 4984102.247366732917726, 3906926.810964095406234 ], [ 4984116.841533390805125, 3906965.443130076862872 ], [ 4984107.331311582587659, 3906969.062204233836383 ], [ 4984114.199045381508768, 3906987.284886578563601 ], [ 4984125.438547112978995, 3906982.941596613265574 ], [ 4984136.311719346791506, 3907012.097627407871187 ], [ 4984126.801511379890144, 3907015.716694780625403 ], [ 4984133.382994561456144, 3907033.210448116064072 ], [ 4984145.198339715600014, 3907028.868513966910541 ], [ 4984156.072324178181589, 3907057.660423243418336 ], [ 4984145.985418520867825, 3907061.642266117502004 ], [ 4984152.279801060445607, 3907078.771220260299742 ], [ 4984163.807200035080314, 3907074.42862013913691 ], [ 4984174.680293187499046, 3907103.584668102674186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984057.419612013734877, 3914523.616289946716279 ], [ 4984076.421932189725339, 3914521.840055896900594 ], [ 4984078.39514681417495, 3914539.6872384743765 ], [ 4984059.104989890009165, 3914541.462798110209405 ], [ 4984057.419612013734877, 3914523.616289946716279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984021.058516023680568, 3916287.39751601871103 ], [ 4984047.132763432338834, 3916338.073149137664586 ], [ 4984023.214792836457491, 3916350.033679313957691 ], [ 4984029.231985989958048, 3916361.700044552329928 ], [ 4984007.907063093036413, 3916372.574245737865567 ], [ 4983982.118904897011817, 3916322.627586717251688 ], [ 4983999.409129278734326, 3916313.928746215067804 ], [ 4983993.104932585731149, 3916301.897583229001611 ], [ 4984021.058516023680568, 3916287.39751601871103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983872.341876745223999, 3904637.340168602764606 ], [ 4983794.266988601535559, 3904653.908401918131858 ], [ 4983786.002721120603383, 3904616.747726744972169 ], [ 4983864.365667732432485, 3904600.180140753742307 ], [ 4983872.341876745223999, 3904637.340168602764606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983704.263362066820264, 3917478.835627935361117 ], [ 4983744.124546149745584, 3917417.753714096732438 ], [ 4983772.289217772893608, 3917435.66185928042978 ], [ 4983748.890365596860647, 3917472.385007563512772 ], [ 4983761.535705792717636, 3917480.425398116 ], [ 4983745.359452513977885, 3917505.513050101231784 ], [ 4983704.263362066820264, 3917478.835627935361117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983598.209824597463012, 3901905.352554737124592 ], [ 4983614.711981045082211, 3901867.885333036538213 ], [ 4983652.399974288418889, 3901884.358718092087656 ], [ 4983635.89777525421232, 3901921.825917015317827 ], [ 4983598.209824597463012, 3901905.352554737124592 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982482.405040365643799, 3916371.238157885149121 ], [ 4982444.389960819855332, 3916380.619019200094044 ], [ 4982439.827822872437537, 3916361.673636930529028 ], [ 4982429.460147063247859, 3916364.198961766902357 ], [ 4982420.905693386681378, 3916328.858442214783281 ], [ 4982468.999873561784625, 3916317.315711086150259 ], [ 4982482.405040365643799, 3916371.238157885149121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981567.311474450863898, 3908585.086165146902204 ], [ 4981640.661549326963723, 3908487.299262748565525 ], [ 4981694.987206961028278, 3908527.476005990989506 ], [ 4981621.348312254995108, 3908625.626246353145689 ], [ 4981567.311474450863898, 3908585.086165146902204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981480.731766745448112, 3903281.309332867152989 ], [ 4981494.039602999575436, 3903254.029306574724615 ], [ 4981557.899526309221983, 3903285.123709531035274 ], [ 4981544.5916404183954, 3903312.403704702388495 ], [ 4981480.731766745448112, 3903281.309332867152989 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981421.507267167791724, 3905681.168538434896618 ], [ 4981387.782756950706244, 3905696.75071591231972 ], [ 4981370.300455016084015, 3905659.934270440135151 ], [ 4981404.025816287845373, 3905643.987941252533346 ], [ 4981421.507267167791724, 3905681.168538434896618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981336.439069960266352, 3903418.628002940677106 ], [ 4981350.911596616730094, 3903385.524405202362686 ], [ 4981395.215595815330744, 3903404.922490142751485 ], [ 4981392.610840088687837, 3903410.742763635702431 ], [ 4981424.544361055828631, 3903424.651243764907122 ], [ 4981412.388551398180425, 3903451.933885981794447 ], [ 4981336.439069960266352, 3903418.628002940677106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981116.190242979675531, 3909858.905910982750356 ], [ 4981144.040181761607528, 3909893.196471841540188 ], [ 4981120.101555956527591, 3909912.442159824073315 ], [ 4981092.540316986851394, 3909877.788133554626256 ], [ 4981116.190242979675531, 3909858.905910982750356 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980885.852576828561723, 3902730.87259773677215 ], [ 4980880.936789389699697, 3902739.964971584267914 ], [ 4980897.907958753407001, 3902748.741784553509206 ], [ 4980885.76046188455075, 3902772.383358917199075 ], [ 4980831.394475215114653, 3902744.588795371353626 ], [ 4980848.457714882679284, 3902711.854816248640418 ], [ 4980885.852576828561723, 3902730.87259773677215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980863.402562448754907, 3907787.52155680116266 ], [ 4980892.542456610128284, 3907760.640426349360496 ], [ 4980913.509815887548029, 3907783.627317283768207 ], [ 4980884.658655043691397, 3907810.144933792762458 ], [ 4980863.402562448754907, 3907787.52155680116266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980871.492426571436226, 3894533.173554801382124 ], [ 4980896.960791270248592, 3894479.7030173628591 ], [ 4980947.319468048401177, 3894503.483216572552919 ], [ 4980914.615497910417616, 3894572.231086117215455 ], [ 4980893.896759235300124, 3894562.353613243903965 ], [ 4980901.132277560420334, 3894547.076228683348745 ], [ 4980871.492426571436226, 3894533.173554801382124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980837.250389668159187, 3901662.039855525363237 ], [ 4980819.37500318326056, 3901671.103504694532603 ], [ 4980834.572123417630792, 3901700.995938763022423 ], [ 4980803.146056772209704, 3901716.948049371596426 ], [ 4980797.124154349789023, 3901705.282512659672648 ], [ 4980786.167750362306833, 3901711.084335767664015 ], [ 4980777.566055560484529, 3901693.951123067177832 ], [ 4980787.08010985981673, 3901689.238494349643588 ], [ 4980775.037886296398938, 3901665.179171445313841 ], [ 4980825.780944961123168, 3901639.438304285984486 ], [ 4980837.250389668159187, 3901662.039855525363237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980790.318578029982746, 3903607.124970636330545 ], [ 4980781.918347040191293, 3903629.318379970267415 ], [ 4980762.064809238538146, 3903621.991777057759464 ], [ 4980770.465026084333658, 3903599.798361608758569 ], [ 4980790.318578029982746, 3903607.124970636330545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980730.963682133704424, 3906094.013298873323947 ], [ 4980705.879890294745564, 3906108.88719835318625 ], [ 4980689.527743537910283, 3906081.541120841633528 ], [ 4980714.611551751382649, 3906066.667206349316984 ], [ 4980730.963682133704424, 3906094.013298873323947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980696.242132971063256, 3904608.278522992506623 ], [ 4980704.256554436869919, 3904630.144154487643391 ], [ 4980677.167001194320619, 3904639.915789143647999 ], [ 4980669.151755508035421, 3904618.414295493625104 ], [ 4980696.242132971063256, 3904608.278522992506623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980649.247734929434955, 3900855.80190632911399 ], [ 4980570.747291762381792, 3900930.639483855571598 ], [ 4980535.405022040940821, 3900893.78428294416517 ], [ 4980613.905473758466542, 3900818.946603846736252 ], [ 4980649.247734929434955, 3900855.80190632911399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980542.482199689373374, 3907605.473545967135578 ], [ 4980508.429323017597198, 3907640.719261589460075 ], [ 4980487.741401460953057, 3907621.374629329424351 ], [ 4980521.795078578405082, 3907585.764757350087166 ], [ 4980542.482199689373374, 3907605.473545967135578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980552.765385594218969, 3899552.000909370835871 ], [ 4980564.79188802652061, 3899583.706806956790388 ], [ 4980539.714979176409543, 3899592.754741839598864 ], [ 4980527.688451283611357, 3899561.048855307977647 ], [ 4980552.765385594218969, 3899552.000909370835871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980516.722525747492909, 3903880.347066691145301 ], [ 4980528.876430154778063, 3903853.428141939453781 ], [ 4980552.466959433630109, 3903863.675872288644314 ], [ 4980555.07148955296725, 3903857.855515763629228 ], [ 4980587.867192079313099, 3903872.493171417620033 ], [ 4980577.448251619003713, 3903896.138716414105147 ], [ 4980552.706710263155401, 3903885.524292295798659 ], [ 4980548.655938586220145, 3903894.254509971942753 ], [ 4980516.722525747492909, 3903880.347066691145301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980466.396133021451533, 3904111.095519205089658 ], [ 4980452.231494816951454, 3904135.825256817042828 ], [ 4980427.498143926262856, 3904121.569648438598961 ], [ 4980424.318546924740076, 3904127.024620275013149 ], [ 4980383.191428520716727, 3904103.629669644404203 ], [ 4980400.824380019679666, 3904073.081425297539681 ], [ 4980466.396133021451533, 3904111.095519205089658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980462.148281099274755, 3900549.51916449284181 ], [ 4980468.435322166420519, 3900571.744994102977216 ], [ 4980444.804974359460175, 3900578.247292637825012 ], [ 4980438.806716307997704, 3900555.657973700668663 ], [ 4980462.148281099274755, 3900549.51916449284181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980222.21143704187125, 3907256.658239991404116 ], [ 4980267.671958000399172, 3907271.323342875577509 ], [ 4980257.816863647662103, 3907301.16054460639134 ], [ 4980212.644314881414175, 3907286.496089958585799 ], [ 4980222.21143704187125, 3907256.658239991404116 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980218.771305062808096, 3902525.851224821526557 ], [ 4980193.765937211923301, 3902503.584365633781999 ], [ 4980228.11845317017287, 3902465.790087957400829 ], [ 4980253.41180631890893, 3902488.057610857766122 ], [ 4980248.792960612103343, 3902493.145307346712798 ], [ 4980266.325255379080772, 3902508.841444116085768 ], [ 4980249.870529529638588, 3902527.01187506923452 ], [ 4980232.050258931703866, 3902511.315116827376187 ], [ 4980218.771305062808096, 3902525.851224821526557 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980063.487932488322258, 3903870.248028275556862 ], [ 4980091.226516821421683, 3903827.341233415994793 ], [ 4980115.094032394699752, 3903842.68702666182071 ], [ 4980099.491354244761169, 3903866.685532820411026 ], [ 4980110.418818290345371, 3903873.627963557373732 ], [ 4980101.462443351745605, 3903887.081213526427746 ], [ 4980087.659333956427872, 3903878.311832608655095 ], [ 4980084.191814028657973, 3903883.766213402617723 ], [ 4980063.487932488322258, 3903870.248028275556862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980048.633431484922767, 3908815.857041281182319 ], [ 4980024.681891395710409, 3908840.929786262102425 ], [ 4979964.056150484830141, 3908784.356681526638567 ], [ 4979987.720568931661546, 3908758.919123121537268 ], [ 4980048.633431484922767, 3908815.857041281182319 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979988.081611874513328, 3901875.371964699123055 ], [ 4979962.408789647743106, 3901894.614812926389277 ], [ 4979921.345414685085416, 3901840.269608877133578 ], [ 4979949.037339174188673, 3901819.574607726186514 ], [ 4979980.049862100742757, 3901860.789169580675662 ], [ 4979978.318768600001931, 3901862.241910918150097 ], [ 4979988.081611874513328, 3901875.371964699123055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979944.243887572549284, 3902432.032668226398528 ], [ 4979970.484982954338193, 3902416.068219766486436 ], [ 4979987.128086476586759, 3902443.414428157731891 ], [ 4979960.887007806450129, 3902459.378860638942569 ], [ 4979944.243887572549284, 3902432.032668226398528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979899.602121502161026, 3903357.921052194200456 ], [ 4979912.620344028808177, 3903330.639613037928939 ], [ 4979957.784601415507495, 3903352.221991315484047 ], [ 4979944.478374512866139, 3903379.502779992762953 ], [ 4979899.602121502161026, 3903357.921052194200456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979616.387891880236566, 3908724.609709660056978 ], [ 4979617.319653990678489, 3908693.296332793310285 ], [ 4979644.668910301290452, 3908694.448156335391104 ], [ 4979643.44999616406858, 3908725.396775687113404 ], [ 4979616.387891880236566, 3908724.609709660056978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979612.641089549288154, 3908991.510768548119813 ], [ 4979649.421380667947233, 3909024.726757595315576 ], [ 4979617.964222202077508, 3909059.251003116834909 ], [ 4979588.368207312189043, 3909032.240909495856613 ], [ 4979602.797626368701458, 3909016.614540312439203 ], [ 4979595.614148650318384, 3909010.044552530627698 ], [ 4979612.641089549288154, 3908991.510768548119813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979519.793947961181402, 3906666.324075212702155 ], [ 4979527.040462108328938, 3906644.127732200082392 ], [ 4979580.27265533991158, 3906660.629180521238595 ], [ 4979573.026101579889655, 3906682.825509408954531 ], [ 4979519.793947961181402, 3906666.324075212702155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979453.135317700915039, 3902213.214152351487428 ], [ 4979444.515589576214552, 3902204.092208038084209 ], [ 4979428.067540854215622, 3902219.350103529170156 ], [ 4979403.359457703307271, 3902192.350925026461482 ], [ 4979448.95043789036572, 3902150.938669720198959 ], [ 4979474.520092069171369, 3902179.032149393577129 ], [ 4979457.495259259827435, 3902194.652908223215491 ], [ 4979464.677445093169808, 3902202.679349360521883 ], [ 4979453.135317700915039, 3902213.214152351487428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979437.726010205224156, 3909195.409806016366929 ], [ 4979463.701501785777509, 3909165.971327256876975 ], [ 4979496.459729444235563, 3909195.17293701460585 ], [ 4979470.485019038431346, 3909224.247253675013781 ], [ 4979437.726010205224156, 3909195.409806016366929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979399.128444022499025, 3900820.296314326580614 ], [ 4979381.038234741427004, 3900795.496285886038095 ], [ 4979428.631755041889846, 3900761.370973329991102 ], [ 4979446.721943583339453, 3900786.171033296734095 ], [ 4979399.128444022499025, 3900820.296314326580614 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979251.22292897850275, 3909567.150174223352224 ], [ 4979287.581238610669971, 3909528.9947499493137 ], [ 4979317.748876182362437, 3909557.826420275494456 ], [ 4979281.103446724824607, 3909595.617051508743316 ], [ 4979251.22292897850275, 3909567.150174223352224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979111.082336689345539, 3903785.522671911399812 ], [ 4979123.525191458873451, 3903757.511343841440976 ], [ 4979307.074446006678045, 3903837.652046624105424 ], [ 4979294.630649980157614, 3903866.027420847211033 ], [ 4979111.082336689345539, 3903785.522671911399812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979080.310607211664319, 3905372.342074449174106 ], [ 4979090.58344679698348, 3905415.695869951508939 ], [ 4979035.846106194891036, 3905428.322718511801213 ], [ 4979025.573183263652027, 3905384.968943593092263 ], [ 4979080.310607211664319, 3905372.342074449174106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979079.64695381000638, 3901933.847608404699713 ], [ 4979117.627171640284359, 3901949.586995664518327 ], [ 4979100.257199831306934, 3901991.788802348542958 ], [ 4979052.782178436405957, 3901972.023574514780194 ], [ 4979064.361851182766259, 3901944.010391693096608 ], [ 4979073.56872838921845, 3901948.035640810150653 ], [ 4979079.64695381000638, 3901933.847608404699713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979071.796690895222127, 3904511.5163917648606 ], [ 4978965.188579007051885, 3904541.146006589289755 ], [ 4978955.186733331531286, 3904505.439629023429006 ], [ 4979061.794192225672305, 3904476.174105087295175 ], [ 4979071.796690895222127, 3904511.5163917648606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978990.448818967677653, 3908062.356816471554339 ], [ 4979004.251695517450571, 3908070.397394799161702 ], [ 4979022.746600002981722, 3908038.757636268157512 ], [ 4979060.70488931145519, 3908060.687223759014159 ], [ 4979043.654246093705297, 3908090.145268648397177 ], [ 4979024.963041588664055, 3908079.181099102366716 ], [ 4979008.201932908035815, 3908107.911524459253997 ], [ 4978988.93488980550319, 3908096.946142036467791 ], [ 4978984.021500873379409, 3908105.674762008711696 ], [ 4978969.930718179792166, 3908097.633575400337577 ], [ 4978990.448818967677653, 3908062.356816471554339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978975.867621117271483, 3909488.63274658517912 ], [ 4978994.274654943495989, 3909497.411486451979727 ], [ 4979002.662202937528491, 3909479.587010768707842 ], [ 4979034.300259520299733, 3909494.220345402602106 ], [ 4979014.63123769313097, 3909536.781580206472427 ], [ 4978964.298297035507858, 3909513.368917612824589 ], [ 4978975.867621117271483, 3909488.63274658517912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978801.873390073888004, 3906846.842874061781913 ], [ 4978792.647879336029291, 3906852.285097950603813 ], [ 4978803.2623530337587, 3906870.514437478035688 ], [ 4978775.875345868989825, 3906886.113472985569388 ], [ 4978753.212935059331357, 3906846.738694991916418 ], [ 4978789.824704838916659, 3906826.061539252754301 ], [ 4978801.873390073888004, 3906846.842874061781913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978655.275659277103841, 3900125.028212762437761 ], [ 4978675.694358855485916, 3900138.908796125557274 ], [ 4978661.249067669734359, 3900159.99751317081973 ], [ 4978624.726278060115874, 3900134.79450825182721 ], [ 4978643.50483017694205, 3900107.5248041623272 ], [ 4978659.608937340788543, 3900118.847247569356114 ], [ 4978655.275659277103841, 3900125.028212762437761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978593.227668025530875, 3914350.813170492183417 ], [ 4978541.400459386408329, 3914357.25699506001547 ], [ 4978537.43810208607465, 3914325.568902086466551 ], [ 4978589.265370862558484, 3914319.125070010777563 ], [ 4978593.227668025530875, 3914350.813170492183417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978366.282194470986724, 3907906.266499982215464 ], [ 4978326.793792467564344, 3907926.573999627958983 ], [ 4978313.317226121202111, 3907900.327846027910709 ], [ 4978352.805656391195953, 3907880.0203269100748 ], [ 4978366.282194470986724, 3907906.266499982215464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978287.0237169675529, 3903060.232028088532388 ], [ 4978308.703586869873106, 3903021.680135614704341 ], [ 4978323.372407044284046, 3903030.08630335656926 ], [ 4978321.348866074346006, 3903033.723318613599986 ], [ 4978347.236223272047937, 3903047.979426454287022 ], [ 4978342.322126853279769, 3903056.708136767614633 ], [ 4978373.385983472689986, 3903074.252449235878885 ], [ 4978375.987794854678214, 3903069.524273187387735 ], [ 4978415.104760731570423, 3903091.819460398051888 ], [ 4978397.472656060010195, 3903122.733119095209986 ], [ 4978287.0237169675529, 3903060.232028088532388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978272.647358872927725, 3907799.012714603915811 ], [ 4978284.982379481196404, 3907820.522702504880726 ], [ 4978256.444183334708214, 3907836.483962667174637 ], [ 4978234.068196846172214, 3907797.838471703231335 ], [ 4978258.859576035290956, 3907783.689899784512818 ], [ 4978268.899743298068643, 3907801.189555543009192 ], [ 4978272.647358872927725, 3907799.012714603915811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978153.992700127884746, 3906317.835685560945421 ], [ 4978115.944898035377264, 3906336.690002538729459 ], [ 4978103.903156884014606, 3906312.267678218893707 ], [ 4978141.950985006988049, 3906293.413344477303326 ], [ 4978153.992700127884746, 3906317.835685560945421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978120.900708223693073, 3903042.40166393481195 ], [ 4978161.460870068520308, 3903063.243010131642222 ], [ 4978153.074209003709257, 3903079.975289252586663 ], [ 4978186.443479568697512, 3903096.796004718635231 ], [ 4978191.648576115258038, 3903086.611357299145311 ], [ 4978216.963094633072615, 3903099.409601219929755 ], [ 4978213.493539620190859, 3903105.956609739921987 ], [ 4978225.86242987588048, 3903112.537193352822214 ], [ 4978196.078661126084626, 3903170.370939265005291 ], [ 4978179.682051012292504, 3903161.961180023383349 ], [ 4978178.236024336889386, 3903164.871167120989412 ], [ 4978152.921549248509109, 3903152.072959168348461 ], [ 4978160.151675445958972, 3903137.523017813451588 ], [ 4978127.64558335300535, 3903121.068292674142867 ], [ 4978122.729259803891182, 3903130.889432482887059 ], [ 4978097.990669596008956, 3903118.092495399992913 ], [ 4978100.883481158874929, 3903111.908383174799383 ], [ 4978088.513789994642138, 3903105.691986729390919 ], [ 4978120.900708223693073, 3903042.40166393481195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977911.652871675789356, 3904629.572707382962108 ], [ 4977887.162077222019434, 3904636.439579252153635 ], [ 4977880.301026530563831, 3904612.756565242540091 ], [ 4977905.080564164556563, 3904605.526164329145104 ], [ 4977911.652871675789356, 3904629.572707382962108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977729.543151158839464, 3911124.945965722203255 ], [ 4977737.005980552174151, 3911135.521514523774385 ], [ 4977762.953994018025696, 3911117.369430832564831 ], [ 4977780.463700414635241, 3911141.80318385688588 ], [ 4977742.982669086195529, 3911168.306057738605887 ], [ 4977718.010879785753787, 3911132.932651631999761 ], [ 4977729.543151158839464, 3911124.945965722203255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977679.807020072825253, 3906979.920155381783843 ], [ 4977659.62896878644824, 3906990.801750880666077 ], [ 4977651.025458835996687, 3906974.397744887508452 ], [ 4977670.914823896251619, 3906963.879668963141739 ], [ 4977679.807020072825253, 3906979.920155381783843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977666.108220050111413, 3908156.038579749874771 ], [ 4977627.188910256139934, 3908179.989627687260509 ], [ 4977610.259068664163351, 3908152.644181047566235 ], [ 4977649.178402821533382, 3908128.693108985666186 ], [ 4977666.108220050111413, 3908156.038579749874771 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977586.482474151998758, 3905348.413235370069742 ], [ 4977585.546109286136925, 3905383.003789671231061 ], [ 4977531.99094864167273, 3905381.435039539355785 ], [ 4977532.927244608290493, 3905346.844483403488994 ], [ 4977586.482474151998758, 3905348.413235370069742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977561.376533005386591, 3913616.357425068039447 ], [ 4977555.324622005224228, 3913619.621942352503538 ], [ 4977543.567418621852994, 3913598.113418111111969 ], [ 4977585.354367535561323, 3913575.624732349999249 ], [ 4977610.301892349496484, 3913621.557898099068552 ], [ 4977574.566900873556733, 3913640.782031345181167 ], [ 4977561.376533005386591, 3913616.357425068039447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977450.998116492293775, 3911751.034943220205605 ], [ 4977425.6228755004704, 3911771.009197392500937 ], [ 4977394.327780640684068, 3911730.889125673566014 ], [ 4977419.414395193569362, 3911711.2783721559681 ], [ 4977418.840158687904477, 3911710.548905184492469 ], [ 4977443.350288916379213, 3911691.30110209621489 ], [ 4977475.220353666692972, 3911731.78656649030745 ], [ 4977450.998116492293775, 3911751.034943220205605 ], [ 4977450.998116492293775, 3911751.034943220205605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977373.768443441949785, 3913579.551453020889312 ], [ 4977404.593010507524014, 3913568.327727967873216 ], [ 4977420.907359983772039, 3913613.150270949117839 ], [ 4977390.082837413996458, 3913624.373977607116103 ], [ 4977373.768443441949785, 3913579.551453020889312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977125.35277927108109, 3904299.843740746378899 ], [ 4977100.999622348695993, 3904240.43968010880053 ], [ 4977134.142995776608586, 3904227.035718450322747 ], [ 4977145.030177573673427, 3904253.639960821717978 ], [ 4977155.693768436089158, 3904249.292564998846501 ], [ 4977159.704746980220079, 3904259.132460234686732 ], [ 4977174.979478385299444, 3904252.974008533637971 ], [ 4977185.006521221250296, 3904277.75582006201148 ], [ 4977166.273261082358658, 3904285.363595520611852 ], [ 4977169.710585415363312, 3904294.109904308337718 ], [ 4977149.824747728183866, 3904302.079424405004829 ], [ 4977145.52732776850462, 3904291.51067155553028 ], [ 4977125.35277927108109, 3904299.843740746378899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977083.169470311142504, 3904644.952772558666766 ], [ 4977062.419295741245151, 3904653.284694218542427 ], [ 4977050.675134413875639, 3904623.401514898054302 ], [ 4977071.137372756376863, 3904615.068986156024039 ], [ 4977083.169470311142504, 3904644.952772558666766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977020.256594254635274, 3912063.291876191273332 ], [ 4977056.588699793443084, 3912034.600796991959214 ], [ 4977074.102986200712621, 3912056.849313553888351 ], [ 4977037.77089190017432, 3912085.540369465947151 ], [ 4977020.256594254635274, 3912063.291876191273332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976939.525110230781138, 3908790.662186090834439 ], [ 4976943.543030899949372, 3908796.860766995232552 ], [ 4976964.875611964613199, 3908783.796223943587393 ], [ 4976985.822106281295419, 3908818.068123822566122 ], [ 4976938.257240947335958, 3908846.735966041684151 ], [ 4976913.580694859847426, 3908806.266122058499604 ], [ 4976939.525110230781138, 3908790.662186090834439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976914.683261138387024, 3902574.880622848402709 ], [ 4976935.097217816859484, 3902590.580552116502076 ], [ 4976942.026782935485244, 3902581.855764289852232 ], [ 4976966.753582383506, 3902600.841835749335587 ], [ 4976962.999310793355107, 3902605.931888426654041 ], [ 4977000.377418179064989, 3902634.411630977876484 ], [ 4976973.811823486350477, 3902668.948993039317429 ], [ 4976951.097909648902714, 3902651.423610656056553 ], [ 4976943.590897109359503, 3902660.87546208081767 ], [ 4976922.026600732468069, 3902644.444880269933492 ], [ 4976930.68853525724262, 3902633.53889120882377 ], [ 4976912.28743102028966, 3902619.299658303149045 ], [ 4976904.779669144190848, 3902629.115649950690567 ], [ 4976884.940924444235861, 3902613.781065248884261 ], [ 4976914.683261138387024, 3902574.880622848402709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976881.311954528093338, 3912154.037110293284059 ], [ 4976908.87400459498167, 3912189.779260674491525 ], [ 4976884.941968217492104, 3912208.300486286636442 ], [ 4976857.379905458539724, 3912172.558360052295029 ], [ 4976881.311954528093338, 3912154.037110293284059 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976848.782664131373167, 3900881.899481358472258 ], [ 4976903.19196685962379, 3900892.571884762495756 ], [ 4976896.498709816485643, 3900926.058055440895259 ], [ 4976842.090225485153496, 3900915.021536160260439 ], [ 4976848.782664131373167, 3900881.899481358472258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976665.711279289796948, 3903349.965547709725797 ], [ 4976642.92043530754745, 3903369.945781875867397 ], [ 4976611.317363887093961, 3903334.195793034508824 ], [ 4976661.515624757856131, 3903289.875234734732658 ], [ 4976688.808905898593366, 3903320.88268382428214 ], [ 4976661.401502394117415, 3903345.222954216878861 ], [ 4976665.711279289796948, 3903349.965547709725797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976633.91977371275425, 3912066.133973306044936 ], [ 4976649.713893853127956, 3912085.101467518135905 ], [ 4976630.681079183705151, 3912101.08408884704113 ], [ 4976614.886955075897276, 3912082.116605641320348 ], [ 4976633.91977371275425, 3912066.133973306044936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976636.145916165784001, 3906656.584158365149051 ], [ 4976645.304995591752231, 3906683.1846768790856 ], [ 4976611.880709216929972, 3906694.768016020301729 ], [ 4976602.434417224489152, 3906667.802785089705139 ], [ 4976636.145916165784001, 3906656.584158365149051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976440.322651633061469, 3909193.090992157813162 ], [ 4976400.260290814563632, 3909214.128418695647269 ], [ 4976396.531708922237158, 3909207.202246252447367 ], [ 4976373.473797077313066, 3909219.535437718499452 ], [ 4976359.419418655335903, 3909193.65319283073768 ], [ 4976380.459758001379669, 3909182.408247268293053 ], [ 4976384.18909471668303, 3909188.97028633672744 ], [ 4976426.269071383401752, 3909166.844581681769341 ], [ 4976440.322651633061469, 3909193.090992157813162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976408.773784341290593, 3911377.823220104444772 ], [ 4976356.841290348209441, 3911433.064875696785748 ], [ 4976343.911218101158738, 3911421.021964550483972 ], [ 4976378.243228232488036, 3911385.043215955607593 ], [ 4976371.921754751354456, 3911379.20411573164165 ], [ 4976390.097253710962832, 3911360.306493347510695 ], [ 4976408.773784341290593, 3911377.823220104444772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976324.017890646122396, 3905535.872910042759031 ], [ 4976288.029148718342185, 3905533.614383595529944 ], [ 4976289.825439728796482, 3905500.117940910160542 ], [ 4976326.102918796241283, 3905502.012929661665112 ], [ 4976324.017890646122396, 3905535.872910042759031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976312.85497634485364, 3901146.247479026205838 ], [ 4976316.638424139469862, 3901126.95629877736792 ], [ 4976334.487271957099438, 3901130.270052638836205 ], [ 4976337.686541274189949, 3901114.983116847462952 ], [ 4976364.17145303171128, 3901120.135247076395899 ], [ 4976354.861605044454336, 3901165.996637196745723 ], [ 4976328.664729367010295, 3901160.845106197521091 ], [ 4976330.703811799176037, 3901149.561230420600623 ], [ 4976312.85497634485364, 3901146.247479026205838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976251.71263525262475, 3914832.399623857811093 ], [ 4976267.819339179433882, 3914838.622883754316717 ], [ 4976247.564251428470016, 3914890.288416869938374 ], [ 4976231.457573862746358, 3914884.065168913919479 ], [ 4976251.71263525262475, 3914832.399623857811093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976266.369904464110732, 3903032.714992212131619 ], [ 4976213.801760249771178, 3903109.439112813211977 ], [ 4976186.194436009973288, 3903090.811971071641892 ], [ 4976239.051255340687931, 3903013.724256888497621 ], [ 4976266.369904464110732, 3903032.714992212131619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976121.468743341043591, 3907569.863952451851219 ], [ 4976107.054704513400793, 3907578.573693909682333 ], [ 4976096.148531834594905, 3907561.437215915881097 ], [ 4976109.121468799188733, 3907553.452790789771825 ], [ 4976102.233590456657112, 3907542.514762523118407 ], [ 4976131.062456658110023, 3907524.731151910498738 ], [ 4976156.604392774403095, 3907565.566140957176685 ], [ 4976129.5053272228688, 3907582.260860878508538 ], [ 4976121.468743341043591, 3907569.863952451851219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975953.864859843626618, 3912958.3237983006984 ], [ 4975965.97229812014848, 3912949.973386668134481 ], [ 4975997.82824282720685, 3912997.73976901685819 ], [ 4975985.433692312799394, 3913005.725448090117425 ], [ 4975953.864859843626618, 3912958.3237983006984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975914.369779370725155, 3903646.286130957305431 ], [ 4975936.852614822797477, 3903635.772064961027354 ], [ 4975953.482749749906361, 3903671.126651700120419 ], [ 4975909.670485654845834, 3903691.4288583509624 ], [ 4975889.313037155196071, 3903648.055830355267972 ], [ 4975910.642515698447824, 3903638.267660117242485 ], [ 4975914.369779370725155, 3903646.286130957305431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975898.908382683992386, 3907850.156330529134721 ], [ 4975913.547902424819767, 3907872.034046065062284 ], [ 4975887.023656853474677, 3907889.458446771837771 ], [ 4975872.672045843675733, 3907867.581330763176084 ], [ 4975898.908382683992386, 3907850.156330529134721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975869.548596904613078, 3906287.969942758791149 ], [ 4975899.807972581125796, 3906275.286850024480373 ], [ 4975917.002012183889747, 3906315.740468230564147 ], [ 4975886.742673832923174, 3906328.423541923053563 ], [ 4975869.548596904613078, 3906287.969942758791149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975860.355232222005725, 3908686.125854738987982 ], [ 4975874.419241855852306, 3908707.638258934952319 ], [ 4975843.571991870179772, 3908727.602848627604544 ], [ 4975855.340103014372289, 3908745.469253755174577 ], [ 4975840.926039975136518, 3908754.543275303207338 ], [ 4975834.611226202920079, 3908745.063001362141222 ], [ 4975802.899576019495726, 3908765.39001447474584 ], [ 4975785.678122853860259, 3908739.137515931390226 ], [ 4975800.380826211534441, 3908729.69991840608418 ], [ 4975798.084187450818717, 3908726.418063479010016 ], [ 4975860.355232222005725, 3908686.125854738987982 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975813.825106436386704, 3905086.221843190956861 ], [ 4975823.281625758856535, 3905108.817208915017545 ], [ 4975779.476972223259509, 3905126.570734592620283 ], [ 4975761.999177621677518, 3905083.567738617304713 ], [ 4975798.311256228014827, 3905068.71202753437683 ], [ 4975806.620428453199565, 3905089.120268203318119 ], [ 4975813.825106436386704, 3905086.221843190956861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975471.96957156714052, 3910393.485483454074711 ], [ 4975501.533651049248874, 3910437.605239226482809 ], [ 4975456.561332162469625, 3910467.737491113133729 ], [ 4975434.460408287122846, 3910434.556819923687726 ], [ 4975458.964395681396127, 3910418.220272674225271 ], [ 4975451.501205085776746, 3910407.281230039894581 ], [ 4975471.96957156714052, 3910393.485483454074711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975426.408341065049171, 3907288.80002566287294 ], [ 4975452.33351906016469, 3907283.026195868384093 ], [ 4975462.039285685867071, 3907324.556839919649065 ], [ 4975436.114145620726049, 3907330.33066050009802 ], [ 4975426.408341065049171, 3907288.80002566287294 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975354.83212342299521, 3911376.408280757255852 ], [ 4975325.750061922706664, 3911379.262792588677257 ], [ 4975326.874475399963558, 3911392.737978945020586 ], [ 4975307.581920037046075, 3911394.883951013442129 ], [ 4975306.450902960263193, 3911384.685949669219553 ], [ 4975287.735574381425977, 3911386.104831316508353 ], [ 4975286.326187381520867, 3911371.172541296109557 ], [ 4975330.380380571819842, 3911367.255722192581743 ], [ 4975330.099094226025045, 3911363.977958501316607 ], [ 4975353.422039870172739, 3911361.84011888038367 ], [ 4975354.83212342299521, 3911376.408280757255852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975220.322086811996996, 3904816.658291690051556 ], [ 4975189.797560256905854, 3904817.325266645289958 ], [ 4975189.780018510296941, 3904826.064389236271381 ], [ 4975163.286119577474892, 3904827.103616716805845 ], [ 4975161.948626795783639, 3904776.122513568494469 ], [ 4975184.986398455686867, 3904775.44047931348905 ], [ 4975184.727678009308875, 3904760.874697518069297 ], [ 4975207.765463357791305, 3904760.192682801280171 ], [ 4975208.313587531447411, 3904774.030782807152718 ], [ 4975218.968613030388951, 3904773.688048141542822 ], [ 4975220.322086811996996, 3904816.658291690051556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974978.076453043147922, 3907734.689987180754542 ], [ 4975023.060083354823291, 3907700.915678009390831 ], [ 4975042.013399691320956, 3907725.714606317691505 ], [ 4974996.74113660864532, 3907759.852439114823937 ], [ 4974978.076453043147922, 3907734.689987180754542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974858.011214055120945, 3900517.729685098864138 ], [ 4974841.235362155362964, 3900553.745160645805299 ], [ 4974809.008485775440931, 3900539.115695380605757 ], [ 4974825.785029361024499, 3900502.736070864833891 ], [ 4974858.011214055120945, 3900517.729685098864138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974701.063265328295529, 3898194.265401938930154 ], [ 4974713.671878710389137, 3898226.698058094829321 ], [ 4974671.011751976795495, 3898242.999093550723046 ], [ 4974670.726622868329287, 3898241.542006400413811 ], [ 4974651.414553117007017, 3898248.786233626306057 ], [ 4974639.379753674380481, 3898217.447136463597417 ], [ 4974701.063265328295529, 3898194.265401938930154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974574.639996061101556, 3897167.89597703749314 ], [ 4974601.687860146164894, 3897181.786584029439837 ], [ 4974598.507909396663308, 3897187.60635077022016 ], [ 4974613.758593762293458, 3897195.28335075173527 ], [ 4974614.627036510966718, 3897193.1002955310978 ], [ 4974647.142455861903727, 3897209.550713107455522 ], [ 4974631.237620960921049, 3897241.198423587251455 ], [ 4974607.067288435995579, 3897228.770017601549625 ], [ 4974600.704506142996252, 3897241.866064373869449 ], [ 4974550.0616789245978, 3897215.912374510895461 ], [ 4974574.639996061101556, 3897167.89597703749314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974547.919195583090186, 3909911.709497753065079 ], [ 4974591.443249460309744, 3909885.942452467512339 ], [ 4974613.825610208325088, 3909923.128434657584876 ], [ 4974570.013696444220841, 3909948.894872911740094 ], [ 4974547.919195583090186, 3909911.709497753065079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974486.303822310641408, 3910931.159220255445689 ], [ 4974463.546251975931227, 3910938.396793532185256 ], [ 4974455.819432348012924, 3910915.076982740312815 ], [ 4974478.864908480085433, 3910907.839973417576402 ], [ 4974486.303822310641408, 3910931.159220255445689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974496.834323230199516, 3904744.937587975058705 ], [ 4974532.607068940065801, 3904711.508393147494644 ], [ 4974563.353190218098462, 3904744.34121260792017 ], [ 4974527.29321778845042, 3904777.405666165519506 ], [ 4974496.834323230199516, 3904744.937587975058705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974454.40969796013087, 3897955.634972481522709 ], [ 4974433.080573066137731, 3897963.239493213128299 ], [ 4974428.210770885460079, 3897949.757046476006508 ], [ 4974414.087363796308637, 3897954.826928813010454 ], [ 4974393.46245052665472, 3897897.617726440541446 ], [ 4974428.627029662951827, 3897884.942722960840911 ], [ 4974454.40969796013087, 3897955.634972481522709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974421.9018540289253, 3904049.662257691845298 ], [ 4974445.825737469829619, 3904038.057400702498853 ], [ 4974459.592386775650084, 3904066.122772272210568 ], [ 4974435.668522306717932, 3904077.727617199532688 ], [ 4974421.9018540289253, 3904049.662257691845298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974372.901738849468529, 3899410.902186245191842 ], [ 4974416.693151901476085, 3899404.070297416299582 ], [ 4974420.675608774647117, 3899429.203170581720769 ], [ 4974419.5235640918836, 3899429.200891573913395 ], [ 4974422.368378116749227, 3899447.048907481599599 ], [ 4974373.679408773779869, 3899454.599367377348244 ], [ 4974371.406267407350242, 3899438.937268683221191 ], [ 4974377.456659054383636, 3899437.856836344115436 ], [ 4974372.901738849468529, 3899410.902186245191842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974348.197117086499929, 3898795.109041064046323 ], [ 4974324.271493531763554, 3898805.257432914339006 ], [ 4974308.789690834470093, 3898769.177974473219365 ], [ 4974344.534163025207818, 3898753.955089891795069 ], [ 4974356.862836979329586, 3898782.381603696383536 ], [ 4974345.044743962585926, 3898787.091948732268065 ], [ 4974348.197117086499929, 3898795.109041064046323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974325.862725202925503, 3895665.368536133784801 ], [ 4974286.095094310119748, 3895673.665026252157986 ], [ 4974273.823084387928247, 3895615.744219075422734 ], [ 4974319.930819246917963, 3895606.003708783071488 ], [ 4974325.35276494268328, 3895631.867610862944275 ], [ 4974319.013467417098582, 3895632.947483788244426 ], [ 4974325.862725202925503, 3895665.368536133784801 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974192.859937186352909, 3899866.80234266538173 ], [ 4974198.816970492713153, 3899913.058646242599934 ], [ 4974162.80761992931366, 3899917.357296489644796 ], [ 4974157.138532082550228, 3899871.101567711215466 ], [ 4974192.859937186352909, 3899866.80234266538173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974171.186574109829962, 3896831.735052606090903 ], [ 4974214.131649467162788, 3896817.982703812420368 ], [ 4974231.596534843556583, 3896871.54420278314501 ], [ 4974178.851776396855712, 3896888.554394268896431 ], [ 4974170.834732500836253, 3896864.141912260558456 ], [ 4974180.634499973617494, 3896860.884039242286235 ], [ 4974171.186574109829962, 3896831.735052606090903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973956.337530681863427, 3897992.159099738579243 ], [ 4973931.541553476825356, 3898005.219171134755015 ], [ 4973932.690090752206743, 3898007.042072468902916 ], [ 4973912.218813298270106, 3898017.925858191214502 ], [ 4973906.480400746688247, 3898006.626584502402693 ], [ 4973894.082427952438593, 3898013.156640382949263 ], [ 4973877.438925639726222, 3897981.444734672084451 ], [ 4973934.815474073402584, 3897951.334342158865184 ], [ 4973956.337530681863427, 3897992.159099738579243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973752.781798295676708, 3897213.979143331293017 ], [ 4973731.161406740546227, 3897223.040169011801481 ], [ 4973708.512540313415229, 3897168.740608294028789 ], [ 4973760.401590803638101, 3897146.994132936932147 ], [ 4973780.757476369850338, 3897195.463177747093141 ], [ 4973750.488898204639554, 3897208.148586944211274 ], [ 4973752.781798295676708, 3897213.979143331293017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973601.152932303957641, 3904077.909601470921189 ], [ 4973614.416893187910318, 3904068.832160010933876 ], [ 4973621.309517635963857, 3904078.313007329590619 ], [ 4973635.438079318962991, 3904068.873129844665527 ], [ 4973664.441931475885212, 3904110.076529791112989 ], [ 4973643.1037094630301, 3904124.9643055931665 ], [ 4973640.232619618996978, 3904120.589131552260369 ], [ 4973625.814703172072768, 3904130.756705566775054 ], [ 4973599.970585085451603, 3904093.564947080798447 ], [ 4973607.756888378411531, 3904087.754014391917735 ], [ 4973601.152932303957641, 3904077.909601470921189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973580.04027736466378, 3902941.779005950316787 ], [ 4973569.416448245756328, 3902925.736552029382437 ], [ 4973592.772105192765594, 3902910.488524990156293 ], [ 4973578.128687952645123, 3902888.248010516166687 ], [ 4973604.078988230787218, 3902871.548521460499614 ], [ 4973643.989568683318794, 3902932.072065629996359 ], [ 4973619.768561720848083, 3902948.04662427585572 ], [ 4973604.837923058308661, 3902925.44140384439379 ], [ 4973580.04027736466378, 3902941.779005950316787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973554.92037761490792, 3908597.060224868822843 ], [ 4973582.501862218603492, 3908626.972787237260491 ], [ 4973558.850493586622179, 3908648.774674380663782 ], [ 4973531.269005171023309, 3908618.862135890871286 ], [ 4973554.92037761490792, 3908597.060224868822843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973560.43484500143677, 3904137.183723549358547 ], [ 4973577.446507797576487, 3904125.928770793136209 ], [ 4973599.84219382610172, 3904159.47247654478997 ], [ 4973551.690428187139332, 3904191.422279755584896 ], [ 4973526.423604100011289, 3904153.503451505675912 ], [ 4973545.453801404684782, 3904140.79587967786938 ], [ 4973540.572640596888959, 3904133.503753657918423 ], [ 4973552.682584042660892, 3904125.516430129297078 ], [ 4973560.43484500143677, 3904137.183723549358547 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973405.110183565877378, 3904492.274081606883556 ], [ 4973432.548819556832314, 3904449.723969560116529 ], [ 4973455.556406063959002, 3904464.698046008124948 ], [ 4973451.224315784871578, 3904471.243996501900256 ], [ 4973463.016408629715443, 3904478.549534800928086 ], [ 4973433.845064215362072, 3904523.645171960350126 ], [ 4973411.987222785130143, 3904509.765739593654871 ], [ 4973417.764029514044523, 3904500.673667042516172 ], [ 4973405.110183565877378, 3904492.274081606883556 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973198.439253565855324, 3906534.65247144876048 ], [ 4973209.581408850848675, 3906579.826371606905013 ], [ 4973162.049697232432663, 3906591.386722727213055 ], [ 4973150.906763622537255, 3906546.576972494833171 ], [ 4973198.439253565855324, 3906534.65247144876048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973166.886333299800754, 3904236.920791432261467 ], [ 4973208.672868994995952, 3904220.251509239897132 ], [ 4973217.270822521299124, 3904241.387755493633449 ], [ 4973210.066199875436723, 3904244.286875164136291 ], [ 4973222.39001024980098, 3904274.533612823113799 ], [ 4973188.096116280183196, 3904288.304303137119859 ], [ 4973166.886333299800754, 3904236.920791432261467 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973140.577771184965968, 3910999.896365883294493 ], [ 4973186.733342763967812, 3910951.555876216385514 ], [ 4973210.297175172716379, 3910973.813546560239047 ], [ 4973164.141599201597273, 3911022.153996415901929 ], [ 4973140.577771184965968, 3910999.896365883294493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972230.698064488358796, 3904707.042754494585097 ], [ 4972264.999227195978165, 3904688.901276957709342 ], [ 4972275.61621873639524, 3904708.58453401690349 ], [ 4972241.315073910169303, 3904726.725998213514686 ], [ 4972230.698064488358796, 3904707.042754494585097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971853.622984717600048, 3892543.291238702367991 ], [ 4971901.484191269613802, 3892522.626025636680424 ], [ 4971912.958879260346293, 3892548.500793128274381 ], [ 4971864.809625152498484, 3892569.165443703532219 ], [ 4971853.622984717600048, 3892543.291238702367991 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971797.64123157504946, 3912190.964126880280674 ], [ 4971818.126237821765244, 3912166.605757437180728 ], [ 4971874.461158783175051, 3912213.685032757930458 ], [ 4971853.976137113757432, 3912238.043359960895032 ], [ 4971797.64123157504946, 3912190.964126880280674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971684.190804697573185, 3906990.938011745456606 ], [ 4971660.550474878400564, 3907006.915456779301167 ], [ 4971648.203634754754603, 3906988.68569742469117 ], [ 4971638.113105057738721, 3906995.585280668456107 ], [ 4971613.130754159763455, 3906959.48937971284613 ], [ 4971653.204318564385176, 3906932.254623303655535 ], [ 4971675.314170710742474, 3906964.703850559424609 ], [ 4971669.260115999728441, 3906968.697941608261317 ], [ 4971684.190804697573185, 3906990.938011745456606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971670.174366189166903, 3902644.638315558899194 ], [ 4971629.822130202315748, 3902663.497451620176435 ], [ 4971619.208629712462425, 3902641.265566096175462 ], [ 4971659.560891544446349, 3902622.406414344906807 ], [ 4971670.174366189166903, 3902644.638315558899194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971544.599871361628175, 3898344.021488451398909 ], [ 4971561.510745822452009, 3898388.11287448508665 ], [ 4971526.923546718433499, 3898401.156838930211961 ], [ 4971510.300646506249905, 3898357.066012878436595 ], [ 4971544.599871361628175, 3898344.021488451398909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971500.38333136588335, 3891643.230739779304713 ], [ 4971536.368595191277564, 3891657.499038676731288 ], [ 4971525.660074490122497, 3891683.696272899862379 ], [ 4971489.675520555116236, 3891669.063860765658319 ], [ 4971500.38333136588335, 3891643.230739779304713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971218.083487888798118, 3911606.538737323135138 ], [ 4971186.675389459356666, 3911622.138057698030025 ], [ 4971194.41973181720823, 3911637.44603999145329 ], [ 4971169.927573771215975, 3911649.416908089537174 ], [ 4971163.905091047286987, 3911637.025195834692568 ], [ 4971149.497546568512917, 3911644.281091743148863 ], [ 4971134.583214776590466, 3911614.394487879239023 ], [ 4971204.60252252407372, 3911579.931958148255944 ], [ 4971218.083487888798118, 3911606.538737323135138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971076.993190373294055, 3897800.232774708420038 ], [ 4971033.755175802856684, 3897818.359154259320349 ], [ 4971025.438763399608433, 3897798.680736337788403 ], [ 4971016.791162298992276, 3897802.306023261044174 ], [ 4971008.474732475355268, 3897782.627610766328871 ], [ 4971019.139889171347022, 3897778.277796952053905 ], [ 4971013.690935655497015, 3897765.523161105345935 ], [ 4971054.911467750556767, 3897748.121271269861609 ], [ 4971076.993190373294055, 3897800.232774708420038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970905.26352021843195, 3891752.820114581380039 ], [ 4970872.703586212359369, 3891755.673027492128313 ], [ 4970868.468875504098833, 3891708.692619090434164 ], [ 4970896.706784556619823, 3891706.195848205126822 ], [ 4970898.971190117299557, 3891728.04774714820087 ], [ 4970903.005174308083951, 3891727.691068350337446 ], [ 4970905.26352021843195, 3891752.820114581380039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970827.390836819075048, 3891175.168493920937181 ], [ 4970812.123570787720382, 3891174.04796002432704 ], [ 4970811.533275628462434, 3891181.693570513278246 ], [ 4970783.014774590730667, 3891179.820372038986534 ], [ 4970783.897857327014208, 3891169.626400839071721 ], [ 4970770.07041415758431, 3891168.87267207307741 ], [ 4970772.144121319055557, 3891137.92556906118989 ], [ 4970829.756738335825503, 3891142.037162928376347 ], [ 4970827.390836819075048, 3891175.168493920937181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970669.559345750138164, 3903995.526784917339683 ], [ 4970687.464585074223578, 3903967.521610549185425 ], [ 4970728.019702830351889, 3903993.449569332879037 ], [ 4970710.114438368938863, 3904021.454717118293047 ], [ 4970669.559345750138164, 3903995.526784917339683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970649.876577401533723, 3911880.772479074075818 ], [ 4970625.96197806391865, 3911892.016639981884509 ], [ 4970623.667656834237278, 3911887.278693650383502 ], [ 4970575.550634352490306, 3911909.766555039212108 ], [ 4970560.926364351063967, 3911878.424265936948359 ], [ 4970632.958054875023663, 3911844.692203076556325 ], [ 4970649.876577401533723, 3911880.772479074075818 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970492.307145236991346, 3903294.248854901175946 ], [ 4970508.378721920773387, 3903324.137060362845659 ], [ 4970453.899829812347889, 3903352.803617146331817 ], [ 4970438.116179309785366, 3903322.915970816276968 ], [ 4970492.307145236991346, 3903294.248854901175946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970192.812630848027766, 3899185.215540153440088 ], [ 4970259.920506592839956, 3899184.973692557308823 ], [ 4970260.136811943724751, 3899224.300150038674474 ], [ 4970212.614606427028775, 3899224.21353821316734 ], [ 4970212.350472556427121, 3899211.104369293898344 ], [ 4970192.764890964142978, 3899211.4328283672221 ], [ 4970192.812630848027766, 3899185.215540153440088 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970190.658216746523976, 3897521.137394540011883 ], [ 4970211.595646859146655, 3897569.968924483750015 ], [ 4970158.556847454048693, 3897592.448416782077402 ], [ 4970148.805530749261379, 3897569.490494462661445 ], [ 4970159.470632134005427, 3897565.140340103302151 ], [ 4970148.284448537044227, 3897539.266768748406321 ], [ 4970190.658216746523976, 3897521.137394540011883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970178.837825071997941, 3902273.381245806347579 ], [ 4970179.939363063313067, 3902301.057198679074645 ], [ 4970129.25216403696686, 3902302.42148569971323 ], [ 4970128.438554588705301, 3902274.746058634482324 ], [ 4970178.837825071997941, 3902273.381245806347579 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970156.54807123914361, 3899171.312581539154053 ], [ 4970144.087959093041718, 3899212.800755944568664 ], [ 4970092.561335612088442, 3899197.413603398017585 ], [ 4970105.022037092596292, 3899155.561276492662728 ], [ 4970156.54807123914361, 3899171.312581539154053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970121.011403641663492, 3897172.902580454945564 ], [ 4970165.97341141756624, 3897157.326784497592598 ], [ 4970170.844169644638896, 3897171.536709712352604 ], [ 4970179.77856850810349, 3897168.639933434780687 ], [ 4970189.521386984735727, 3897196.33153291977942 ], [ 4970135.913084862753749, 3897214.804601753596216 ], [ 4970121.011403641663492, 3897172.902580454945564 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970112.886938322335482, 3897364.055950163863599 ], [ 4970128.363266572356224, 3897406.68727646023035 ], [ 4970083.400374221615493, 3897422.991394888143986 ], [ 4970071.649896528571844, 3897390.562495992984623 ], [ 4970092.690201381221414, 3897382.953993662726134 ], [ 4970088.964295964688063, 3897372.751588861923665 ], [ 4970112.886938322335482, 3897364.055950163863599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970020.030991928651929, 3891707.868424000684172 ], [ 4970051.130593284033239, 3891715.935685840900987 ], [ 4970043.008455784060061, 3891746.507746938150376 ], [ 4970011.908887405879796, 3891738.440494349226356 ], [ 4970020.030991928651929, 3891707.868424000684172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969972.305205811746418, 3894673.976017115171999 ], [ 4969988.167767621576786, 3894663.445023843087256 ], [ 4969995.350175868719816, 3894674.01779423141852 ], [ 4970024.769509834237397, 3894653.679919053334743 ], [ 4970042.006987544707954, 3894679.200245838146657 ], [ 4969975.09408802818507, 3894724.595035475678742 ], [ 4969959.292926750145853, 3894701.262128872331232 ], [ 4969980.923967095091939, 3894686.736162405461073 ], [ 4969972.305205811746418, 3894673.976017115171999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969953.968141396529973, 3897481.01733371661976 ], [ 4969903.244842083193362, 3897497.311316964682192 ], [ 4969885.487010751850903, 3897441.931446517352015 ], [ 4969909.118856248445809, 3897434.691619454417378 ], [ 4969912.555470350198448, 3897445.621735508088022 ], [ 4969939.934380823746324, 3897436.932200125418603 ], [ 4969953.968141396529973, 3897481.01733371661976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969891.558566155843437, 3912700.873111584223807 ], [ 4969928.461216484196484, 3912670.352763970848173 ], [ 4969955.749382189475, 3912703.174213647842407 ], [ 4969918.84674574341625, 3912733.69452441483736 ], [ 4969891.558566155843437, 3912700.873111584223807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969888.596909144893289, 3891264.850007918197662 ], [ 4969834.656659631989896, 3891301.165330331306905 ], [ 4969810.519542209804058, 3891266.165387095883489 ], [ 4969864.460487485863268, 3891229.485889699310064 ], [ 4969888.596909144893289, 3891264.850007918197662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969874.889961563982069, 3895020.086565645877272 ], [ 4969897.377627562731504, 3895009.567501558922231 ], [ 4969909.718006270937622, 3895035.078887400683016 ], [ 4969887.229697917588055, 3895045.962069441564381 ], [ 4969874.889961563982069, 3895020.086565645877272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969857.795625824481249, 3898579.05917302146554 ], [ 4969873.073216117918491, 3898572.168334489222616 ], [ 4969869.916848171502352, 3898565.608283632434905 ], [ 4969891.247492351569235, 3898556.17949492065236 ], [ 4969894.403197215870023, 3898563.103677102830261 ], [ 4969909.104105738922954, 3898556.575945472810417 ], [ 4969923.731828704476357, 3898590.466526843141764 ], [ 4969872.424059798009694, 3898612.585598049685359 ], [ 4969857.795625824481249, 3898579.05917302146554 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969716.995504441671073, 3891845.325167841278017 ], [ 4969708.886255641467869, 3891868.978910763282329 ], [ 4969678.942378142848611, 3891859.093482655938715 ], [ 4969687.051603532396257, 3891835.439730839803815 ], [ 4969716.995504441671073, 3891845.325167841278017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969694.230111385695636, 3898881.720114930998534 ], [ 4969708.97018656693399, 3898853.34453601995483 ], [ 4969759.037887652404606, 3898879.652219288982451 ], [ 4969744.298430861905217, 3898907.663642242085189 ], [ 4969694.230111385695636, 3898881.720114930998534 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969520.578327300958335, 3897265.034844690933824 ], [ 4969537.842073217965662, 3897275.261486079078168 ], [ 4969541.308951123617589, 3897269.441637895535678 ], [ 4969562.025170022621751, 3897281.85927635198459 ], [ 4969539.201783654280007, 3897320.051891996990889 ], [ 4969501.22185131162405, 3897297.40764169069007 ], [ 4969520.578327300958335, 3897265.034844690933824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969409.497447678819299, 3898494.866416435688734 ], [ 4969429.44727449119091, 3898452.298954731784761 ], [ 4969472.902611302211881, 3898472.404034565202892 ], [ 4969457.289371743798256, 3898505.875990941654891 ], [ 4969435.417395767755806, 3898496.005260906647891 ], [ 4969431.081412988714874, 3898504.736609079875052 ], [ 4969409.497447678819299, 3898494.866416435688734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969276.025467238388956, 3899366.719262324273586 ], [ 4969259.833713464438915, 3899402.010967393871397 ], [ 4969206.594472956843674, 3899377.883327291347086 ], [ 4969222.78617118857801, 3899342.591590658761561 ], [ 4969276.025467238388956, 3899366.719262324273586 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969190.695855419151485, 3898280.00269504962489 ], [ 4969151.202894018962979, 3898298.867044293321669 ], [ 4969131.691257514059544, 3898257.321461015380919 ], [ 4969171.183616916649044, 3898238.821212399285287 ], [ 4969190.695855419151485, 3898280.00269504962489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969070.969465001486242, 3896933.237277610227466 ], [ 4969062.881734139285982, 3896945.967429680284113 ], [ 4969077.555463657714427, 3896955.096776902675629 ], [ 4969066.578292367048562, 3896972.919602829497308 ], [ 4969008.170082625001669, 3896937.131054715719074 ], [ 4969027.23494777828455, 3896906.578040278051049 ], [ 4969070.969465001486242, 3896933.237277610227466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968873.078516311943531, 3894824.212240393273532 ], [ 4968904.188406523317099, 3894824.631500130519271 ], [ 4968903.536764090880752, 3894867.233466071542352 ], [ 4968872.426923174411058, 3894866.81420707795769 ], [ 4968873.078516311943531, 3894824.212240393273532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968804.66554259788245, 3897672.676515250466764 ], [ 4968766.336955332197249, 3897684.26088728941977 ], [ 4968752.591316238977015, 3897639.08449133625254 ], [ 4968781.986509781330824, 3897630.033210006542504 ], [ 4968789.145410993136466, 3897653.714309863746166 ], [ 4968798.0788559243083, 3897651.181202213279903 ], [ 4968804.66554259788245, 3897672.676515250466764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968776.812293771654367, 3891432.545566165819764 ], [ 4968808.539662672206759, 3891411.846345510333776 ], [ 4968842.731685624457896, 3891463.613099145237356 ], [ 4968840.424335228279233, 3891465.065528875216842 ], [ 4968854.215573331341147, 3891486.209398674312979 ], [ 4968824.79560255818069, 3891505.456135027576238 ], [ 4968776.812293771654367, 3891432.545566165819764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968670.157258642837405, 3908605.837563836015761 ], [ 4968623.819342449307442, 3908596.652515624184161 ], [ 4968633.985555854626, 3908546.056059575174004 ], [ 4968680.323555929586291, 3908555.241125038824975 ], [ 4968670.157258642837405, 3908605.837563836015761 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967943.566819877363741, 3902083.333779701963067 ], [ 4967963.667381884530187, 3902116.868743568193167 ], [ 4967905.72287193313241, 3902151.360513641964644 ], [ 4967885.622263649478555, 3902117.825592416338623 ], [ 4967943.566819877363741, 3902083.333779701963067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967653.900557678192854, 3900889.575922338757664 ], [ 4967674.669571148231626, 3900870.312872268725187 ], [ 4967720.377155088819563, 3900918.821223671548069 ], [ 4967692.107691751793027, 3900945.353887757286429 ], [ 4967654.736252279952168, 3900905.963238711003214 ], [ 4967662.524702941067517, 3900898.694077024701983 ], [ 4967653.900557678192854, 3900889.575922338757664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967207.480616424232721, 3905282.777546843048185 ], [ 4967218.392758060246706, 3905300.274522692430764 ], [ 4967206.574424624443054, 3905307.53693787753582 ], [ 4967195.66165566444397, 3905290.404097174759954 ], [ 4967207.480616424232721, 3905282.777546843048185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966928.14358304720372, 3899029.083333645481616 ], [ 4966895.586705373600125, 3899035.582366041373461 ], [ 4966883.302194252610207, 3898976.572431962005794 ], [ 4966915.859140358865261, 3898970.073384916875511 ], [ 4966928.14358304720372, 3899029.083333645481616 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966737.237958416342735, 3890828.56976138567552 ], [ 4966751.720155022107065, 3890783.078225249890238 ], [ 4966785.986625066027045, 3890793.695960382930934 ], [ 4966771.792479327879846, 3890839.187966136727482 ], [ 4966737.237958416342735, 3890828.56976138567552 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966655.706397133879364, 3896626.457227981649339 ], [ 4966624.304988679476082, 3896629.317240520846099 ], [ 4966621.756255792453885, 3896603.459739061072469 ], [ 4966653.157694170251489, 3896600.599723595194519 ], [ 4966655.706397133879364, 3896626.457227981649339 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966538.488076586276293, 3894907.932922030799091 ], [ 4966502.767457867972553, 3894908.601025517098606 ], [ 4966502.259989742189646, 3894867.817701548803598 ], [ 4966537.692602578550577, 3894867.149112112354487 ], [ 4966538.488076586276293, 3894907.932922030799091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966516.539808975532651, 3905543.051160939969122 ], [ 4966541.807219117879868, 3905585.69712585862726 ], [ 4966507.508010104298592, 3905605.66657093167305 ], [ 4966482.240564466454089, 3905563.020637739449739 ], [ 4966516.539808975532651, 3905543.051160939969122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966435.438046660274267, 3901716.260975375771523 ], [ 4966463.968329375609756, 3901704.656776830088347 ], [ 4966479.742031975649297, 3901743.645300798118114 ], [ 4966451.499770000576973, 3901755.24996723793447 ], [ 4966435.438046660274267, 3901716.260975375771523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966327.32622676808387, 3899038.264626981224865 ], [ 4966337.176165662705898, 3899004.05292046116665 ], [ 4966403.101181420497596, 3899022.370092632714659 ], [ 4966393.539180371910334, 3899056.582259101327509 ], [ 4966327.32622676808387, 3899038.264626981224865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965436.771231092512608, 3893611.620709908660501 ], [ 4965466.463763981126249, 3893598.925018762238324 ], [ 4965478.803604598157108, 3893627.711500498466194 ], [ 4965449.111097612418234, 3893640.407178226858377 ], [ 4965436.771231092512608, 3893611.620709908660501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965220.792912351898849, 3906591.419343449641019 ], [ 4965246.447694038972259, 3906573.983014227356762 ], [ 4965270.003451297990978, 3906607.521712646819651 ], [ 4965244.348686237819493, 3906624.958019742742181 ], [ 4965220.792912351898849, 3906591.419343449641019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965231.134477319195867, 3900095.703233810607344 ], [ 4965230.19360129814595, 3900142.674502490554005 ], [ 4965200.241830067709088, 3900142.26137717673555 ], [ 4965201.182653761468828, 3900095.290107460226864 ], [ 4965231.134477319195867, 3900095.703233810607344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965212.767658377997577, 3911143.787479589227587 ], [ 4965242.425245740450919, 3911140.558832104317844 ], [ 4965246.400784423574805, 3911174.065556121990085 ], [ 4965216.454752357676625, 3911177.657859943341464 ], [ 4965212.767658377997577, 3911143.787479589227587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965127.117928138002753, 3895183.786938896868378 ], [ 4965131.764281884767115, 3895160.854382016696036 ], [ 4965157.969134001992643, 3895165.994980432093143 ], [ 4965153.322758766822517, 3895188.927532851696014 ], [ 4965127.117928138002753, 3895183.786938896868378 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965035.716090747155249, 3902663.232935435138643 ], [ 4965023.91972950194031, 3902656.659363252110779 ], [ 4965036.628075813874602, 3902633.73982264706865 ], [ 4965080.936718, 3902658.208818209823221 ], [ 4965058.986391787417233, 3902697.499159533996135 ], [ 4965026.474150870926678, 3902679.603767762891948 ], [ 4965035.716090747155249, 3902663.232935435138643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965020.237960264086723, 3894482.664087314158678 ], [ 4965048.458757397718728, 3894488.5361164258793 ], [ 4965042.65535952989012, 3894514.379826481454074 ], [ 4965014.723244990222156, 3894508.14414422493428 ], [ 4965020.237960264086723, 3894482.664087314158678 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964921.959326975047588, 3904261.583036209456623 ], [ 4964939.818729087710381, 3904257.970754056237638 ], [ 4964937.248405069112778, 3904244.857852135319263 ], [ 4964963.461610562168062, 3904239.438511825632304 ], [ 4964973.746397192589939, 3904289.70534997060895 ], [ 4964929.673860125243664, 3904298.736957537010312 ], [ 4964921.959326975047588, 3904261.583036209456623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964943.49128083139658, 3890480.401274490170181 ], [ 4964945.497970156371593, 3890486.594715462997556 ], [ 4964963.945698236115277, 3890481.162779244594276 ], [ 4964972.829645552672446, 3890510.307483049575239 ], [ 4964895.579208258539438, 3890533.486176548991352 ], [ 4964884.689074413850904, 3890497.783933960366994 ], [ 4964943.49128083139658, 3890480.401274490170181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964781.353243909776211, 3898800.124201226513833 ], [ 4964786.007534596137702, 3898771.729599853977561 ], [ 4964844.747304547578096, 3898781.656317362096161 ], [ 4964839.804935674183071, 3898810.050441645085812 ], [ 4964781.353243909776211, 3898800.124201226513833 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964709.735147008672357, 3901232.762595374602824 ], [ 4964723.032836597412825, 3901201.833007029257715 ], [ 4964768.217538041993976, 3901220.476790259592235 ], [ 4964755.207207784056664, 3901251.770952357910573 ], [ 4964709.735147008672357, 3901232.762595374602824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964668.630358124151826, 3901719.174615453463048 ], [ 4964669.729947095736861, 3901751.584018775261939 ], [ 4964621.345313012599945, 3901753.326545425690711 ], [ 4964619.957679156213999, 3901720.916679312009364 ], [ 4964668.630358124151826, 3901719.174615453463048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964565.537179079838097, 3901536.57882338296622 ], [ 4964580.775329945608974, 3901552.261002731975168 ], [ 4964587.698208294808865, 3901545.353683894965798 ], [ 4964604.661921614781022, 3901562.49518188694492 ], [ 4964569.760751523077488, 3901596.303049214649945 ], [ 4964537.559472013264894, 3901563.115279502235353 ], [ 4964565.537179079838097, 3901536.57882338296622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964573.917866225354373, 3892940.583459195680916 ], [ 4964584.043536631390452, 3892914.018381106201559 ], [ 4964615.136900381185114, 3892926.084766024257988 ], [ 4964604.723123170435429, 3892952.649368018377572 ], [ 4964573.917866225354373, 3892940.583459195680916 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964152.932391324080527, 3901303.601695880293846 ], [ 4964179.140743325464427, 3901302.915285076480359 ], [ 4964180.499267803505063, 3901353.895730570890009 ], [ 4964135.858408883213997, 3901355.280981833580881 ], [ 4964134.768616911023855, 3901316.317275120876729 ], [ 4964153.201200196519494, 3901315.618432627525181 ], [ 4964152.932391324080527, 3901303.601695880293846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963569.034300582483411, 3907791.494602696504444 ], [ 4963597.563212662935257, 3907775.881876450031996 ], [ 4963624.263557788915932, 3907824.353522330056876 ], [ 4963595.734681528992951, 3907839.966220683418214 ], [ 4963569.034300582483411, 3907791.494602696504444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963386.346060664393008, 3904211.79428189387545 ], [ 4963421.802274124696851, 3904188.181375025305897 ], [ 4963447.65750908665359, 3904227.183996233623475 ], [ 4963407.012912035919726, 3904254.065910191740841 ], [ 4963394.08557301107794, 3904234.382550461217761 ], [ 4963399.273987398482859, 3904231.113507370930165 ], [ 4963386.346060664393008, 3904211.79428189387545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963299.157556899823248, 3903803.102605894207954 ], [ 4963319.841962932609022, 3903834.450251168571413 ], [ 4963285.827470434829593, 3903856.60901888506487 ], [ 4963265.431005967780948, 3903825.261849585454911 ], [ 4963299.157556899823248, 3903803.102605894207954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962957.529106080532074, 3893474.388895273208618 ], [ 4962994.995816057547927, 3893463.523183185141534 ], [ 4963010.181780388578773, 3893516.345447221305221 ], [ 4962987.125642264261842, 3893522.863961213734001 ], [ 4962981.967433669604361, 3893505.377769932150841 ], [ 4962967.844995274208486, 3893509.725396941881627 ], [ 4962957.529106080532074, 3893474.388895273208618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962923.962124476209283, 3903416.903403976466507 ], [ 4962930.902734722942114, 3903397.979357443749905 ], [ 4962918.23888953588903, 3903393.590147273149341 ], [ 4962923.443783101625741, 3903379.761241365689784 ], [ 4962932.941671635955572, 3903383.053150244057178 ], [ 4962931.785278224386275, 3903385.96440434968099 ], [ 4962983.01431505009532, 3903404.978721111081541 ], [ 4962971.737750202417374, 3903434.455820652656257 ], [ 4962923.962124476209283, 3903416.903403976466507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962865.859124638140202, 3892956.091610147617757 ], [ 4962892.359713670797646, 3892957.953288885299116 ], [ 4962889.999798811040819, 3892993.634246992412955 ], [ 4962863.498681173659861, 3892992.13669839175418 ], [ 4962865.859124638140202, 3892956.091610147617757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962831.090592143125832, 3897367.826886220369488 ], [ 4962831.416928868740797, 3897343.066575143951923 ], [ 4962823.063956643454731, 3897343.053654873743653 ], [ 4962823.392538916319609, 3897316.836829007137567 ], [ 4962859.683671098202467, 3897317.621242189314216 ], [ 4962859.984669365920126, 3897309.246726480312645 ], [ 4962873.810295948758721, 3897309.268132149707526 ], [ 4962872.566253788769245, 3897368.619337538257241 ], [ 4962831.090592143125832, 3897367.826886220369488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961838.499440722167492, 3899292.556576220784336 ], [ 4961825.209632256068289, 3899319.846264005172998 ], [ 4961780.024090392515063, 3899298.294416175689548 ], [ 4961791.292281111702323, 3899274.642957455012947 ], [ 4961814.604833506979048, 3899285.602032445836812 ], [ 4961816.338405520655215, 3899281.963348418474197 ], [ 4961838.499440722167492, 3899292.556576220784336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961769.071183736436069, 3895864.535084241535515 ], [ 4961803.916917225345969, 3895870.049570660572499 ], [ 4961801.58945192489773, 3895885.339490326587111 ], [ 4961807.349336066283286, 3895886.076438624877483 ], [ 4961801.243176817893982, 3895923.936675019562244 ], [ 4961785.404340172186494, 3895921.363880992401391 ], [ 4961781.915361691266298, 3895942.842249752022326 ], [ 4961756.861175337806344, 3895938.79906173190102 ], [ 4961769.071183736436069, 3895864.535084241535515 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961414.475446839816868, 3894711.898227896541357 ], [ 4961481.302495998330414, 3894714.182930359151214 ], [ 4961479.800611197948456, 3894755.327265901025385 ], [ 4961412.973664204590023, 3894753.042567113414407 ], [ 4961414.475446839816868, 3894711.898227896541357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961248.462745992466807, 3896707.443172899074852 ], [ 4961312.103922077454627, 3896718.097702203784138 ], [ 4961308.036087541840971, 3896741.760056048166007 ], [ 4961281.542917780578136, 3896737.35103427246213 ], [ 4961274.857814472168684, 3896777.759452146943659 ], [ 4961247.501097748056054, 3896772.985048490110785 ], [ 4961251.280292580835521, 3896749.686385083012283 ], [ 4961241.489103489555418, 3896748.215298429131508 ], [ 4961248.462745992466807, 3896707.443172899074852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960459.92853067535907, 3896228.907734403852373 ], [ 4960503.691767061129212, 3896242.444391773547977 ], [ 4960493.853040318004787, 3896273.381021996960044 ], [ 4960505.657567207701504, 3896277.039551919791847 ], [ 4960498.132777510210872, 3896301.425231783650815 ], [ 4960476.251477154903114, 3896294.474834178574383 ], [ 4960473.647385138086975, 3896302.481880384031683 ], [ 4960439.961553283967078, 3896291.872996402904391 ], [ 4960459.92853067535907, 3896228.907734403852373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960098.682665416970849, 3898844.654622661881149 ], [ 4960097.177319830283523, 3898889.804556858260185 ], [ 4960043.032760750502348, 3898887.905706403777003 ], [ 4960044.538015474565327, 3898842.755769229028374 ], [ 4960098.682665416970849, 3898844.654622661881149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959596.331921360455453, 3889386.049486762378365 ], [ 4959577.898547497577965, 3889381.653669399209321 ], [ 4959582.537519522942603, 3889361.269121147692204 ], [ 4959634.670434006489813, 3889372.995587332639843 ], [ 4959626.263533598743379, 3889409.032247877214104 ], [ 4959592.852687006816268, 3889401.33789628604427 ], [ 4959596.331921360455453, 3889386.049486762378365 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959521.881841601803899, 3906661.350429536309093 ], [ 4959555.78949430398643, 3906709.464121636934578 ], [ 4959533.885303474962711, 3906724.362301692832261 ], [ 4959529.000298442319036, 3906717.436840992886573 ], [ 4959501.6197016434744, 3906736.332694448065013 ], [ 4959466.56180621124804, 3906687.125039129052311 ], [ 4959506.912919604219496, 3906658.780191893689334 ], [ 4959513.235016568563879, 3906667.528352822642773 ], [ 4959521.881841601803899, 3906661.350429536309093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959353.787813880480826, 3904994.846076624002308 ], [ 4959375.604452720843256, 3905042.578215590678155 ], [ 4959332.67188451718539, 3905062.18042615801096 ], [ 4959322.625076341442764, 3905039.95418272446841 ], [ 4959330.116963639855385, 3905036.323485744651407 ], [ 4959318.635029647499323, 3905010.818029205780476 ], [ 4959353.787813880480826, 3904994.846076624002308 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957858.404268561862409, 3905875.78573390096426 ], [ 4957838.000044225715101, 3905846.627430255524814 ], [ 4957899.10144274495542, 3905804.471452061552554 ], [ 4957919.505632979795337, 3905833.629801344592124 ], [ 4957858.404268561862409, 3905875.78573390096426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957792.627955261617899, 3905332.776346641592681 ], [ 4957801.53106143977493, 3905349.90262648742646 ], [ 4957815.362462027929723, 3905342.638817785307765 ], [ 4957820.24419479444623, 3905352.477006151806563 ], [ 4957809.294751167297363, 3905357.924076634459198 ], [ 4957812.453752619214356, 3905364.118606866337359 ], [ 4957766.926366690546274, 3905387.361103221774101 ], [ 4957749.981493910774589, 3905354.930395299103111 ], [ 4957792.627955261617899, 3905332.776346641592681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957433.116433523595333, 3897744.903569076675922 ], [ 4957430.724465761333704, 3897810.079553528688848 ], [ 4957397.026597854681313, 3897808.941826878581196 ], [ 4957399.707002942450345, 3897743.402097863610834 ], [ 4957433.116433523595333, 3897744.903569076675922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956750.120041741989553, 3900202.597795012872666 ], [ 4956759.045244650915265, 3900204.794366170186549 ], [ 4956753.82944662310183, 3900228.820065673440695 ], [ 4956714.384140971116722, 3900220.3929946096614 ], [ 4956725.106565900146961, 3900170.157184989657253 ], [ 4956755.91425293777138, 3900176.752208566758782 ], [ 4956750.120041741989553, 3900202.597795012872666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956461.397685083560646, 3906026.125745533034205 ], [ 4956479.50499496050179, 3906051.274548011366278 ], [ 4956448.954236592166126, 3906073.446529219858348 ], [ 4956430.559449642896652, 3906047.933239197358489 ], [ 4956461.397685083560646, 3906026.125745533034205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955426.979095905087888, 3898659.156467214692384 ], [ 4955417.445293788798153, 3898682.084523142315447 ], [ 4955397.294128686189651, 3898674.048059384338558 ], [ 4955406.828379168175161, 3898650.755867214407772 ], [ 4955426.979095905087888, 3898659.156467214692384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955334.313326567411423, 3894282.568565703928471 ], [ 4955386.69931990839541, 3894315.770761446561664 ], [ 4955369.669690846465528, 3894342.330548450350761 ], [ 4955317.283728355541825, 3894309.128385358955711 ], [ 4955334.313326567411423, 3894282.568565703928471 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955254.518870569765568, 3890638.269924633204937 ], [ 4955285.648540079593658, 3890627.021343592554331 ], [ 4955312.92491364851594, 3890700.973886348772794 ], [ 4955281.507213655859232, 3890712.222071611788124 ], [ 4955254.518870569765568, 3890638.269924633204937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954408.610691413283348, 3893231.627727513667196 ], [ 4954366.510995246469975, 3893264.347409346140921 ], [ 4954348.390820947475731, 3893241.02086336305365 ], [ 4954390.490531476214528, 3893208.301153606269509 ], [ 4954408.610691413283348, 3893231.627727513667196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954067.048986865207553, 3901172.143721223343164 ], [ 4954069.110733364708722, 3901134.640816806349903 ], [ 4954063.351320023648441, 3901134.269654111471027 ], [ 4954064.531300691887736, 3901111.330885650124401 ], [ 4954118.958442533388734, 3901114.310436634812504 ], [ 4954115.716601308435202, 3901174.752103468868881 ], [ 4954067.048986865207553, 3901172.143721223343164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954061.943087209016085, 3894501.647538082208484 ], [ 4954081.557230373844504, 3894480.552011210471392 ], [ 4954120.690327995456755, 3894516.284462032373995 ], [ 4954101.36424367595464, 3894537.380312819965184 ], [ 4954061.943087209016085, 3894501.647538082208484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952647.11092693824321, 3891915.009140198118985 ], [ 4952656.580945912748575, 3891946.69936339231208 ], [ 4952580.786611583083868, 3891969.186884059105068 ], [ 4952571.316087076440454, 3891937.860814949497581 ], [ 4952647.11092693824321, 3891915.009140198118985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952448.583138141781092, 3893184.12973241135478 ], [ 4952451.209649215452373, 3893155.002495707944036 ], [ 4952485.775672944262624, 3893157.955663366708905 ], [ 4952483.149547728709877, 3893186.718768665101379 ], [ 4952448.583138141781092, 3893184.12973241135478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952433.279035093262792, 3889737.638572561088949 ], [ 4952435.23417959921062, 3889790.803505033254623 ], [ 4952390.86286698654294, 3889792.208588957320899 ], [ 4952390.028465834446251, 3889766.354545630980283 ], [ 4952397.807563118636608, 3889766.363556256517768 ], [ 4952396.686740036122501, 3889739.052669963799417 ], [ 4952433.279035093262792, 3889737.638572561088949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952162.716588625684381, 3890258.029019799549133 ], [ 4952170.748477330431342, 3890288.625002871267498 ], [ 4952139.33538012765348, 3890296.599709927104414 ], [ 4952131.591567452065647, 3890266.004067010246217 ], [ 4952162.716588625684381, 3890258.029019799549133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951537.513588649220765, 3896654.693009146954864 ], [ 4951499.492189651355147, 3896654.650195443071425 ], [ 4951499.538493316620588, 3896613.503638003021479 ], [ 4951506.16344419401139, 3896613.511094109155238 ], [ 4951506.214676279574633, 3896567.994991932064295 ], [ 4951538.187319425866008, 3896568.030998764093965 ], [ 4951538.172548993490636, 3896581.139636045321822 ], [ 4951554.878966976888478, 3896581.158465545624495 ], [ 4951554.848588785156608, 3896608.103998044505715 ], [ 4951537.278063346631825, 3896608.084194906055927 ], [ 4951537.513588649220765, 3896654.693009146954864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951524.928900611586869, 3893250.437488093506545 ], [ 4951546.533473053015769, 3893251.554212206508964 ], [ 4951545.653648040257394, 3893265.390106218401343 ], [ 4951593.47117858659476, 3893268.35706336190924 ], [ 4951591.418062816374004, 3893300.762189038097858 ], [ 4951569.237788706086576, 3893299.280650924425572 ], [ 4951568.651368694379926, 3893308.383203976321965 ], [ 4951521.697727018035948, 3893305.781392151489854 ], [ 4951524.928900611586869, 3893250.437488093506545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951351.043815147131681, 3901122.355883377138525 ], [ 4951351.953471929766238, 3901081.574313417077065 ], [ 4951432.301603753119707, 3901083.485077179037035 ], [ 4951431.391825105063617, 3901124.266644462477416 ], [ 4951351.043815147131681, 3901122.355883377138525 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950416.568914936855435, 3890178.882998427376151 ], [ 4950419.99147427175194, 3890210.929966755677015 ], [ 4950396.3636952387169, 3890213.453238326124847 ], [ 4950392.941108073107898, 3890181.406272962223738 ], [ 4950416.568914936855435, 3890178.882998427376151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950396.593426721170545, 3890001.531059373170137 ], [ 4950371.235609782859683, 3890005.144861132837832 ], [ 4950366.947050808928907, 3889974.553476481232792 ], [ 4950392.304896016605198, 3889970.939670753199607 ], [ 4950396.593426721170545, 3890001.531059373170137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950329.213210645131767, 3890232.679307614918798 ], [ 4950361.736885140649974, 3890262.93711965251714 ], [ 4950333.181363739073277, 3890293.128833491355181 ], [ 4950339.801174967549741, 3890299.326169570442289 ], [ 4950320.475824470631778, 3890319.69643147289753 ], [ 4950276.152278139255941, 3890277.773833578918129 ], [ 4950300.380993771366775, 3890252.311047016177326 ], [ 4950297.215329663828015, 3890249.030475596897304 ], [ 4950311.925446848385036, 3890233.752999478951097 ], [ 4950320.560076587833464, 3890241.773148029576987 ], [ 4950329.213210645131767, 3890232.679307614918798 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950279.249036545865238, 3891945.84797051595524 ], [ 4950267.696299327537417, 3891972.780991020146757 ], [ 4950224.790351212956011, 3891954.528302324470133 ], [ 4950236.343053230084479, 3891927.595263665542006 ], [ 4950279.249036545865238, 3891945.84797051595524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949871.665271643549204, 3891883.873295815195888 ], [ 4949863.338892864994705, 3891857.283070905134082 ], [ 4949931.928169916383922, 3891835.508461825083941 ], [ 4949939.106392789632082, 3891858.092071786988527 ], [ 4949917.492093223147094, 3891864.987452629953623 ], [ 4949921.224866009317338, 3891876.643537046387792 ], [ 4949899.610585944727063, 3891883.538932335097343 ], [ 4949897.025905480608344, 3891875.889484908431768 ], [ 4949871.665271643549204, 3891883.873295815195888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949685.319502547383308, 3889929.764490782283247 ], [ 4949694.220187213271856, 3889958.904132552444935 ], [ 4949646.089607369154692, 3889973.782499255612493 ], [ 4949637.189259958453476, 3889944.27874573552981 ], [ 4949685.319502547383308, 3889929.764490782283247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949677.398528873920441, 3890336.486954911146313 ], [ 4949624.373480182141066, 3890348.811293070204556 ], [ 4949618.63743609469384, 3890324.044541691895574 ], [ 4949671.374422090128064, 3890311.719887850806117 ], [ 4949677.398528873920441, 3890336.486954911146313 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948936.853777240030468, 3894074.947743592783809 ], [ 4948933.942343652248383, 3894104.803299115039408 ], [ 4948941.719435561448336, 3894105.53956646239385 ], [ 4948939.681579882279038, 3894126.292803924996406 ], [ 4948894.459397991187871, 3894121.876718163955957 ], [ 4948899.408236955292523, 3894071.632046134676784 ], [ 4948936.853777240030468, 3894074.947743592783809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947447.356597675941885, 3890713.278785852715373 ], [ 4947454.242006325162947, 3890743.143989502452314 ], [ 4947429.459368178620934, 3890748.945894647855312 ], [ 4947422.285829002968967, 3890719.080416785087436 ], [ 4947447.356597675941885, 3890713.278785852715373 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946685.334764913655818, 3889783.292786072008312 ], [ 4946686.170172561891377, 3889813.880308900494128 ], [ 4946634.596354717388749, 3889815.288079058285803 ], [ 4946633.761232211254537, 3889784.336430367548019 ], [ 4946685.334764913655818, 3889783.292786072008312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946187.091979585587978, 3892057.169540049973875 ], [ 4946219.931214855983853, 3892060.477174147963524 ], [ 4946214.989726532250643, 3892107.809256806969643 ], [ 4946182.15054848510772, 3892104.501628657337278 ], [ 4946187.091979585587978, 3892057.169540049973875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946105.989757444709539, 3892529.732952639926225 ], [ 4946137.962484644725919, 3892534.86032861052081 ], [ 4946129.852296328172088, 3892582.189506580587476 ], [ 4946126.10787114687264, 3892581.457784925587475 ], [ 4946123.790729652158916, 3892594.92838991433382 ], [ 4946095.850917140953243, 3892590.168885701335967 ], [ 4946105.989757444709539, 3892529.732952639926225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945041.438864725641906, 3891638.476282421499491 ], [ 4945035.630260547623038, 3891691.269723334815353 ], [ 4944990.115574564784765, 3891686.495828920509666 ], [ 4944993.310978991910815, 3891656.640143062453717 ], [ 4944978.619447091594338, 3891655.170659999363124 ], [ 4944981.814842415973544, 3891625.314973313827068 ], [ 4945010.045557853765786, 3891628.252932467497885 ], [ 4945009.463254311122, 3891635.170852407813072 ], [ 4945041.438864725641906, 3891638.476282421499491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944962.68400548491627, 3891757.47661018371582 ], [ 4944964.436012025922537, 3891730.896800047252327 ], [ 4944987.482219077646732, 3891732.373650631867349 ], [ 4944989.525882394984365, 3891701.788690377492458 ], [ 4945023.519039512611926, 3891704.003496376331896 ], [ 4945022.353141131810844, 3891719.295847772154957 ], [ 4945033.300060814246535, 3891720.033785702195019 ], [ 4945032.13222495559603, 3891737.510904049966484 ], [ 4945018.88056356087327, 3891736.770928902551532 ], [ 4945017.41852827463299, 3891761.166222999338061 ], [ 4944962.68400548491627, 3891757.47661018371582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944887.590285544283688, 3890989.828495191410184 ], [ 4944892.5056237205863, 3890969.80577737884596 ], [ 4944931.966913034208119, 3890979.671962752472609 ], [ 4944918.666792331263423, 3891033.55119504313916 ], [ 4944877.76507106050849, 3891023.683762905653566 ], [ 4944881.813530974090099, 3891006.573304948396981 ], [ 4944870.867916183546185, 3891004.014790412504226 ], [ 4944875.204476285725832, 3890986.904584778938442 ], [ 4944887.590285544283688, 3890989.828495191410184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944755.364678146317601, 3891963.391104508657008 ], [ 4944756.79367259144783, 3891976.500969177577645 ], [ 4944784.452961545437574, 3891973.612141466699541 ], [ 4944789.309701479971409, 3892020.224804010242224 ], [ 4944759.921598338522017, 3892023.476243134588003 ], [ 4944760.493321469984949, 3892028.574538088403642 ], [ 4944736.291176959872246, 3892031.466410355642438 ], [ 4944729.433928678743541, 3891966.281471651978791 ], [ 4944755.364678146317601, 3891963.391104508657008 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944730.305560260079801, 3891298.107113555539399 ], [ 4944727.384195495396852, 3891344.348826604895294 ], [ 4944673.512761043384671, 3891341.024685909971595 ], [ 4944675.265777135267854, 3891312.988352200947702 ], [ 4944685.6366754071787, 3891313.725646374281496 ], [ 4944686.804938763380051, 3891295.520261703059077 ], [ 4944730.305560260079801, 3891298.107113555539399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943655.098157463595271, 3892363.720977718941867 ], [ 4943656.565601174719632, 3892331.314784704241902 ], [ 4943641.87375904340297, 3892330.5742875514552 ], [ 4943643.044002213515341, 3892309.091694714967161 ], [ 4943669.258747125975788, 3892310.570055497344583 ], [ 4943670.43265697453171, 3892284.717928046826273 ], [ 4943698.087862734682858, 3892286.197518206201494 ], [ 4943694.564540294930339, 3892365.57453841669485 ], [ 4943655.098157463595271, 3892363.720977718941867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993528.384129338897765, 3908179.461174887605011 ], [ 4993527.993362283334136, 3908217.694078733213246 ], [ 4993535.767121184617281, 3908217.714991482440382 ], [ 4993535.728915777988732, 3908231.916072227060795 ], [ 4993527.091410457156599, 3908231.892835989128798 ], [ 4993527.04341452755034, 3908249.735219691414386 ], [ 4993487.887728612869978, 3908249.265786700882018 ], [ 4993488.266690599732101, 3908215.402444818522781 ], [ 4993493.161279951222241, 3908215.41560460627079 ], [ 4993493.546123143285513, 3908179.367481903638691 ], [ 4993528.384129338897765, 3908179.461174887605011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990719.921035503968596, 3908551.115369073115289 ], [ 4990721.160248034633696, 3908517.254215127788484 ], [ 4990769.812967060133815, 3908519.200719672720879 ], [ 4990768.574635423719883, 3908552.697740958072245 ], [ 4990719.921035503968596, 3908551.115369073115289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988708.371292527765036, 3908390.869134876411408 ], [ 4988732.195086412131786, 3908420.059581900481135 ], [ 4988708.249702493660152, 3908439.298490229994059 ], [ 4988706.527699887752533, 3908437.109370157122612 ], [ 4988704.508640729822218, 3908438.560832344926894 ], [ 4988682.69475475884974, 3908411.560250503011048 ], [ 4988708.371292527765036, 3908390.869134876411408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988307.816831064410508, 3905300.567002923227847 ], [ 4988335.745084621012211, 3905301.729107876773924 ], [ 4988334.51238717418164, 3905334.133785591460764 ], [ 4988306.583258591592312, 3905333.335811713710427 ], [ 4988307.816831064410508, 3905300.567002923227847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988284.271159055642784, 3908736.46213852474466 ], [ 4988290.527982989326119, 3908767.429041645489633 ], [ 4988246.166973631829023, 3908776.421712112147361 ], [ 4988239.622189400717616, 3908745.454101304057986 ], [ 4988284.271159055642784, 3908736.46213852474466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987521.901113402098417, 3905924.924508518539369 ], [ 4987493.394000781700015, 3905925.218349206726998 ], [ 4987493.153635071590543, 3905905.918750810436904 ], [ 4987521.660768161527812, 3905905.62490988150239 ], [ 4987521.901113402098417, 3905924.924508518539369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987481.465747916139662, 3905741.302201793063432 ], [ 4987479.882434393279254, 3905799.559443786740303 ], [ 4987441.011935610324144, 3905798.735403144266456 ], [ 4987442.884005405940115, 3905740.114738249219954 ], [ 4987481.465747916139662, 3905741.302201793063432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986963.728295365348458, 3909160.327778643462807 ], [ 4986957.814046199433506, 3909106.421646327245981 ], [ 4987022.034348758868873, 3909099.660254186484963 ], [ 4987028.231028832495213, 3909155.751889553386718 ], [ 4987009.800528286024928, 3909157.527438693679869 ], [ 4987010.362973758019507, 3909162.990808776579797 ], [ 4986984.444228711538017, 3909165.84044726844877 ], [ 4986983.599216306582093, 3909158.191589016932994 ], [ 4986963.728295365348458, 3909160.327778643462807 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986680.57091620285064, 3908628.002794078551233 ], [ 4986686.541701124049723, 3908658.968620489351451 ], [ 4986622.884739111177623, 3908670.46591172227636 ], [ 4986617.200910075567663, 3908639.864930294454098 ], [ 4986680.57091620285064, 3908628.002794078551233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986638.636303193867207, 3910006.143817330244929 ], [ 4986693.066732367500663, 3909998.993682732339948 ], [ 4986696.179502608254552, 3910021.213382960762829 ], [ 4986709.715129014104605, 3910019.425692731048912 ], [ 4986712.258298638276756, 3910039.095075740013272 ], [ 4986700.450953778810799, 3910040.522841783706099 ], [ 4986703.28202536329627, 3910060.192925547249615 ], [ 4986716.52973534911871, 3910058.404537337832153 ], [ 4986719.071121542714536, 3910078.802183333784342 ], [ 4986653.985113038681448, 3910087.382855976931751 ], [ 4986646.634513421915472, 3910032.01673320075497 ], [ 4986642.027266282588243, 3910032.369652266148478 ], [ 4986638.636303193867207, 3910006.143817330244929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986550.777280662208796, 3910145.028971983119845 ], [ 4986554.157690374180675, 3910175.624369644094259 ], [ 4986501.45945390034467, 3910180.958326840307564 ], [ 4986495.542743695899844, 3910127.78052397351712 ], [ 4986546.801600287668407, 3910122.443056831602007 ], [ 4986549.336913933977485, 3910145.389604283496737 ], [ 4986550.777280662208796, 3910145.028971983119845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985951.928317220881581, 3904175.085710970219225 ], [ 4986016.381405118852854, 3904195.99648190708831 ], [ 4986001.5866440506652, 3904241.113167278002948 ], [ 4985937.134529622271657, 3904219.83830160042271 ], [ 4985951.928317220881581, 3904175.085710970219225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985914.344757988117635, 3911415.042885281145573 ], [ 4985873.149498421698809, 3911426.596029905602336 ], [ 4985868.297533475793898, 3911409.105957369320095 ], [ 4985870.02658195886761, 3911408.381849449593574 ], [ 4985861.749790594913065, 3911378.503006333950907 ], [ 4985830.061639392748475, 3911387.166016116738319 ], [ 4985839.482990657910705, 3911419.960668222047389 ], [ 4985845.24414633307606, 3911418.517986109480262 ], [ 4985850.09437339566648, 3911436.736317130271345 ], [ 4985806.883123276755214, 3911448.648849260993302 ], [ 4985790.042398625053465, 3911388.52638068376109 ], [ 4985811.07273475266993, 3911382.386643339879811 ], [ 4985801.653085266239941, 3911348.863739455118775 ], [ 4985862.72465942054987, 3911332.260414209682494 ], [ 4985870.716208449564874, 3911361.046170533169061 ], [ 4985897.218997484073043, 3911353.82726412313059 ], [ 4985914.344757988117635, 3911415.042885281145573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985699.202494860626757, 3908933.323060602881014 ], [ 4985698.846456893719733, 3908961.72456562705338 ], [ 4985632.342089863494039, 3908960.472724787890911 ], [ 4985632.985966884531081, 3908932.071908813435584 ], [ 4985699.202494860626757, 3908933.323060602881014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985595.361703790724277, 3911057.426344900391996 ], [ 4985576.34200958814472, 3911065.391730837989599 ], [ 4985558.02012397442013, 3911022.380141346715391 ], [ 4985607.875157058238983, 3911001.379793373867869 ], [ 4985622.761531529016793, 3911036.372252354864031 ], [ 4985591.927122453227639, 3911049.043053641915321 ], [ 4985595.361703790724277, 3911057.426344900391996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985593.831704905256629, 3903520.245438716839999 ], [ 4985621.306350095197558, 3903471.153471515048295 ], [ 4985643.450209761969745, 3903483.586996439378709 ], [ 4985647.499209256842732, 3903476.31406711274758 ], [ 4985672.519237663596869, 3903490.211034771054983 ], [ 4985667.892552619799972, 3903498.210838829167187 ], [ 4985680.834505825303495, 3903505.160364932846278 ], [ 4985657.409650547429919, 3903546.615214637015015 ], [ 4985622.323898462578654, 3903527.232173434924334 ], [ 4985618.563752751797438, 3903534.141667027957737 ], [ 4985593.831704905256629, 3903520.245438716839999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985367.903067304752767, 3909621.105669643729925 ], [ 4985413.702957754954696, 3909611.38341824291274 ], [ 4985420.250781456008554, 3909642.3503572717309 ], [ 4985374.450941344723105, 3909652.072597706690431 ], [ 4985367.903067304752767, 3909621.105669643729925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985334.64269046112895, 3901474.30027269013226 ], [ 4985334.954991170205176, 3901464.105345694348216 ], [ 4985351.945495216175914, 3901464.50999607751146 ], [ 4985350.112473811022937, 3901508.565491540823132 ], [ 4985293.959846597164869, 3901506.246835470199585 ], [ 4985295.191633209586143, 3901472.749706443399191 ], [ 4985334.64269046112895, 3901474.30027269013226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985275.930866926908493, 3904480.065556009765714 ], [ 4985310.219456267543137, 3904471.043978075496852 ], [ 4985329.624278134666383, 3904545.008999078068882 ], [ 4985295.335776478052139, 3904554.03055266616866 ], [ 4985275.930866926908493, 3904480.065556009765714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984713.760447467677295, 3910119.507142552174628 ], [ 4984667.308530109934509, 3910162.001022737938911 ], [ 4984642.037245671264827, 3910134.995538237504661 ], [ 4984688.489169440232217, 3910092.501615081913769 ], [ 4984713.760447467677295, 3910119.507142552174628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984651.207846160978079, 3916495.341755027417094 ], [ 4984631.321057833731174, 3916506.582991633564234 ], [ 4984619.281240751966834, 3916485.798918025568128 ], [ 4984639.168039365671575, 3916474.557672647293657 ], [ 4984651.207846160978079, 3916495.341755027417094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984630.872571806423366, 3916330.704977013170719 ], [ 4984561.131012144498527, 3916367.318085907958448 ], [ 4984546.803025973960757, 3916340.338367847260088 ], [ 4984616.544635890051723, 3916303.725222380366176 ], [ 4984630.872571806423366, 3916330.704977013170719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984611.76167830824852, 3915402.845548765733838 ], [ 4984578.909286508336663, 3915419.154117375146598 ], [ 4984567.162785772234201, 3915395.821834520436823 ], [ 4984557.940746781416237, 3915400.533843535929918 ], [ 4984535.019921538420022, 3915355.327187350951135 ], [ 4984567.872364450246096, 3915339.018565726932138 ], [ 4984581.625187584199011, 3915365.996920594014227 ], [ 4984591.135083026252687, 3915361.285598550457507 ], [ 4984611.76167830824852, 3915402.845548765733838 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984499.702379659749568, 3915196.117351487278938 ], [ 4984516.866566712968051, 3915241.31041347142309 ], [ 4984480.278952504508197, 3915254.697230462916195 ], [ 4984463.114712613634765, 3915209.504191469401121 ], [ 4984499.702379659749568, 3915196.117351487278938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984261.743444736115634, 3909512.890102399513125 ], [ 4984265.129105515778065, 3909542.392807335592806 ], [ 4984222.220493160188198, 3909547.025931410491467 ], [ 4984219.122688957490027, 3909517.52390654804185 ], [ 4984261.743444736115634, 3909512.890102399513125 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983860.153473409824073, 3909126.334594666026533 ], [ 4983877.147640569135547, 3909123.097006275784224 ], [ 4983881.701530235819519, 3909145.683854614384472 ], [ 4983864.418621188960969, 3909149.284900033846498 ], [ 4983860.153473409824073, 3909126.334594666026533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982524.64871773775667, 3916653.174548914656043 ], [ 4982560.646991025656462, 3916644.517465744633228 ], [ 4982573.763150189071894, 3916698.803444979246706 ], [ 4982567.427650636993349, 3916700.245519373100251 ], [ 4982573.986131863668561, 3916727.206444282550365 ], [ 4982546.339896563440561, 3916733.697761185001582 ], [ 4982535.216051708906889, 3916689.247970869764686 ], [ 4982519.088646939955652, 3916693.216658420395106 ], [ 4982513.670611295849085, 3916670.992096975445747 ], [ 4982528.070239123888314, 3916667.383598957210779 ], [ 4982524.64871773775667, 3916653.174548914656043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982305.479096191003919, 3898972.223976955749094 ], [ 4982304.869978643022478, 3898986.787813046015799 ], [ 4982313.50962872710079, 3898987.171570296399295 ], [ 4982312.893889173865318, 3899004.648435279261321 ], [ 4982279.197703460231423, 3899003.843642820604146 ], [ 4982279.847319750115275, 3898971.437503853812814 ], [ 4982305.479096191003919, 3898972.223976955749094 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981979.792863261885941, 3904807.415607562754303 ], [ 4982001.570315077900887, 3904854.801962400320917 ], [ 4981968.709936060011387, 3904869.657096031587571 ], [ 4981946.932438514195383, 3904822.270767394918948 ], [ 4981979.792863261885941, 3904807.415607562754303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981753.971812380477786, 3907649.321194 ], [ 4981769.853510845452547, 3907628.965546795167029 ], [ 4981737.087633767165244, 3907603.40249903080985 ], [ 4981766.829054044559598, 3907565.599700256250799 ], [ 4981840.984525993466377, 3907622.935603393241763 ], [ 4981822.504073812626302, 3907646.562541596591473 ], [ 4981823.941226730123162, 3907647.658178626094013 ], [ 4981796.798505262471735, 3907682.189580156467855 ], [ 4981753.971812380477786, 3907649.321194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981735.992891488596797, 3895677.743599134963006 ], [ 4981726.419202904216945, 3895707.944829567801207 ], [ 4981699.649288757704198, 3895699.509632606990635 ], [ 4981709.511001671664417, 3895669.309040643274784 ], [ 4981735.992891488596797, 3895677.743599134963006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981503.983663447201252, 3907295.18693116446957 ], [ 4981537.719311464577913, 3907273.778796611819416 ], [ 4981584.486268296837807, 3907347.438495327718556 ], [ 4981555.364030501805246, 3907365.943867172114551 ], [ 4981534.418949480168521, 3907333.12495823064819 ], [ 4981524.615563333034515, 3907339.29321472812444 ], [ 4981510.84327719733119, 3907317.778517506085336 ], [ 4981516.034123764373362, 3907314.148836410604417 ], [ 4981503.983663447201252, 3907295.18693116446957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981297.538110619410872, 3903429.829127581324428 ], [ 4981274.242770622484386, 3903416.304222498554736 ], [ 4981289.274889191612601, 3903390.484470264054835 ], [ 4981268.280008897185326, 3903378.421236081980169 ], [ 4981287.648762945085764, 3903344.964409199077636 ], [ 4981331.939849141985178, 3903370.188463076483458 ], [ 4981297.538110619410872, 3903429.829127581324428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981119.546907939016819, 3909127.734747115522623 ], [ 4981097.035800189711154, 3909152.081486886832863 ], [ 4981057.385690921917558, 3909115.579926676116884 ], [ 4981079.608885468915105, 3909091.232513126917183 ], [ 4981119.546907939016819, 3909127.734747115522623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981016.398273296654224, 3904761.195721454452723 ], [ 4980950.631497745402157, 3904812.027973033487797 ], [ 4980929.669926749542356, 3904785.399795627221465 ], [ 4980995.436727479100227, 3904734.567493578884751 ], [ 4981016.398273296654224, 3904761.195721454452723 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980801.263592964969575, 3906854.476833506021649 ], [ 4980823.126212305389345, 3906863.628600237891078 ], [ 4980811.838768772780895, 3906889.821095408406109 ], [ 4980790.264098276384175, 3906880.66997572267428 ], [ 4980801.263592964969575, 3906854.476833506021649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980600.139906385913491, 3903270.246855226811022 ], [ 4980588.846362464129925, 3903298.624164203181863 ], [ 4980549.428258835338056, 3903283.243637481238693 ], [ 4980560.721767488867044, 3903254.86631220439449 ], [ 4980600.139906385913491, 3903270.246855226811022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980330.77119792252779, 3903715.714306238573045 ], [ 4980323.82801456656307, 3903730.26430164091289 ], [ 4980338.786185950040817, 3903737.579816875979304 ], [ 4980329.240913518704474, 3903756.857799022458494 ], [ 4980275.16031604167074, 3903730.885625844821334 ], [ 4980291.649525705724955, 3903696.693489733152092 ], [ 4980330.77119792252779, 3903715.714306238573045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980172.491300960071385, 3907740.116874861065298 ], [ 4980201.829796894453466, 3907753.654125708155334 ], [ 4980190.548122114501894, 3907777.662112515419722 ], [ 4980161.209646791219711, 3907764.124873785302043 ], [ 4980172.491300960071385, 3907740.116874861065298 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980114.343281667679548, 3899451.993640383705497 ], [ 4980102.022596289403737, 3899422.836217642761767 ], [ 4980158.525471637956798, 3899398.927382659167051 ], [ 4980171.133319791406393, 3899428.449591026175767 ], [ 4980114.343281667679548, 3899451.993640383705497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979963.56453719176352, 3904001.845133582130075 ], [ 4979956.056043134070933, 3904011.660280972253531 ], [ 4979964.968546627089381, 3904018.234119942877442 ], [ 4979948.218233814463019, 3904040.40955086518079 ], [ 4979904.233202947303653, 3904006.813410574104637 ], [ 4979928.491193868219852, 3903975.186925450339913 ], [ 4979963.56453719176352, 3904001.845133582130075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979937.557647322304547, 3899295.39505771221593 ], [ 4979949.951732210814953, 3899291.052557113114744 ], [ 4979948.233994141221046, 3899286.315109333023429 ], [ 4979994.063030537217855, 3899270.393492567818612 ], [ 4980005.513497899286449, 3899302.462004378437996 ], [ 4979947.290435382165015, 3899322.726098105777055 ], [ 4979937.557647322304547, 3899295.39505771221593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979869.209114159457386, 3904221.574602158274502 ], [ 4979850.728072836063802, 3904245.202847186010331 ], [ 4979809.043762230314314, 3904213.068401510827243 ], [ 4979827.524788813665509, 3904189.440128284972161 ], [ 4979869.209114159457386, 3904221.574602158274502 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979750.639934509992599, 3900352.422840040642768 ], [ 4979784.622499170713127, 3900353.225090346764773 ], [ 4979783.986226669512689, 3900380.897639421280473 ], [ 4979750.003696982748806, 3900380.095389901194721 ], [ 4979750.639934509992599, 3900352.422840040642768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979659.761163078248501, 3906784.606773769948632 ], [ 4979680.353220683522522, 3906716.19470339268446 ], [ 4979693.302289671264589, 3906719.864185863640159 ], [ 4979711.282479645684361, 3906660.913895808160305 ], [ 4979806.238698816858232, 3906689.522962535731494 ], [ 4979793.769502100534737, 3906729.914458300918341 ], [ 4979781.109177736565471, 3906725.88142419513315 ], [ 4979772.410122633911669, 3906753.90065073268488 ], [ 4979787.373102925717831, 3906758.302829240914434 ], [ 4979776.932181425392628, 3906792.872638807166368 ], [ 4979818.942512706853449, 3906805.708800622262061 ], [ 4979811.402313233353198, 3906830.453352550975978 ], [ 4979659.761163078248501, 3906784.606773769948632 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979629.424212114885449, 3900867.404310938902199 ], [ 4979638.308571947738528, 3900887.450806217268109 ], [ 4979594.490563481114805, 3900907.01871259463951 ], [ 4979583.026862666942179, 3900881.140539962798357 ], [ 4979591.963421475142241, 3900877.154498552903533 ], [ 4979580.213289998471737, 3900850.547444193158299 ], [ 4979624.318585182540119, 3900831.344269820954651 ], [ 4979638.648778196424246, 3900863.418910669628531 ], [ 4979629.424212114885449, 3900867.404310938902199 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979616.624574580229819, 3902782.705760328099132 ], [ 4979643.452160676941276, 3902761.644426661077887 ], [ 4979664.990167347714305, 3902789.365208552218974 ], [ 4979638.163383026607335, 3902810.062391540501267 ], [ 4979616.624574580229819, 3902782.705760328099132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979427.260838958434761, 3899931.149995684623718 ], [ 4979433.651356689631939, 3899906.038816824555397 ], [ 4979459.270489685237408, 3899912.284509666729718 ], [ 4979452.591155215166509, 3899937.759187759365886 ], [ 4979427.260838958434761, 3899931.149995684623718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979032.227427975274622, 3902691.866618535015732 ], [ 4978984.614352440461516, 3902736.916559027973562 ], [ 4978950.996246079914272, 3902701.887761200778186 ], [ 4978957.63220679666847, 3902696.075910496525466 ], [ 4978932.34735788218677, 3902669.440050033852458 ], [ 4978926.576106733642519, 3902674.889631468802691 ], [ 4978892.382674417458475, 3902639.495542676188052 ], [ 4978942.881792982108891, 3902591.538587380666286 ], [ 4978975.63768211286515, 3902625.837257980369031 ], [ 4978972.174920269288123, 3902629.107001025695354 ], [ 4979032.227427975274622, 3902691.866618535015732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979013.855082741938531, 3904004.520655311178416 ], [ 4978983.770118439570069, 3904068.17901784973219 ], [ 4978947.811680627055466, 3904050.987608128692955 ], [ 4978977.895796516910195, 3903987.693335809279233 ], [ 4979013.855082741938531, 3904004.520655311178416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978977.713684169575572, 3907155.275885062292218 ], [ 4978964.468196517787874, 3907155.611563743557781 ], [ 4978964.997907539829612, 3907177.096501529216766 ], [ 4978936.491457456722856, 3907177.763550864066929 ], [ 4978935.964850613847375, 3907154.822091546375304 ], [ 4978933.661423525772989, 3907154.817146512214094 ], [ 4978933.134813732467592, 3907131.875687566120178 ], [ 4978965.097238196991384, 3907130.851925403345376 ], [ 4978965.370306271128356, 3907137.771023666020483 ], [ 4978977.175377571024001, 3907137.796382991131395 ], [ 4978977.713684169575572, 3907155.275885062292218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978988.298699457198381, 3900887.867179808672518 ], [ 4978954.586803322657943, 3900895.441524534951895 ], [ 4978953.159334582276642, 3900889.612366723828018 ], [ 4978930.108752232044935, 3900894.660718399100006 ], [ 4978923.832237344235182, 3900866.973307380918413 ], [ 4978980.881991914473474, 3900854.715343924239278 ], [ 4978988.298699457198381, 3900887.867179808672518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978872.371945295482874, 3907941.939645254518837 ], [ 4978915.791590745560825, 3907968.250327488407493 ], [ 4978898.455472791567445, 3907996.615452782250941 ], [ 4978855.322995363734663, 3907970.669546082150191 ], [ 4978872.371945295482874, 3907941.939645254518837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978682.71612955071032, 3902648.149931328836828 ], [ 4978668.584266847930849, 3902657.951276330742985 ], [ 4978649.06252174358815, 3902629.507341526914388 ], [ 4978690.303142230026424, 3902601.557354700285941 ], [ 4978707.528055776841938, 3902626.719227625057101 ], [ 4978696.569366099312901, 3902633.978423940483481 ], [ 4978703.171036588028073, 3902644.188209710177034 ], [ 4978687.308969927020371, 3902655.078239600174129 ], [ 4978682.71612955071032, 3902648.149931328836828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978604.771019295789301, 3902197.917382639367133 ], [ 4978584.57968726567924, 3902213.167804884724319 ], [ 4978549.830213617533445, 3902167.941438549663872 ], [ 4978588.194723083637655, 3902138.528645284008235 ], [ 4978610.020746069960296, 3902166.977444533724338 ], [ 4978591.560385602526367, 3902180.775031476747245 ], [ 4978604.771019295789301, 3902197.917382639367133 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978557.410835674963892, 3904960.117095660883933 ], [ 4978510.735470369458199, 3904972.76220592437312 ], [ 4978501.305209728889167, 3904938.877865240909159 ], [ 4978524.931254276074469, 3904932.373840627726167 ], [ 4978520.35971686989069, 3904915.614039581269026 ], [ 4978543.409105244092643, 3904909.472933959681541 ], [ 4978557.410835674963892, 3904960.117095660883933 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978546.418047134764493, 3909034.73245982453227 ], [ 4978529.613017799332738, 3909084.582796722184867 ], [ 4978492.786432228982449, 3909072.487935267854482 ], [ 4978509.591400649398565, 3909022.637575700413436 ], [ 4978546.418047134764493, 3909034.73245982453227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978315.315245523117483, 3908586.357581924181432 ], [ 4978357.892322635278106, 3908602.469874349422753 ], [ 4978347.179963615722954, 3908630.485311213415116 ], [ 4978304.602151358500123, 3908614.737166358157992 ], [ 4978315.315245523117483, 3908586.357581924181432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978268.639815365895629, 3904531.28400297742337 ], [ 4978278.077469164505601, 3904561.891083929687738 ], [ 4978232.262325057759881, 3904575.995027941185981 ], [ 4978222.824624133296311, 3904545.387962814886123 ], [ 4978268.639815365895629, 3904531.28400297742337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978168.711321434937418, 3909292.099685827735811 ], [ 4978153.973386358469725, 3909317.921886947471648 ], [ 4978123.779566896148026, 3909300.743720482569188 ], [ 4978119.734247392043471, 3909307.653678205795586 ], [ 4978093.566449264064431, 3909292.668863793835044 ], [ 4978112.349662623368204, 3909259.936670674942434 ], [ 4978168.711321434937418, 3909292.099685827735811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978148.75120276492089, 3907297.339934684801847 ], [ 4978173.537597658112645, 3907285.740202439017594 ], [ 4978181.276136542670429, 3907302.506679262965918 ], [ 4978189.346574886702001, 3907298.518325666431338 ], [ 4978200.237629866227508, 3907322.210000849328935 ], [ 4978167.094447488896549, 3907337.069195501040667 ], [ 4978148.75120276492089, 3907297.339934684801847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978098.490205695852637, 3905604.383795963600278 ], [ 4978058.707607414573431, 3905626.147572391200811 ], [ 4978046.085754915140569, 3905603.544718138407916 ], [ 4978036.86074152495712, 3905608.623067145235837 ], [ 4978025.673202863894403, 3905588.572176676243544 ], [ 4978066.032490488141775, 3905566.445439280476421 ], [ 4978078.940748802386224, 3905589.777171739377081 ], [ 4978087.877061218954623, 3905585.062358383089304 ], [ 4978098.490205695852637, 3905604.383795963600278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978074.951382481493056, 3904208.253172788769007 ], [ 4978084.105262661352754, 3904237.038921204861253 ], [ 4978036.849100982770324, 3904251.504280441906303 ], [ 4978027.695175202563405, 3904222.718547866679728 ], [ 4978074.951382481493056, 3904208.253172788769007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978041.979505239054561, 3907137.624151275027543 ], [ 4978067.062399135902524, 3907122.019494573585689 ], [ 4978091.741848768666387, 3907161.033833596389741 ], [ 4978066.658206852152944, 3907177.002598187420517 ], [ 4978041.979505239054561, 3907137.624151275027543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977918.724225807003677, 3910969.859529096633196 ], [ 4977942.882956114597619, 3910981.198622087016702 ], [ 4977932.182723403908312, 3911004.11642600921914 ], [ 4977908.024009250104427, 3910992.777342484332621 ], [ 4977918.724225807003677, 3910969.859529096633196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977910.635671481490135, 3907433.38634440023452 ], [ 4977923.818797521293163, 3907462.544726165942848 ], [ 4977883.182218542322516, 3907481.02978989481926 ], [ 4977865.412202540785074, 3907442.394324552733451 ], [ 4977893.94444209523499, 3907429.345697863958776 ], [ 4977898.531289350241423, 3907438.822805857285857 ], [ 4977910.635671481490135, 3907433.38634440023452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977859.463378638029099, 3907942.699557589367032 ], [ 4977839.832672856748104, 3907967.419205366168171 ], [ 4977803.039500139653683, 3907938.575283955782652 ], [ 4977822.382272717542946, 3907913.855003527831286 ], [ 4977859.463378638029099, 3907942.699557589367032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977847.263169934041798, 3908267.115809201262891 ], [ 4977865.428761484101415, 3908254.40944522805512 ], [ 4977881.215823637321591, 3908277.38305730978027 ], [ 4977863.051007316447794, 3908289.725279976148158 ], [ 4977847.263169934041798, 3908267.115809201262891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977602.786955695599318, 3908420.629967308137566 ], [ 4977587.50532862264663, 3908431.15776183269918 ], [ 4977578.320302824489772, 3908417.665603933855891 ], [ 4977593.314018966630101, 3908407.137200514320284 ], [ 4977602.786955695599318, 3908420.629967308137566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977523.098612529225647, 3906190.153263454791158 ], [ 4977541.254771029576659, 3906182.544521443545818 ], [ 4977552.428688259795308, 3906209.149563829880208 ], [ 4977518.421442936174572, 3906223.643608107231557 ], [ 4977503.522590851411223, 3906188.291614710353315 ], [ 4977519.373709416948259, 3906181.406296377070248 ], [ 4977523.098612529225647, 3906190.153263454791158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977504.491363794542849, 3907651.012316190171987 ], [ 4977529.150547452270985, 3907699.857679699081928 ], [ 4977498.597979798913002, 3907715.451391522306949 ], [ 4977473.651594125665724, 3907666.241322426591069 ], [ 4977504.491363794542849, 3907651.012316190171987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977423.948509631678462, 3903344.621293191798031 ], [ 4977433.114803717471659, 3903367.94485891610384 ], [ 4977429.368162333033979, 3903369.393551574088633 ], [ 4977440.252357701770961, 3903397.454418600071222 ], [ 4977447.744872780516744, 3903394.921166505664587 ], [ 4977457.484780962578952, 3903419.338334854226559 ], [ 4977453.449415470473468, 3903421.150551635306329 ], [ 4977466.052232556976378, 3903453.584600457455963 ], [ 4977420.515987450256944, 3903471.331818683072925 ], [ 4977378.124139125458896, 3903362.367980126757175 ], [ 4977423.948509631678462, 3903344.621293191798031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977371.321483034640551, 3913510.725089257117361 ], [ 4977351.675501672551036, 3913544.912612158805132 ], [ 4977315.447710472159088, 3913524.445496908854693 ], [ 4977335.093660533428192, 3913490.257947959937155 ], [ 4977371.321483034640551, 3913510.725089257117361 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977330.900306691415608, 3901428.733267247211188 ], [ 4977338.461752555333078, 3901393.428351245820522 ], [ 4977364.08222967479378, 3901398.579664634540677 ], [ 4977356.519991391338408, 3901434.24870282644406 ], [ 4977330.900306691415608, 3901428.733267247211188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977266.498072069138288, 3900962.511493921745569 ], [ 4977261.816545539535582, 3900997.822422880213708 ], [ 4977206.824026725254953, 3900990.789385615382344 ], [ 4977211.21748735383153, 3900955.477847572881728 ], [ 4977266.498072069138288, 3900962.511493921745569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977257.796880533918738, 3904170.124506128020585 ], [ 4977274.797929376363754, 3904164.697972327470779 ], [ 4977282.521232223138213, 3904189.475016278214753 ], [ 4977265.520956483669579, 3904194.537415365222842 ], [ 4977257.796880533918738, 3904170.124506128020585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977241.018804365769029, 3906417.874751680064946 ], [ 4977256.806726370938122, 3906441.212101337034255 ], [ 4977238.352265363559127, 3906453.918262600433081 ], [ 4977222.276398722082376, 3906430.580323820002377 ], [ 4977241.018804365769029, 3906417.874751680064946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976965.109587418846786, 3913252.072974959854037 ], [ 4976918.994905950501561, 3913279.287388247437775 ], [ 4976898.053336814045906, 3913244.287181151565164 ], [ 4976922.551888142712414, 3913229.77259977767244 ], [ 4976918.823247740976512, 3913223.210469445213675 ], [ 4976940.150801658630371, 3913210.87413443159312 ], [ 4976965.109587418846786, 3913252.072974959854037 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976946.038884682580829, 3909398.412965206895024 ], [ 4976900.199494085274637, 3909428.540990489069372 ], [ 4976883.265935692936182, 3909403.016636222135276 ], [ 4976929.105350665748119, 3909372.888582527637482 ], [ 4976946.038884682580829, 3909398.412965206895024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976920.787386482581496, 3901852.457273359876126 ], [ 4976845.061589393764734, 3901845.382029307540506 ], [ 4976848.298730492591858, 3901811.888677795417607 ], [ 4976924.02462116163224, 3901818.963930834084749 ], [ 4976920.787386482581496, 3901852.457273359876126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976819.469955164007843, 3900712.153937410097569 ], [ 4976841.444373659789562, 3900670.324349110946059 ], [ 4976867.049057612195611, 3900683.486027715262026 ], [ 4976845.07460989896208, 3900725.315595413558185 ], [ 4976819.469955164007843, 3900712.153937410097569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976723.343444363214076, 3912675.149384743068367 ], [ 4976761.106230731122196, 3912650.102185379713774 ], [ 4976778.899948021396995, 3912676.356563101522624 ], [ 4976741.136429662816226, 3912701.767869707662612 ], [ 4976723.343444363214076, 3912675.149384743068367 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976736.342550947330892, 3905961.662983121350408 ], [ 4976772.551661746576428, 3905996.330304149072617 ], [ 4976764.760709965601563, 3906004.325108558870852 ], [ 4976778.554775371216238, 3906017.462357977870852 ], [ 4976761.24072924349457, 3906035.633178728166968 ], [ 4976737.101859443821013, 3906012.278881913982332 ], [ 4976729.888307540677488, 3906019.546625016722828 ], [ 4976716.955786646343768, 3906007.503574621863663 ], [ 4976724.74747499730438, 3905999.144626019988209 ], [ 4976712.102882847189903, 3905987.102172559127212 ], [ 4976736.342550947330892, 3905961.662983121350408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976599.218256680294871, 3905573.215659810230136 ], [ 4976594.269188932143152, 3905599.422954721841961 ], [ 4976605.495295430533588, 3905601.266737191472203 ], [ 4976601.417561437934637, 3905623.834508287720382 ], [ 4976556.515411233529449, 3905615.367022545076907 ], [ 4976561.462940242141485, 3905589.88798090396449 ], [ 4976550.236826010048389, 3905588.044216843787581 ], [ 4976554.603966563008726, 3905564.748770629521459 ], [ 4976599.218256680294871, 3905573.215659810230136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976535.420973184518516, 3909149.954727564007044 ], [ 4976466.543848717585206, 3909182.585021795704961 ], [ 4976455.0784582644701, 3909157.800445854198188 ], [ 4976472.945901012048125, 3909149.462114363443106 ], [ 4976469.50523588154465, 3909142.536523809656501 ], [ 4976520.514227964915335, 3909118.608656784985214 ], [ 4976535.420973184518516, 3909149.954727564007044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976421.79931953176856, 3912604.978932980913669 ], [ 4976379.196056339889765, 3912604.163205368909985 ], [ 4976379.8345653899014, 3912573.577313446905464 ], [ 4976422.437877075746655, 3912574.393042048439384 ], [ 4976421.79931953176856, 3912604.978932980913669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976426.194309866055846, 3906539.26584637677297 ], [ 4976381.82318539917469, 3906553.375918687786907 ], [ 4976380.10528850927949, 3906548.638678119517863 ], [ 4976366.275451430119574, 3906552.979891005903482 ], [ 4976357.691921305842698, 3906526.38065074943006 ], [ 4976416.181624247692525, 3906507.565805153921247 ], [ 4976426.194309866055846, 3906539.26584637677297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976382.358253019861877, 3900818.308151134755462 ], [ 4976336.289295855909586, 3900813.115857416763902 ], [ 4976339.805708343163133, 3900783.628476784098893 ], [ 4976385.874715408310294, 3900788.820776436012238 ], [ 4976382.358253019861877, 3900818.308151134755462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976201.972088124603033, 3905514.503408774733543 ], [ 4976218.017362057231367, 3905553.498324396088719 ], [ 4976176.518221529200673, 3905570.527659433893859 ], [ 4976160.472153614275157, 3905531.896898413076997 ], [ 4976201.972088124603033, 3905514.503408774733543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976170.141982727684081, 3905027.230118767358363 ], [ 4976158.039104602299631, 3905031.57496584020555 ], [ 4976151.452681609429419, 3905013.719057865906507 ], [ 4976197.270448167808354, 3904997.426781762391329 ], [ 4976211.874795808456838, 3905037.146997727453709 ], [ 4976178.447164208628237, 3905049.459124529268593 ], [ 4976170.141982727684081, 3905027.230118767358363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976018.972947336733341, 3909120.858802539296448 ], [ 4976016.043402947485447, 3909145.6138453357853 ], [ 4975982.941509547643363, 3909141.905067097395658 ], [ 4975985.871023816987872, 3909117.15002076048404 ], [ 4976018.972947336733341, 3909120.858802539296448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975932.11189332138747, 3897614.497649009805173 ], [ 4975940.743180368095636, 3897619.248899600468576 ], [ 4975921.084521662443876, 3897654.893649829551578 ], [ 4975879.078737637959421, 3897631.86805430194363 ], [ 4975905.387979977764189, 3897583.492245770059526 ], [ 4975939.050558092072606, 3897601.767215083818883 ], [ 4975932.11189332138747, 3897614.497649009805173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975747.280047460459173, 3903964.197578904684633 ], [ 4975705.755882346071303, 3903992.515651493798941 ], [ 4975693.122427516616881, 3903974.283483845181763 ], [ 4975688.21968920622021, 3903977.914865683298558 ], [ 4975679.319404484704137, 3903964.788107016123831 ], [ 4975685.663432217203081, 3903960.431380299385637 ], [ 4975676.188689853064716, 3903946.57519639423117 ], [ 4975721.173617891967297, 3903915.715173757635057 ], [ 4975733.8063431577757, 3903934.311483841389418 ], [ 4975728.904330255463719, 3903937.578728257678449 ], [ 4975747.280047460459173, 3903964.197578904684633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975611.596200274303555, 3907264.048932790756226 ], [ 4975641.567903170362115, 3907250.636697804089636 ], [ 4975668.227154176682234, 3907308.951818270143121 ], [ 4975638.254765792749822, 3907322.728154663927853 ], [ 4975611.596200274303555, 3907264.048932790756226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975574.919918353669345, 3910593.238261035643518 ], [ 4975599.420163993723691, 3910578.722497223876417 ], [ 4975619.791206375695765, 3910612.992205578368157 ], [ 4975571.080145327374339, 3910641.296038421336561 ], [ 4975551.856948205269873, 3910608.849350869655609 ], [ 4975559.350956812500954, 3910604.494904000777751 ], [ 4975552.177222576923668, 3910592.828151316381991 ], [ 4975568.606918043456972, 3910583.029776003211737 ], [ 4975574.919918353669345, 3910593.238261035643518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975233.966964049264789, 3911210.120479313191026 ], [ 4975240.618320075795054, 3911195.204391773790121 ], [ 4975301.307862029410899, 3911222.272267272695899 ], [ 4975294.657211422920227, 3911236.824208486359566 ], [ 4975233.966964049264789, 3911210.120479313191026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975184.97896698769182, 3903631.339486982207745 ], [ 4975194.724497495219111, 3903653.935189455281943 ], [ 4975229.021695744246244, 3903639.438805642072111 ], [ 4975241.633676038123667, 3903668.594646899960935 ], [ 4975189.755258882418275, 3903690.702478185296059 ], [ 4975177.716241619549692, 3903663.004336024168879 ], [ 4975169.357927365228534, 3903666.628877611365169 ], [ 4975159.039370011538267, 3903642.575509425252676 ], [ 4975184.97896698769182, 3903631.339486982207745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974894.063754240982234, 3909867.245938489679247 ], [ 4974935.287199069745839, 3909840.382458691485226 ], [ 4974959.1115304203704, 3909876.115078852511942 ], [ 4974917.59949008654803, 3909903.342078866437078 ], [ 4974894.063754240982234, 3909867.245938489679247 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974849.528215937316418, 3900005.745197763666511 ], [ 4974801.107101702131331, 3900023.855203008744866 ], [ 4974786.209185086190701, 3899984.499429527204484 ], [ 4974834.343080565333366, 3899966.024694631341845 ], [ 4974849.528215937316418, 3900005.745197763666511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974845.472261764109135, 3896695.429962053429335 ], [ 4974809.438907963223755, 3896709.55920278839767 ], [ 4974789.089581061154604, 3896658.540494667366147 ], [ 4974838.3837677128613, 3896638.975713637191802 ], [ 4974847.556067171506584, 3896661.570047113113105 ], [ 4974834.007986209355295, 3896666.640853576362133 ], [ 4974845.472261764109135, 3896695.429962053429335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974808.610779699869454, 3899148.86477392911911 ], [ 4974841.460368232801557, 3899140.919385112822056 ], [ 4974845.744277697056532, 3899159.13444297388196 ], [ 4974851.795477736741304, 3899157.689988732803613 ], [ 4974857.223444323055446, 3899179.912763782776892 ], [ 4974818.322706934064627, 3899189.30259396135807 ], [ 4974808.610779699869454, 3899148.86477392911911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974598.427527003921568, 3900565.642544803675264 ], [ 4974624.413240974768996, 3900532.558251378126442 ], [ 4974647.13046448212117, 3900550.081644931808114 ], [ 4974621.432738162577152, 3900583.166488651651889 ], [ 4974598.427527003921568, 3900565.642544803675264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974548.091518181376159, 3909969.971072786487639 ], [ 4974528.203434376977384, 3909981.583873699884862 ], [ 4974517.873034212738276, 3909964.449152665678412 ], [ 4974491.931882287375629, 3909979.691307135857642 ], [ 4974470.123754905536771, 3909943.234828303568065 ], [ 4974501.829398435540497, 3909924.72688360279426 ], [ 4974502.977384559810162, 3909926.549822498578578 ], [ 4974517.101024503819644, 3909918.202768302988261 ], [ 4974548.091518181376159, 3909969.971072786487639 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974532.089478895068169, 3895529.592061636503786 ], [ 4974532.903836868703365, 3895554.718613377772272 ], [ 4974543.274455533362925, 3895554.375041849911213 ], [ 4974543.801471685990691, 3895579.13689510570839 ], [ 4974534.295741605572402, 3895579.118051242548972 ], [ 4974534.555644788779318, 3895593.319618476554751 ], [ 4974487.600239389576018, 3895594.683102530892938 ], [ 4974486.808195397257805, 3895558.268580296542495 ], [ 4974466.066962872631848, 3895558.955770932137966 ], [ 4974465.25758842099458, 3895531.280324453022331 ], [ 4974532.089478895068169, 3895529.592061636503786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974515.92264202889055, 3900489.375606230925769 ], [ 4974472.686616849154234, 3900507.496482950635254 ], [ 4974460.934142770245671, 3900479.435156240127981 ], [ 4974504.17020505387336, 3900461.314260929822922 ], [ 4974515.92264202889055, 3900489.375606230925769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974354.136748779565096, 3900599.387029215227813 ], [ 4974350.613139624707401, 3900633.608346060849726 ], [ 4974310.877286751754582, 3900629.524431214667857 ], [ 4974315.575846753083169, 3900583.653249382972717 ], [ 4974342.353980663232505, 3900586.619179017841816 ], [ 4974341.179687529802322, 3900597.904908533208072 ], [ 4974354.136748779565096, 3900599.387029215227813 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974300.312182274647057, 3902626.033002287615091 ], [ 4974295.077568447217345, 3902651.875975482631475 ], [ 4974265.428186197765172, 3902645.627241350244731 ], [ 4974270.662772695533931, 3902619.784262478351593 ], [ 4974300.312182274647057, 3902626.033002287615091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974215.381066589616239, 3908458.163095988333225 ], [ 4974179.051486067473888, 3908484.673167741857469 ], [ 4974163.545714478008449, 3908463.522949835285544 ], [ 4974199.87530817463994, 3908437.012857466004789 ], [ 4974215.381066589616239, 3908458.163095988333225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974109.891871868632734, 3904416.819445384666324 ], [ 4974101.556136964820325, 3904409.156289298087358 ], [ 4974092.033480754122138, 3904419.333243165165186 ], [ 4974061.277108419686556, 3904391.234660006128252 ], [ 4974096.771130968816578, 3904353.070635830517858 ], [ 4974135.862529721111059, 3904389.196553006768227 ], [ 4974109.891871868632734, 3904416.819445384666324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974083.299449851736426, 3905053.633190038148314 ], [ 4974105.572656178846955, 3905002.334436261560768 ], [ 4974163.402141455560923, 3905027.209193365182728 ], [ 4974141.128845067694783, 3905078.50789998145774 ], [ 4974083.299449851736426, 3905053.633190038148314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974027.024975104257464, 3894556.370190633460879 ], [ 4974044.051464305259287, 3894540.746063114143908 ], [ 4974039.163679368793964, 3894536.002783610951155 ], [ 4974087.07026678789407, 3894491.308996596373618 ], [ 4974118.978064963594079, 3894525.599883541464806 ], [ 4974108.011596615426242, 3894535.773938880302012 ], [ 4974116.635602667927742, 3894544.894129890482873 ], [ 4974086.621890286915004, 3894572.873079022858292 ], [ 4974086.621174606494606, 3894573.237206934019923 ], [ 4974063.245133086107671, 3894595.039031082298607 ], [ 4974027.024975104257464, 3894556.370190633460879 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973953.081714157946408, 3900093.184382340405136 ], [ 4973908.403987837024033, 3900112.031597003806382 ], [ 4973896.650750529021025, 3900083.970523690339178 ], [ 4973941.327801281586289, 3900065.487418896518648 ], [ 4973953.081714157946408, 3900093.184382340405136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973916.46994916908443, 3908339.232512226793915 ], [ 4973892.635014369152486, 3908307.506290765013546 ], [ 4973926.947708391584456, 3908281.720145144499838 ], [ 4973951.071255915798247, 3908313.08283032849431 ], [ 4973916.46994916908443, 3908339.232512226793915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973825.769495184533298, 3904369.289108111523092 ], [ 4973801.551808052696288, 3904384.171126774977893 ], [ 4973813.608298106119037, 3904403.493673366494477 ], [ 4973791.696445999667048, 3904417.287817161064595 ], [ 4973759.832751465030015, 3904366.247133993543684 ], [ 4973777.130888276733458, 3904355.721128841396421 ], [ 4973769.953990051522851, 3904344.419026962015778 ], [ 4973788.117444494739175, 3904333.166457307524979 ], [ 4973794.14606402348727, 3904342.645661564543843 ], [ 4973805.101306115277112, 3904336.112718763295561 ], [ 4973825.769495184533298, 3904369.289108111523092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973794.007819905877113, 3902498.684854187071323 ], [ 4973812.097750457935035, 3902525.66592493513599 ], [ 4973779.224843941628933, 3902547.813644140493125 ], [ 4973785.829113086685538, 3902557.658091681543738 ], [ 4973758.434952600859106, 3902576.175236949231476 ], [ 4973733.164758883416653, 3902539.348640387877822 ], [ 4973794.007819905877113, 3902498.684854187071323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973704.976732480339706, 3898685.335253093391657 ], [ 4973678.745682570151985, 3898696.207979891449213 ], [ 4973674.159394488669932, 3898684.910998499020934 ], [ 4973654.269744885154068, 3898693.247206985484809 ], [ 4973644.23592456895858, 3898669.195053921546787 ], [ 4973690.068647700361907, 3898649.985535367857665 ], [ 4973704.976732480339706, 3898685.335253093391657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973662.114652334712446, 3896737.884532249998301 ], [ 4973648.529924726113677, 3896761.890612385701388 ], [ 4973634.718918570317328, 3896754.21696863649413 ], [ 4973615.64231894351542, 3896788.043867360800505 ], [ 4973577.949552418664098, 3896767.21506736939773 ], [ 4973585.464815675280988, 3896753.75689699780196 ], [ 4973580.285769599489868, 3896750.833775867242366 ], [ 4973605.432472405955195, 3896706.094782285392284 ], [ 4973662.114652334712446, 3896737.884532249998301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973598.393433519639075, 3909041.386452351231128 ], [ 4973571.301701971329749, 3909055.898980997502804 ], [ 4973538.024840363301337, 3908993.931679553352296 ], [ 4973561.946074255742133, 3908981.233607038855553 ], [ 4973580.592771911993623, 3909015.862503005191684 ], [ 4973590.968825536780059, 3909010.056594757828861 ], [ 4973600.149261692538857, 3909026.82457427540794 ], [ 4973592.943750347942114, 3909030.815993142314255 ], [ 4973598.393433519639075, 3909041.386452351231128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973529.271669990383089, 3903725.654672719072551 ], [ 4973524.103172048926353, 3903717.997861413285136 ], [ 4973510.839069062843919, 3903727.075345523189753 ], [ 4973486.719363546930254, 3903691.343584776856005 ], [ 4973531.989453375339508, 3903660.844591983128339 ], [ 4973544.911069021560252, 3903679.804560341872275 ], [ 4973540.586624979972839, 3903682.34506438812241 ], [ 4973557.241142956539989, 3903706.774272007867694 ], [ 4973529.271669990383089, 3903725.654672719072551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973525.871457987464964, 3904585.362254418432713 ], [ 4973555.040764198638499, 3904541.359105726704001 ], [ 4973599.329300446435809, 3904570.575863893609494 ], [ 4973575.070087876170874, 3904606.941764481365681 ], [ 4973547.749729979783297, 3904588.682007097173482 ], [ 4973542.551643908955157, 3904596.318652467802167 ], [ 4973525.871457987464964, 3904585.362254418432713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973432.287254302762449, 3897464.604674946516752 ], [ 4973487.636853065341711, 3897440.315479648765177 ], [ 4973507.99654546380043, 3897486.96368361171335 ], [ 4973482.915827893652022, 3897498.202962221577764 ], [ 4973477.753894725814462, 3897486.540774424094707 ], [ 4973447.773112200200558, 3897499.591214906889945 ], [ 4973432.287254302762449, 3897464.604674946516752 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973421.712905433028936, 3896679.884363824035972 ], [ 4973427.499869970604777, 3896666.422795717138797 ], [ 4973417.426216212101281, 3896662.39781649177894 ], [ 4973429.579063785262406, 3896634.019284875597805 ], [ 4973441.954934013076127, 3896639.141127738635987 ], [ 4973454.107817918993533, 3896610.762607599142939 ], [ 4973487.204978636465967, 3896625.027965034823865 ], [ 4973471.289849210530519, 3896662.502404795959592 ], [ 4973480.499372580088675, 3896666.525725139304996 ], [ 4973471.529786453582346, 3896687.26369366934523 ], [ 4973460.017358602024615, 3896682.507643798366189 ], [ 4973455.098038486205041, 3896694.150241365656257 ], [ 4973421.712905433028936, 3896679.884363824035972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973308.83936960529536, 3901567.022050844971091 ], [ 4973285.463674234226346, 3901592.101807237137109 ], [ 4973231.993690712377429, 3901542.476544167846441 ], [ 4973255.657367873936892, 3901517.397299280855805 ], [ 4973308.83936960529536, 3901567.022050844971091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973271.362919417209923, 3896527.022617619484663 ], [ 4973246.770151001401246, 3896583.415140775498003 ], [ 4973213.960853758268058, 3896569.150636542588472 ], [ 4973219.457583869807422, 3896556.780852754600346 ], [ 4973206.218211257830262, 3896551.293313986156136 ], [ 4973225.602218253538013, 3896507.271092764101923 ], [ 4973271.362919417209923, 3896527.022617619484663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973161.474268469959497, 3911508.630493354052305 ], [ 4973200.55717917624861, 3911544.391077630687505 ], [ 4973176.901641829870641, 3911569.834657492116094 ], [ 4973137.818736848421395, 3911534.074107059743255 ], [ 4973161.474268469959497, 3911508.630493354052305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972966.650814261287451, 3903841.452185967937112 ], [ 4973012.786056753247976, 3903809.86158844968304 ], [ 4973039.779607348144054, 3903848.875645406078547 ], [ 4973018.730190644972026, 3903863.40033962810412 ], [ 4973012.413226005621254, 3903853.920757421758026 ], [ 4972987.326729357242584, 3903871.350750887300819 ], [ 4972966.650814261287451, 3903841.452185967937112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972884.882681384682655, 3898137.916266778949648 ], [ 4972909.094977447763085, 3898128.495408670511097 ], [ 4972928.010823572985828, 3898177.325196908321232 ], [ 4972869.498476639389992, 3898199.78882698295638 ], [ 4972857.173554339446127, 3898168.449975584633648 ], [ 4972891.473676391877234, 3898155.407171358820051 ], [ 4972884.882681384682655, 3898137.916266778949648 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972729.609105027280748, 3910778.805352880153805 ], [ 4972758.149963147938251, 3910758.104483931325376 ], [ 4972777.962677252478898, 3910785.088307097088546 ], [ 4972749.421134413219988, 3910806.153286858461797 ], [ 4972729.609105027280748, 3910778.805352880153805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972473.358620682731271, 3913813.001569533720613 ], [ 4972436.446311537176371, 3913847.888029771856964 ], [ 4972413.750020626932383, 3913824.540246142540127 ], [ 4972450.663026226684451, 3913789.289623024873435 ], [ 4972473.358620682731271, 3913813.001569533720613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972227.271274831146002, 3913038.021621049847454 ], [ 4972278.443522004410625, 3913073.803843530826271 ], [ 4972257.949798204004765, 3913102.895592592656612 ], [ 4972244.150266479700804, 3913093.401926727499813 ], [ 4972237.799963927827775, 3913102.493207310326397 ], [ 4972218.251420087181032, 3913088.619043386075646 ], [ 4972225.755942708812654, 3913078.073414986487478 ], [ 4972207.931802365928888, 3913065.659064465202391 ], [ 4972227.271274831146002, 3913038.021621049847454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972218.18020789232105, 3902197.42681793263182 ], [ 4972233.402471871115267, 3902218.939415521919727 ], [ 4972214.946811125613749, 3902232.013123474549502 ], [ 4972199.724539831280708, 3902210.500536182429641 ], [ 4972218.18020789232105, 3902197.42681793263182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971978.028741138055921, 3898216.298091159202158 ], [ 4971927.298728535883129, 3898236.229549465235323 ], [ 4971929.591248673386872, 3898242.424082638230175 ], [ 4971899.614807434380054, 3898254.019740770570934 ], [ 4971887.001442178152502, 3898222.316661702468991 ], [ 4971920.149611903354526, 3898208.906318402849138 ], [ 4971915.563874069601297, 3898196.881382879801095 ], [ 4971933.435117539949715, 3898189.632474648300558 ], [ 4971936.588966836221516, 3898197.285152547992766 ], [ 4971965.989438293501735, 3898185.688449125736952 ], [ 4971978.028741138055921, 3898216.298091159202158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971289.861559696495533, 3906453.83447674009949 ], [ 4971337.525204757228494, 3906525.657254717312753 ], [ 4971309.849513691850007, 3906543.812273521907628 ], [ 4971262.185827134177089, 3906471.989543830044568 ], [ 4971289.861559696495533, 3906453.83447674009949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971142.624149526469409, 3896425.036331689916551 ], [ 4971146.216635345481336, 3896506.97216936852783 ], [ 4971107.327523048967123, 3896508.720659073907882 ], [ 4971103.735594279132783, 3896426.420698125846684 ], [ 4971142.624149526469409, 3896425.036331689916551 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970831.608237192966044, 3893418.573463262058794 ], [ 4970802.215803042985499, 3893423.252947558648884 ], [ 4970791.966539219021797, 3893357.326713494025171 ], [ 4970821.359043600037694, 3893352.647218166850507 ], [ 4970831.608237192966044, 3893418.573463262058794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970717.057602598331869, 3897275.585087712854147 ], [ 4970679.603775896131992, 3897280.614004608243704 ], [ 4970680.455825458280742, 3897287.169907993171364 ], [ 4970666.33813685644418, 3897289.328728902153671 ], [ 4970660.373088124208152, 3897243.801537937484682 ], [ 4970686.302228288725019, 3897240.572045056149364 ], [ 4970685.450848308391869, 3897233.652013109531254 ], [ 4970711.091966587118804, 3897230.422014423180372 ], [ 4970717.057602598331869, 3897275.585087712854147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970592.787161451764405, 3904874.398841497022659 ], [ 4970565.402908775024116, 3904890.006225668825209 ], [ 4970530.958773462101817, 3904829.861344817560166 ], [ 4970558.343067227862775, 3904814.253926118370146 ], [ 4970592.787161451764405, 3904874.398841497022659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970510.562883421778679, 3896946.760818876791745 ], [ 4970482.608547227457166, 3896954.720458348747343 ], [ 4970474.307465545833111, 3896926.303136904723942 ], [ 4970502.261828787624836, 3896918.343488939572126 ], [ 4970510.562883421778679, 3896946.760818876791745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970503.390242453664541, 3899131.891604080796242 ], [ 4970483.795261273160577, 3899137.317656804807484 ], [ 4970476.354905838146806, 3899111.086654448416084 ], [ 4970541.48025719076395, 3899092.635368743911386 ], [ 4970552.355354680679739, 3899130.524855591822416 ], [ 4970506.825728215277195, 3899143.185936123132706 ], [ 4970503.390242453664541, 3899131.891604080796242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970395.43870850186795, 3897526.972974103875458 ], [ 4970405.189830278977752, 3897549.930985304061323 ], [ 4970395.389442462474108, 3897553.918493350967765 ], [ 4970406.288017162121832, 3897579.427512367721647 ], [ 4970362.184679239988327, 3897598.281646921765059 ], [ 4970346.984227331355214, 3897562.569151506293565 ], [ 4970352.748841870576143, 3897560.394902362022549 ], [ 4970347.29952783882618, 3897547.640403259545565 ], [ 4970395.43870850186795, 3897526.972974103875458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970222.523022828623652, 3897737.852703996468335 ], [ 4970208.780520789325237, 3897692.311433396302164 ], [ 4970257.196079714223742, 3897677.834466934204102 ], [ 4970270.939171336591244, 3897723.011633208021522 ], [ 4970222.523022828623652, 3897737.852703996468335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970158.894202155061066, 3893290.624316700268537 ], [ 4970218.855992798693478, 3893267.793347226455808 ], [ 4970228.032006476074457, 3893291.11431491188705 ], [ 4970204.681197300553322, 3893300.175007077399641 ], [ 4970208.695705744437873, 3893310.377928090281785 ], [ 4970171.796040987595916, 3893324.511783368419856 ], [ 4970158.894202155061066, 3893290.624316700268537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970114.701127418316901, 3905394.961562133859843 ], [ 4970133.350795361213386, 3905431.772771386429667 ], [ 4970101.070959651842713, 3905448.099990413058549 ], [ 4970082.42125894408673, 3905411.288803193718195 ], [ 4970114.701127418316901, 3905394.961562133859843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970074.317567803896964, 3913355.552179432474077 ], [ 4970099.125341536477208, 3913327.19487565336749 ], [ 4970125.279068677686155, 3913350.182848724536598 ], [ 4970133.067245014943182, 3913341.457818550057709 ], [ 4970154.910293406806886, 3913360.43250995175913 ], [ 4970122.602191041223705, 3913397.515317802783102 ], [ 4970074.317567803896964, 3913355.552179432474077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969935.530660374090075, 3891120.375945811159909 ], [ 4969909.846905791200697, 3891143.997800420504063 ], [ 4969842.849264724180102, 3891072.143319104332477 ], [ 4969868.533028738573194, 3891048.521401476114988 ], [ 4969935.530660374090075, 3891120.375945811159909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969792.217765622772276, 3897571.757199491839856 ], [ 4969788.483224700205028, 3897566.288507768884301 ], [ 4969760.79674918577075, 3897585.901538152247667 ], [ 4969729.480186907574534, 3897542.149456451181322 ], [ 4969751.110136471688747, 3897526.895023325458169 ], [ 4969754.844690498895943, 3897532.363709738012403 ], [ 4969773.013681152835488, 3897519.651957974303514 ], [ 4969804.042167841456831, 3897563.403569522779435 ], [ 4969792.217765622772276, 3897571.757199491839856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969496.838317125104368, 3901824.995593099854887 ], [ 4969463.963549587875605, 3901849.697488341480494 ], [ 4969427.188254897482693, 3901801.2021469399333 ], [ 4969460.351686929352582, 3901776.136594451032579 ], [ 4969496.838317125104368, 3901824.995593099854887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969432.322618476115167, 3911142.284429244231433 ], [ 4969419.942882316187024, 3911142.626362696290016 ], [ 4969420.220974732190371, 3911148.088854090776294 ], [ 4969373.293013628572226, 3911149.461285357363522 ], [ 4969371.099501171149313, 3911088.283038402441889 ], [ 4969397.874878851696849, 3911087.238612017128617 ], [ 4969398.708518451079726, 3911103.990216695237905 ], [ 4969430.953717104159296, 3911102.955626753624529 ], [ 4969432.322618476115167, 3911142.284429244231433 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969327.207469158805907, 3900218.875711730215698 ], [ 4969334.184027345851064, 3900182.839281838852912 ], [ 4969420.266932299360633, 3900199.743425297550857 ], [ 4969411.259237949736416, 3900244.15119332447648 ], [ 4969350.800231051631272, 3900232.026619618758559 ], [ 4969352.254581111483276, 3900224.018353338353336 ], [ 4969327.207469158805907, 3900218.875711730215698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969279.314079072326422, 3910576.876373841892928 ], [ 4969321.924007621593773, 3910575.86018332792446 ], [ 4969322.710800147615373, 3910618.829252699390054 ], [ 4969280.388830961659551, 3910619.845956671051681 ], [ 4969279.314079072326422, 3910576.876373841892928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968794.61616347450763, 3907421.535695856437087 ], [ 4968759.487317544408143, 3907422.565955951344222 ], [ 4968758.427681867033243, 3907370.493207988794893 ], [ 4968793.555951531976461, 3907369.827077385503799 ], [ 4968794.61616347450763, 3907421.535695856437087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968775.204737737774849, 3896904.31061111856252 ], [ 4968736.885361175052822, 3896910.06896314304322 ], [ 4968729.769306407310069, 3896861.991275741718709 ], [ 4968768.376788672059774, 3896856.233422923367471 ], [ 4968775.204737737774849, 3896904.31061111856252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968544.828699205070734, 3900310.340836759656668 ], [ 4968542.798591094091535, 3900318.34813358867541 ], [ 4968504.223656428977847, 3900308.448763026855886 ], [ 4968514.373514872975647, 3900268.776395726948977 ], [ 4968579.43315102905035, 3900285.276753783691674 ], [ 4968571.312677056528628, 3900317.305931318551302 ], [ 4968544.828699205070734, 3900310.340836759656668 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968507.015271533280611, 3908054.982254370115697 ], [ 4968515.423844997771084, 3908021.496888898313046 ], [ 4968560.60726759955287, 3908032.864505037199706 ], [ 4968552.198641302995384, 3908066.349856598302722 ], [ 4968507.015271533280611, 3908054.982254370115697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968164.025000505149364, 3909418.784835382830352 ], [ 4968189.422907088883221, 3909383.144217180088162 ], [ 4968218.753519703634083, 3909403.586891320999712 ], [ 4968183.542053422890604, 3909453.411502802278847 ], [ 4968142.709926749579608, 3909424.573744163382798 ], [ 4968152.522819961421192, 3909410.753840272780508 ], [ 4968164.025000505149364, 3909418.784835382830352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968166.819427363574505, 3901386.048139895312488 ], [ 4968137.699383142404258, 3901404.932114283088595 ], [ 4968120.75306067802012, 3901379.049279341939837 ], [ 4968110.373982602730393, 3901385.58553190715611 ], [ 4968101.183052017353475, 3901371.368413345888257 ], [ 4968110.986152471974492, 3901364.83115299185738 ], [ 4968096.624713464640081, 3901342.958278061356395 ], [ 4968126.320777477696538, 3901324.075264488346875 ], [ 4968166.819427363574505, 3901386.048139895312488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968159.890851000323892, 3902220.623683330602944 ], [ 4968096.187963377684355, 3902254.376732697244734 ], [ 4968083.270703170448542, 3902230.321584835648537 ], [ 4968115.554436780512333, 3902213.263714558910578 ], [ 4968108.3777592824772, 3902200.142491015139967 ], [ 4968139.796964772976935, 3902183.447273541707546 ], [ 4968159.890851000323892, 3902220.623683330602944 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967604.43363906443119, 3905524.51443108310923 ], [ 4967634.388807626441121, 3905519.468279942404479 ], [ 4967638.662108267657459, 3905546.0572594772093 ], [ 4967608.706968517042696, 3905551.10340592963621 ], [ 4967604.43363906443119, 3905524.51443108310923 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967493.774087955243886, 3899550.756689469795674 ], [ 4967522.87123419996351, 3899546.073075000196695 ], [ 4967530.282998934388161, 3899590.509724094066769 ], [ 4967500.897890072315931, 3899595.192835055291653 ], [ 4967493.774087955243886, 3899550.756689469795674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967171.643087862990797, 3905359.912155051715672 ], [ 4967209.404083942063153, 3905336.672296468168497 ], [ 4967225.484308587387204, 3905362.917271345853806 ], [ 4967187.723957853391767, 3905385.792977271135896 ], [ 4967171.643087862990797, 3905359.912155051715672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966521.850050616078079, 3897090.13258781703189 ], [ 4966525.536869234405458, 3897124.366986599285156 ], [ 4966462.445989477448165, 3897130.815127019770443 ], [ 4966459.04712759424001, 3897096.581221189815551 ], [ 4966521.850050616078079, 3897090.13258781703189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966249.218038140796125, 3905263.313323739450425 ], [ 4966196.788238736800849, 3905277.062571867834777 ], [ 4966187.060708813369274, 3905239.540763496421278 ], [ 4966239.202627298422158, 3905225.79101460473612 ], [ 4966249.218038140796125, 3905263.313323739450425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965078.760688927955925, 3899577.661133614368737 ], [ 4965102.350739948451519, 3899594.085469914600253 ], [ 4965076.080728432163596, 3899631.548030403442681 ], [ 4965052.490100922994316, 3899615.48784599872306 ], [ 4965078.760688927955925, 3899577.661133614368737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964996.1991514461115, 3903940.904229238629341 ], [ 4964952.724463040940464, 3903936.099788220133632 ], [ 4964957.395237962715328, 3903897.145353982690722 ], [ 4964976.685223671607673, 3903899.361521488521248 ], [ 4964977.562148610129952, 3903891.352063699159771 ], [ 4965001.74692065268755, 3903893.940345444716513 ], [ 4964996.1991514461115, 3903940.904229238629341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964823.932714861817658, 3901316.333395648282021 ], [ 4964793.390925427898765, 3901325.387159085366875 ], [ 4964779.641085260547698, 3901279.848567192442715 ], [ 4964810.182921736501157, 3901270.794788389001042 ], [ 4964823.932714861817658, 3901316.333395648282021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964746.104569982737303, 3906519.276942737866193 ], [ 4964775.216105691157281, 3906500.753365424927324 ], [ 4964804.225574110634625, 3906545.224438721779734 ], [ 4964775.401411326602101, 3906564.112582274246961 ], [ 4964746.104569982737303, 3906519.276942737866193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964744.413204032927752, 3901159.264328627847135 ], [ 4964754.817483205348253, 3901136.705076579935849 ], [ 4964767.767728886567056, 3901142.552130775060505 ], [ 4964775.860423436388373, 3901124.722840817179531 ], [ 4964810.394205944612622, 3901140.436402684077621 ], [ 4964791.608600059524179, 3901181.188579350709915 ], [ 4964744.413204032927752, 3901159.264328627847135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964719.833475427702069, 3893028.20989853143692 ], [ 4964724.769105846993625, 3893004.54951047943905 ], [ 4964749.247658720239997, 3893009.686908921226859 ], [ 4964744.312007674947381, 3893033.3472925494425 ], [ 4964719.833475427702069, 3893028.20989853143692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964191.300321913324296, 3900541.902069546747953 ], [ 4964206.517723201774061, 3900571.056816699448973 ], [ 4964165.011572544462979, 3900592.474201929289848 ], [ 4964149.79413846693933, 3900563.319477902725339 ], [ 4964191.300321913324296, 3900541.902069546747953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964079.597780227661133, 3897623.949769247788936 ], [ 4964074.6507897535339, 3897655.621173967141658 ], [ 4964051.902204121463001, 3897651.943642896134406 ], [ 4964057.136619105003774, 3897620.636821572203189 ], [ 4964079.597780227661133, 3897623.949769247788936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964071.56513412296772, 3897784.518189649097621 ], [ 4964102.66818028409034, 3897787.116666442714632 ], [ 4964099.440075010061264, 3897824.616886443458498 ], [ 4964091.664469894021749, 3897823.876232584938407 ], [ 4964089.900898586027324, 3897846.085338070522994 ], [ 4964059.950032115913928, 3897843.488710885401815 ], [ 4964062.003927110694349, 3897819.823546827305108 ], [ 4964051.924672028981149, 3897818.715105646289885 ], [ 4964053.974502776749432, 3897797.59884322527796 ], [ 4964070.390395823866129, 3897798.717379064764827 ], [ 4964071.56513412296772, 3897784.518189649097621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964016.889347267337143, 3901373.297932247165591 ], [ 4964023.536885509267449, 3901358.379158893134445 ], [ 4964058.359375960193574, 3901373.728085385169834 ], [ 4964040.439042849466205, 3901414.482169011142105 ], [ 4963995.256481695920229, 3901394.383088659029454 ], [ 4964006.529225894249976, 3901368.547751271165907 ], [ 4964016.889347267337143, 3901373.297932247165591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963888.123984986916184, 3893223.143343850970268 ], [ 4963917.752641757018864, 3893250.500010478310287 ], [ 4963889.472545981407166, 3893281.041960002388805 ], [ 4963859.843894240446389, 3893253.685324055608362 ], [ 4963888.123984986916184, 3893223.143343850970268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963867.451167901046574, 3900628.413757369387895 ], [ 4963857.899887690320611, 3900658.257305131293833 ], [ 4963812.706690941937268, 3900643.984612238127738 ], [ 4963822.257925969548523, 3900614.141048678196967 ], [ 4963867.451167901046574, 3900628.413757369387895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963732.417147504165769, 3900422.466326137538999 ], [ 4963743.865204233676195, 3900468.000715895090252 ], [ 4963713.61311867646873, 3900475.599639370571822 ], [ 4963702.165589137002826, 3900429.70113285863772 ], [ 4963732.417147504165769, 3900422.466326137538999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963725.358313407748938, 3893953.328173369634897 ], [ 4963700.575106661766768, 3893959.115090258885175 ], [ 4963691.421258046291769, 3893918.31819701846689 ], [ 4963740.122391353361309, 3893907.471259594429284 ], [ 4963751.280570005998015, 3893955.918045588303357 ], [ 4963727.362144650891423, 3893961.342176062054932 ], [ 4963725.358313407748938, 3893953.328173369634897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963702.797225537709892, 3900576.810791180003434 ], [ 4963687.812659749761224, 3900582.249081945978105 ], [ 4963692.113666431047022, 3900594.272175647784024 ], [ 4963667.619410966522992, 3900603.336765817832202 ], [ 4963650.987874560989439, 3900557.430096511729062 ], [ 4963690.754172566346824, 3900543.291778126731515 ], [ 4963702.797225537709892, 3900576.810791180003434 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963652.110758110880852, 3900758.43183826142922 ], [ 4963623.578394999727607, 3900771.495533143170178 ], [ 4963600.617259816266596, 3900721.573477409780025 ], [ 4963629.149664646014571, 3900708.509758548345417 ], [ 4963652.110758110880852, 3900758.43183826142922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963641.662780578248203, 3900626.600156239233911 ], [ 4963632.097395442426205, 3900665.547021100763232 ], [ 4963597.838838673196733, 3900657.118021002504975 ], [ 4963607.692175534553826, 3900618.171598038636148 ], [ 4963641.662780578248203, 3900626.600156239233911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963584.72187687177211, 3893624.297942776698619 ], [ 4963589.406175792217255, 3893576.604439678136259 ], [ 4963615.904956364072859, 3893579.195088187698275 ], [ 4963615.026963111944497, 3893587.932797027751803 ], [ 4963635.188681990839541, 3893590.149350061547011 ], [ 4963631.382874872535467, 3893628.741009002551436 ], [ 4963584.72187687177211, 3893624.297942776698619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963499.019109806977212, 3904526.944672494195402 ], [ 4963492.916499213315547, 3904562.25580841768533 ], [ 4963448.58382913749665, 3904554.17526796227321 ], [ 4963454.973768007941544, 3904519.228704719338566 ], [ 4963499.019109806977212, 3904526.944672494195402 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963368.249640400521457, 3900691.713765793014318 ], [ 4963337.100848493166268, 3900720.43127067014575 ], [ 4963313.812387034296989, 3900695.269815602339804 ], [ 4963344.673185182735324, 3900666.551833086647093 ], [ 4963368.249640400521457, 3900691.713765793014318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963311.53428566083312, 3895156.852296490222216 ], [ 4963277.495176302269101, 3895187.750038554426283 ], [ 4963253.339953874237835, 3895161.130854326300323 ], [ 4963235.743459067307413, 3895177.125049412250519 ], [ 4963216.189139764755964, 3895155.610893679317087 ], [ 4963276.767062218859792, 3895100.722026453819126 ], [ 4963311.274715670384467, 3895138.645431327167898 ], [ 4963302.331842897459865, 3895147.006411319598556 ], [ 4963311.53428566083312, 3895156.852296490222216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962923.924288469366729, 3895825.518160593695939 ], [ 4962926.210056995041668, 3895837.537971838377416 ], [ 4962934.566320321522653, 3895835.730281936470419 ], [ 4962937.422535401768982, 3895851.392272048164159 ], [ 4962929.354890818707645, 3895852.836279248818755 ], [ 4962931.926445460878313, 3895866.313051600474864 ], [ 4962951.231400629505515, 3895862.701699459925294 ], [ 4962956.375048407353461, 3895889.291120413690805 ], [ 4962901.917405733838677, 3895899.766434771940112 ], [ 4962893.630548493936658, 3895856.786334944888949 ], [ 4962898.240468034520745, 3895856.065218240953982 ], [ 4962893.381985584273934, 3895831.296897404361516 ], [ 4962923.924288469366729, 3895825.518160593695939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962900.763564073480666, 3896272.63312522880733 ], [ 4962895.82561718672514, 3896299.206921907141805 ], [ 4962881.715373980812728, 3896296.636158991605043 ], [ 4962879.683271108195186, 3896306.828635573387146 ], [ 4962890.04949339106679, 3896309.029468047432601 ], [ 4962885.983592688106, 3896330.506805990356952 ], [ 4962837.318176832050085, 3896321.328235892578959 ], [ 4962840.222847057506442, 3896305.675164778716862 ], [ 4962846.270094124600291, 3896306.776910073123872 ], [ 4962854.401845558546484, 3896263.822223668452352 ], [ 4962900.763564073480666, 3896272.63312522880733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962826.453130392357707, 3895151.72812774265185 ], [ 4962850.731062945909798, 3895099.331087809056044 ], [ 4962877.501809267327189, 3895111.388792080339044 ], [ 4962873.166288769803941, 3895120.849437031429261 ], [ 4962900.511989672668278, 3895133.636313003487885 ], [ 4962878.834958776831627, 3895180.5753990332596 ], [ 4962861.563957194797695, 3895172.537817120086402 ], [ 4962857.806819853372872, 3895180.542843458242714 ], [ 4962833.051404957659543, 3895169.216533971019089 ], [ 4962838.543074617162347, 3895157.208766733761877 ], [ 4962826.453130392357707, 3895151.72812774265185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962681.65572040528059, 3899761.386128448881209 ], [ 4962669.238285798579454, 3899782.850669567938894 ], [ 4962647.081346865743399, 3899770.071977916639298 ], [ 4962659.786777378991246, 3899748.607870453037322 ], [ 4962681.65572040528059, 3899761.386128448881209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962050.457940317690372, 3893612.094163788016886 ], [ 4962061.051985492929816, 3893654.713317473884672 ], [ 4962032.52225836366415, 3893661.58847024012357 ], [ 4962035.385862899012864, 3893672.880808500107378 ], [ 4962012.907898498699069, 3893678.30864870082587 ], [ 4961999.449612070806324, 3893624.761306900065392 ], [ 4962050.457940317690372, 3893612.094163788016886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961914.16213620454073, 3898967.866971496026963 ], [ 4961923.11157432384789, 3898954.04357362864539 ], [ 4961946.418838298879564, 3898968.644052282907069 ], [ 4961937.468841802328825, 3898982.831571662798524 ], [ 4961914.16213620454073, 3898967.866971496026963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960688.5047324039042, 3893766.637047244701535 ], [ 4960707.220317101106048, 3893772.854700156021863 ], [ 4960698.828298307023942, 3893798.695531718898565 ], [ 4960646.999973983503878, 3893781.869601746555418 ], [ 4960657.70666541159153, 3893749.113699514884502 ], [ 4960690.531385378912091, 3893759.72157267248258 ], [ 4960688.5047324039042, 3893766.637047244701535 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960654.80588714312762, 3898871.681527885608375 ], [ 4960681.339255213737488, 3898847.323735034558922 ], [ 4960721.311110838316381, 3898889.985606832895428 ], [ 4960694.777214112691581, 3898914.707490010652691 ], [ 4960654.80588714312762, 3898871.681527885608375 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960524.925573439337313, 3897678.23808138910681 ], [ 4960523.537562564015388, 3897642.551346139516681 ], [ 4960549.461888103745878, 3897641.49684767331928 ], [ 4960550.84986462071538, 3897677.183584242593497 ], [ 4960524.925573439337313, 3897678.23808138910681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960324.602256671525538, 3907481.07388426316902 ], [ 4960360.61618865840137, 3907465.10448064096272 ], [ 4960375.252647200599313, 3907497.897653507068753 ], [ 4960314.172904440201819, 3907525.118671193253249 ], [ 4960295.231272232718766, 3907482.851847258862108 ], [ 4960320.29714959859848, 3907471.600196525920182 ], [ 4960324.602256671525538, 3907481.07388426316902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959992.306736109778285, 3898712.321929122786969 ], [ 4959997.899827606976032, 3898628.580120530445129 ], [ 4960037.930894503369927, 3898631.186768064275384 ], [ 4960036.168096713721752, 3898655.216795593500137 ], [ 4960040.199843715876341, 3898655.58674366818741 ], [ 4960037.255017288029194, 3898700.370468729641289 ], [ 4960015.65516924392432, 3898699.246917784679681 ], [ 4960014.770105957984924, 3898713.81083659408614 ], [ 4959992.306736109778285, 3898712.321929122786969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959971.5477104941383, 3909119.520931596402079 ], [ 4959953.158358208835125, 3909094.005182541441172 ], [ 4959977.079357580281794, 3909076.925438704900444 ], [ 4959971.332746837288141, 3909068.906248329207301 ], [ 4960020.903869532980025, 3909033.656913458835334 ], [ 4960045.039791589602828, 3909067.191912790294737 ], [ 4959971.5477104941383, 3909119.520931596402079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959872.617229318246245, 3900227.658925665076822 ], [ 4959891.334258168004453, 3900229.870610224548727 ], [ 4959893.671262335963547, 3900206.933767089154571 ], [ 4959921.891872813925147, 3900209.523269058205187 ], [ 4959916.631862727925181, 3900262.314582139719278 ], [ 4959869.406296607106924, 3900257.512989227194339 ], [ 4959872.617229318246245, 3900227.658925665076822 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959693.942372310906649, 3907150.624902025330812 ], [ 4959662.530063516460359, 3907170.243091548793018 ], [ 4959647.591618751175702, 3907146.553176902700216 ], [ 4959679.003944251686335, 3907126.934970214962959 ], [ 4959693.942372310906649, 3907150.624902025330812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959670.864862241782248, 3898922.327609002590179 ], [ 4959721.841715979389846, 3898923.857045664917678 ], [ 4959720.939098777249455, 3898950.801368306856602 ], [ 4959704.234674501232803, 3898950.413334358483553 ], [ 4959703.035724711604416, 3898983.18331300560385 ], [ 4959668.763908530585468, 3898981.677784294821322 ], [ 4959670.864862241782248, 3898922.327609002590179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959589.672097329981625, 3892843.801845882553607 ], [ 4959627.672896699048579, 3892862.06249663233757 ], [ 4959610.626207168214023, 3892896.994515390135348 ], [ 4959572.913527055643499, 3892878.73429901432246 ], [ 4959589.672097329981625, 3892843.801845882553607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959515.779643157497048, 3898610.411188506986946 ], [ 4959513.700262608006597, 3898654.83207075484097 ], [ 4959492.100356684066355, 3898653.708940574433655 ], [ 4959491.505149208940566, 3898667.18089862819761 ], [ 4959469.041194260120392, 3898666.056557634379715 ], [ 4959472.604613186791539, 3898590.686744836624712 ], [ 4959501.6930942973122, 3898591.820515437517315 ], [ 4959500.803642421029508, 3898609.661612258292735 ], [ 4959515.779643157497048, 3898610.411188506986946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959372.5134989162907, 3897882.676327624823898 ], [ 4959412.547287174500525, 3897884.189655733294785 ], [ 4959411.639261436648667, 3897915.139390685129911 ], [ 4959371.317491821013391, 3897913.625655397307128 ], [ 4959372.5134989162907, 3897882.676327624823898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959018.156343054026365, 3898761.185370336752385 ], [ 4959003.395292673259974, 3898812.506945992819965 ], [ 4958946.965767732821405, 3898796.770158970262855 ], [ 4958957.676069757901132, 3898758.551545224618167 ], [ 4958990.784887348301709, 3898768.065390815492719 ], [ 4958994.548044146038592, 3898754.597869700752199 ], [ 4959018.156343054026365, 3898761.185370336752385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958955.214430090039968, 3899281.438671674579382 ], [ 4958903.639742400497198, 3899295.93156971829012 ], [ 4958897.621569842100143, 3899274.43947018077597 ], [ 4958912.604359790682793, 3899270.090900872368366 ], [ 4958903.148395176045597, 3899235.485304249916226 ], [ 4958939.740374348126352, 3899225.340951507445425 ], [ 4958955.214430090039968, 3899281.438671674579382 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958727.014685050584376, 3907195.13947334093973 ], [ 4958691.570625195279717, 3907215.845569630619138 ], [ 4958665.716960485093296, 3907172.84201227966696 ], [ 4958701.161564527079463, 3907151.771751428022981 ], [ 4958727.014685050584376, 3907195.13947334093973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958627.595419962890446, 3900423.25721256993711 ], [ 4958575.180842543020844, 3900422.091979606077075 ], [ 4958575.191461986862123, 3900414.445259566884488 ], [ 4958551.287916445173323, 3900414.047943726181984 ], [ 4958551.905358160845935, 3900384.19012234127149 ], [ 4958628.51158170774579, 3900385.753073418047279 ], [ 4958627.595419962890446, 3900423.25721256993711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958295.234974156133831, 3898129.87060534954071 ], [ 4958304.773936912417412, 3898105.122932765167207 ], [ 4958335.288548336364329, 3898116.817167941015214 ], [ 4958325.749561592936516, 3898141.564829870592803 ], [ 4958295.234974156133831, 3898129.87060534954071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958225.096175011247396, 3906610.376927764154971 ], [ 4958201.170094151981175, 3906630.371252596843988 ], [ 4958177.597537466324866, 3906602.664845890365541 ], [ 4958201.523625369183719, 3906582.670500409323722 ], [ 4958225.096175011247396, 3906610.376927764154971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958209.175961601547897, 3904577.773748600389808 ], [ 4958247.22625945135951, 3904548.695617268327624 ], [ 4958269.934677603654563, 3904577.857381951995194 ], [ 4958256.098247746936977, 3904588.398127330001444 ], [ 4958252.9362484049052, 3904584.388330575544387 ], [ 4958228.434439844451845, 3904602.9252914567478 ], [ 4958209.175961601547897, 3904577.773748600389808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958155.947861082851887, 3907480.920731388498098 ], [ 4958133.82013092096895, 3907449.939146159682423 ], [ 4958162.929091862402856, 3907429.223608391359448 ], [ 4958154.307832392863929, 3907417.195417588111013 ], [ 4958176.499619591981173, 3907401.568240077234805 ], [ 4958207.249076115898788, 3907444.213933588936925 ], [ 4958155.947861082851887, 3907480.920731388498098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958110.615480106323957, 3897916.236789172515273 ], [ 4958122.769074858166277, 3897875.106805889867246 ], [ 4958146.377859620377421, 3897882.057666357140988 ], [ 4958134.224231833592057, 3897923.187639134004712 ], [ 4958110.615480106323957, 3897916.236789172515273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958001.550335091538727, 3904794.875293832737952 ], [ 4958031.48106983024627, 3904806.932573987636715 ], [ 4958014.146069385111332, 3904849.148070336785167 ], [ 4957980.186517413705587, 3904835.264646098017693 ], [ 4957984.231800195761025, 3904825.074502343777567 ], [ 4957948.833429435268044, 3904810.460888819303364 ], [ 4957955.478741935454309, 3904794.084061729721725 ], [ 4957995.194441925734282, 3904810.160111772827804 ], [ 4958001.550335091538727, 3904794.875293832737952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957479.812943014316261, 3900068.843355389777571 ], [ 4957506.010529489256442, 3900076.889545042999089 ], [ 4957498.777029025368392, 3900101.640637598931789 ], [ 4957472.291460494510829, 3900093.594066730700433 ], [ 4957479.812943014316261, 3900068.843355389777571 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957331.593790828250349, 3901279.012955798301846 ], [ 4957311.369903552345932, 3901327.051024869084358 ], [ 4957280.859961026348174, 3901314.265540471766144 ], [ 4957287.505724985152483, 3901297.888582938350737 ], [ 4957282.037310486659408, 3901295.332338158972561 ], [ 4957295.32690376508981, 3901264.034944801591337 ], [ 4957331.593790828250349, 3901279.012955798301846 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957134.161534293554723, 3901181.525810734834522 ], [ 4957115.382745866663754, 3901225.924649815540761 ], [ 4957071.919747711159289, 3901208.024295911658555 ], [ 4957090.69896231405437, 3901163.261297217570245 ], [ 4957134.161534293554723, 3901181.525810734834522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957067.294923176988959, 3900356.317406233400106 ], [ 4957062.913769565522671, 3900402.191972241736948 ], [ 4957026.342037314549088, 3900398.866093892138451 ], [ 4957030.435127754695714, 3900352.991138593293726 ], [ 4957067.294923176988959, 3900356.317406233400106 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956999.119431464932859, 3892498.315575980115682 ], [ 4957028.807254061102867, 3892487.067085735499859 ], [ 4957038.281116532161832, 3892511.840433144941926 ], [ 4957008.881402458064258, 3892523.089296265039593 ], [ 4956999.119431464932859, 3892498.315575980115682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956621.286572334356606, 3893270.860769412014633 ], [ 4956633.3489108113572, 3893298.914549048058689 ], [ 4956612.307325835339725, 3893307.990079640876502 ], [ 4956600.244969507679343, 3893279.936309297569096 ], [ 4956621.286572334356606, 3893270.860769412014633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956362.992769432254136, 3892964.654134701937437 ], [ 4956336.480814684182405, 3892971.173835347406566 ], [ 4956333.328561916947365, 3892958.42522117914632 ], [ 4956359.552923415787518, 3892951.541013306938112 ], [ 4956362.992769432254136, 3892964.654134701937437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956276.947067792527378, 3893337.40959594771266 ], [ 4956351.878323097713292, 3893313.474837170448154 ], [ 4956360.198307814076543, 3893339.702965206000954 ], [ 4956351.840288022533059, 3893342.605080207809806 ], [ 4956355.570065471343696, 3893354.262067623436451 ], [ 4956288.99644688796252, 3893375.658807524479926 ], [ 4956276.947067792527378, 3893337.40959594771266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956060.012798714451492, 3904910.996871521696448 ], [ 4956030.035112396813929, 3904934.626581819728017 ], [ 4955990.36220443341881, 3904884.689292704686522 ], [ 4956022.93431522231549, 3904858.878108952194452 ], [ 4956032.709163215942681, 3904870.907087875995785 ], [ 4956022.332023117691278, 3904879.268674774561077 ], [ 4956034.982148174196482, 3904894.578555937856436 ], [ 4956042.476459188386798, 3904888.762159359175712 ], [ 4956060.012798714451492, 3904910.996871521696448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955843.459211839362979, 3893956.231246667448431 ], [ 4955874.320200719870627, 3893927.140674091875553 ], [ 4955920.924633369781077, 3893975.993996008299291 ], [ 4955886.025519271381199, 3894009.08472965657711 ], [ 4955865.600265437737107, 3893987.574822822585702 ], [ 4955860.408451665192842, 3893992.665941239800304 ], [ 4955848.038336850702763, 3893979.541381842456758 ], [ 4955857.26781302317977, 3893970.814170672558248 ], [ 4955843.459211839362979, 3893956.231246667448431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955514.029723818413913, 3895441.819543359335512 ], [ 4955491.247491987422109, 3895462.181743662338704 ], [ 4955437.169809254817665, 3895402.031614780426025 ], [ 4955459.952050926163793, 3895381.669369365554303 ], [ 4955514.029723818413913, 3895441.819543359335512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955206.139780302532017, 3901109.835949219297618 ], [ 4955211.071553552523255, 3901081.440015942323953 ], [ 4955219.421523122116923, 3901082.907089684158564 ], [ 4955222.903220303356647, 3901062.520193058531731 ], [ 4955250.832617559470236, 3901067.289206049405038 ], [ 4955248.220868119969964, 3901082.943505512550473 ], [ 4955288.818720992654562, 3901090.277498905081302 ], [ 4955281.568168151192367, 3901130.322652297094464 ], [ 4955257.381829252466559, 3901126.286603758577257 ], [ 4955257.671665254980326, 3901124.83044920489192 ], [ 4955234.349296983331442, 3901120.795514662284404 ], [ 4955235.509096873924136, 3901114.606765758246183 ], [ 4955206.139780302532017, 3901109.835949219297618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955147.079634314402938, 3901355.185248360969126 ], [ 4955151.720554019324481, 3901328.973715497646481 ], [ 4955228.88459790032357, 3901342.908116893842816 ], [ 4955221.923572636209428, 3901381.861267187166959 ], [ 4955165.778340827673674, 3901371.594705522060394 ], [ 4955168.098347733728588, 3901358.853070220910013 ], [ 4955147.079634314402938, 3901355.185248360969126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955043.920383233577013, 3900256.474370311014354 ], [ 4955100.040475685149431, 3900288.588444074150175 ], [ 4955076.372528729960322, 3900329.705351947341114 ], [ 4955040.973978609777987, 3900309.269535514526069 ], [ 4955038.664471418596804, 3900313.636193679645658 ], [ 4955017.943446709774435, 3900301.593857164960355 ], [ 4955043.920383233577013, 3900256.474370311014354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954808.151062251999974, 3900172.429029904771596 ], [ 4954800.625706130638719, 3900202.278304028324783 ], [ 4954774.13761590141803, 3900195.69090974284336 ], [ 4954768.929494491778314, 3900214.983310127165169 ], [ 4954726.606242872774601, 3900204.370787554886192 ], [ 4954743.391633695922792, 3900139.212410767562687 ], [ 4954790.0332155181095, 3900151.286868198774755 ], [ 4954785.982084891758859, 3900166.575277453288436 ], [ 4954808.151062251999974, 3900172.429029904771596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954802.649297311902046, 3895350.618202123790979 ], [ 4954819.956235471181571, 3895331.705098220147192 ], [ 4954840.097341058775783, 3895349.936711141839623 ], [ 4954822.502345744520426, 3895368.849442518781871 ], [ 4954802.649297311902046, 3895350.618202123790979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954263.143359212204814, 3893690.979059921111912 ], [ 4954240.36193629167974, 3893710.249914931599051 ], [ 4954221.951201865449548, 3893689.107863499317318 ], [ 4954244.733076351694763, 3893669.472864974755794 ], [ 4954263.143359212204814, 3893690.979059921111912 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954193.716189883649349, 3894632.530968986917287 ], [ 4954203.498711847700179, 3894642.010310430079699 ], [ 4954220.804789761081338, 3894623.825085375458002 ], [ 4954249.577532097697258, 3894651.170057662762702 ], [ 4954223.618421112187207, 3894678.447872148826718 ], [ 4954228.797284638509154, 3894683.55202973773703 ], [ 4954210.337652983143926, 3894702.828222590964288 ], [ 4954175.522757637314498, 3894669.649827820714563 ], [ 4954184.175329217687249, 3894660.92133309179917 ], [ 4954174.679977767169476, 3894652.170608098153025 ], [ 4954193.716189883649349, 3894632.530968986917287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954118.956572892144322, 3894049.469188943039626 ], [ 4954105.975229795090854, 3894064.382600062526762 ], [ 4954125.830592763610184, 3894081.885055724531412 ], [ 4954131.311465074308217, 3894075.701569687109441 ], [ 4954144.836428442969918, 3894087.370236848946661 ], [ 4954130.989993721246719, 3894103.01083525409922 ], [ 4954118.616415309719741, 3894092.07184023084119 ], [ 4954112.847480957396328, 3894098.254976773634553 ], [ 4954086.373662816360593, 3894074.918385087512434 ], [ 4954092.43155437707901, 3894068.007338406518102 ], [ 4954080.346012886613607, 3894057.068713154178113 ], [ 4954101.11543966922909, 3894033.789843894541264 ], [ 4954118.956572892144322, 3894049.469188943039626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953896.035864316858351, 3894961.340371489524841 ], [ 4953844.721176702529192, 3894994.413839338812977 ], [ 4953822.294513065367937, 3894959.79440422123298 ], [ 4953873.321179601363838, 3894926.720544651150703 ], [ 4953896.035864316858351, 3894961.340371489524841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953716.072383241727948, 3894661.808442287612706 ], [ 4953683.215713378973305, 3894676.333937166258693 ], [ 4953689.248759794980288, 3894689.81398604111746 ], [ 4953673.39700772613287, 3894696.713311446364969 ], [ 4953668.513129215687513, 3894685.783554207533598 ], [ 4953644.590819480828941, 3894696.678583145141602 ], [ 4953628.502772867679596, 3894660.610439860727638 ], [ 4953701.133585168048739, 3894628.290546395815909 ], [ 4953716.072383241727948, 3894661.808442287612706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952491.710371449589729, 3903168.978675016667694 ], [ 4952468.091242618858814, 3903173.684926948044449 ], [ 4952455.777407985180616, 3903114.317317513283342 ], [ 4952479.396586799994111, 3903109.611054926645011 ], [ 4952491.710371449589729, 3903168.978675016667694 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952439.801680068485439, 3889330.551265102811158 ], [ 4952439.194185181520879, 3889357.496014178730547 ], [ 4952395.112385326996446, 3889357.080788604915142 ], [ 4952395.719836039468646, 3889330.136038539465517 ], [ 4952439.801680068485439, 3889330.551265102811158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952377.114732459187508, 3888726.390789213590324 ], [ 4952384.038185507059097, 3888719.116252537351102 ], [ 4952405.911285312846303, 3888740.260990523733199 ], [ 4952398.699284317903221, 3888747.899315026123077 ], [ 4952408.196881264448166, 3888757.013509891461581 ], [ 4952387.426964588463306, 3888778.472980030346662 ], [ 4952335.334378181025386, 3888728.163093063049018 ], [ 4952356.392839318141341, 3888706.339789489284158 ], [ 4952377.114732459187508, 3888726.390789213590324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952349.060691086575389, 3892055.94450605660677 ], [ 4952380.452401603572071, 3892064.719916300848126 ], [ 4952357.021888250485063, 3892146.98579950677231 ], [ 4952323.902151305228472, 3892137.844290434382856 ], [ 4952336.050320061855018, 3892095.983575532212853 ], [ 4952330.866388371214271, 3892094.52106874063611 ], [ 4952337.518136816099286, 3892072.316931372508407 ], [ 4952343.854011247865856, 3892074.144900015089661 ], [ 4952349.060691086575389, 3892055.94450605660677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952317.39924209471792, 3892280.575090279337019 ], [ 4952301.445488937199116, 3892374.865909663494676 ], [ 4952268.321812944486737, 3892369.36574688507244 ], [ 4952284.275453129783273, 3892275.074908139649779 ], [ 4952317.39924209471792, 3892280.575090279337019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951328.412812403403223, 3891490.020340617746115 ], [ 4951318.580074268393219, 3891523.50913558807224 ], [ 4951241.107464666478336, 3891500.846654652617872 ], [ 4951250.940114489756525, 3891467.357831785455346 ], [ 4951328.412812403403223, 3891490.020340617746115 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950917.003973982296884, 3893845.838301869574934 ], [ 4950920.715138678438962, 3893876.429207122419029 ], [ 4950897.378201677463949, 3893879.316490029450506 ], [ 4950893.667010827921331, 3893848.725587946362793 ], [ 4950917.003973982296884, 3893845.838301869574934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950764.861128661781549, 3892833.757534180302173 ], [ 4950763.656435054726899, 3892881.45704109640792 ], [ 4950733.408693644218147, 3892880.695595006924123 ], [ 4950734.61333361081779, 3892832.996086739934981 ], [ 4950764.861128661781549, 3892833.757534180302173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950718.50429436378181, 3893862.734028333798051 ], [ 4950756.816514257341623, 3893863.868438286706805 ], [ 4950755.332199292257428, 3893903.920964777469635 ], [ 4950717.30850594304502, 3893902.422744425944984 ], [ 4950718.50429436378181, 3893862.734028333798051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950532.74218103569001, 3900961.234542238991708 ], [ 4950517.478855597786605, 3900960.853786286432296 ], [ 4950516.88224698510021, 3900979.787907822523266 ], [ 4950499.890964514575899, 3900979.405280223116279 ], [ 4950500.486768571659923, 3900961.199417873285711 ], [ 4950478.311568472534418, 3900960.811162555124611 ], [ 4950479.218717834912241, 3900921.121956340502948 ], [ 4950533.648617272265255, 3900922.2735974076204 ], [ 4950532.74218103569001, 3900961.234542238991708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950279.142847349867225, 3897379.378523872233927 ], [ 4950280.526382707059383, 3897431.814656950999051 ], [ 4950262.667970093898475, 3897432.159504901617765 ], [ 4950262.392121148295701, 3897420.871194500010461 ], [ 4950226.387249656952918, 3897421.560615865979344 ], [ 4950225.560441090725362, 3897386.967428203672171 ], [ 4950215.478891793638468, 3897387.320691902656108 ], [ 4950214.930292047560215, 3897361.831040706951171 ], [ 4950242.294243291951716, 3897361.132282508071512 ], [ 4950242.849493940360844, 3897380.431741111911833 ], [ 4950279.142847349867225, 3897379.378523872233927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950080.863205062225461, 3895067.308962997049093 ], [ 4950085.134860021993518, 3895113.193790544755757 ], [ 4950096.658329017460346, 3895112.113766928203404 ], [ 4950099.50646857637912, 3895142.339525700546801 ], [ 4950053.988763649016619, 3895146.660262322053313 ], [ 4950051.140183259733021, 3895116.798636817838997 ], [ 4950036.159639762714505, 3895118.239106710068882 ], [ 4950031.888681766577065, 3895071.62602976616472 ], [ 4950080.863205062225461, 3895067.308962997049093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950079.271830414421856, 3893327.864242719952017 ], [ 4950109.650815973989666, 3893205.913774161599576 ], [ 4950109.652379529550672, 3893204.457261703442782 ], [ 4950096.692391672171652, 3893201.166195583995432 ], [ 4950113.473234162665904, 3893133.820429592393339 ], [ 4950180.577529747970402, 3893150.642470642924309 ], [ 4950175.658648072741926, 3893170.664246626663953 ], [ 4950226.922837136313319, 3893183.463951562996954 ], [ 4950223.450987618416548, 3893197.297093864064664 ], [ 4950228.26549600251019, 3893274.133405334781855 ], [ 4950223.346601197496057, 3893294.155174032784998 ], [ 4950179.284156010486186, 3893281.727352149318904 ], [ 4950175.812343589030206, 3893295.560501391999424 ], [ 4950193.380329982377589, 3893299.94895218545571 ], [ 4950180.071977390907705, 3893352.733268826734275 ], [ 4950079.271830414421856, 3893327.864242719952017 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949291.653064588084817, 3900798.601306542288512 ], [ 4949299.45671174582094, 3900772.027948151342571 ], [ 4949325.368434184230864, 3900779.701736696064472 ], [ 4949317.853140301071107, 3900805.911258677951992 ], [ 4949291.653064588084817, 3900798.601306542288512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949072.439167774282396, 3891383.086329527199268 ], [ 4949150.530942427925766, 3891366.41736145503819 ], [ 4949155.976828223094344, 3891393.368495321832597 ], [ 4949078.173602414317429, 3891409.673618286382407 ], [ 4949072.439167774282396, 3891383.086329527199268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949008.728794446215034, 3890864.502092589624226 ], [ 4949040.135026588104665, 3890861.621512176468968 ], [ 4949040.704081376083195, 3890868.540532812476158 ], [ 4949052.229327119886875, 3890867.46006417972967 ], [ 4949055.080607047304511, 3890896.229126896709204 ], [ 4949012.149182680994272, 3890900.190170797519386 ], [ 4949008.728794446215034, 3890864.502092589624226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948782.922816383652389, 3892205.718052854761481 ], [ 4948763.91195161268115, 3892202.785564048681408 ], [ 4948763.33242064062506, 3892206.062125689350069 ], [ 4948753.538899247534573, 3892204.595591810066253 ], [ 4948761.948243433609605, 3892151.077336345799267 ], [ 4948778.07862653862685, 3892153.64274580264464 ], [ 4948776.048208587802947, 3892167.113413746468723 ], [ 4948788.434170198626816, 3892168.946739411447197 ], [ 4948782.922816383652389, 3892205.718052854761481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947645.324805187992752, 3890965.813113063108176 ], [ 4947678.745694873854518, 3890964.753560567740351 ], [ 4947679.58458639588207, 3890990.607475239317864 ], [ 4947678.432180017232895, 3890990.606342423707247 ], [ 4947679.540201214142144, 3891035.759308106265962 ], [ 4947647.271804156713188, 3891036.819991088472307 ], [ 4947645.324805187992752, 3890965.813113063108176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944588.382941759191453, 3890839.546377723105252 ], [ 4944610.569103901274502, 3890837.016749658156186 ], [ 4944609.139343899674714, 3890824.635156794451177 ], [ 4944624.698508939705789, 3890822.828039503656328 ], [ 4944625.557437240146101, 3890829.018961569759995 ], [ 4944654.08283628989011, 3890825.402497770264745 ], [ 4944659.804638800211251, 3890871.65173058770597 ], [ 4944620.042011578567326, 3890876.714930270798504 ], [ 4944620.89998964779079, 3890883.998235466424376 ], [ 4944594.391692305915058, 3890887.252357864752412 ], [ 4944588.382941759191453, 3890839.546377723105252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944559.688112061470747, 3892367.767214760184288 ], [ 4944562.59266144875437, 3892340.460112133529037 ], [ 4944577.860015573911369, 3892341.929868386592716 ], [ 4944581.05583353061229, 3892310.981738158501685 ], [ 4944616.775828608311713, 3892314.289914753288031 ], [ 4944614.158359190449119, 3892342.689645473845303 ], [ 4944620.207871911115944, 3892343.059031758923084 ], [ 4944617.012329113669693, 3892373.643029902596027 ], [ 4944559.688112061470747, 3892367.767214760184288 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944300.386980007402599, 3891722.308452010154724 ], [ 4944304.7708356436342, 3891649.486583529505879 ], [ 4944364.979462835006416, 3891653.17956229345873 ], [ 4944363.229609235189855, 3891677.938770956359804 ], [ 4944342.487762912176549, 3891676.828562905080616 ], [ 4944339.565854342654347, 3891724.526839755941182 ], [ 4944300.386980007402599, 3891722.308452010154724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943977.027498920448124, 3892884.330579714849591 ], [ 4943979.936019448563457, 3892851.561484119389206 ], [ 4943969.277613670565188, 3892850.824218061286956 ], [ 4943971.023029348812997, 3892830.798632354475558 ], [ 4943982.257298864424229, 3892831.900514387525618 ], [ 4943984.585971818305552, 3892803.500470434315503 ], [ 4944019.153056583367288, 3892806.80687951343134 ], [ 4944011.88287022896111, 3892887.273095005657524 ], [ 4943977.027498920448124, 3892884.330579714849591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993005.114933671429753, 3912320.43965085176751 ], [ 4993023.538807760924101, 3912320.48886687727645 ], [ 4993023.170189735479653, 3912350.710989600978792 ], [ 4993004.747308953665197, 3912350.297642602119595 ], [ 4993005.114933671429753, 3912320.43965085176751 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992318.097032624296844, 3913464.542899752501398 ], [ 4992321.787200917489827, 3913484.215901754796505 ], [ 4992261.882364608347416, 3913495.345637051854283 ], [ 4992258.192154039628804, 3913475.672643148340285 ], [ 4992318.097032624296844, 3913464.542899752501398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991744.254860353656113, 3903638.360485346056521 ], [ 4991797.009048303589225, 3903617.01514401845634 ], [ 4991808.453128078952432, 3903645.447471221443266 ], [ 4991788.850413374602795, 3903653.406910009216517 ], [ 4991805.733327915892005, 3903694.2339958534576 ], [ 4991772.293977687135339, 3903707.619100105483085 ], [ 4991767.717108545824885, 3903695.954870847985148 ], [ 4991759.64547741599381, 3903699.210878051351756 ], [ 4991751.634986374527216, 3903679.162610610947013 ], [ 4991759.706622532568872, 3903675.906601051799953 ], [ 4991744.254860353656113, 3903638.360485346056521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990780.509834322147071, 3912951.824070726986974 ], [ 4990707.84796779230237, 3912997.881107659079134 ], [ 4990691.218581351451576, 3912971.984610666055232 ], [ 4990709.960002638399601, 3912960.380777579732239 ], [ 4990704.800064350478351, 3912951.992357132490724 ], [ 4990729.885867225006223, 3912936.035334999673069 ], [ 4990734.186910880729556, 3912942.600869223475456 ], [ 4990763.020658309571445, 3912924.468769096303731 ], [ 4990780.509834322147071, 3912951.824070726986974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989872.838012048043311, 3908790.722781755495816 ], [ 4989865.015134205110371, 3908810.001847278792411 ], [ 4989826.475070346146822, 3908794.245737808290869 ], [ 4989842.119861299172044, 3908756.051717727910727 ], [ 4989873.469634576700628, 3908768.8764204592444 ], [ 4989865.646750000305474, 3908788.155485546216369 ], [ 4989872.838012048043311, 3908790.722781755495816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989803.592186070047319, 3913361.148790386039764 ], [ 4989827.531199764460325, 3913343.003193697426468 ], [ 4989851.058710551820695, 3913373.286382651887834 ], [ 4989827.118778249248862, 3913391.796090296469629 ], [ 4989803.592186070047319, 3913361.148790386039764 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989360.757156888954341, 3899769.508824178948998 ], [ 4989342.325597834773362, 3899769.097991546615958 ], [ 4989343.273569105193019, 3899735.964482480660081 ], [ 4989361.992235980927944, 3899736.740174170117825 ], [ 4989360.757156888954341, 3899769.508824178948998 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989237.72010422963649, 3908214.870704939123243 ], [ 4989215.259812904521823, 3908215.906280149705708 ], [ 4989215.812619887292385, 3908225.010997484438121 ], [ 4989191.049923419952393, 3908225.676636222749949 ], [ 4989189.448560994118452, 3908175.786399672739208 ], [ 4989236.382789934054017, 3908174.448585327714682 ], [ 4989237.72010422963649, 3908214.870704939123243 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988640.461439782753587, 3908719.87478728685528 ], [ 4988690.559888672083616, 3908719.272223769221455 ], [ 4988691.065334796905518, 3908747.311722515150905 ], [ 4988661.408641498535872, 3908747.965564608573914 ], [ 4988661.391283351927996, 3908754.884045417886227 ], [ 4988640.948671977967024, 3908755.196896496694535 ], [ 4988640.461439782753587, 3908719.87478728685528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988589.429900098592043, 3908748.149202573113143 ], [ 4988560.063858425244689, 3908747.711486395914108 ], [ 4988560.730903157033026, 3908711.299872205592692 ], [ 4988590.096072000451386, 3908712.101719657424837 ], [ 4988589.429900098592043, 3908748.149202573113143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988022.544109942391515, 3907931.077058812603354 ], [ 4988058.8392408574, 3907924.248759916983545 ], [ 4988060.26073332875967, 3907931.534947532694787 ], [ 4988078.984594043344259, 3907927.940184450242668 ], [ 4988086.658801996149123, 3907968.013865522574633 ], [ 4988042.874192696996033, 3907976.280038714408875 ], [ 4988041.451792783103883, 3907969.35798223502934 ], [ 4988014.661692679859698, 3907974.753390516154468 ], [ 4988009.260883808135986, 3907946.701756163034588 ], [ 4988024.815797868184745, 3907943.827347252517939 ], [ 4988022.544109942391515, 3907931.077058812603354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987600.231414591893554, 3916179.112968124449253 ], [ 4987662.73680554330349, 3916160.696577221155167 ], [ 4987679.865333825349808, 3916217.908053634222597 ], [ 4987617.360063958913088, 3916236.32440536422655 ], [ 4987600.231414591893554, 3916179.112968124449253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987396.17650924064219, 3901201.827096521388739 ], [ 4987410.651413870044053, 3901171.27571019763127 ], [ 4987421.294585154391825, 3901176.399748557712883 ], [ 4987427.08402196969837, 3901164.397675978951156 ], [ 4987471.958825691603124, 3901185.627815395127982 ], [ 4987451.983308407478034, 3901227.817815814167261 ], [ 4987396.17650924064219, 3901201.827096521388739 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987100.846788240596652, 3907955.384038919117302 ], [ 4987141.751938978210092, 3907947.109269877895713 ], [ 4987148.579855103977025, 3907980.626217264682055 ], [ 4987107.674753213301301, 3907988.900976083707064 ], [ 4987100.846788240596652, 3907955.384038919117302 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986211.634461835958064, 3909191.999054210726172 ], [ 4986185.722871758043766, 3909191.936417235527188 ], [ 4986185.736952560953796, 3909186.110325214453042 ], [ 4986158.960757256485522, 3909186.409757331479341 ], [ 4986158.772254855372012, 3909145.26228735037148 ], [ 4986197.064773565158248, 3909144.990690549369901 ], [ 4986196.792710075154901, 3909138.435641269665211 ], [ 4986211.18806657101959, 3909138.47044243523851 ], [ 4986211.634461835958064, 3909191.999054210726172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984711.080436847172678, 3909425.827516300603747 ], [ 4984703.949053664691746, 3909397.772441113367677 ], [ 4984747.737192556262016, 3909386.587772870901972 ], [ 4984754.868533071130514, 3909414.642859478946775 ], [ 4984711.080436847172678, 3909425.827516300603747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984395.481970407068729, 3907243.565350158140063 ], [ 4984362.641137193888426, 3907250.770840279757977 ], [ 4984364.353305879049003, 3907257.329244854394346 ], [ 4984347.357045186683536, 3907260.930651676375419 ], [ 4984346.217306994833052, 3907255.830121912993491 ], [ 4984309.918811700306833, 3907264.119954486843199 ], [ 4984312.198300696909428, 3907274.321011073421687 ], [ 4984294.33742224983871, 3907278.284554617479444 ], [ 4984292.34243668243289, 3907269.540696592535824 ], [ 4984262.382641769945621, 3907276.024804142303765 ], [ 4984263.806906257756054, 3907282.582527198828757 ], [ 4984247.962383061647415, 3907286.186697909608483 ], [ 4984238.274443520233035, 3907242.832232050597668 ], [ 4984263.624867510981858, 3907237.429684786126018 ], [ 4984261.060844891704619, 3907225.771435859147459 ], [ 4984284.970796945504844, 3907220.729663181118667 ], [ 4984287.537372480146587, 3907231.295523236040026 ], [ 4984318.93771621119231, 3907224.450692624319345 ], [ 4984316.375425611622632, 3907212.064177773427218 ], [ 4984340.285400345921516, 3907207.022454362362623 ], [ 4984342.279520062729716, 3907216.130445975810289 ], [ 4984362.156796594150364, 3907211.8075380185619 ], [ 4984359.879031617194414, 3907200.878216865472496 ], [ 4984384.941591922193766, 3907195.475107932463288 ], [ 4984395.481970407068729, 3907243.565350158140063 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983866.786873262375593, 3917148.943875902798027 ], [ 4983871.738412410952151, 3917123.830130198970437 ], [ 4983906.548682378605008, 3917130.82986788963899 ], [ 4983905.092586998827755, 3917138.109163853805512 ], [ 4983935.5872094752267, 3917144.370603452436626 ], [ 4983932.092564705759287, 3917161.840910332743078 ], [ 4983919.433531467802823, 3917159.6265635387972 ], [ 4983910.988177717663348, 3917201.846478445455432 ], [ 4983867.259800626896322, 3917193.005269399378449 ], [ 4983875.705088324844837, 3917150.78534099040553 ], [ 4983866.786873262375593, 3917148.943875902798027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983701.148755997419357, 3908169.387993288226426 ], [ 4983811.482207784429193, 3908143.427121667191386 ], [ 4983824.599223371595144, 3908198.077552571427077 ], [ 4983714.265982949174941, 3908224.038371213711798 ], [ 4983701.148755997419357, 3908169.387993288226426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983153.902964389882982, 3909380.683464691508561 ], [ 4983114.726148318499327, 3909390.060682322829962 ], [ 4983104.171764453873038, 3909347.432841983158141 ], [ 4983123.760198241099715, 3909342.744218457024544 ], [ 4983126.043311635032296, 3909351.488663970027119 ], [ 4983145.63258517626673, 3909346.435925492085516 ], [ 4983153.902964389882982, 3909380.683464691508561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982956.048040547408164, 3894356.905230802949518 ], [ 4982921.759054382331669, 3894360.831971128936857 ], [ 4982917.804655075073242, 3894326.594725420698524 ], [ 4982952.380914427340031, 3894323.032768909353763 ], [ 4982956.048040547408164, 3894356.905230802949518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982848.389533435925841, 3895076.906658992636949 ], [ 4982870.551621781662107, 3895084.968303842935711 ], [ 4982865.913486768491566, 3895097.702210910618305 ], [ 4982877.713830485008657, 3895102.09881702112034 ], [ 4982854.813756943680346, 3895164.676632611546665 ], [ 4982805.020774426870048, 3895146.72021458344534 ], [ 4982816.325884856283665, 3895115.795081078540534 ], [ 4982831.867637543939054, 3895121.656754830852151 ], [ 4982848.389533435925841, 3895076.906658992636949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993069.989541038870811, 3913035.771998783573508 ], [ 4993084.128049236722291, 3913023.429245706181973 ], [ 4993122.872986561618745, 3913067.22895609587431 ], [ 4993113.062197683379054, 3913075.941925721708685 ], [ 4993125.690259238705039, 3913090.176935648079962 ], [ 4993102.606536029838026, 3913110.506688349414617 ], [ 4993059.845144992694259, 3913061.598393374588341 ], [ 4993078.600188249722123, 3913045.262504113838077 ], [ 4993069.989541038870811, 3913035.771998783573508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992596.227518459782004, 3912143.10988168604672 ], [ 4992614.539308922365308, 3912185.398036799393594 ], [ 4992582.548501168377697, 3912199.150158262811601 ], [ 4992569.387482475489378, 3912168.527978809550405 ], [ 4992582.644219657406211, 3912163.101168713998049 ], [ 4992577.494378563016653, 3912151.071080788504332 ], [ 4992596.227518459782004, 3912143.10988168604672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992460.737880433909595, 3904718.080137145705521 ], [ 4992469.088560839183629, 3904718.102267423179001 ], [ 4992470.157383842393756, 3904749.420460022985935 ], [ 4992435.312036523595452, 3904750.420527751557529 ], [ 4992434.006340494379401, 3904699.802708627190441 ], [ 4992460.212147356010973, 3904699.143875505775213 ], [ 4992460.737880433909595, 3904718.080137145705521 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981925.161633837036788, 3904899.41753841470927 ], [ 4981894.601683823391795, 3904915.734484282322228 ], [ 4981867.074070964939892, 3904864.329793601762503 ], [ 4981897.634062509983778, 3904848.012816938105971 ], [ 4981925.161633837036788, 3904899.41753841470927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981646.490309891290963, 3903331.567354142200202 ], [ 4981633.756658526137471, 3903359.576859510503709 ], [ 4981569.892913329415023, 3903330.302922853734344 ], [ 4981582.914481465704739, 3903302.294034228194505 ], [ 4981646.490309891290963, 3903331.567354142200202 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981461.443029097281396, 3904821.178568073548377 ], [ 4981470.889185802079737, 3904846.324826442636549 ], [ 4981433.135521895252168, 3904860.441385315265507 ], [ 4981423.688519535586238, 3904835.659269929863513 ], [ 4981461.443029097281396, 3904821.178568073548377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981264.862703895196319, 3903490.201956084463745 ], [ 4981250.392778095789254, 3903522.213213338982314 ], [ 4981209.542041565291584, 3903503.915464535821229 ], [ 4981213.593898920342326, 3903494.821218920871615 ], [ 4981196.332899979315698, 3903487.135949199087918 ], [ 4981206.750917688943446, 3903464.218909323681146 ], [ 4981264.862703895196319, 3903490.201956084463745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981255.149185852147639, 3901133.887326424941421 ], [ 4981271.578605809248984, 3901127.733787092845887 ], [ 4981267.855839159339666, 3901118.258069176692516 ], [ 4981290.914807987399399, 3901109.57043073233217 ], [ 4981310.098055846057832, 3901159.863361835014075 ], [ 4981270.609725248068571, 3901174.704514116048813 ], [ 4981255.149185852147639, 3901133.887326424941421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981141.913676789030433, 3901028.765043195802718 ], [ 4981132.506420179270208, 3900985.412504070438445 ], [ 4981156.133331617340446, 3900980.367324913851917 ], [ 4981153.569786640815437, 3900967.617029666434973 ], [ 4981171.145580818876624, 3900964.014900776557624 ], [ 4981185.112781260162592, 3901028.861344906967133 ], [ 4981162.926688521169126, 3901033.545579621568322 ], [ 4981160.93021148070693, 3901024.801987330429256 ], [ 4981141.913676789030433, 3901028.765043195802718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980962.031512857414782, 3909270.4883778616786 ], [ 4981017.157584872096777, 3909209.436649967450649 ], [ 4981119.159875598736107, 3909301.425195712130517 ], [ 4981064.034569779410958, 3909362.11258685356006 ], [ 4980962.031512857414782, 3909270.4883778616786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4991183.144672920927405, 3903363.431480851024389 ], [ 4991230.721193769015372, 3903339.886767501942813 ], [ 4991246.191866503097117, 3903370.514124900102615 ], [ 4991198.614438327029347, 3903394.422940576914698 ], [ 4991183.144672920927405, 3903363.431480851024389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980855.310543240047991, 3901309.965229260735214 ], [ 4980864.806977526284754, 3901313.263470848090947 ], [ 4980870.023933665826917, 3901298.345674104988575 ], [ 4980900.816356596536934, 3901308.609667110256851 ], [ 4980884.00461027212441, 3901357.365907962433994 ], [ 4980844.00380383990705, 3901343.804334959480911 ], [ 4980855.310543240047991, 3901309.965229260735214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980774.099022302776575, 3904299.303096407093108 ], [ 4980802.131911004893482, 3904253.848753292113543 ], [ 4980825.71310458984226, 3904268.102154027204961 ], [ 4980797.968149540945888, 3904313.557111026719213 ], [ 4980774.099022302776575, 3904299.303096407093108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980736.10007531940937, 3903513.423116954043508 ], [ 4980725.095261728391051, 3903541.436880629509687 ], [ 4980675.033270914107561, 3903521.298903359100223 ], [ 4980686.037235084921122, 3903493.649249176494777 ], [ 4980736.10007531940937, 3903513.423116954043508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980573.95747497305274, 3902477.111084646545351 ], [ 4980613.452355819754303, 3902458.26347332354635 ], [ 4980605.711512103676796, 3902442.58873395761475 ], [ 4980631.94575035572052, 3902429.9020960717462 ], [ 4980640.832864986732602, 3902448.128294453490525 ], [ 4980647.174837310798466, 3902445.229260844178498 ], [ 4980662.082118772901595, 3902475.849233732558787 ], [ 4980590.298280713148415, 3902510.64723233692348 ], [ 4980573.95747497305274, 3902477.111084646545351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980546.222712799906731, 3904213.956646314822137 ], [ 4980568.461534109897912, 3904184.146936284378171 ], [ 4980579.96145254932344, 3904192.547349809668958 ], [ 4980575.629188746213913, 3904198.36389078060165 ], [ 4980607.253321010619402, 3904221.738145914394408 ], [ 4980589.346744837239385, 3904245.731284874957055 ], [ 4980546.222712799906731, 3904213.956646314822137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980466.689427152276039, 3901625.535975335165858 ], [ 4980397.770627452991903, 3901666.166883964091539 ], [ 4980380.268300762400031, 3901636.633757696952671 ], [ 4980449.187149438075721, 3901596.002804917283356 ], [ 4980466.689427152276039, 3901625.535975335165858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980371.369820777326822, 3898481.057784819044173 ], [ 4980404.806740584783256, 3898469.115051671862602 ], [ 4980429.142653225921094, 3898535.440342199523002 ], [ 4980399.740497529506683, 3898546.299533085897565 ], [ 4980392.296828929334879, 3898525.891854317393154 ], [ 4980380.190340648405254, 3898530.234782558400184 ], [ 4980368.739186023361981, 3898498.530254477169365 ], [ 4980376.810186042450368, 3898495.634964992757887 ], [ 4980371.369820777326822, 3898481.057784819044173 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980361.691231980919838, 3899738.743119548540562 ], [ 4980300.000751250423491, 3899764.460786402691156 ], [ 4980287.393203755840659, 3899734.938511657062918 ], [ 4980349.084540652111173, 3899708.856687494553626 ], [ 4980361.691231980919838, 3899738.743119548540562 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980322.661132891662419, 3903606.092907689977437 ], [ 4980340.006372704170644, 3903575.543999691028148 ], [ 4980382.574171231128275, 3903598.942044919822365 ], [ 4980365.228096953593194, 3903629.855055577121675 ], [ 4980322.661132891662419, 3903606.092907689977437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979770.756113858893514, 3903282.264972150325775 ], [ 4979786.076416878029704, 3903255.716748992912471 ], [ 4979826.91817779187113, 3903278.746016472578049 ], [ 4979811.597053916193545, 3903305.658346349839121 ], [ 4979770.756113858893514, 3903282.264972150325775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979569.211516234092414, 3905787.052479913458228 ], [ 4979523.940495645627379, 3905816.448950667865574 ], [ 4979506.432828016579151, 3905790.193490847013891 ], [ 4979551.991816816851497, 3905760.797615809831768 ], [ 4979569.211516234092414, 3905787.052479913458228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979545.78197269141674, 3903977.631173570640385 ], [ 4979595.40796120185405, 3903933.314829282928258 ], [ 4979615.517122755758464, 3903955.570518361870199 ], [ 4979565.891141937114298, 3903999.886826114729047 ], [ 4979545.78197269141674, 3903977.631173570640385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979394.846677542664111, 3904662.599808482453227 ], [ 4979440.655980563722551, 3904651.410885436460376 ], [ 4979442.654319401830435, 3904659.426109234336764 ], [ 4979463.974042118526995, 3904654.374442676082253 ], [ 4979470.253043914213777, 3904680.241393522359431 ], [ 4979437.408838896080852, 3904688.181151753757149 ], [ 4979441.688735285773873, 3904706.397002739831805 ], [ 4979418.927708766423166, 3904712.17383044026792 ], [ 4979414.931023721583188, 3904696.143386035691947 ], [ 4979403.6952731506899, 3904698.667990407440811 ], [ 4979394.846677542664111, 3904662.599808482453227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979307.764895780943334, 3901518.501830158755183 ], [ 4979268.549684510566294, 3901540.993263945449144 ], [ 4979250.473202050663531, 3901510.003115210216492 ], [ 4979289.689229596406221, 3901487.147526214830577 ], [ 4979307.764895780943334, 3901518.501830158755183 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979246.34047906845808, 3899688.248022552579641 ], [ 4979241.797554426826537, 3899658.015384192578495 ], [ 4979288.181897522881627, 3899651.197024443652481 ], [ 4979292.72555753774941, 3899681.065541649702936 ], [ 4979246.34047906845808, 3899688.248022552579641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979130.146368817426264, 3900415.530554079916328 ], [ 4979121.157978496514261, 3900443.549263759050518 ], [ 4979069.06517422106117, 3900427.0512651107274 ], [ 4979077.765514860861003, 3900399.031918611843139 ], [ 4979130.146368817426264, 3900415.530554079916328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979082.633245455101132, 3901349.05968036968261 ], [ 4979109.725527478381991, 3901339.286457917187363 ], [ 4979100.27826719917357, 3901313.048695324920118 ], [ 4979124.777103877626359, 3901303.998167689424008 ], [ 4979145.676516455598176, 3901361.575865407008678 ], [ 4979093.797480170615017, 3901380.398965567816049 ], [ 4979082.633245455101132, 3901349.05968036968261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979082.630731611512601, 3900814.879707272164524 ], [ 4979139.937293727882206, 3900817.187866007909179 ], [ 4979139.016835127957165, 3900843.403301285114139 ], [ 4979116.843493834137917, 3900842.263158624060452 ], [ 4979116.530409898608923, 3900853.914670352824032 ], [ 4979081.11004772875458, 3900852.38190778484568 ], [ 4979082.630731611512601, 3900814.879707272164524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979036.10717268101871, 3908921.807681833393872 ], [ 4979040.175498651340604, 3908904.338067264296114 ], [ 4979083.628691660240293, 3908914.263145093340427 ], [ 4979079.560338898561895, 3908931.73275318974629 ], [ 4979036.10717268101871, 3908921.807681833393872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978996.75887159910053, 3900167.270634683314711 ], [ 4979038.766635713167489, 3900186.295718063600361 ], [ 4979026.323014754801989, 3900213.942895937711 ], [ 4978984.028064390644431, 3900194.553084040526301 ], [ 4978996.75887159910053, 3900167.270634683314711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978945.612904652021825, 3895146.898989839479327 ], [ 4978900.085833227261901, 3895153.35564767755568 ], [ 4978895.547977293841541, 3895120.210126065649092 ], [ 4978940.787046301178634, 3895113.752842470537871 ], [ 4978945.612904652021825, 3895146.898989839479327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978687.812652700580657, 3903497.31497814739123 ], [ 4978742.030015301890671, 3903460.289513105992228 ], [ 4978754.948836211115122, 3903478.887854130007327 ], [ 4978701.01946054585278, 3903515.913909140508622 ], [ 4978687.812652700580657, 3903497.31497814739123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978600.805730796419084, 3908507.948691292665899 ], [ 4978606.618420422077179, 3908482.471824625972658 ], [ 4978626.474388816393912, 3908487.247941031586379 ], [ 4978620.662458872422576, 3908512.36067263642326 ], [ 4978600.805730796419084, 3908507.948691292665899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978371.669687000103295, 3908351.611881515011191 ], [ 4978346.88341364543885, 3908363.575569462031126 ], [ 4978331.97679238114506, 3908332.956770662683994 ], [ 4978372.902634014375508, 3908313.380595608614385 ], [ 4978384.655310679227114, 3908337.80245831143111 ], [ 4978368.515775219537318, 3908345.414924941956997 ], [ 4978371.669687000103295, 3908351.611881515011191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978367.731913535855711, 3905463.307465903926641 ], [ 4978348.517643551342189, 3905426.489319456741214 ], [ 4978379.938693046569824, 3905410.170172349084169 ], [ 4978408.904391869902611, 3905465.215671798679978 ], [ 4978386.708510468713939, 3905476.456553925294429 ], [ 4978377.244986031204462, 3905458.229843099135906 ], [ 4978367.731913535855711, 3905463.307465903926641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978342.276515916921198, 3906195.522594297304749 ], [ 4978356.325149836018682, 3906223.954740749672055 ], [ 4978317.701196195557714, 3906242.807547102682292 ], [ 4978303.652531397528946, 3906214.375420514028519 ], [ 4978342.276515916921198, 3906195.522594297304749 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978286.55722099263221, 3906942.967365176882595 ], [ 4978228.33422913402319, 3906971.610278529115021 ], [ 4978225.753665489144623, 3906966.506956602912396 ], [ 4978137.842382025904953, 3907010.016548967920244 ], [ 4978124.653868741355836, 3906983.406983879394829 ], [ 4978151.747840491123497, 3906969.991456952411681 ], [ 4978138.845709941349924, 3906944.110756287816912 ], [ 4978155.563423831015825, 3906935.771116873249412 ], [ 4978160.724582714959979, 3906945.97774729738012 ], [ 4978180.612626080401242, 3906936.188309846445918 ], [ 4978180.89901380892843, 3906936.917180882766843 ], [ 4978196.463478612713516, 3906929.303387745749205 ], [ 4978191.875105295330286, 3906920.554492855444551 ], [ 4978224.157337293960154, 3906904.601109584327787 ], [ 4978230.464794836938381, 3906917.359108717180789 ], [ 4978265.053593035787344, 3906899.954137418884784 ], [ 4978286.55722099263221, 3906942.967365176882595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978163.782787662930787, 3907269.333589443005621 ], [ 4978138.121807786636055, 3907286.029329814948142 ], [ 4978111.717288312502205, 3907245.918897577561438 ], [ 4978137.378289926797152, 3907229.223132403101772 ], [ 4978163.782787662930787, 3907269.333589443005621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978149.61679548304528, 3906752.600073447916657 ], [ 4978116.161118337884545, 3906778.746760210487992 ], [ 4978098.93139633256942, 3906756.862376772798598 ], [ 4978132.675016750581563, 3906730.71627843240276 ], [ 4978149.61679548304528, 3906752.600073447916657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978152.477331478148699, 3904449.836435512639582 ], [ 4978160.76794524397701, 3904478.256255107466131 ], [ 4978116.395587514154613, 3904490.906925353687257 ], [ 4978108.392888044007123, 3904462.487728503998369 ], [ 4978152.477331478148699, 3904449.836435512639582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977965.043294050730765, 3908256.804322625044733 ], [ 4977986.967243854887784, 3908236.823325883131474 ], [ 4978017.129268310964108, 3908269.658951607998461 ], [ 4977995.206091734580696, 3908289.27579334564507 ], [ 4977965.043294050730765, 3908256.804322625044733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977957.357525629922748, 3905895.755208739545196 ], [ 4977982.429994738660753, 3905885.612438961397856 ], [ 4977995.322023028507829, 3905916.590871517546475 ], [ 4977970.249577882699668, 3905926.733629465568811 ], [ 4977957.357525629922748, 3905895.755208739545196 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977865.191765292547643, 3906453.775145277380943 ], [ 4977866.910173926502466, 3906458.148350105620921 ], [ 4977844.146369404159486, 3906466.111300298012793 ], [ 4977833.555621773935854, 3906436.230171534698457 ], [ 4977874.184535580687225, 3906422.11460933694616 ], [ 4977883.05760501511395, 3906447.258417511358857 ], [ 4977865.191765292547643, 3906453.775145277380943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977775.735289479605854, 3908873.609956878237426 ], [ 4977746.032326045446098, 3908896.487834775354713 ], [ 4977730.240156347863376, 3908876.063209941610694 ], [ 4977721.588316823355854, 3908882.963542634155601 ], [ 4977709.24185966514051, 3908866.915763384196907 ], [ 4977717.892935881391168, 3908860.379557724110782 ], [ 4977701.525667889975011, 3908839.589609101880342 ], [ 4977731.517332060262561, 3908816.348157113883644 ], [ 4977775.735289479605854, 3908873.609956878237426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977586.093286663293839, 3914321.372110350523144 ], [ 4977545.139761575497687, 3914358.792035399004817 ], [ 4977512.111614165827632, 3914323.037728163879365 ], [ 4977544.701415292918682, 3914293.247034391388297 ], [ 4977559.636128856800497, 3914309.300222875550389 ], [ 4977567.999860277399421, 3914301.670946671627462 ], [ 4977586.093286663293839, 3914321.372110350523144 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977480.679722072556615, 3912011.816443808376789 ], [ 4977508.528998660854995, 3912047.559808735735714 ], [ 4977482.866880365647376, 3912067.169278025627136 ], [ 4977455.017590133473277, 3912031.425939270760864 ], [ 4977480.679722072556615, 3912011.816443808376789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977381.515491593629122, 3908217.709172104485333 ], [ 4977403.717062409967184, 3908202.462001841515303 ], [ 4977418.355926628224552, 3908223.976411138195544 ], [ 4977396.154365205205977, 3908239.2235695021227 ], [ 4977381.515491593629122, 3908217.709172104485333 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977370.493246085010469, 3907291.697732984554023 ], [ 4977379.959844270721078, 3907308.46758735505864 ], [ 4977365.258850519545376, 3907316.447789756581187 ], [ 4977355.791485675610602, 3907300.04207108495757 ], [ 4977370.493246085010469, 3907291.697732984554023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977356.21796998847276, 3909164.036705330014229 ], [ 4977336.321992221288383, 3909178.560469808522612 ], [ 4977321.681305952370167, 3909158.138485561590642 ], [ 4977341.576530670747161, 3909143.978841448202729 ], [ 4977356.21796998847276, 3909164.036705330014229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977343.999438509345055, 3907845.48756000213325 ], [ 4977356.908740565180779, 3907868.09071683511138 ], [ 4977324.334940788336098, 3907886.593465813435614 ], [ 4977311.425620318390429, 3907863.990324379410595 ], [ 4977343.999438509345055, 3907845.48756000213325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977342.657021974213421, 3904212.540756603237242 ], [ 4977291.366745039820671, 3904228.455531573388726 ], [ 4977282.212772545404732, 3904199.305923415347934 ], [ 4977333.503099584951997, 3904183.391131257172674 ], [ 4977342.657021974213421, 3904212.540756603237242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977318.093857945874333, 3912946.206967757083476 ], [ 4977322.203030018135905, 3912908.345664117485285 ], [ 4977350.120019804686308, 3912911.317015992011875 ], [ 4977351.004151345230639, 3912901.487258922308683 ], [ 4977375.179637813940644, 3912904.086690151132643 ], [ 4977369.898386547341943, 3912951.777140882797539 ], [ 4977318.093857945874333, 3912946.206967757083476 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977254.388588939793408, 3907186.949553376063704 ], [ 4977274.204756095074117, 3907211.387718044221401 ], [ 4977238.15232633985579, 3907240.807277836836874 ], [ 4977218.048220533877611, 3907216.368539573159069 ], [ 4977254.388588939793408, 3907186.949553376063704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977217.473405538126826, 3907077.632993205450475 ], [ 4977191.812832996249199, 3907094.329635340254754 ], [ 4977165.694642752408981, 3907054.220736903138459 ], [ 4977191.354479122906923, 3907037.88820079062134 ], [ 4977217.473405538126826, 3907077.632993205450475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977200.580558920279145, 3908414.691559121478349 ], [ 4977222.105905928649008, 3908447.508311015088111 ], [ 4977183.761726850643754, 3908472.189466892275959 ], [ 4977167.114987661130726, 3908447.029679070226848 ], [ 4977183.83677180018276, 3908436.140511281322688 ], [ 4977178.958139886148274, 3908428.483574433717877 ], [ 4977200.580558920279145, 3908414.691559121478349 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977053.300185171887279, 3905161.957663994282484 ], [ 4977067.605396007187665, 3905206.411442818120122 ], [ 4977016.027717081829906, 3905223.054415196180344 ], [ 4977004.010160955600441, 3905186.252175681293011 ], [ 4977037.434979195706546, 3905175.397595355287194 ], [ 4977035.147256762720644, 3905167.746080263983458 ], [ 4977053.300185171887279, 3905161.957663994282484 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976994.036476516164839, 3905413.449683995451778 ], [ 4976950.802906377241015, 3905433.38727937778458 ], [ 4976937.615456786938012, 3905405.321801864542067 ], [ 4976980.849062172695994, 3905385.384185619652271 ], [ 4976994.036476516164839, 3905413.449683995451778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976682.994372026994824, 3901253.334559834562242 ], [ 4976714.670444748364389, 3901254.856435590423644 ], [ 4976712.249287841841578, 3901311.655849302653223 ], [ 4976680.573281942866743, 3901310.133976348210126 ], [ 4976682.994372026994824, 3901253.334559834562242 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976650.06078883446753, 3909543.454103389754891 ], [ 4976654.360558537766337, 3909552.566286620683968 ], [ 4976680.585245714522898, 3909540.239867173600942 ], [ 4976692.91171713732183, 3909566.118720924016088 ], [ 4976654.295231461524963, 3909584.245695058256388 ], [ 4976637.669708965346217, 3909548.890546339564025 ], [ 4976650.06078883446753, 3909543.454103389754891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976572.74887721426785, 3901086.335488881450146 ], [ 4976570.680457441136241, 3901111.820386578328907 ], [ 4976542.461624439805746, 3901109.577531857416034 ], [ 4976544.242024171166122, 3901084.092039511073381 ], [ 4976572.74887721426785, 3901086.335488881450146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976412.264648487791419, 3903786.765843878500164 ], [ 4976394.977066178806126, 3903791.464071498252451 ], [ 4976396.68990811612457, 3903798.750213963910937 ], [ 4976377.962514763697982, 3903803.445497943554074 ], [ 4976377.106091523543, 3903799.802427270915359 ], [ 4976348.006015464663506, 3903807.389506949577481 ], [ 4976338.865057514049113, 3903771.321760547347367 ], [ 4976366.236634836532176, 3903764.095257305074483 ], [ 4976363.665115483105183, 3903754.258436314761639 ], [ 4976380.952716184780002, 3903749.560188659001142 ], [ 4976382.952035347931087, 3903757.575180508662015 ], [ 4976403.120033022947609, 3903752.518725258298218 ], [ 4976412.264648487791419, 3903786.765843878500164 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976361.121263554319739, 3906117.831645742524415 ], [ 4976387.296112540178001, 3906131.358222128357738 ], [ 4976364.457039684988558, 3906176.099591854959726 ], [ 4976338.282222915440798, 3906162.57303734542802 ], [ 4976361.121263554319739, 3906117.831645742524415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976352.685450206510723, 3908686.766900258604437 ], [ 4976328.467254672199488, 3908703.103204926941544 ], [ 4976300.049037653952837, 3908661.533862847834826 ], [ 4976324.55516563821584, 3908645.198123142123222 ], [ 4976352.685450206510723, 3908686.766900258604437 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976290.027063177898526, 3909899.564187429379672 ], [ 4976343.677074552513659, 3909850.516228209715337 ], [ 4976364.64742595795542, 3909873.135467762127519 ], [ 4976310.709522482939065, 3909922.182795779779553 ], [ 4976290.027063177898526, 3909899.564187429379672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976205.727630496025085, 3906916.418955776374787 ], [ 4976176.05511268414557, 3906924.005058452021331 ], [ 4976165.769229981116951, 3906885.021903648041189 ], [ 4976195.44178787060082, 3906877.43578979279846 ], [ 4976205.727630496025085, 3906916.418955776374787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976119.858704349957407, 3912728.165877907536924 ], [ 4976093.919302614405751, 3912743.406511981040239 ], [ 4976083.879580785520375, 3912725.9076151358895 ], [ 4976075.233116369694471, 3912730.987835268955678 ], [ 4976062.037221934646368, 3912708.384638468269259 ], [ 4976096.910243914462626, 3912688.428477623034269 ], [ 4976119.858704349957407, 3912728.165877907536924 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976066.751913135871291, 3901646.424302788451314 ], [ 4976072.610450859181583, 3901598.006844243500382 ], [ 4976102.266519048251212, 3901601.344533242750913 ], [ 4976098.751956792548299, 3901630.103700724896044 ], [ 4976112.571644343435764, 3901631.952562645077705 ], [ 4976110.227606188505888, 3901651.610846156720072 ], [ 4976066.751913135871291, 3901646.424302788451314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989789.389453388750553, 3908546.904883009847254 ], [ 4989813.786833157762885, 3908576.461891181301326 ], [ 4989783.204881663434207, 3908601.144903358072042 ], [ 4989759.09447562135756, 3908571.952787114307284 ], [ 4989789.389453388750553, 3908546.904883009847254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975765.467643580399454, 3910753.478576336987317 ], [ 4975779.589765281416476, 3910745.860444361809641 ], [ 4975789.343279834836721, 3910762.9944899645634 ], [ 4975775.508314972743392, 3910770.977332591079175 ], [ 4975765.467643580399454, 3910753.478576336987317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975690.860576587729156, 3905943.502698707859963 ], [ 4975725.767919731326401, 3905910.801578334532678 ], [ 4975755.362396775744855, 3905942.176929285284132 ], [ 4975720.455058137886226, 3905974.878011842258275 ], [ 4975690.860576587729156, 3905943.502698707859963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975585.636931631714106, 3911699.860148077365011 ], [ 4975601.892843258567154, 3911775.63272482668981 ], [ 4975585.477119458839297, 3911778.876717151608318 ], [ 4975569.220427312888205, 3911703.468281825538725 ], [ 4975585.636931631714106, 3911699.860148077365011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989533.445246738381684, 3908315.393003221135587 ], [ 4989494.001686438918114, 3908314.928658759687096 ], [ 4989494.386712582781911, 3908276.695694135036319 ], [ 4989533.830329005606472, 3908277.160039158537984 ], [ 4989533.445246738381684, 3908315.393003221135587 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989373.170893791131675, 3908504.699357942678034 ], [ 4989379.998652601614594, 3908537.124492203816772 ], [ 4989343.702162932604551, 3908544.679270062129945 ], [ 4989336.874362305738032, 3908512.254144875798374 ], [ 4989373.170893791131675, 3908504.699357942678034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975338.47982416767627, 3904625.726792374160141 ], [ 4975355.523450648412108, 3904598.815369487740099 ], [ 4975345.745415514335036, 3904592.605448010843247 ], [ 4975354.122527457773685, 3904579.513577903620899 ], [ 4975409.340357692912221, 3904614.217303654178977 ], [ 4975383.631620300002396, 3904654.219971282873303 ], [ 4975338.47982416767627, 3904625.726792374160141 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975206.013307053595781, 3902907.85295412549749 ], [ 4975178.036728258244693, 3902929.280537392012775 ], [ 4975144.142733594402671, 3902885.88093727780506 ], [ 4975171.832086581736803, 3902864.088611810933799 ], [ 4975206.013307053595781, 3902907.85295412549749 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975090.738527629524469, 3910709.878514690324664 ], [ 4975046.343634436838329, 3910739.648480826523155 ], [ 4975020.797219847328961, 3910701.727518323808908 ], [ 4975065.480037838220596, 3910671.958087338600308 ], [ 4975090.738527629524469, 3910709.878514690324664 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974973.747126246802509, 3908891.893942104652524 ], [ 4975019.945382302626967, 3908969.546577290166169 ], [ 4974994.2908950233832, 3908984.788813425228 ], [ 4974973.630631724372506, 3908950.154907263349742 ], [ 4974906.756446088664234, 3908989.711715779732913 ], [ 4974929.137667570263147, 3909027.626202068291605 ], [ 4974902.041565160267055, 3909043.95804402930662 ], [ 4974857.564012745395303, 3908969.586233980953693 ], [ 4974884.082890871912241, 3908953.981460547540337 ], [ 4974886.378894637338817, 3908957.627368861809373 ], [ 4974941.435015261173248, 3908924.965408587828279 ], [ 4974935.122107543051243, 3908914.392951949965209 ], [ 4974973.747126246802509, 3908891.893942104652524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974952.405038620345294, 3898679.059513476211578 ], [ 4974976.042993265204132, 3898668.911105823237449 ], [ 4974980.344357654452324, 3898678.387089638970792 ], [ 4974996.776015394367278, 3898671.137337418738753 ], [ 4975013.691220098175108, 3898710.133100667502731 ], [ 4974973.33364275097847, 3898727.530656335409731 ], [ 4974952.405038620345294, 3898679.059513476211578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974943.136173787526786, 3897840.085182544309646 ], [ 4974921.198770748451352, 3897863.709822528064251 ], [ 4974910.273335829377174, 3897853.856498270761222 ], [ 4974903.922908709384501, 3897860.762292112223804 ], [ 4974884.947211617603898, 3897843.610309436451644 ], [ 4974891.297637881711125, 3897836.704511186107993 ], [ 4974864.560400822199881, 3897811.890324484091252 ], [ 4974886.497796098701656, 3897788.265638998243958 ], [ 4974943.136173787526786, 3897840.085182544309646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988701.774973046965897, 3907807.147831941023469 ], [ 4988703.873608505353332, 3907774.017029595095664 ], [ 4988753.100909391418099, 3907777.053718179930001 ], [ 4988751.002213439904153, 3907810.184516744688153 ], [ 4988701.774973046965897, 3907807.147831941023469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974813.67682315222919, 3899063.668377267196774 ], [ 4974826.573629291728139, 3899095.737548287957907 ], [ 4974787.083696436136961, 3899111.680594507604837 ], [ 4974774.186850944533944, 3899079.61144212866202 ], [ 4974813.67682315222919, 3899063.668377267196774 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974710.556534345261753, 3898634.517638988327235 ], [ 4974689.801017872057855, 3898643.579619884956628 ], [ 4974670.877845799550414, 3898600.210509784985334 ], [ 4974691.056625016033649, 3898591.511497941799462 ], [ 4974695.071530301123857, 3898600.258605522569269 ], [ 4974712.079198684543371, 3898593.009824984241277 ], [ 4974724.120987786911428, 3898620.707674109842628 ], [ 4974707.690097355283797, 3898627.593464040197432 ], [ 4974710.556534345261753, 3898634.517638988327235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974664.174546279013157, 3898929.735045711509883 ], [ 4974644.860078572295606, 3898938.435795951634645 ], [ 4974633.962463084608316, 3898914.745682317763567 ], [ 4974652.988927466794848, 3898906.04435211699456 ], [ 4974664.174546279013157, 3898929.735045711509883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988444.191290579736233, 3903964.17934780754149 ], [ 4988425.359945096075535, 3904009.648741477169096 ], [ 4988394.866897266358137, 3903997.192053612787277 ], [ 4988397.473114795982838, 3903991.372457005083561 ], [ 4988378.774667751975358, 3903983.678974419366568 ], [ 4988379.932884475216269, 3903981.132945170626044 ], [ 4988366.125240297056735, 3903975.272348215803504 ], [ 4988381.191160009242594, 3903938.532670166809112 ], [ 4988444.191290579736233, 3903964.17934780754149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988422.452827663160861, 3907361.11392481578514 ], [ 4988387.888039099983871, 3907366.489525553770363 ], [ 4988381.932565658353269, 3907330.061392019502819 ], [ 4988416.497399838641286, 3907324.685783736407757 ], [ 4988422.452827663160861, 3907361.11392481578514 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988241.8706249659881, 3906111.324845136143267 ], [ 4988196.380709178745747, 3906109.390811743214726 ], [ 4988197.902963540516794, 3906076.258569709025323 ], [ 4988221.799256189726293, 3906077.410513606853783 ], [ 4988222.101716780103743, 3906071.585151519626379 ], [ 4988243.694492752663791, 3906072.731373795308173 ], [ 4988241.8706249659881, 3906111.324845136143267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988010.670695354230702, 3904250.034717907197773 ], [ 4988027.960933950729668, 3904244.979832277167588 ], [ 4988034.23993852455169, 3904267.571609805338085 ], [ 4988017.23767252266407, 3904272.627206922508776 ], [ 4988010.670695354230702, 3904250.034717907197773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987860.642563469707966, 3908431.721808188594878 ], [ 4987915.955614789389074, 3908418.386080649215728 ], [ 4987922.510792614892125, 3908445.348170582670718 ], [ 4987866.909879029728472, 3908458.683170999400318 ], [ 4987860.642563469707966, 3908431.721808188594878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974004.032001688145101, 3897905.589716191869229 ], [ 4973957.649578242562711, 3897910.596544770058244 ], [ 4973953.974476837553084, 3897875.268726363778114 ], [ 4973948.2132065044716, 3897875.621560468804091 ], [ 4973945.099153245799243, 3897847.941574245225638 ], [ 4973989.464770747348666, 3897843.294896769337356 ], [ 4973992.296466954052448, 3897868.061293965671211 ], [ 4974005.260581085458398, 3897866.630215151701123 ], [ 4974007.519063694402575, 3897889.938969212118536 ], [ 4974002.333851096220315, 3897890.29292237944901 ], [ 4974004.032001688145101, 3897905.589716191869229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973948.158201213926077, 3908917.536887468304485 ], [ 4973964.234696344472468, 3908941.237034195568413 ], [ 4973922.143553332425654, 3908969.920950984116644 ], [ 4973905.778415576554835, 3908946.584395846351981 ], [ 4973948.158201213926077, 3908917.536887468304485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987410.870514902286232, 3912542.402774210087955 ], [ 4987360.18825407512486, 3912549.196543791797012 ], [ 4987353.684605550020933, 3912501.479028467088938 ], [ 4987391.696140835992992, 3912496.474716128781438 ], [ 4987394.805344295687973, 3912519.786926342640072 ], [ 4987407.764018264599144, 3912517.998167396057397 ], [ 4987410.870514902286232, 3912542.402774210087955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973913.807328865863383, 3904849.75093704694882 ], [ 4973901.72542795073241, 3904843.537025538738817 ], [ 4973896.811676297336817, 3904852.994818522594869 ], [ 4973874.949350177310407, 3904841.663917845115066 ], [ 4973881.019901481457055, 3904829.659465789329261 ], [ 4973868.362790224142373, 3904823.080311266239733 ], [ 4973896.109753253869712, 3904770.335584063548595 ], [ 4973918.835276397876441, 3904782.032324722502381 ], [ 4973908.429694327525795, 3904802.039166543632746 ], [ 4973932.3055714154616, 3904814.466436201240867 ], [ 4973913.807328865863383, 3904849.75093704694882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973884.594987996853888, 3909325.240697413682938 ], [ 4973901.234259281307459, 3909355.496301329694688 ], [ 4973886.535420143976808, 3909363.478417116682976 ], [ 4973896.862887507304549, 3909382.433544851839542 ], [ 4973869.77062417101115, 3909397.30990678910166 ], [ 4973860.876962092705071, 3909381.270657376386225 ], [ 4973866.352852889336646, 3909378.368320025037974 ], [ 4973852.294007015414536, 3909353.579777561593801 ], [ 4973874.199022518470883, 3909341.242165773175657 ], [ 4973869.895424161106348, 3909333.586953312624246 ], [ 4973884.594987996853888, 3909325.240697413682938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973820.103217398747802, 3894455.829193968325853 ], [ 4973892.358910377137363, 3894480.731381374876946 ], [ 4973883.087386948987842, 3894508.022923855576664 ], [ 4973862.936453959904611, 3894501.065021598245949 ], [ 4973851.926610226742923, 3894533.450983139220625 ], [ 4973813.063650932163, 3894520.266312285326421 ], [ 4973825.810383621603251, 3894483.514180615544319 ], [ 4973812.279911316931248, 3894479.11817030608654 ], [ 4973820.103217398747802, 3894455.829193968325853 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973794.544000816531479, 3899572.89570594811812 ], [ 4973803.716878006234765, 3899595.125593656208366 ], [ 4973784.405302513390779, 3899602.734578707721084 ], [ 4973775.231700392439961, 3899580.868826475460082 ], [ 4973794.544000816531479, 3899572.89570594811812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973751.824029817245901, 3909201.539995181374252 ], [ 4973766.176648451946676, 3909223.41599641693756 ], [ 4973743.114982575178146, 3909238.300363313872367 ], [ 4973728.762353186495602, 3909216.424374191556126 ], [ 4973751.824029817245901, 3909201.539995181374252 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973696.519869062118232, 3903904.040768534876406 ], [ 4973717.857584753073752, 3903889.517167103942484 ], [ 4973734.799064606428146, 3903914.31117999413982 ], [ 4973670.785307787358761, 3903958.246125776320696 ], [ 4973650.684015149250627, 3903929.440546333789825 ], [ 4973693.648053550161421, 3903900.029719320591539 ], [ 4973696.519869062118232, 3903904.040768534876406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973642.355169563554227, 3902145.545856789220124 ], [ 4973675.988693519495428, 3902176.562576420605183 ], [ 4973681.471712749451399, 3902170.747177734505385 ], [ 4973701.594904776662588, 3902188.992992078885436 ], [ 4973673.024352469481528, 3902219.888377526775002 ], [ 4973619.267645264975727, 3902170.625893026124686 ], [ 4973642.355169563554227, 3902145.545856789220124 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973621.470621371641755, 3909904.789765495806932 ], [ 4973633.51977861020714, 3909926.661215960048139 ], [ 4973614.785782813094556, 3909937.184544143732637 ], [ 4973602.736615085043013, 3909915.313101931940764 ], [ 4973621.470621371641755, 3909904.789765495806932 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973614.351283160038292, 3900407.495205299463123 ], [ 4973633.946685190312564, 3900401.707301585003734 ], [ 4973645.961791585199535, 3900443.24160661874339 ], [ 4973603.601630697026849, 3900455.53949829749763 ], [ 4973589.298059711232781, 3900405.989883061032742 ], [ 4973612.062884649261832, 3900399.479874563403428 ], [ 4973614.351283160038292, 3900407.495205299463123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973495.734400602988899, 3896386.175451801624149 ], [ 4973513.316398506052792, 3896380.383555239997804 ], [ 4973509.307145716622472, 3896368.359480957966298 ], [ 4973528.906882763840258, 3896361.843258062377572 ], [ 4973532.343581051565707, 3896372.045573215465993 ], [ 4973554.249090067110956, 3896364.805594181641936 ], [ 4973565.989443993195891, 3896400.513150204438716 ], [ 4973531.978341477923095, 3896411.734998685773462 ], [ 4973534.841070125810802, 3896420.843809049576521 ], [ 4973509.765719521790743, 3896428.80590062122792 ], [ 4973495.734400602988899, 3896386.175451801624149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973475.919189058244228, 3902432.521242249757051 ], [ 4973459.176793764345348, 3902452.880047884304076 ], [ 4973434.44880057964474, 3902433.168946215882897 ], [ 4973450.903917415998876, 3902412.445436430629343 ], [ 4973475.919189058244228, 3902432.521242249757051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973466.804699150845408, 3897785.106063967570662 ], [ 4973477.41153072938323, 3897810.979900526814163 ], [ 4973448.297316094860435, 3897822.939636049326509 ], [ 4973437.690461277961731, 3897797.065810791216791 ], [ 4973466.804699150845408, 3897785.106063967570662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973395.384240792132914, 3902974.920135834254324 ], [ 4973340.881789331324399, 3903013.776466861367226 ], [ 4973321.064584044739604, 3902986.428227664437145 ], [ 4973375.855035551823676, 3902947.572415641508996 ], [ 4973395.384240792132914, 3902974.920135834254324 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973359.253371359780431, 3897102.15376594895497 ], [ 4973399.020721277222037, 3897092.763512208126485 ], [ 4973414.452426904812455, 3897155.787917800713331 ], [ 4973374.684458591975272, 3897165.542277545202523 ], [ 4973359.253371359780431, 3897102.15376594895497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973334.375602170825005, 3900129.847853876184672 ], [ 4973338.662489305250347, 3900146.97029493516311 ], [ 4973296.30482405051589, 3900157.812152212485671 ], [ 4973292.874166484922171, 3900144.696811219211668 ], [ 4973282.789109265431762, 3900147.22619848838076 ], [ 4973278.787370706908405, 3900131.560840369667858 ], [ 4973289.737149463966489, 3900128.668995400425047 ], [ 4973286.019186089746654, 3900115.188968753442168 ], [ 4973336.733262436464429, 3900102.178505653049797 ], [ 4973343.308656035922468, 3900127.316253118682653 ], [ 4973334.375602170825005, 3900129.847853876184672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986750.294864451512694, 3902465.237217355985194 ], [ 4986799.542763947509229, 3902463.900766566861421 ], [ 4986801.662741110660136, 3902539.281138414051384 ], [ 4986757.022624894976616, 3902540.628816183190793 ], [ 4986755.951480967923999, 3902507.490247047506273 ], [ 4986759.119240999221802, 3902507.49796855263412 ], [ 4986758.583226126618683, 3902491.110748811624944 ], [ 4986750.806922916322947, 3902491.455926099326462 ], [ 4986750.294864451512694, 3902465.237217355985194 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986657.108542622067034, 3910105.232981585897505 ], [ 4986723.923664849251509, 3910095.92826403863728 ], [ 4986730.716931393370032, 3910143.646256866399199 ], [ 4986732.445197036489844, 3910143.286335970740765 ], [ 4986735.844926002435386, 3910165.870875438675284 ], [ 4986725.18921996280551, 3910167.301437631715089 ], [ 4986726.601190669462085, 3910178.593005357310176 ], [ 4986669.002487770281732, 3910186.463623506017029 ], [ 4986662.213555549271405, 3910136.924990253522992 ], [ 4986661.349866257049143, 3910136.922887471038848 ], [ 4986657.108542622067034, 3910105.232981585897505 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973165.462903832085431, 3901992.413670932874084 ], [ 4973207.844378524459898, 3901967.734673139173537 ], [ 4973233.966400153003633, 3902011.480895401444286 ], [ 4973191.584266468882561, 3902036.523982201702893 ], [ 4973165.462903832085431, 3901992.413670932874084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973131.066337303258479, 3902952.924828966613859 ], [ 4973104.251787920482457, 3902969.987238384783268 ], [ 4973081.568620258942246, 3902935.351025202311575 ], [ 4973101.17471189238131, 3902923.008388749789447 ], [ 4973093.709873340092599, 3902911.34179193386808 ], [ 4973125.715035957284272, 3902890.648080591578037 ], [ 4973155.001888084225357, 3902935.492754622362554 ], [ 4973130.205228861421347, 3902951.466642162762582 ], [ 4973131.066337303258479, 3902952.924828966613859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973065.971871552988887, 3908185.735714112408459 ], [ 4973078.882496277801692, 3908209.429212912451476 ], [ 4973074.847443055361509, 3908211.606223445385695 ], [ 4973104.968403112143278, 3908268.833106654696167 ], [ 4973079.894385386258364, 3908281.893489765003324 ], [ 4973036.574826559983194, 3908200.972594238817692 ], [ 4973065.971871552988887, 3908185.735714112408459 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973012.049813109450042, 3903743.588276242371649 ], [ 4972990.711663322523236, 3903758.476566737517715 ], [ 4972974.917754923924804, 3903735.505891934968531 ], [ 4972995.967247789725661, 3903720.981164533179253 ], [ 4973012.049813109450042, 3903743.588276242371649 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986394.740855400450528, 3909905.778877687640488 ], [ 4986404.977174216881394, 3909958.602992400061339 ], [ 4986352.843751089647412, 3909968.308207775931805 ], [ 4986342.606451408937573, 3909915.84824350476265 ], [ 4986394.740855400450528, 3909905.778877687640488 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986396.353849108330905, 3904965.233149408362806 ], [ 4986378.722596909850836, 3904992.500307102687657 ], [ 4986360.897833479568362, 3904980.804889776278287 ], [ 4986338.353814247064292, 3905015.342809882480651 ], [ 4986304.141380526125431, 3904993.047915219329298 ], [ 4986344.027761452831328, 3904931.606207880191505 ], [ 4986396.353849108330905, 3904965.233149408362806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986371.098001699894667, 3909445.09332322049886 ], [ 4986366.861517688259482, 3909411.218691993039101 ], [ 4986401.708522498607635, 3909406.93357504112646 ], [ 4986400.01906430721283, 3909391.271762194577605 ], [ 4986426.226316411979496, 3909388.058127141557634 ], [ 4986432.439188349060714, 3909437.959411566611379 ], [ 4986408.248194408603013, 3909440.813797265291214 ], [ 4986409.663870328105986, 3909450.648820027243346 ], [ 4986388.064024056307971, 3909453.509508094750345 ], [ 4986386.65010595601052, 3909442.946224850602448 ], [ 4986371.098001699894667, 3909445.09332322049886 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986283.620183394290507, 3909426.310659321490675 ], [ 4986288.632666601799428, 3909377.528979969676584 ], [ 4986326.051440800540149, 3909381.26091487519443 ], [ 4986324.867190807126462, 3909394.730964877642691 ], [ 4986342.424947295337915, 3909396.59416101872921 ], [ 4986338.593095436692238, 3909433.362304238602519 ], [ 4986326.215870616957545, 3909432.239923665765673 ], [ 4986325.330109912902117, 3909441.341101749334484 ], [ 4986310.074731010943651, 3909439.84762472147122 ], [ 4986311.252799392677844, 3909428.926489295437932 ], [ 4986283.620183394290507, 3909426.310659321490675 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986027.536164842545986, 3910199.110546969342977 ], [ 4986043.262418874539435, 3910243.93684068787843 ], [ 4985993.125643062405288, 3910261.658497957047075 ], [ 4985980.830375551246107, 3910226.672093234956264 ], [ 4985992.64374191313982, 3910222.695093818940222 ], [ 4985988.925667936913669, 3910212.490407473873347 ], [ 4986027.536164842545986, 3910199.110546969342977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985904.590652448125184, 3910204.640529478900135 ], [ 4985929.321631553582847, 3910216.352314703632146 ], [ 4985924.402863501571119, 3910226.536200621630996 ], [ 4985947.98398616258055, 3910237.516969099640846 ], [ 4985928.017521942034364, 3910279.708336378913373 ], [ 4985898.685537478886545, 3910265.800681453198195 ], [ 4985902.445698051713407, 3910258.527067402377725 ], [ 4985883.466519336216152, 3910249.378074777778238 ], [ 4985904.590652448125184, 3910204.640529478900135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985722.293291668407619, 3909988.999809245578945 ], [ 4985728.816196951083839, 3910030.162497504148632 ], [ 4985694.831181715242565, 3910035.54295344138518 ], [ 4985688.308225727640092, 3909994.380273294635117 ], [ 4985722.293291668407619, 3909988.999809245578945 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985624.308319862931967, 3910871.423591468948871 ], [ 4985584.249956130050123, 3910888.806032873690128 ], [ 4985566.211491668596864, 3910847.615787665359676 ], [ 4985605.982015954330564, 3910830.232630191370845 ], [ 4985624.308319862931967, 3910871.423591468948871 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972418.752259766682982, 3904999.433648903854191 ], [ 4972435.98218412976712, 3905024.227408067323267 ], [ 4972396.192936866544187, 3905051.461513127200305 ], [ 4972378.962993396446109, 3905026.667779063805938 ], [ 4972418.752259766682982, 3904999.433648903854191 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972266.768468116410077, 3911187.571967883035541 ], [ 4972248.112611213698983, 3911157.677647893782705 ], [ 4972295.092602342367172, 3911129.000367633532733 ], [ 4972313.46123368665576, 3911158.530040911398828 ], [ 4972299.338931160978973, 3911166.878260006196797 ], [ 4972318.281225452199578, 3911197.501426200848073 ], [ 4972294.934861219488084, 3911212.022375642322004 ], [ 4972276.279744292609394, 3911181.763904022052884 ], [ 4972266.768468116410077, 3911187.571967883035541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985457.54479939956218, 3904275.856819151900709 ], [ 4985424.71744648553431, 3904275.778404392302036 ], [ 4985424.724403085187078, 3904272.865366972982883 ], [ 4985406.007050666026771, 3904272.820674745831639 ], [ 4985406.022698448039591, 3904266.266340576577932 ], [ 4985391.336772177368402, 3904266.231283491011709 ], [ 4985391.434113865718246, 3904225.448760281316936 ], [ 4985407.271901522763073, 3904225.486567340325564 ], [ 4985407.304936320520937, 3904211.649640067480505 ], [ 4985448.19524541683495, 3904211.747294234111905 ], [ 4985448.110866001807153, 3904247.067871840670705 ], [ 4985457.613530952483416, 3904247.090574998874217 ], [ 4985457.54479939956218, 3904275.856819151900709 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985296.209712067618966, 3909864.903766109608114 ], [ 4985264.529505379498005, 3909869.561994392890483 ], [ 4985257.441326765343547, 3909823.664349136408418 ], [ 4985289.121586288325489, 3909819.006112633273005 ], [ 4985296.209712067618966, 3909864.903766109608114 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971816.38247483689338, 3898097.287117092870176 ], [ 4971831.868696037679911, 3898133.00099670002237 ], [ 4971790.647563339211047, 3898150.765827761497349 ], [ 4971775.161297742277384, 3898115.051971516571939 ], [ 4971816.38247483689338, 3898097.287117092870176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971676.093303762376308, 3911458.464115454349667 ], [ 4971597.453675930388272, 3911483.805934546981007 ], [ 4971587.435116186738014, 3911453.199990940280259 ], [ 4971620.273499859496951, 3911442.701683162245899 ], [ 4971616.837342471815646, 3911432.863650693092495 ], [ 4971662.926564149558544, 3911418.020644978620112 ], [ 4971676.093303762376308, 3911458.464115454349667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971500.962562804110348, 3892412.271644162945449 ], [ 4971440.12331766076386, 3892440.560041853226721 ], [ 4971426.350233743898571, 3892411.039901165757328 ], [ 4971487.189531018026173, 3892382.751472805161029 ], [ 4971500.962562804110348, 3892412.271644162945449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970812.791482840664685, 3910333.507813516072929 ], [ 4970844.714144313707948, 3910351.773357431869954 ], [ 4970849.623805917799473, 3910343.407368661370128 ], [ 4970872.343910083174706, 3910356.193967368453741 ], [ 4970866.855765857733786, 3910366.01541456580162 ], [ 4970887.274710222147405, 3910377.705378354992718 ], [ 4970867.63538758829236, 3910411.5334437568672 ], [ 4970845.778336772695184, 3910399.112574405502528 ], [ 4970843.756359850987792, 3910402.750169094186276 ], [ 4970790.551776234060526, 3910372.428995178546757 ], [ 4970812.791482840664685, 3910333.507813516072929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970696.34995727520436, 3897885.100392483640462 ], [ 4970703.843367516063154, 3897882.565268673468381 ], [ 4970696.106138915754855, 3897861.067368247080594 ], [ 4970730.692956528626382, 3897848.386467622127384 ], [ 4970735.2786137284711, 3897860.775327213574201 ], [ 4970744.213515436276793, 3897857.514608663506806 ], [ 4970749.371867794543505, 3897871.72517496207729 ], [ 4970741.301724102348089, 3897874.623354100156575 ], [ 4970747.034118441864848, 3897889.927366883959621 ], [ 4970703.800491091795266, 3897905.869505932088941 ], [ 4970696.34995727520436, 3897885.100392483640462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984839.571422873996198, 3908659.995900850743055 ], [ 4984862.375113753601909, 3908635.288855524268001 ], [ 4984873.291646690107882, 3908645.51041913125664 ], [ 4984880.796341038309038, 3908637.517271275632083 ], [ 4984897.459037812426686, 3908652.850311638787389 ], [ 4984889.954342763870955, 3908660.843454917427152 ], [ 4984910.640024188905954, 3908679.463227272499353 ], [ 4984891.011118130758405, 3908700.900557460263371 ], [ 4984872.911474424414337, 3908684.471719766501337 ], [ 4984869.736682693473995, 3908687.741396725177765 ], [ 4984839.571422873996198, 3908659.995900850743055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970316.374080134555697, 3900603.364463303703815 ], [ 4970337.472462515346706, 3900562.62037151074037 ], [ 4970369.98640532977879, 3900579.065648016519845 ], [ 4970348.887986430898309, 3900619.809714686125517 ], [ 4970316.374080134555697, 3900603.364463303703815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970240.601163343526423, 3898091.091682226862758 ], [ 4970255.800127259455621, 3898127.532386233564466 ], [ 4970201.034239931963384, 3898150.008651478681713 ], [ 4970185.835214642807841, 3898113.567977947648615 ], [ 4970240.601163343526423, 3898091.091682226862758 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969982.274165391921997, 3900138.1261304798536 ], [ 4969944.54437770973891, 3900138.786007544025779 ], [ 4969943.765468640252948, 3900091.811774193774909 ], [ 4969981.783326321281493, 3900091.152418244164437 ], [ 4969982.274165391921997, 3900138.1261304798536 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984598.606082680635154, 3909018.461578587535769 ], [ 4984553.677785004489124, 3909024.545943151693791 ], [ 4984549.718271447345614, 3908994.313593231141567 ], [ 4984594.358709995634854, 3908988.228543371893466 ], [ 4984598.606082680635154, 3909018.461578587535769 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984399.087146142497659, 3905464.423969613388181 ], [ 4984426.305643703788519, 3905400.036587302573025 ], [ 4984463.126907433383167, 3905415.416723610367626 ], [ 4984435.907480745576322, 3905480.168199206702411 ], [ 4984399.087146142497659, 3905464.423969613388181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984173.533471790142357, 3915705.50340538052842 ], [ 4984139.230598307214677, 3915726.906995949801058 ], [ 4984116.862866614945233, 3915691.169474891386926 ], [ 4984151.453604851849377, 3915669.766530267428607 ], [ 4984173.533471790142357, 3915705.50340538052842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969368.177513245493174, 3897281.875695829279721 ], [ 4969341.885619236156344, 3897326.980735572986305 ], [ 4969316.564699325710535, 3897312.370253324974328 ], [ 4969321.18821857124567, 3897304.003536601085216 ], [ 4969301.622089352458715, 3897292.680529011413455 ], [ 4969323.002383630722761, 3897255.941650959663093 ], [ 4969368.177513245493174, 3897281.875695829279721 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983796.008214184083045, 3904153.231324632186443 ], [ 4983824.167300356552005, 3904179.514359775464982 ], [ 4983829.075344171375036, 3904174.063813493587077 ], [ 4983852.350082857534289, 3904195.601792923174798 ], [ 4983833.298076024278998, 3904215.584659486077726 ], [ 4983818.069266585633159, 3904201.348062115721405 ], [ 4983784.58201496116817, 3904237.319151959381998 ], [ 4983748.66497012693435, 3904203.735479679424316 ], [ 4983796.008214184083045, 3904153.231324632186443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983723.812439175322652, 3897427.200916991569102 ], [ 4983725.055972656235099, 3897387.877746097743511 ], [ 4983772.001971015706658, 3897389.443421963136643 ], [ 4983770.470336308702826, 3897428.765920775942504 ], [ 4983723.812439175322652, 3897427.200916991569102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983714.471312294714153, 3895497.290251782163978 ], [ 4983738.85088306106627, 3895542.499007334467024 ], [ 4983692.416863076388836, 3895567.151933000423014 ], [ 4983668.036391383968294, 3895522.307346736080945 ], [ 4983714.471312294714153, 3895497.290251782163978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969288.620459817349911, 3897153.923851075116545 ], [ 4969310.288230889476836, 3897117.549609280191362 ], [ 4969357.187909681349993, 3897145.671495069749653 ], [ 4969331.187844877131283, 3897188.5922855976969 ], [ 4969317.664516670629382, 3897180.557244693860412 ], [ 4969321.709383256733418, 3897173.646012907847762 ], [ 4969288.620459817349911, 3897153.923851075116545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969156.898949122987688, 3904312.858968711458147 ], [ 4969169.514595377258956, 3904343.468492294196039 ], [ 4969119.949407179839909, 3904363.771507086697966 ], [ 4969107.333714123815298, 3904333.16200639680028 ], [ 4969156.898949122987688, 3904312.858968711458147 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968814.57961648888886, 3905089.671399191021919 ], [ 4968843.866083931177855, 3905137.424477368127555 ], [ 4968824.552804475650191, 3905149.042485434096307 ], [ 4968795.266315489076078, 3905101.289427956100553 ], [ 4968814.57961648888886, 3905089.671399191021919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968790.012987940572202, 3892439.384534522425383 ], [ 4968763.193955372087657, 3892454.630530399270356 ], [ 4968774.394547333009541, 3892474.313278948888183 ], [ 4968727.966450739651918, 3892500.448516097385436 ], [ 4968707.28857727907598, 3892463.999133888166398 ], [ 4968756.600151132792234, 3892436.412441707216203 ], [ 4968750.569643494673073, 3892425.47792449221015 ], [ 4968774.504615703597665, 3892412.047461474779993 ], [ 4968790.012987940572202, 3892439.384534522425383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982788.059899875894189, 3908337.695263362489641 ], [ 4982685.313795529305935, 3908445.971649726387113 ], [ 4982720.938557176850736, 3908479.553329339250922 ], [ 4982675.914890822954476, 3908527.15173273999244 ], [ 4982638.853894060477614, 3908492.110299858264625 ], [ 4982538.128523150458932, 3908598.571210598107427 ], [ 4982395.914921019226313, 3908464.974656015634537 ], [ 4982462.00658159237355, 3908395.211687106639147 ], [ 4982443.04399184230715, 3908377.690129552502185 ], [ 4982463.823667082935572, 3908355.889508362859488 ], [ 4982469.282446685247123, 3908360.999801457859576 ], [ 4982528.736701129004359, 3908298.14039668161422 ], [ 4982523.852091576904058, 3908293.759666208177805 ], [ 4982554.445148648694158, 3908261.421652839519083 ], [ 4982574.843174610286951, 3908280.767226719297469 ], [ 4982646.419488800689578, 3908205.19111519260332 ], [ 4982788.059899875894189, 3908337.695263362489641 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982768.379026774317026, 3916176.715558992698789 ], [ 4982692.061977125704288, 3916194.747600320260972 ], [ 4982684.365479732863605, 3916161.957903099711984 ], [ 4982760.68261722382158, 3916143.925840282347053 ], [ 4982768.379026774317026, 3916176.715558992698789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982639.79049083031714, 3917152.301774281077087 ], [ 4982675.500312044285238, 3917143.644184437114745 ], [ 4982679.207012865692377, 3917158.946314465720206 ], [ 4982687.270170488394797, 3917157.14408330572769 ], [ 4982693.829250799492002, 3917183.74091262370348 ], [ 4982684.325330506078899, 3917186.268115672282875 ], [ 4982688.317342323251069, 3917202.663303800392896 ], [ 4982655.486634012311697, 3917210.963324059266597 ], [ 4982650.354141265153885, 3917189.83178381761536 ], [ 4982640.851059510372579, 3917191.994869553018361 ], [ 4982634.578085592016578, 3917166.126976194325835 ], [ 4982642.642070323228836, 3917163.960598927456886 ], [ 4982639.79049083031714, 3917152.301774281077087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982632.416879979893565, 3917230.209727553185076 ], [ 4982640.128109193406999, 3917256.445043322164565 ], [ 4982609.887030187994242, 3917265.115172960329801 ], [ 4982602.17577398288995, 3917238.879865725990385 ], [ 4982632.416879979893565, 3917230.209727553185076 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982611.398504964075983, 3917107.448343583848327 ], [ 4982642.20957947243005, 3917101.328460991382599 ], [ 4982647.331275359727442, 3917127.193723394069821 ], [ 4982616.5202293144539, 3917133.313600211404264 ], [ 4982611.398504964075983, 3917107.448343583848327 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982567.462455525062978, 3904954.038720672484487 ], [ 4982588.676147907972336, 3904995.598162514623255 ], [ 4982562.441819155588746, 3905009.011169972363859 ], [ 4982541.22809692658484, 3904967.451748505234718 ], [ 4982567.462455525062978, 3904954.038720672484487 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968449.158883282914758, 3896568.008602882735431 ], [ 4968441.381753868423402, 3896567.994948241394013 ], [ 4968442.210719233378768, 3896588.0235316590406 ], [ 4968410.523586093448102, 3896589.424437863286585 ], [ 4968409.425720249302685, 3896558.471495768986642 ], [ 4968448.89066175557673, 3896556.72011437965557 ], [ 4968449.158883282914758, 3896568.008602882735431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968261.809026459231973, 3902730.220878419931978 ], [ 4968293.118075476028025, 3902776.156165133230388 ], [ 4968271.494443047791719, 3902790.683559983503073 ], [ 4968257.706666672602296, 3902770.632237053476274 ], [ 4968227.144996820017695, 3902791.334261000156403 ], [ 4968209.623052169568837, 3902765.814471429679543 ], [ 4968261.809026459231973, 3902730.220878419931978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968259.328365026973188, 3898714.949540409259498 ], [ 4968280.070180270820856, 3898712.43691470194608 ], [ 4968282.3456588415429, 3898728.826749033294618 ], [ 4968261.603219139389694, 3898731.703501954209059 ], [ 4968259.328365026973188, 3898714.949540409259498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982044.042893597856164, 3905300.595372587442398 ], [ 4982065.281017030589283, 3905331.59463944286108 ], [ 4982008.468004336580634, 3905370.064102145843208 ], [ 4981991.822195898741484, 3905345.629633688833565 ], [ 4982020.372669689357281, 3905326.39519549626857 ], [ 4982015.780323524028063, 3905319.830436462070793 ], [ 4982044.042893597856164, 3905300.595372587442398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967901.170634062029421, 3901787.585979450494051 ], [ 4967885.953507428988814, 3901760.978026789613068 ], [ 4967909.303146786987782, 3901747.909849114250392 ], [ 4967921.64988258946687, 3901769.050869153346866 ], [ 4967949.611741244792938, 3901753.441821368876845 ], [ 4967968.848586173728108, 3901786.97528120316565 ], [ 4967925.607696942985058, 3901811.661037248093635 ], [ 4967909.242457564920187, 3901782.866292661987245 ], [ 4967901.170634062029421, 3901787.585979450494051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967733.928492736071348, 3904239.718405277933925 ], [ 4967699.913381270132959, 3904260.415070288348943 ], [ 4967674.068746962584555, 3904218.859446538146585 ], [ 4967708.084520467557013, 3904197.798619173001498 ], [ 4967733.928492736071348, 3904239.718405277933925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981607.675969632342458, 3903560.518833498470485 ], [ 4981636.361381525173783, 3903610.105157742742449 ], [ 4981596.282542269676924, 3903632.955411894246936 ], [ 4981583.37393438629806, 3903610.714406884275377 ], [ 4981584.527434879913926, 3903609.988733647856861 ], [ 4981568.74976503290236, 3903583.007585484068841 ], [ 4981607.675969632342458, 3903560.518833498470485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981530.48571871034801, 3905107.54094175202772 ], [ 4981499.645643060095608, 3905120.580523017793894 ], [ 4981481.026820578612387, 3905076.84296640381217 ], [ 4981511.866937244310975, 3905063.803364126477391 ], [ 4981530.48571871034801, 3905107.54094175202772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981472.821730904281139, 3904754.932088519446552 ], [ 4981502.820393646135926, 3904732.059035015292466 ], [ 4981520.907615777105093, 3904756.132290681358427 ], [ 4981490.909780662506819, 3904778.641194417607039 ], [ 4981472.821730904281139, 3904754.932088519446552 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981384.606668010354042, 3907759.188252953346819 ], [ 4981369.025481046177447, 3907774.082814917899668 ], [ 4981351.215871316380799, 3907755.472219733521342 ], [ 4981366.797059134580195, 3907740.577647621743381 ], [ 4981384.606668010354042, 3907759.188252953346819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981334.699535303749144, 3904454.214248708449304 ], [ 4981243.344712908379734, 3904486.417861577123404 ], [ 4981225.601904870942235, 3904436.856349908746779 ], [ 4981327.043539577163756, 3904401.033909176010638 ], [ 4981337.346516517922282, 3904429.459214043337852 ], [ 4981327.259860280901194, 3904433.077978757675737 ], [ 4981334.699535303749144, 3904454.214248708449304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967640.464180681854486, 3897828.310258006677032 ], [ 4967603.866372831165791, 3897838.806885106023401 ], [ 4967607.873647698201239, 3897853.378990266472101 ], [ 4967578.768378948792815, 3897861.703795696143061 ], [ 4967575.905043657869101, 3897851.867354476824403 ], [ 4967536.137731588445604, 3897863.08687115740031 ], [ 4967528.694143771193922, 3897836.856704746838659 ], [ 4967565.867981432937086, 3897826.360967911314219 ], [ 4967561.573905975557864, 3897811.060115452390164 ], [ 4967592.984080746769905, 3897802.375135553535074 ], [ 4967595.846787282265723, 3897812.575707058887929 ], [ 4967633.020684872753918, 3897802.080063248518854 ], [ 4967640.464180681854486, 3897828.310258006677032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967484.888266927562654, 3902372.024763411842287 ], [ 4967521.651857196353376, 3902428.892448522150517 ], [ 4967489.650474074296653, 3902449.592827762011439 ], [ 4967465.524125023745, 3902412.409980440046638 ], [ 4967463.217786786146462, 3902413.8625378026627 ], [ 4967450.58050539996475, 3902394.177744141314179 ], [ 4967484.888266927562654, 3902372.024763411842287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981222.16802885197103, 3901330.080294106621295 ], [ 4981200.553286027163267, 3901336.950558883138001 ], [ 4981197.979238132946193, 3901328.933935750741512 ], [ 4981169.159861176274717, 3901337.972942198626697 ], [ 4981157.433407939039171, 3901301.533703769091517 ], [ 4981171.842705585993826, 3901297.196255066432059 ], [ 4981168.125610182993114, 3901285.171645925845951 ], [ 4981184.841285057365894, 3901279.74695337144658 ], [ 4981188.273630850948393, 3901290.314405883196741 ], [ 4981207.58285287860781, 3901284.16724976664409 ], [ 4981222.16802885197103, 3901330.080294106621295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981098.866426970809698, 3906649.767499633599073 ], [ 4981122.97416403144598, 3906685.142024917062372 ], [ 4981113.169825701974332, 3906691.674559414386749 ], [ 4981128.667917366139591, 3906714.285285367630422 ], [ 4981105.310457481071353, 3906729.890928270760924 ], [ 4981094.978121909312904, 3906714.938495556823909 ], [ 4981088.922606923617423, 3906718.930463369935751 ], [ 4981076.294088825583458, 3906700.695735145360231 ], [ 4981082.061672725714743, 3906696.703123385552317 ], [ 4981065.415039871819317, 3906672.633339295629412 ], [ 4981098.866426970809698, 3906649.767499633599073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981049.635108524933457, 3902635.834148446563631 ], [ 4981079.711968386545777, 3902578.732484355568886 ], [ 4981100.709181224927306, 3902590.067306512501091 ], [ 4981091.454178037121892, 3902607.889128017704934 ], [ 4981132.011891577392817, 3902629.099081351421773 ], [ 4981135.192619691602886, 3902623.280068778898567 ], [ 4981158.20398866944015, 3902635.347687088418752 ], [ 4981133.621291191317141, 3902682.265831924043596 ], [ 4981101.404436696320772, 3902665.808156160637736 ], [ 4981107.767494469881058, 3902653.44186498131603 ], [ 4981076.701686155050993, 3902637.350914262700826 ], [ 4981071.496219335123897, 3902647.170870555564761 ], [ 4981049.635108524933457, 3902635.834148446563631 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967158.372621123678982, 3899642.670789131894708 ], [ 4967118.914782654494047, 3899642.967551845125854 ], [ 4967118.387235133908689, 3899614.564493453595787 ], [ 4967157.845737240277231, 3899613.90360080357641 ], [ 4967158.372621123678982, 3899642.670789131894708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980594.30092173628509, 3904479.878859806340188 ], [ 4980547.898858159780502, 3904498.347141803707927 ], [ 4980535.583390150219202, 3904468.097041968256235 ], [ 4980582.273454731330276, 3904449.629374836105853 ], [ 4980594.30092173628509, 3904479.878859806340188 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980483.818279308266938, 3909009.074960217345506 ], [ 4980511.97548695653677, 3909035.354602788109332 ], [ 4980459.74051979277283, 3909091.315872381441295 ], [ 4980431.583320064470172, 3909065.036283639725298 ], [ 4980483.818279308266938, 3909009.074960217345506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966779.512311682105064, 3898187.69084676541388 ], [ 4966740.904090496711433, 3898195.272205086890608 ], [ 4966729.195515693165362, 3898135.899217060767114 ], [ 4966767.803818771615624, 3898128.3178421841003 ], [ 4966779.512311682105064, 3898187.69084676541388 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980405.326076141558588, 3906606.356524368282408 ], [ 4980419.082775165326893, 3906635.517383106984198 ], [ 4980390.547660996206105, 3906648.927452267613262 ], [ 4980376.790937970392406, 3906619.76660789642483 ], [ 4980405.326076141558588, 3906606.356524368282408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980350.815394596196711, 3908872.960593155585229 ], [ 4980327.733756918460131, 3908895.121921815443784 ], [ 4980279.473720252513885, 3908845.493814066052437 ], [ 4980302.555360485799611, 3908823.332444629631937 ], [ 4980350.815394596196711, 3908872.960593155585229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980328.283521469682455, 3900131.20249892026186 ], [ 4980321.121044122613966, 3900114.072613910306245 ], [ 4980356.001538407057524, 3900099.584070852026343 ], [ 4980365.170413367450237, 3900121.087946195621043 ], [ 4980373.530532359145582, 3900117.465028522070497 ], [ 4980386.136201684363186, 3900147.715608271770179 ], [ 4980344.337268941104412, 3900165.101945614907891 ], [ 4980343.764464785344899, 3900163.644163434393704 ], [ 4980317.531356704421341, 3900174.874549498781562 ], [ 4980303.492806098423898, 3900141.343677045311779 ], [ 4980328.283521469682455, 3900131.20249892026186 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980292.256844397634268, 3900929.662114860955626 ], [ 4980262.561368790455163, 3900944.162129840813577 ], [ 4980253.959092929959297, 3900927.029092621989548 ], [ 4980245.309647803194821, 3900931.379675297066569 ], [ 4980228.105853905901313, 3900896.749485995620489 ], [ 4980266.451625627465546, 3900877.534725753124803 ], [ 4980292.256844397634268, 3900929.662114860955626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980232.147337505593896, 3909288.539336725138128 ], [ 4980306.060846634209156, 3909193.298928836826235 ], [ 4980374.468018383719027, 3909245.520353036466986 ], [ 4980300.842314158566296, 3909340.761208593845367 ], [ 4980232.147337505593896, 3909288.539336725138128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980238.293015548959374, 3903865.533326144330204 ], [ 4980264.760081069543958, 3903877.243644151836634 ], [ 4980250.581915628165007, 3903908.163690409623086 ], [ 4980224.402837770059705, 3903896.454018110409379 ], [ 4980238.293015548959374, 3903865.533326144330204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980185.275113365612924, 3903486.356150392442942 ], [ 4980171.107213977724314, 3903512.542545476462692 ], [ 4980130.263709631748497, 3903490.605140686035156 ], [ 4980144.71954857185483, 3903464.419355503749102 ], [ 4980185.275113365612924, 3903486.356150392442942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966449.656625414267182, 3899940.056408033706248 ], [ 4966451.724105911329389, 3899909.47294137487188 ], [ 4966475.914161065593362, 3899910.970155934337527 ], [ 4966474.134658828377724, 3899941.554105361457914 ], [ 4966449.656625414267182, 3899940.056408033706248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980101.306356448680162, 3903169.377831781748682 ], [ 4980124.605689976364374, 3903181.445199686102569 ], [ 4980132.991154943592846, 3903165.805923670064658 ], [ 4980158.591052678413689, 3903179.334887269418687 ], [ 4980137.191835287027061, 3903220.070699559058994 ], [ 4980088.004677356220782, 3903194.473768728319556 ], [ 4980101.306356448680162, 3903169.377831781748682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980053.141988221555948, 3899648.85430179303512 ], [ 4980064.603377220220864, 3899675.825042329262942 ], [ 4980015.596547213383019, 3899696.47329061338678 ], [ 4980004.134321997873485, 3899669.866699478123337 ], [ 4980053.141988221555948, 3899648.85430179303512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979980.042667134664953, 3899491.754204388242215 ], [ 4979992.655442114919424, 3899519.091557859908789 ], [ 4979937.014611854217947, 3899544.095016298815608 ], [ 4979924.689802410081029, 3899516.758317261002958 ], [ 4979980.042667134664953, 3899491.754204388242215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979925.408222298137844, 3906837.62057142239064 ], [ 4979986.708241514861584, 3906851.227389515843242 ], [ 4979980.310074955224991, 3906880.343977499753237 ], [ 4979919.009323968552053, 3906867.10130418324843 ], [ 4979925.408222298137844, 3906837.62057142239064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979890.928334926255047, 3900338.16333301179111 ], [ 4979843.115334401838481, 3900340.243839221540838 ], [ 4979841.459561963565648, 3900307.104334683623165 ], [ 4979862.486072932370007, 3900306.057788625359535 ], [ 4979861.382504196837544, 3900283.843408847227693 ], [ 4979888.457076670601964, 3900282.810073038097471 ], [ 4979890.928334926255047, 3900338.16333301179111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979854.025868155062199, 3899959.386940475087613 ], [ 4979898.701679875142872, 3899943.462642759550363 ], [ 4979907.862232573330402, 3899968.97177803888917 ], [ 4979863.186457723379135, 3899984.896060765255243 ], [ 4979854.025868155062199, 3899959.386940475087613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979795.691280756145716, 3904526.192487022373825 ], [ 4979820.181079640984535, 3904520.055614840704948 ], [ 4979817.324527888558805, 3904509.489571540616453 ], [ 4979843.83163246512413, 3904502.628854353446513 ], [ 4979855.53700820915401, 3904548.899097903631628 ], [ 4979804.828927385620773, 3904561.533165523316711 ], [ 4979795.691280756145716, 3904526.192487022373825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966232.945557632483542, 3906383.354814883321524 ], [ 4966247.579106003046036, 3906413.966379619203508 ], [ 4966182.4531319309026, 3906445.172726006247103 ], [ 4966167.531590221449733, 3906414.560714832972735 ], [ 4966232.945557632483542, 3906383.354814883321524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979736.132587601430714, 3906091.465448952745646 ], [ 4979755.230957023799419, 3906048.175318640656769 ], [ 4979802.408723995089531, 3906068.669469168875366 ], [ 4979797.779468857683241, 3906078.855077862273902 ], [ 4979809.573895771056414, 3906083.978626475669444 ], [ 4979795.104708015918732, 3906117.083108860533684 ], [ 4979736.132587601430714, 3906091.465448952745646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979726.411932424642146, 3906588.848660229239613 ], [ 4979731.089415620081127, 3906556.451083689928055 ], [ 4979771.96346805151552, 3906562.366186630912125 ], [ 4979767.285936553962529, 3906594.763756168074906 ], [ 4979726.411932424642146, 3906588.848660229239613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979570.855615238659084, 3899721.357844707556069 ], [ 4979615.173270947299898, 3899737.839921532198787 ], [ 4979604.165726426057518, 3899766.946467017754912 ], [ 4979560.135329836048186, 3899750.829161748755723 ], [ 4979570.855615238659084, 3899721.357844707556069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979561.692836336791515, 3900094.935974379070103 ], [ 4979572.708893746137619, 3900061.823987500742078 ], [ 4979608.684142124839127, 3900073.554258107207716 ], [ 4979597.668045107275248, 3900106.666230480186641 ], [ 4979561.692836336791515, 3900094.935974379070103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965966.600076450966299, 3897211.914857230149209 ], [ 4966047.274737452156842, 3897197.119869434740394 ], [ 4966054.126885543577373, 3897233.544258332345635 ], [ 4966032.517610012553632, 3897237.513674613088369 ], [ 4966033.658222033642232, 3897244.434039034415036 ], [ 4966004.557635200209916, 3897249.84751655953005 ], [ 4966003.417015926912427, 3897242.927153360564262 ], [ 4965973.452329989522696, 3897248.33922589244321 ], [ 4965966.600076450966299, 3897211.914857230149209 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965947.597376071847975, 3892876.196681825444102 ], [ 4965991.392413234338164, 3892872.264114702120423 ], [ 4965996.203737489879131, 3892923.978405943606049 ], [ 4965952.69625919405371, 3892928.275572119746357 ], [ 4965947.597376071847975, 3892876.196681825444102 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979330.971497366204858, 3908768.415386412292719 ], [ 4979361.466446851380169, 3908779.405301646329463 ], [ 4979352.49002355709672, 3908803.054506421554834 ], [ 4979362.271112532354891, 3908806.71698558004573 ], [ 4979356.187976523302495, 3908823.818060831632465 ], [ 4979343.818060038611293, 3908819.057588468305767 ], [ 4979334.551393514499068, 3908843.798569964710623 ], [ 4979304.63232709094882, 3908832.809929033741355 ], [ 4979313.320000848732889, 3908809.524216530378908 ], [ 4979306.991474144160748, 3908806.961613016203046 ], [ 4979313.361706552095711, 3908790.225279858335853 ], [ 4979321.704825419001281, 3908793.15637157484889 ], [ 4979330.971497366204858, 3908768.415386412292719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979274.195944919250906, 3897591.281573086511344 ], [ 4979250.83715889044106, 3897604.339842829387635 ], [ 4979246.819656382314861, 3897597.412702152505517 ], [ 4979218.845330880954862, 3897613.738212282303721 ], [ 4979195.888443172909319, 3897573.998531768098474 ], [ 4979209.44239086098969, 3897566.381022278219461 ], [ 4979203.416504302062094, 3897555.808256797026843 ], [ 4979219.566671696491539, 3897546.375699704978615 ], [ 4979225.019633049145341, 3897555.490712660364807 ], [ 4979246.360657795332372, 3897543.156327292323112 ], [ 4979274.195944919250906, 3897591.281573086511344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979254.452308950945735, 3901801.316493385471404 ], [ 4979297.989278820343316, 3901777.741977510042489 ], [ 4979320.364066964015365, 3901818.572988530620933 ], [ 4979276.827143377624452, 3901842.14746875455603 ], [ 4979254.452308950945735, 3901801.316493385471404 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979004.618011757731438, 3900396.689850055612624 ], [ 4979016.776655994355679, 3900367.585524032823741 ], [ 4979052.745470596477389, 3900382.228084804024547 ], [ 4979040.58679392747581, 3900411.332394818775356 ], [ 4979004.618011757731438, 3900396.689850055612624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979006.496820451691747, 3895634.96342364884913 ], [ 4979055.528272401541471, 3895605.938441808801144 ], [ 4979068.443627210333943, 3895627.813998173456639 ], [ 4979019.412201062776148, 3895656.838956827297807 ], [ 4979006.496820451691747, 3895634.96342364884913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978882.884480624459684, 3900085.460945676080883 ], [ 4978866.420628936029971, 3900107.637615714687854 ], [ 4978829.03940780647099, 3900079.883579078130424 ], [ 4978845.79124993737787, 3900057.707503683399409 ], [ 4978882.884480624459684, 3900085.460945676080883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978845.730703566223383, 3912042.018279022537172 ], [ 4978868.419803086668253, 3912066.827996456529945 ], [ 4978832.365091106854379, 3912099.522690904326737 ], [ 4978809.963861762546003, 3912074.71362019656226 ], [ 4978845.730703566223383, 3912042.018279022537172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978756.56327869463712, 3907030.268466813955456 ], [ 4978730.901701621711254, 3907046.963638580869883 ], [ 4978703.925083742477, 3907005.394876472186297 ], [ 4978729.586683586239815, 3906988.699679364450276 ], [ 4978756.56327869463712, 3907030.268466813955456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978714.046772024594247, 3908600.316166832111776 ], [ 4978725.961030221544206, 3908548.998966304119676 ], [ 4978753.58669350668788, 3908555.612461240030825 ], [ 4978741.672385399229825, 3908606.929649733938277 ], [ 4978714.046772024594247, 3908600.316166832111776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978650.231400347314775, 3906800.637861577793956 ], [ 4978666.845877940766513, 3906840.727891423273832 ], [ 4978624.770521624013782, 3906858.116358841769397 ], [ 4978618.182302166707814, 3906842.080478732474148 ], [ 4978606.654928235337138, 3906846.789587737526745 ], [ 4978594.336810611188412, 3906817.26859501330182 ], [ 4978621.426520244218409, 3906806.038325788453221 ], [ 4978623.718314797617495, 3906811.505200854502618 ], [ 4978650.231400347314775, 3906800.637861577793956 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978554.26817958150059, 3910078.717739527113736 ], [ 4978499.767213557846844, 3910255.205990976653993 ], [ 4978455.172149734571576, 3910241.638084915932268 ], [ 4978476.044096649624407, 3910174.317951779346913 ], [ 4978472.303774883039296, 3910173.217586620245129 ], [ 4978485.350631464272738, 3910130.277699682395905 ], [ 4978492.831285598687828, 3910132.478434099815786 ], [ 4978513.125287887640297, 3910066.249501160811633 ], [ 4978554.26817958150059, 3910078.717739527113736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978539.235915185883641, 3907271.952132446225733 ], [ 4978585.274730435572565, 3907285.887355714570731 ], [ 4978576.286844607442617, 3907314.998756493441761 ], [ 4978530.247298430651426, 3907301.427678945474327 ], [ 4978539.235915185883641, 3907271.952132446225733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978538.038163853809237, 3906483.239392725285143 ], [ 4978552.654544439166784, 3906515.314178491011262 ], [ 4978533.344253148883581, 3906524.012174506671727 ], [ 4978530.765256483107805, 3906518.180563916452229 ], [ 4978510.013746900483966, 3906527.603768536355346 ], [ 4978497.976328747346997, 3906501.360612838063389 ], [ 4978538.038163853809237, 3906483.239392725285143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965359.060998739674687, 3898659.783610890153795 ], [ 4965395.922101371921599, 3898663.121297216974199 ], [ 4965391.529452941380441, 3898707.173811520915478 ], [ 4965382.314641512930393, 3898706.066289921291173 ], [ 4965379.380647257901728, 3898738.833172302693129 ], [ 4965351.735644342377782, 3898735.874758448451757 ], [ 4965359.060998739674687, 3898659.783610890153795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965131.950590938329697, 3896987.691977276932448 ], [ 4965172.556714927777648, 3896992.127853119745851 ], [ 4965168.758685427717865, 3897024.893313153646886 ], [ 4965069.116307189688087, 3897013.442676046863198 ], [ 4965072.914216776378453, 3896980.67720215767622 ], [ 4965113.807804131880403, 3896985.477587485220283 ], [ 4965114.97837414033711, 3896974.191479681059718 ], [ 4965133.409800389781594, 3896976.042211844120175 ], [ 4965131.950590938329697, 3896987.691977276932448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965113.414673485793173, 3902167.777623508591205 ], [ 4965116.627049869857728, 3902140.473061175551265 ], [ 4965112.019930275157094, 3902140.101410868111998 ], [ 4965114.940760076977313, 3902114.981157345231622 ], [ 4965169.071333434432745, 3902121.259785481728613 ], [ 4965165.566159381531179, 3902151.476908789947629 ], [ 4965157.215871187858284, 3902150.73500363342464 ], [ 4965154.588341164402664, 3902172.578555593732744 ], [ 4965113.414673485793173, 3902167.777623508591205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978425.152688822709024, 3908519.590707374736667 ], [ 4978432.119190329685807, 3908493.023860947228968 ], [ 4978471.254562598653138, 3908502.938755106646568 ], [ 4978464.28724951762706, 3908529.869722391944379 ], [ 4978425.152688822709024, 3908519.590707374736667 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978300.931333142332733, 3906953.557712516281754 ], [ 4978325.138381917029619, 3906943.777552381623536 ], [ 4978335.450507245026529, 3906968.924576002173126 ], [ 4978311.243477310054004, 3906978.704726988449693 ], [ 4978300.931333142332733, 3906953.557712516281754 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978229.609300860203803, 3905827.14607266522944 ], [ 4978255.256277663633227, 3905817.733039527200162 ], [ 4978262.699524024501443, 3905838.140216305851936 ], [ 4978278.260783302597702, 3905832.347126947715878 ], [ 4978288.854369374923408, 3905860.771898889914155 ], [ 4978247.934129696339369, 3905875.97860919451341 ], [ 4978229.609300860203803, 3905827.14607266522944 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978183.370902564376593, 3904139.297666086349636 ], [ 4978153.998140181414783, 3904139.59958412591368 ], [ 4978153.52476770337671, 3904091.169092286843807 ], [ 4978182.897583013400435, 3904090.867173736449331 ], [ 4978183.370902564376593, 3904139.297666086349636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978147.639875881373882, 3904150.510066323447973 ], [ 4978181.830813072621822, 3904186.631499720737338 ], [ 4978160.479346049949527, 3904206.613507346250117 ], [ 4978144.389820694923401, 3904189.465256966184825 ], [ 4978127.65422064717859, 3904205.451616885140538 ], [ 4978109.553575179539621, 3904186.114341786596924 ], [ 4978147.639875881373882, 3904150.510066323447973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965101.900304591283202, 3893160.645010055974126 ], [ 4965109.739607494324446, 3893123.152532897423953 ], [ 4965144.585839468054473, 3893130.127852208446711 ], [ 4965136.747084376402199, 3893167.256191532127559 ], [ 4965160.073692752979696, 3893172.027955628931522 ], [ 4965154.847252724692225, 3893197.144306926988065 ], [ 4965107.330429361201823, 3893187.235270199831575 ], [ 4965112.555638688616455, 3893162.84716545837 ], [ 4965101.900304591283202, 3893160.645010055974126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964960.453508739359677, 3899714.745552989188582 ], [ 4964946.294344143941998, 3899743.48881602101028 ], [ 4964904.565740967169404, 3899723.39384611742571 ], [ 4964918.724871416576207, 3899694.650561451911926 ], [ 4964960.453508739359677, 3899714.745552989188582 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964942.383957446552813, 3900200.101803021039814 ], [ 4964957.68127225805074, 3900179.735378284007311 ], [ 4964948.477012721821666, 3900172.437805677764118 ], [ 4964962.61937303096056, 3900153.890157756861299 ], [ 4965000.014175694435835, 3900181.989035944920033 ], [ 4964983.27385310921818, 3900204.173740154597908 ], [ 4964991.903271983377635, 3900210.742128677666187 ], [ 4964979.203303991816938, 3900227.835587302688509 ], [ 4964942.383957446552813, 3900200.101803021039814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977690.71255705319345, 3903980.953632736578584 ], [ 4977657.844334650784731, 3904000.183588052168489 ], [ 4977642.636591002345085, 3903974.298337155487388 ], [ 4977675.792796740308404, 3903955.068968181032687 ], [ 4977690.71255705319345, 3903980.953632736578584 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977669.626943094655871, 3905657.371437969617546 ], [ 4977670.567995400168002, 3905620.59609949355945 ], [ 4977722.395002977922559, 3905622.161495153326541 ], [ 4977721.165935372933745, 3905658.93622670462355 ], [ 4977669.626943094655871, 3905657.371437969617546 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964739.797375709749758, 3905434.882887981832027 ], [ 4964807.954595433548093, 3905488.156476013828069 ], [ 4964788.334132249467075, 3905512.885619362816215 ], [ 4964720.17634753882885, 3905459.9762107944116 ], [ 4964739.797375709749758, 3905434.882887981832027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964599.020917643792927, 3900596.083753253333271 ], [ 4964620.550306104123592, 3900639.814133703242987 ], [ 4964582.792600766755641, 3900658.323880911804736 ], [ 4964567.004942229948938, 3900625.890825823880732 ], [ 4964581.416600903496146, 3900618.631449214648455 ], [ 4964575.962827551178634, 3900607.334614848252386 ], [ 4964599.020917643792927, 3900596.083753253333271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977530.736851116642356, 3906392.626634149812162 ], [ 4977552.078489269129932, 3906376.285403269808739 ], [ 4977566.436404723674059, 3906394.886222618632019 ], [ 4977545.094772538170218, 3906411.227442282252014 ], [ 4977530.736851116642356, 3906392.626634149812162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977493.476413599215448, 3912774.702591070905328 ], [ 4977511.610582794994116, 3912775.468830001074821 ], [ 4977511.919803779572248, 3912765.273741481360048 ], [ 4977547.613179480656981, 3912766.440918097272515 ], [ 4977546.380821133032441, 3912805.036479902919382 ], [ 4977492.553346615284681, 3912803.10306658828631 ], [ 4977493.476413599215448, 3912774.702591070905328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977350.984809251502156, 3912083.643681431654841 ], [ 4977381.719021663069725, 3912116.479874720796943 ], [ 4977358.35549886804074, 3912138.27906596660614 ], [ 4977327.621283006854355, 3912105.442898957524449 ], [ 4977350.984809251502156, 3912083.643681431654841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977309.13106244802475, 3905375.507213871460408 ], [ 4977320.001645540818572, 3905409.758279502857476 ], [ 4977270.441345644183457, 3905425.67671113461256 ], [ 4977259.282758660614491, 3905391.425065040122718 ], [ 4977309.13106244802475, 3905375.507213871460408 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964323.585518286563456, 3897428.437859408557415 ], [ 4964329.396358360536397, 3897397.132018394768238 ], [ 4964373.451962906867266, 3897405.577644123695791 ], [ 4964367.641073302365839, 3897436.883475765120238 ], [ 4964323.585518286563456, 3897428.437859408557415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964305.634255236014724, 3892810.522634468507022 ], [ 4964306.800579758360982, 3892801.785413529723883 ], [ 4964280.01534718926996, 3892797.737113014794886 ], [ 4964284.38262724597007, 3892768.977936434559524 ], [ 4964328.448753310367465, 3892775.602826793212444 ], [ 4964322.915097134187818, 3892813.09921651519835 ], [ 4964305.634255236014724, 3892810.522634468507022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964292.526441531255841, 3893980.083437526598573 ], [ 4964295.445035018958151, 3893956.419728958979249 ], [ 4964348.729194218292832, 3893961.967034944333136 ], [ 4964346.098040177486837, 3893985.995327617973089 ], [ 4964292.526441531255841, 3893980.083437526598573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964268.585554761812091, 3902097.955454802140594 ], [ 4964289.376864670775831, 3902062.668064795434475 ], [ 4964306.639507255516946, 3902072.891375552397221 ], [ 4964310.393785854801536, 3902066.343037882819772 ], [ 4964331.108709490858018, 3902078.756680266465992 ], [ 4964306.564251909032464, 3902119.864116640295833 ], [ 4964268.585554761812091, 3902097.955454802140594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977178.434783254750073, 3907020.018832099158317 ], [ 4977153.062867400236428, 3907036.351979410741478 ], [ 4977127.232492761686444, 3906996.243718825746328 ], [ 4977152.316500372253358, 3906979.909948493819684 ], [ 4977178.434783254750073, 3907020.018832099158317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977136.688835109584033, 3913661.351385266520083 ], [ 4977106.394776427187026, 3913694.424538864288479 ], [ 4977067.03233437333256, 3913658.657626762054861 ], [ 4977097.038525607436895, 3913625.583831084892154 ], [ 4977136.688835109584033, 3913661.351385266520083 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977038.169813990592957, 3911616.173491044901311 ], [ 4977073.573072210885584, 3911619.160097154323012 ], [ 4977064.425606065429747, 3911726.560376240406185 ], [ 4977029.310367859899998, 3911723.5743796848692 ], [ 4977038.169813990592957, 3911616.173491044901311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977027.059509491547942, 3906289.619451335631311 ], [ 4977035.349224990233779, 3906318.767216473817825 ], [ 4976990.692499176599085, 3906331.419162068981677 ], [ 4976982.402739227749407, 3906302.27141048386693 ], [ 4977027.059509491547942, 3906289.619451335631311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963969.767548772506416, 3900580.146853138692677 ], [ 4963963.146468946710229, 3900578.315678007435054 ], [ 4963958.511291828937829, 3900595.4224394839257 ], [ 4963933.46639462094754, 3900588.464176083914936 ], [ 4963947.661634033545852, 3900536.051951044704765 ], [ 4963979.328243256546557, 3900544.47727546049282 ], [ 4963969.767548772506416, 3900580.146853138692677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963948.561693414114416, 3901238.46099463198334 ], [ 4963930.391032878309488, 3901255.546266682446003 ], [ 4963891.864864862523973, 3901214.702495093923062 ], [ 4963928.783356303349137, 3901179.804567696992308 ], [ 4963960.122449675574899, 3901212.626097747590393 ], [ 4963941.086631922982633, 3901230.438248501624912 ], [ 4963948.561693414114416, 3901238.46099463198334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976820.218397165648639, 3900907.329558339901268 ], [ 4976771.850978239439428, 3900899.582849712111056 ], [ 4976776.808588751591742, 3900869.734370354097337 ], [ 4976824.888064365833998, 3900877.480492246337235 ], [ 4976820.218397165648639, 3900907.329558339901268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976784.676258016377687, 3910021.110025268979371 ], [ 4976809.866426349617541, 3909951.976877584587783 ], [ 4976838.635172501206398, 3909962.232102939393371 ], [ 4976829.94850707706064, 3909986.246894707903266 ], [ 4976844.332860704511404, 3909991.374514392577112 ], [ 4976835.646952849812806, 3910015.025173528585583 ], [ 4976819.823874439112842, 3910009.530449828598648 ], [ 4976812.006204820238054, 3910030.998115904163569 ], [ 4976784.676258016377687, 3910021.110025268979371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976731.615211395546794, 3911736.430865766480565 ], [ 4976749.421602144837379, 3911756.859102907590568 ], [ 4976714.813716653734446, 3911787.010685039218515 ], [ 4976697.007319713942707, 3911766.582470456603914 ], [ 4976731.615211395546794, 3911736.430865766480565 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976744.559046954847872, 3900727.292646260000765 ], [ 4976793.522343802265823, 3900725.573137167375535 ], [ 4976794.610367335379124, 3900756.526496780570596 ], [ 4976745.647126796655357, 3900758.246003925800323 ], [ 4976744.559046954847872, 3900727.292646260000765 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976638.968485319055617, 3909756.81299470923841 ], [ 4976643.210417219437659, 3909793.963278193958104 ], [ 4976608.366251423954964, 3909797.896921418141574 ], [ 4976607.516055874526501, 3909791.340780517552048 ], [ 4976564.03264024015516, 3909796.349080440588295 ], [ 4976560.64080751221627, 3909765.754948653746396 ], [ 4976638.968485319055617, 3909756.81299470923841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976625.536602980457246, 3912781.274550091475248 ], [ 4976647.440859087742865, 3912768.575041043106467 ], [ 4976660.349865919910371, 3912790.449668732937425 ], [ 4976638.44562148116529, 3912803.149167433381081 ], [ 4976625.536602980457246, 3912781.274550091475248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976484.337029326707125, 3911871.014742350205779 ], [ 4976496.963218439370394, 3911890.703897375613451 ], [ 4976481.397613564506173, 3911900.503488495014608 ], [ 4976468.770669260062277, 3911881.178472317289561 ], [ 4976484.337029326707125, 3911871.014742350205779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976443.083858951926231, 3913174.163205562159419 ], [ 4976415.412286220118403, 3913191.948908708058298 ], [ 4976391.596584530547261, 3913154.394263461697847 ], [ 4976419.267432224005461, 3913136.972668159753084 ], [ 4976443.083858951926231, 3913174.163205562159419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976422.162797712720931, 3912287.81955035822466 ], [ 4976438.530438366346061, 3912307.880500744096935 ], [ 4976417.768425671383739, 3912324.952122233342379 ], [ 4976401.112906796857715, 3912304.890593303833157 ], [ 4976422.162797712720931, 3912287.81955035822466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976321.590767214074731, 3909389.114838696084917 ], [ 4976297.679031357169151, 3909396.712621913757175 ], [ 4976289.383512113243341, 3909370.478077760431916 ], [ 4976313.007364206947386, 3909362.879697245545685 ], [ 4976321.590767214074731, 3909389.114838696084917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976284.656090291216969, 3912661.866569575387985 ], [ 4976304.253594577312469, 3912650.982723119668663 ], [ 4976313.145455763675272, 3912666.658682086970657 ], [ 4976293.547959265299141, 3912677.542522167321295 ], [ 4976284.656090291216969, 3912661.866569575387985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963534.17057298310101, 3903964.781435429584235 ], [ 4963541.136686788871884, 3903929.835811441298574 ], [ 4963584.317361178807914, 3903938.642947354353964 ], [ 4963577.351766986772418, 3903973.224430137779564 ], [ 4963534.17057298310101, 3903964.781435429584235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963510.885570909827948, 3892764.837878660298884 ], [ 4963525.513652504421771, 3892805.643289565108716 ], [ 4963490.923770627006888, 3892818.33342326246202 ], [ 4963479.162168936803937, 3892786.635750355664641 ], [ 4963489.539426666684449, 3892782.646637208759785 ], [ 4963486.096739354543388, 3892773.538011452183127 ], [ 4963510.885570909827948, 3892764.837878660298884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963362.004904649220407, 3903941.570829302072525 ], [ 4963385.856146714650095, 3903973.287622248753905 ], [ 4963341.746556653641164, 3904005.990296301897615 ], [ 4963318.182684181258082, 3903974.638122860807925 ], [ 4963362.004904649220407, 3903941.570829302072525 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976206.524902764707804, 3908778.957196061499417 ], [ 4976222.961904332973063, 3908766.246184295043349 ], [ 4976242.776346719823778, 3908791.411874053068459 ], [ 4976226.339351099915802, 3908804.122873895801604 ], [ 4976206.524902764707804, 3908778.957196061499417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976062.470612703822553, 3908827.092554360628128 ], [ 4976085.467035345733166, 3908844.981970392633229 ], [ 4976063.23925859387964, 3908873.703082623425871 ], [ 4976040.242845851927996, 3908855.813685297966003 ], [ 4976062.470612703822553, 3908827.092554360628128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975987.56239078193903, 3909700.129799990914762 ], [ 4975962.171479743905365, 3909727.388034524396062 ], [ 4975926.53847046289593, 3909694.543553466442972 ], [ 4975932.885636237449944, 3909688.002082644496113 ], [ 4975914.494777305983007, 3909670.850422059185803 ], [ 4975933.538515150547028, 3909650.13361241761595 ], [ 4975987.56239078193903, 3909700.129799990914762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975896.228793757036328, 3897696.718059372156858 ], [ 4975876.841259331442416, 3897740.738385464530438 ], [ 4975862.740402460098267, 3897734.519521357957274 ], [ 4975856.374167564325035, 3897749.071788959670812 ], [ 4975826.733778769150376, 3897735.90290832798928 ], [ 4975852.48673758842051, 3897677.694405215792358 ], [ 4975896.228793757036328, 3897696.718059372156858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962895.55801890976727, 3903163.424234590958804 ], [ 4962842.518914898857474, 3903197.206269564572722 ], [ 4962827.005673153325915, 3903173.149623629171401 ], [ 4962880.332776418887079, 3903139.368004616349936 ], [ 4962895.55801890976727, 3903163.424234590958804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962877.393206097185612, 3895925.581628968473524 ], [ 4962845.706157160922885, 3895926.62496600067243 ], [ 4962844.885959211736917, 3895898.221608723979443 ], [ 4962876.573041595518589, 3895897.178270748350769 ], [ 4962877.393206097185612, 3895925.581628968473524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962826.576792506501079, 3901402.745391249656677 ], [ 4962860.803631021641195, 3901431.200543230399489 ], [ 4962827.046869333833456, 3901471.202658939175308 ], [ 4962792.820046221837401, 3901442.747549259103835 ], [ 4962826.576792506501079, 3901402.745391249656677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962789.508876474574208, 3900603.785890646278858 ], [ 4962820.382735120132565, 3900566.328200313728303 ], [ 4962843.106479289010167, 3900584.569874430075288 ], [ 4962812.520608197897673, 3900622.027984436135739 ], [ 4962789.508876474574208, 3900603.785890646278858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975802.187648324295878, 3907839.764082353096455 ], [ 4975832.159545478411019, 3907825.987924417946488 ], [ 4975850.219407056458294, 3907864.986770058050752 ], [ 4975820.247544021345675, 3907878.762908190488815 ], [ 4975802.187648324295878, 3907839.764082353096455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975718.752628142014146, 3911217.28923719888553 ], [ 4975718.485414240509272, 3911207.092970663681626 ], [ 4975743.244998212903738, 3911206.414914160966873 ], [ 4975743.777191234752536, 3911227.899842375423759 ], [ 4975689.939055414870381, 3911229.611358054447919 ], [ 4975689.38689730502665, 3911217.957982248160988 ], [ 4975718.752628142014146, 3911217.28923719888553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975724.412193572148681, 3905443.253624309320003 ], [ 4975704.799348462373018, 3905459.235668231267482 ], [ 4975664.300638757646084, 3905408.90345099940896 ], [ 4975683.336126580834389, 3905393.648471874184906 ], [ 4975691.953150236047804, 3905404.225748343858868 ], [ 4975706.662068223580718, 3905392.603337644133717 ], [ 4975730.214684597216547, 3905421.781615974847227 ], [ 4975716.3703508740291, 3905433.041634682565928 ], [ 4975724.412193572148681, 3905443.253624309320003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975575.872684884816408, 3906134.803336297161877 ], [ 4975547.054472387768328, 3906146.761441038455814 ], [ 4975542.469517031684518, 3906135.828220425639302 ], [ 4975517.397471401840448, 3906146.337398781441152 ], [ 4975505.647106176242232, 3906119.003780122380704 ], [ 4975559.538154758512974, 3906096.172338624484837 ], [ 4975575.872684884816408, 3906134.803336297161877 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975494.126334420405328, 3907689.482045337092131 ], [ 4975501.550565746612847, 3907720.084141612052917 ], [ 4975443.650269348174334, 3907733.804323141463101 ], [ 4975436.225241641514003, 3907703.566373334731907 ], [ 4975494.126334420405328, 3907689.482045337092131 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975476.052121676504612, 3909939.784274940378964 ], [ 4975510.813569999299943, 3909976.631863022223115 ], [ 4975504.179412321187556, 3909982.808722109999508 ], [ 4975518.829852111637592, 3909998.860151288565248 ], [ 4975498.9273990849033, 3910017.390727848745883 ], [ 4975449.514770467765629, 3909964.855886274483055 ], [ 4975476.052121676504612, 3909939.784274940378964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975206.363635401241481, 3907752.625788055825979 ], [ 4975211.75224899686873, 3907793.419419891666621 ], [ 4975188.424025284126401, 3907796.649769967887551 ], [ 4975182.747455001808703, 3907755.855564809404314 ], [ 4975206.363635401241481, 3907752.625788055825979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975147.952719446271658, 3912900.254116990603507 ], [ 4975221.145509937778115, 3912863.259457958862185 ], [ 4975306.591425132006407, 3913031.660894435830414 ], [ 4975209.770638141781092, 3913080.260123778134584 ], [ 4975182.531666609458625, 3913026.313676423858851 ], [ 4975206.160769745707512, 3913014.344721725210547 ], [ 4975147.952719446271658, 3912900.254116990603507 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962174.691037155687809, 3896023.909937527962029 ], [ 4962167.437190487980843, 3896058.491183111909777 ], [ 4962137.77773526776582, 3896052.255853838752955 ], [ 4962145.319593150168657, 3896017.675038591958582 ], [ 4962174.691037155687809, 3896023.909937527962029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962064.613445773720741, 3893965.320649479515851 ], [ 4962072.433351150713861, 3893937.658726645167917 ], [ 4962056.596132887527347, 3893933.265135525260121 ], [ 4962063.547958466224372, 3893908.150795195717365 ], [ 4962121.713807053864002, 3893924.260835725814104 ], [ 4962106.941985650919378, 3893977.037071963306516 ], [ 4962064.613445773720741, 3893965.320649479515851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975090.339613786898553, 3906311.158332825638354 ], [ 4975061.81411980651319, 3906320.932753538247198 ], [ 4975045.779296160675585, 3906276.112422958482057 ], [ 4975074.305561169981956, 3906265.973855056799948 ], [ 4975090.339613786898553, 3906311.158332825638354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974905.255398616194725, 3910029.671478999778628 ], [ 4974872.964357191696763, 3910052.911506383679807 ], [ 4974846.263997578062117, 3910015.716690211091191 ], [ 4974858.084515218622983, 3910007.36522036138922 ], [ 4974847.462078703567386, 3909992.414585546124727 ], [ 4974867.931902669370174, 3909977.890119788236916 ], [ 4974905.255398616194725, 3910029.671478999778628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974858.534905156120658, 3910935.904851273167878 ], [ 4974869.199837446212769, 3910929.37174118263647 ], [ 4974852.553192223422229, 3910903.849217534065247 ], [ 4974891.755427400581539, 3910879.166421783156693 ], [ 4974902.661011947318912, 3910896.302446169778705 ], [ 4974908.714666010811925, 3910892.309073935262859 ], [ 4974925.072649594396353, 3910918.19518851255998 ], [ 4974869.728375370614231, 3910953.04143734741956 ], [ 4974858.534905156120658, 3910935.904851273167878 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961876.318163451738656, 3893134.821748164016753 ], [ 4961877.999861033633351, 3893165.775231157895178 ], [ 4961819.227494428865612, 3893168.599506184924394 ], [ 4961816.988803174346685, 3893124.90068124840036 ], [ 4961852.425236031413078, 3893123.133533388841897 ], [ 4961852.981595522724092, 3893136.243007573764771 ], [ 4961876.318163451738656, 3893134.821748164016753 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974819.849661322310567, 3900301.724153888877481 ], [ 4974847.518894283100963, 3900291.219530978705734 ], [ 4974862.703824540600181, 3900330.940049295313656 ], [ 4974834.746625046245754, 3900341.444082621019334 ], [ 4974819.849661322310567, 3900301.724153888877481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974728.580758071504533, 3909547.935829137917608 ], [ 4974746.743281898088753, 3909535.591477780602872 ], [ 4974763.968861511908472, 3909560.022667456418276 ], [ 4974746.093523683026433, 3909572.73171179369092 ], [ 4974728.580758071504533, 3909547.935829137917608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974559.638698601163924, 3899212.820876298937947 ], [ 4974516.40275857411325, 3899229.849282085895538 ], [ 4974504.651930499821901, 3899200.695571047253907 ], [ 4974547.887909865006804, 3899183.667146660853177 ], [ 4974559.638698601163924, 3899212.820876298937947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974527.702898120507598, 3903989.790129883680493 ], [ 4974540.319805173203349, 3904016.76086855167523 ], [ 4974484.114556152373552, 3904043.231060952879488 ], [ 4974471.210364401340485, 3904015.895648001693189 ], [ 4974527.702898120507598, 3903989.790129883680493 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961350.162032685242593, 3900747.616084864828736 ], [ 4961367.482619584538043, 3900720.332156886812299 ], [ 4961382.732341343536973, 3900729.822313057258725 ], [ 4961365.411745032295585, 3900757.106231365352869 ], [ 4961350.162032685242593, 3900747.616084864828736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974430.217085142619908, 3899701.591585187707096 ], [ 4974464.207826293073595, 3899698.745818119496107 ], [ 4974468.147655631415546, 3899745.36231424100697 ], [ 4974433.868965234607458, 3899748.207506492268294 ], [ 4974430.217085142619908, 3899701.591585187707096 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974289.683439152315259, 3908302.096891679801047 ], [ 4974269.790643008425832, 3908315.53052639728412 ], [ 4974248.25799747183919, 3908284.53679699357599 ], [ 4974286.315415663644671, 3908258.030231966171414 ], [ 4974301.818334116600454, 3908280.637041649315506 ], [ 4974283.655169269070029, 3908292.981684156227857 ], [ 4974289.683439152315259, 3908302.096891679801047 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974260.978090750984848, 3901543.758216514252126 ], [ 4974244.406937623396516, 3901622.741926703602076 ], [ 4974146.24327732808888, 3901602.157214932609349 ], [ 4974162.81343740131706, 3901523.537574587389827 ], [ 4974260.978090750984848, 3901543.758216514252126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974218.861452364362776, 3909321.528022178448737 ], [ 4974216.278919889591634, 3909317.153340235352516 ], [ 4974189.187130853533745, 3909331.665248325094581 ], [ 4974174.269145520403981, 3909304.690049448981881 ], [ 4974229.895191362127662, 3909274.212545118294656 ], [ 4974247.394949077628553, 3909305.926590151153505 ], [ 4974218.861452364362776, 3909321.528022178448737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961057.69845949858427, 3909787.470306404400617 ], [ 4960998.658452405594289, 3909801.219924893695861 ], [ 4960988.357602898031473, 3909758.237069081049412 ], [ 4961047.685599707067013, 3909744.487854774110019 ], [ 4961057.69845949858427, 3909787.470306404400617 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960918.841520945541561, 3894434.424232361838222 ], [ 4960922.331613903865218, 3894411.853386103641242 ], [ 4960913.40374989900738, 3894410.383696312084794 ], [ 4960918.637277314439416, 3894377.619811144191772 ], [ 4960929.005478349514306, 3894379.091628540307283 ], [ 4960930.749994415789843, 3894368.170334503985941 ], [ 4960960.126210964284837, 3894372.583259483799338 ], [ 4960956.05457282345742, 3894398.794531135354191 ], [ 4960965.271041366271675, 3894399.900532473344356 ], [ 4960961.20047804992646, 3894425.383547390345484 ], [ 4960952.272620647214353, 3894423.913844692520797 ], [ 4960949.94551713205874, 3894439.203825086820871 ], [ 4960918.841520945541561, 3894434.424232361838222 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974058.636887988075614, 3900458.978637967724353 ], [ 4974060.666483209468424, 3900452.064144843723625 ], [ 4974034.184766438789666, 3900444.729511602781713 ], [ 4974040.854547067545354, 3900421.43825457058847 ], [ 4974068.487571251578629, 3900429.139287361409515 ], [ 4974071.389760406687856, 3900417.856943109538406 ], [ 4974103.915923696942627, 3900427.024151684250683 ], [ 4974092.314290011301637, 3900468.512225448619574 ], [ 4974058.636887988075614, 3900458.978637967724353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974011.552716236561537, 3898769.685251851566136 ], [ 4973971.486040562391281, 3898785.992491347715259 ], [ 4973952.567523477599025, 3898739.710852806922048 ], [ 4973974.762809441424906, 3898730.651126952376217 ], [ 4973977.342834034003317, 3898736.846401554532349 ], [ 4973995.214277676306665, 3898729.598861856851727 ], [ 4974011.552716236561537, 3898769.685251851566136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973742.261587089858949, 3903337.177690227515996 ], [ 4973767.870929484255612, 3903347.423398808576167 ], [ 4973756.005854924209416, 3903377.258973689284176 ], [ 4973730.395825413055718, 3903367.377406053245068 ], [ 4973742.261587089858949, 3903337.177690227515996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973723.485412097536027, 3901154.540007534902543 ], [ 4973724.280427971854806, 3901189.862240627408028 ], [ 4973663.223218880593777, 3901191.199620769359171 ], [ 4973662.429543033242226, 3901155.149130771867931 ], [ 4973686.62234868016094, 3901154.46806011442095 ], [ 4973686.07620142865926, 3901139.17350414628163 ], [ 4973707.676375676877797, 3901138.851524934638292 ], [ 4973708.221089183352888, 3901154.874340014532208 ], [ 4973723.485412097536027, 3901154.540007534902543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960636.467754446901381, 3909612.794240436982363 ], [ 4960661.499742479994893, 3909623.390784968622029 ], [ 4960650.811059274710715, 3909648.136105698067695 ], [ 4960626.066991911269724, 3909637.539992907550186 ], [ 4960636.467754446901381, 3909612.794240436982363 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960631.328870743513107, 3898579.250811401754618 ], [ 4960652.748596805147827, 3898506.820361328311265 ], [ 4960684.129536190070212, 3898515.96962897060439 ], [ 4960675.735267986543477, 3898544.359443691559136 ], [ 4960679.189913348294795, 3898545.456900807097554 ], [ 4960672.243238025344908, 3898568.751022545620799 ], [ 4960661.590754896402359, 3898565.822361932136118 ], [ 4960655.512431245297194, 3898586.204722571652383 ], [ 4960631.328870743513107, 3898579.250811401754618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973635.143068244680762, 3908946.419504206627607 ], [ 4973667.582324299961329, 3908994.912388838361949 ], [ 4973641.059935211203992, 3909012.703149888198823 ], [ 4973608.620652955956757, 3908964.2102967412211 ], [ 4973635.143068244680762, 3908946.419504206627607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973489.956677163951099, 3898321.514605470001698 ], [ 4973491.389715179800987, 3898325.158691710792482 ], [ 4973512.431678323075175, 3898316.824604602064937 ], [ 4973529.056279403157532, 3898358.367766437120736 ], [ 4973507.437590500339866, 3898367.064849520102143 ], [ 4973510.590971000492573, 3898374.717712880577892 ], [ 4973484.072382720187306, 3898385.225938897114247 ], [ 4973462.861998724751174, 3898332.021732520777732 ], [ 4973489.956677163951099, 3898321.514605470001698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973320.046977731399238, 3903214.372352425940335 ], [ 4973335.844428233802319, 3903235.522573762107641 ], [ 4973284.511669873259962, 3903273.656905298586935 ], [ 4973268.426231358200312, 3903252.506156231742352 ], [ 4973320.046977731399238, 3903214.372352425940335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973196.768744432367384, 3904419.772508694324642 ], [ 4973145.758743868209422, 3904441.157705797813833 ], [ 4973136.299034802243114, 3904418.927421624772251 ], [ 4973150.132256629876792, 3904413.128031747415662 ], [ 4973138.092168691568077, 3904385.066661091987044 ], [ 4973175.556971966288984, 3904369.481376220937818 ], [ 4973196.768744432367384, 3904419.772508694324642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960092.302950794808567, 3898675.325001152232289 ], [ 4960157.966595564968884, 3898678.697141571436077 ], [ 4960156.187354164198041, 3898714.01516469893977 ], [ 4960142.939541566185653, 3898713.267732107080519 ], [ 4960142.644673155620694, 3898718.000993952620775 ], [ 4960114.132918773218989, 3898716.503233401570469 ], [ 4960113.834896466694772, 3898723.421270334627479 ], [ 4960089.930920095182955, 3898722.294328177347779 ], [ 4960092.302950794808567, 3898675.325001152232289 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960041.766187966801226, 3899565.913930662441999 ], [ 4960038.83616828918457, 3899600.502058961428702 ], [ 4959996.216035886667669, 3899596.799283802509308 ], [ 4959999.434010843746364, 3899562.211566162761301 ], [ 4960008.073253040201962, 3899562.952282920014113 ], [ 4960009.830717466771603, 3899542.563533577602357 ], [ 4960032.29286695830524, 3899544.416585724800825 ], [ 4960030.246850501745939, 3899565.169047370553017 ], [ 4960041.766187966801226, 3899565.913930662441999 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972750.544359164312482, 3899101.511039163451642 ], [ 4972734.19517784845084, 3899066.159083546604961 ], [ 4972782.624992406927049, 3899043.675818194169551 ], [ 4972798.973425513133407, 3899079.39193170145154 ], [ 4972750.544359164312482, 3899101.511039163451642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972701.497831896878779, 3911477.1584606426768 ], [ 4972679.849516803398728, 3911506.975916692521423 ], [ 4972642.763620551675558, 3911480.323237472213805 ], [ 4972664.41191578656435, 3911450.505752042867243 ], [ 4972701.497831896878779, 3911477.1584606426768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972386.230474062263966, 3903477.302604352124035 ], [ 4972364.319988734088838, 3903490.369644473306835 ], [ 4972349.965919055044651, 3903467.037949455436319 ], [ 4972369.28193336725235, 3903455.422487236559391 ], [ 4972366.411257060244679, 3903450.683321187738329 ], [ 4972388.898405038751662, 3903437.253249194473028 ], [ 4972383.444329887628555, 3903428.139591125305742 ], [ 4972402.183756628073752, 3903416.887186859734356 ], [ 4972427.158652658574283, 3903458.081561627797782 ], [ 4972388.815255027264357, 3903480.948834959883243 ], [ 4972386.230474062263966, 3903477.302604352124035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972253.215157215483487, 3905132.391098054125905 ], [ 4972212.851737054996192, 3905158.896122812759131 ], [ 4972197.058682662434876, 3905135.56175531540066 ], [ 4972237.422813070006669, 3905108.692576956003904 ], [ 4972253.215157215483487, 3905132.391098054125905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972241.088469879701734, 3910611.4650220987387 ], [ 4972211.383858778513968, 3910638.718620985280722 ], [ 4972141.569800890050828, 3910562.846664139069617 ], [ 4972185.982467739842832, 3910522.147957284003496 ], [ 4972213.563489164225757, 3910552.059150115586817 ], [ 4972207.218815298750997, 3910557.873240133281797 ], [ 4972221.295813575387001, 3910573.557653322815895 ], [ 4972212.932447668164968, 3910581.188576221000403 ], [ 4972241.088469879701734, 3910611.4650220987387 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972220.645401925779879, 3906970.466485818848014 ], [ 4972192.111301727592945, 3906985.705916962586343 ], [ 4972179.199303696863353, 3906962.012862118892372 ], [ 4972207.733421655371785, 3906946.77341748168692 ], [ 4972220.645401925779879, 3906970.466485818848014 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972180.454755088314414, 3903260.98204688495025 ], [ 4972159.401206050999463, 3903277.692188085056841 ], [ 4972137.853795413859189, 3903251.069803595542908 ], [ 4972159.196012009866536, 3903233.996061461977661 ], [ 4972180.454755088314414, 3903260.98204688495025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959649.437367244623601, 3898800.677598559763283 ], [ 4959647.631231809034944, 3898855.294503535609692 ], [ 4959594.350624771788716, 3898853.397791335359216 ], [ 4959596.156132564879954, 3898799.145012012682855 ], [ 4959649.437367244623601, 3898800.677598559763283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959596.400811511091888, 3898627.640189651399851 ], [ 4959594.330649263225496, 3898665.506741870660335 ], [ 4959562.075076687149704, 3898663.640096605755389 ], [ 4959561.484505486674607, 3898673.834891057107598 ], [ 4959536.140884851105511, 3898672.342259681783617 ], [ 4959538.803602640517056, 3898622.824391655158252 ], [ 4959561.843111471273005, 3898624.313741103745997 ], [ 4959562.438874116167426, 3898610.477655835915357 ], [ 4959585.766931516118348, 3898611.603307213168591 ], [ 4959584.881059776991606, 3898626.895497647579759 ], [ 4959596.400811511091888, 3898627.640189651399851 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959520.430529367178679, 3907276.002665699925274 ], [ 4959561.34265402238816, 3907257.490247660316527 ], [ 4959567.944210694171488, 3907272.064931597560644 ], [ 4959574.282762405462563, 3907269.160917367786169 ], [ 4959586.33881706930697, 3907295.031471083406359 ], [ 4959539.087675215676427, 3907316.812003635801375 ], [ 4959520.430529367178679, 3907276.002665699925274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959296.679602227173746, 3905874.506499088834971 ], [ 4959250.274578570388258, 3905907.212665250059217 ], [ 4959232.170276665128767, 3905881.697867348324507 ], [ 4959298.463454435579479, 3905834.818697615992278 ], [ 4959315.705961701460183, 3905858.875792879611254 ], [ 4959327.811920914798975, 3905850.153790236916393 ], [ 4959346.491005132906139, 3905876.39772996166721 ], [ 4959334.3850516397506, 3905885.119724334683269 ], [ 4959322.890072639100254, 3905869.081651302054524 ], [ 4959302.714010811410844, 3905883.254198577255011 ], [ 4959296.679602227173746, 3905874.506499088834971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959295.274229316040874, 3904223.169230544939637 ], [ 4959299.602906696498394, 3904216.620999803766608 ], [ 4959271.122699761763215, 3904196.917611369863153 ], [ 4959292.763521895743906, 3904165.997097626328468 ], [ 4959347.422829191200435, 3904203.580032334197313 ], [ 4959335.59221376106143, 3904220.677423455752432 ], [ 4959329.263805284164846, 3904215.934751224704087 ], [ 4959314.836411748081446, 3904236.669782856944948 ], [ 4959295.274229316040874, 3904223.169230544939637 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959250.178503633476794, 3892937.629149071406573 ], [ 4959247.034318502992392, 3892920.14653094438836 ], [ 4959257.696401248686016, 3892917.976830685511231 ], [ 4959255.123233397491276, 3892904.136305305641145 ], [ 4959294.023970953188837, 3892897.272882104851305 ], [ 4959302.886454094201326, 3892945.350403549615294 ], [ 4959263.121027196757495, 3892952.576720001641661 ], [ 4959259.975822617299855, 3892935.822356015443802 ], [ 4959250.178503633476794, 3892937.629149071406573 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958409.53682260401547, 3906284.733615085016936 ], [ 4958428.507963578216732, 3906308.42840605834499 ], [ 4958364.22850483097136, 3906358.589697106741369 ], [ 4958345.257845464162529, 3906334.530819952022284 ], [ 4958409.53682260401547, 3906284.733615085016936 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958372.259404283948243, 3901169.734587368089706 ], [ 4958408.52531707379967, 3901185.078180427663028 ], [ 4958385.989964308217168, 3901237.117679527495056 ], [ 4958349.724611647427082, 3901221.409986685961485 ], [ 4958372.259404283948243, 3901169.734587368089706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958274.325450374744833, 3901390.62665455089882 ], [ 4958287.91367796715349, 3901352.411681998055428 ], [ 4958300.291248366236687, 3901356.79830772895366 ], [ 4958311.566061936318874, 3901325.498636725824326 ], [ 4958356.759007349610329, 3901341.218603861052543 ], [ 4958347.218121157959104, 3901368.151084409561008 ], [ 4958329.65924758836627, 3901361.936635872349143 ], [ 4958314.33649683650583, 3901404.882891180925071 ], [ 4958274.325450374744833, 3901390.62665455089882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958258.455955115146935, 3905385.484636879526079 ], [ 4958284.111371770501137, 3905365.128628727514297 ], [ 4958300.783210704103112, 3905386.271227131597698 ], [ 4958275.415748663246632, 3905406.627616373356432 ], [ 4958258.455955115146935, 3905385.484636879526079 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957806.441495046950877, 3901316.431819350458682 ], [ 4957790.832554709166288, 3901358.649720736779273 ], [ 4957800.907269896008074, 3901362.304724636487663 ], [ 4957795.126169861294329, 3901377.954471135511994 ], [ 4957783.612003108486533, 3901373.933382169343531 ], [ 4957779.853775813244283, 3901384.488055974245071 ], [ 4957736.964490216225386, 3901368.772186264395714 ], [ 4957749.683046724647284, 3901334.197066564112902 ], [ 4957755.439894279465079, 3901336.389667979441583 ], [ 4957767.869509136304259, 3901302.542425854131579 ], [ 4957806.441495046950877, 3901316.431819350458682 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957799.488040314987302, 3899229.228157663252205 ], [ 4957826.078422001563013, 3899160.807899261824787 ], [ 4957854.001403594389558, 3899171.405680288560688 ], [ 4957827.410465664230287, 3899240.190040781162679 ], [ 4957799.488040314987302, 3899229.228157663252205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971643.676006958819926, 3911090.993156265467405 ], [ 4971656.353931086137891, 3911085.190813473891467 ], [ 4971658.933975928463042, 3911091.021780613809824 ], [ 4971681.120352521538734, 3911080.867697268724442 ], [ 4971694.596996447071433, 3911109.65949692716822 ], [ 4971673.850751395337284, 3911119.452139296103269 ], [ 4971677.865433956496418, 3911127.834731375798583 ], [ 4971662.018048931844532, 3911135.087648307904601 ], [ 4971659.725211584940553, 3911129.621352510526776 ], [ 4971643.877149512991309, 3911137.238411772064865 ], [ 4971632.406790121458471, 3911113.184127159416676 ], [ 4971649.983545606955886, 3911104.842038361821324 ], [ 4971643.676006958819926, 3911090.993156265467405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971399.132429343648255, 3902828.38146390998736 ], [ 4971376.353219549171627, 3902843.996600648853928 ], [ 4971353.664326419122517, 3902811.182497366797179 ], [ 4971376.155575638636947, 3902795.566804578062147 ], [ 4971399.132429343648255, 3902828.38146390998736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971343.023577122017741, 3903421.446381274145097 ], [ 4971361.461023091338575, 3903417.475312540307641 ], [ 4971365.743880715221167, 3903437.146382175851613 ], [ 4971347.306447591632605, 3903441.117448023986071 ], [ 4971343.023577122017741, 3903421.446381274145097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971011.64923320710659, 3892955.36997900204733 ], [ 4971022.547755953855813, 3892981.607434182427824 ], [ 4970992.564501953311265, 3892993.932323071174324 ], [ 4970981.665955006144941, 3892967.694879865273833 ], [ 4971011.64923320710659, 3892955.36997900204733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970941.151410656049848, 3907709.442652371712029 ], [ 4970931.06065971031785, 3907716.706635072827339 ], [ 4970912.107586730271578, 3907689.725821702741086 ], [ 4970946.703428537584841, 3907665.39293569419533 ], [ 4970972.26253252569586, 3907701.125167483929545 ], [ 4970947.756789364852011, 3907718.558171725831926 ], [ 4970941.151410656049848, 3907709.442652371712029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957464.689501943066716, 3900819.295343468897045 ], [ 4957494.912414754740894, 3900831.716514740604907 ], [ 4957474.109946612268686, 3900881.210190217476338 ], [ 4957444.174585305154324, 3900869.153559458907694 ], [ 4957464.689501943066716, 3900819.295343468897045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957424.875823676586151, 3905363.958183310460299 ], [ 4957444.999292623251677, 3905388.382078421767801 ], [ 4957391.382812765426934, 3905431.641538576688617 ], [ 4957371.259817109443247, 3905406.853552322369069 ], [ 4957424.875823676586151, 3905363.958183310460299 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970644.452381934970617, 3904651.645314153283834 ], [ 4970658.522017036564648, 3904673.519064780790359 ], [ 4970628.251282791607082, 3904692.762390691787004 ], [ 4970614.18096430785954, 3904671.252785860095173 ], [ 4970644.452381934970617, 3904651.645314153283834 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970596.228190037421882, 3912250.268970429897308 ], [ 4970639.193682461977005, 3912211.021547304000705 ], [ 4970678.266858778893948, 3912253.332852151244879 ], [ 4970658.369415561668575, 3912271.8670404413715 ], [ 4970648.8883360857144, 3912261.65387715306133 ], [ 4970626.108169144019485, 3912282.367587657645345 ], [ 4970596.228190037421882, 3912250.268970429897308 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970616.001193241216242, 3898663.098557533230633 ], [ 4970592.657585831359029, 3898670.702426047530025 ], [ 4970574.617279301397502, 3898613.500888684298843 ], [ 4970622.456007766537368, 3898598.659386205952615 ], [ 4970637.061399014666677, 3898644.202480464242399 ], [ 4970612.565022493712604, 3898652.168343640398234 ], [ 4970616.001193241216242, 3898663.098557533230633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970556.427640359848738, 3897538.555827108677477 ], [ 4970541.153294044546783, 3897543.261501166503876 ], [ 4970533.136484222486615, 3897517.029451604932547 ], [ 4970582.705998123623431, 3897501.826928158756346 ], [ 4970591.010127327404916, 3897528.42364960629493 ], [ 4970601.673311213031411, 3897525.166056691668928 ], [ 4970608.258587596938014, 3897546.66181 ], [ 4970563.012281561270356, 3897560.415698147844523 ], [ 4970556.427640359848738, 3897538.555827108677477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970534.938324051909149, 3900147.144751954358071 ], [ 4970474.748931628651917, 3900145.213796372059733 ], [ 4970475.658958866260946, 3900120.090464044827968 ], [ 4970535.847739771008492, 3900122.385550828650594 ], [ 4970534.938324051909149, 3900147.144751954358071 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957059.060292270965874, 3900268.186930669471622 ], [ 4957066.02960268035531, 3900225.228857806883752 ], [ 4957075.819265608675778, 3900227.062556058634073 ], [ 4957078.722591483034194, 3900209.588178698904812 ], [ 4957102.62148149497807, 3900213.62547990726307 ], [ 4957092.74926333501935, 3900273.693789483513683 ], [ 4957059.060292270965874, 3900268.186930669471622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956820.399666192941368, 3898674.073048412799835 ], [ 4956861.849352851510048, 3898693.062684718985111 ], [ 4956847.984892987646163, 3898722.902964502573013 ], [ 4956806.535242632031441, 3898703.913349234964699 ], [ 4956820.399666192941368, 3898674.073048412799835 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970148.933682391420007, 3899398.880120294168591 ], [ 4970150.441313270479441, 3899361.741577786393464 ], [ 4970231.942706623114645, 3899365.167154521681368 ], [ 4970230.435626860707998, 3899401.941563482396305 ], [ 4970148.933682391420007, 3899398.880120294168591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969951.21621572598815, 3898999.798563244286925 ], [ 4969964.267998818308115, 3898949.572253773920238 ], [ 4969988.162788134068251, 3898955.441654044669122 ], [ 4969984.971501263789833, 3898968.180422858335078 ], [ 4970016.350722833536565, 3898976.248200924601406 ], [ 4970006.489483353681862, 3899014.099847798701376 ], [ 4969951.21621572598815, 3898999.798563244286925 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969886.011157966218889, 3898744.061142647173256 ], [ 4969877.315265954472125, 3898774.63233796833083 ], [ 4969798.439060535281897, 3898751.913686997722834 ], [ 4969808.873508030548692, 3898715.519526015967131 ], [ 4969837.372231786139309, 3898723.946019599679857 ], [ 4969842.589483755640686, 3898705.748946366365999 ], [ 4969866.483199160546064, 3898712.346495419740677 ], [ 4969859.526625355705619, 3898736.73063022037968 ], [ 4969886.011157966218889, 3898744.061142647173256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969635.748981475830078, 3890887.156693577300757 ], [ 4969642.099037939682603, 3890880.613810709211975 ], [ 4969676.614311358891428, 3890912.355128953233361 ], [ 4969650.924031571485102, 3890939.61850053910166 ], [ 4969599.438873373903334, 3890892.189170436002314 ], [ 4969618.779089993797243, 3890871.468637220561504 ], [ 4969635.748981475830078, 3890887.156693577300757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956323.879226713441312, 3901082.140960033517331 ], [ 4956403.946647105738521, 3901078.240135687869042 ], [ 4956405.623166967183352, 3901117.568405128084123 ], [ 4956391.798546940088272, 3901118.278585805557668 ], [ 4956392.082254901528358, 3901121.556129856500775 ], [ 4956325.839579474180937, 3901124.746767935343087 ], [ 4956323.879226713441312, 3901082.140960033517331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956176.711481854319572, 3895986.317227161023766 ], [ 4956194.33684915676713, 3895944.465273349080235 ], [ 4956215.928646423853934, 3895953.596580857876688 ], [ 4956236.731164277531207, 3895905.194462683517486 ], [ 4956269.550716513767838, 3895919.074108413886279 ], [ 4956230.834665328264236, 3896009.327745439950377 ], [ 4956176.711481854319572, 3895986.317227161023766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969369.299359336495399, 3902768.230017670895904 ], [ 4969396.110426346771419, 3902751.892143358942121 ], [ 4969410.180119063705206, 3902774.857604569755495 ], [ 4969383.369718510657549, 3902790.831335266120732 ], [ 4969369.299359336495399, 3902768.230017670895904 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969328.0644476916641, 3890559.253320469055325 ], [ 4969292.628684151917696, 3890558.461721471510828 ], [ 4969292.936309889890254, 3890547.538421001750976 ], [ 4969288.326608396135271, 3890547.530184427741915 ], [ 4969289.56556405685842, 3890499.10332992952317 ], [ 4969329.610464433208108, 3890500.26729489909485 ], [ 4969328.0644476916641, 3890559.253320469055325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969258.033329556696117, 3898636.242048183921725 ], [ 4969272.512381526641548, 3898592.572305987589061 ], [ 4969296.979773172177374, 3898600.626893111504614 ], [ 4969300.454240366816521, 3898590.437462549190968 ], [ 4969322.906787630170584, 3898597.760211313609034 ], [ 4969308.138334768824279, 3898642.157669325824827 ], [ 4969280.792088767513633, 3898633.369667076505721 ], [ 4969277.894974991679192, 3898642.831871923059225 ], [ 4969258.033329556696117, 3898636.242048183921725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969078.556971549987793, 3902704.352220243308693 ], [ 4969027.814272618852556, 3902737.397877801209688 ], [ 4968999.668348068371415, 3902694.744532628916204 ], [ 4969043.491237470880151, 3902666.42021786654368 ], [ 4969055.841191614978015, 3902685.012862076051533 ], [ 4969063.048372689634562, 3902680.656112261116505 ], [ 4969078.556971549987793, 3902704.352220243308693 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968893.554110114462674, 3907320.4822519258596 ], [ 4968892.933061879128218, 3907345.970389174763113 ], [ 4968857.231486308388412, 3907345.178846199065447 ], [ 4968857.564574075862765, 3907319.690197987947613 ], [ 4968893.554110114462674, 3907320.4822519258596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968694.511980769224465, 3902149.100143575109541 ], [ 4968667.412117167375982, 3902165.80233344482258 ], [ 4968627.496260081417859, 3902101.280782230198383 ], [ 4968654.596163723617792, 3902084.578552763909101 ], [ 4968694.511980769224465, 3902149.100143575109541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955788.813439601100981, 3891197.15941704204306 ], [ 4955793.183584976010025, 3891159.295699332840741 ], [ 4955782.525295882485807, 3891158.189623048063368 ], [ 4955789.518746303394437, 3891096.660943483468145 ], [ 4955868.158919155597687, 3891105.501161152031273 ], [ 4955856.795051092281938, 3891204.893527396023273 ], [ 4955788.813439601100981, 3891197.15941704204306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955659.475267166271806, 3900633.766003367491066 ], [ 4955660.381686226464808, 3900600.631313865073025 ], [ 4955689.468146846629679, 3900601.760960101615638 ], [ 4955688.274160288274288, 3900634.531149993650615 ], [ 4955659.475267166271806, 3900633.766003367491066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968458.745263035409153, 3899473.782148585654795 ], [ 4968467.091176314279437, 3899477.438111218158156 ], [ 4968456.390654033981264, 3899502.544301317073405 ], [ 4968446.893344828858972, 3899498.522189828567207 ], [ 4968441.397491320036352, 3899511.985358421690762 ], [ 4968407.436555037274957, 3899498.088802653830498 ], [ 4968449.087820464745164, 3899396.933711131103337 ], [ 4968484.488280225545168, 3899411.196978482883424 ], [ 4968458.745263035409153, 3899473.782148585654795 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968328.623184405267239, 3899768.863552134018391 ], [ 4968392.301589008420706, 3899752.589304358232766 ], [ 4968405.461781491525471, 3899802.862370882648975 ], [ 4968378.664983623661101, 3899809.733845678623766 ], [ 4968377.520616970025003, 3899805.362275478430092 ], [ 4968305.197674848139286, 3899824.170334911439568 ], [ 4968297.759848690591753, 3899795.391020627692342 ], [ 4968333.200686881318688, 3899786.349824560806155 ], [ 4968328.623184405267239, 3899768.863552134018391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968284.452278671786189, 3898841.710758640430868 ], [ 4968314.418847072869539, 3898834.48061233246699 ], [ 4968321.566356924362481, 3898864.715926208067685 ], [ 4968291.600457563996315, 3898871.581935697235167 ], [ 4968284.452278671786189, 3898841.710758640430868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955310.042810642160475, 3895476.880832716822624 ], [ 4955254.427753231488168, 3895493.196233343333006 ], [ 4955245.823913383297622, 3895463.326764978934079 ], [ 4955259.655556924641132, 3895459.338840668555349 ], [ 4955257.935065862722695, 3895453.146469407714903 ], [ 4955299.430029935203493, 3895441.182736599352211 ], [ 4955310.042810642160475, 3895476.880832716822624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967945.749506364576519, 3896848.237451435532421 ], [ 4967914.919237590394914, 3896854.009985827375203 ], [ 4967911.493112806230783, 3896836.525815156754106 ], [ 4967900.831879861652851, 3896838.692088274750859 ], [ 4967894.837402761913836, 3896807.366536335088313 ], [ 4967903.769147927872837, 3896805.925518355332315 ], [ 4967900.058129864744842, 3896786.620207026135176 ], [ 4967932.906014266423881, 3896780.122900333721191 ], [ 4967945.749506364576519, 3896848.237451435532421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955257.561862401664257, 3898480.153865065425634 ], [ 4955292.683863325044513, 3898493.30699632037431 ], [ 4955276.499821447767317, 3898536.617944381665438 ], [ 4955241.377869276329875, 3898523.464833932928741 ], [ 4955257.561862401664257, 3898480.153865065425634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955099.639947349205613, 3904036.219559202902019 ], [ 4955081.100372642278671, 3904123.587646374478936 ], [ 4955000.491909083910286, 3904107.100393026601523 ], [ 4955011.789180897176266, 3904053.951462073717266 ], [ 4955053.820583399385214, 3904062.743444091174752 ], [ 4955058.456370244733989, 3904040.17315599322319 ], [ 4955071.123479791916907, 3904042.738011969719082 ], [ 4955073.729801384732127, 3904031.089101472869515 ], [ 4955099.639947349205613, 3904036.219559202902019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967900.787447540089488, 3905491.891315803397447 ], [ 4967928.461277084425092, 3905474.096928052138537 ], [ 4967954.020155747421086, 3905513.467545110266656 ], [ 4967926.058403902687132, 3905531.26140680257231 ], [ 4967900.787447540089488, 3905491.891315803397447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967747.16048086900264, 3913065.578786557074636 ], [ 4967750.852302245795727, 3913094.715837135910988 ], [ 4967724.362447070889175, 3913098.311329542659223 ], [ 4967725.784131579101086, 3913108.509520349558443 ], [ 4967712.251347028650343, 3913110.306777784135193 ], [ 4967714.238057668320835, 3913126.696210785768926 ], [ 4967683.141779913567007, 3913130.647910180035979 ], [ 4967679.163284182548523, 3913100.782106379978359 ], [ 4967684.633971741423011, 3913100.063295446336269 ], [ 4967680.935785762034357, 3913074.567575498949736 ], [ 4967747.16048086900264, 3913065.578786557074636 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967710.207712507806718, 3897971.533756532240659 ], [ 4967740.462491712532938, 3897964.66760074486956 ], [ 4967745.321156320162117, 3897986.523798005655408 ], [ 4967715.067029899917543, 3897993.02581962198019 ], [ 4967710.207712507806718, 3897971.533756532240659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967578.115863589569926, 3897404.719760661479086 ], [ 4967587.265122134238482, 3897444.061545824632049 ], [ 4967540.296394481323659, 3897455.268641256261617 ], [ 4967530.859038352966309, 3897415.926375881768763 ], [ 4967578.115863589569926, 3897404.719760661479086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967524.290700147859752, 3899223.456172217614949 ], [ 4967528.829947948455811, 3899263.518304911907762 ], [ 4967495.990206849761307, 3899267.10308239236474 ], [ 4967491.451537195593119, 3899226.676826079841703 ], [ 4967524.290700147859752, 3899223.456172217614949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967341.552993434481323, 3899471.114832536783069 ], [ 4967357.007503280416131, 3899528.30978226987645 ], [ 4967329.345423166640103, 3899535.909078211989254 ], [ 4967313.603472323156893, 3899478.349521391559392 ], [ 4967341.552993434481323, 3899471.114832536783069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954575.516455705277622, 3894538.328052956145257 ], [ 4954602.053542151115835, 3894509.958910355810076 ], [ 4954616.152402254752815, 3894523.085045679006726 ], [ 4954611.537055949680507, 3894528.177121973596513 ], [ 4954640.021892835386097, 3894555.158024796284735 ], [ 4954615.503964090719819, 3894581.344863306730986 ], [ 4954601.980809058994055, 3894568.583570978604257 ], [ 4954569.963814449496567, 3894602.407855335623026 ], [ 4954549.247191502712667, 3894583.083354144357145 ], [ 4954584.148429724387825, 3894546.349590682890266 ], [ 4954575.516455705277622, 3894538.328052956145257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954238.758947605267167, 3900883.598620812408626 ], [ 4954235.259204542264342, 3900919.279090632684529 ], [ 4954178.242846045643091, 3900913.747220728546381 ], [ 4954181.742067939601839, 3900878.430873308796436 ], [ 4954238.758947605267167, 3900883.598620812408626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966833.264351139776409, 3898761.286659457720816 ], [ 4966867.836438417434692, 3898755.51923231035471 ], [ 4966880.378813575021923, 3898832.371961586177349 ], [ 4966845.807440070435405, 3898837.775243862532079 ], [ 4966833.264351139776409, 3898761.286659457720816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966683.699021038599312, 3893186.575952443759888 ], [ 4966704.622210614383221, 3893249.605610403232276 ], [ 4966663.692462421953678, 3893263.009205826558173 ], [ 4966642.481109560467303, 3893199.979092814959586 ], [ 4966683.699021038599312, 3893186.575952443759888 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954187.502878074534237, 3891709.663170186802745 ], [ 4954156.083262838423252, 3891723.825699027627707 ], [ 4954141.142035054974258, 3891691.399999274872243 ], [ 4954172.561680251732469, 3891677.23745323671028 ], [ 4954187.502878074534237, 3891709.663170186802745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954012.554449759423733, 3894135.273697924800217 ], [ 4953997.843469931744039, 3894151.277440399862826 ], [ 4953978.564654248766601, 3894133.411651716567576 ], [ 4953993.275632336735725, 3894117.407898861914873 ], [ 4954012.554449759423733, 3894135.273697924800217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965676.761993392370641, 3898302.367113413289189 ], [ 4965673.264791646040976, 3898327.122167421504855 ], [ 4965687.374907682649791, 3898328.966140882112086 ], [ 4965683.584861272014678, 3898356.633749179542065 ], [ 4965666.883157076314092, 3898354.421365018934011 ], [ 4965663.09433860424906, 3898381.360718753188848 ], [ 4965631.994533215649426, 3898377.303919707424939 ], [ 4965635.200060118921101, 3898354.733157559297979 ], [ 4965632.032411837019026, 3898354.363797038327903 ], [ 4965639.903436883352697, 3898297.208398062270135 ], [ 4965676.761993392370641, 3898302.367113413289189 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965548.946494542062283, 3893717.038575178477913 ], [ 4965576.334384210407734, 3893704.339207167737186 ], [ 4965587.817048406228423, 3893728.754780540242791 ], [ 4965560.42917812988162, 3893741.454137031920254 ], [ 4965548.946494542062283, 3893717.038575178477913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953446.540527270175517, 3890252.617296213284135 ], [ 4953459.744708224199712, 3890293.415443271398544 ], [ 4953425.15811204444617, 3890304.661998636554927 ], [ 4953411.953884189017117, 3890263.863868300803006 ], [ 4953446.540527270175517, 3890252.617296213284135 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953227.123310529626906, 3894751.526349420659244 ], [ 4953259.674670414999127, 3894751.200960774440318 ], [ 4953259.922408444806933, 3894785.0652448204346 ], [ 4953227.371089561842382, 3894785.390633169561625 ], [ 4953227.123310529626906, 3894751.526349420659244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965274.075345171615481, 3902715.693057577591389 ], [ 4965259.058854974806309, 3902741.157623522449285 ], [ 4965223.959187675267458, 3902720.708838984835893 ], [ 4965238.976251968182623, 3902694.880123857408762 ], [ 4965274.075345171615481, 3902715.693057577591389 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952733.813397758640349, 3892418.335916349198669 ], [ 4952745.021462761797011, 3892441.653262252919376 ], [ 4952736.374190364964306, 3892445.648545995820314 ], [ 4952743.846084567718208, 3892461.314819645136595 ], [ 4952717.615356454625726, 3892474.028599156532437 ], [ 4952711.579618679359555, 3892462.005297457333654 ], [ 4952695.149782615713775, 3892469.632772272918373 ], [ 4952677.331031737849116, 3892433.199095577467233 ], [ 4952707.020946106873453, 3892418.6686822748743 ], [ 4952711.90648165717721, 3892428.869994539767504 ], [ 4952733.813397758640349, 3892418.335916349198669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952591.963585029356182, 3892019.449618873186409 ], [ 4952566.312920606695116, 3892028.522936168592423 ], [ 4952555.112583469599485, 3891998.28724176203832 ], [ 4952580.763697261922061, 3891988.849786114878953 ], [ 4952591.963585029356182, 3892019.449618873186409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952425.518751558847725, 3891460.683349733240902 ], [ 4952397.557776937261224, 3891474.123685198370367 ], [ 4952386.635836976580322, 3891451.899214018601924 ], [ 4952414.596829218789935, 3891438.45886736549437 ], [ 4952425.518751558847725, 3891460.683349733240902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952105.427664192393422, 3890972.018251735717058 ], [ 4952109.427654116414487, 3891001.153090049047023 ], [ 4952088.969107544980943, 3891004.042640602681786 ], [ 4952084.969095887616277, 3890974.907805287279189 ], [ 4952105.427664192393422, 3890972.018251735717058 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965083.020794189535081, 3900497.461157731711864 ], [ 4965082.20311507768929, 3900469.057655072771013 ], [ 4965127.996902858838439, 3900468.039986584335566 ], [ 4965128.526533880271018, 3900496.443020419683307 ], [ 4965083.020794189535081, 3900497.461157731711864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951842.456903596408665, 3901037.704277275595814 ], [ 4951841.340571924112737, 3901006.387805370613933 ], [ 4951864.381357852369547, 3901005.321650380734354 ], [ 4951863.81988624855876, 3900992.576452346984297 ], [ 4951922.861235308460891, 3900990.458988126367331 ], [ 4951924.541408697143197, 3901032.335883977822959 ], [ 4951891.132860173471272, 3901033.3901651869528 ], [ 4951891.693487631157041, 3901046.863623671233654 ], [ 4951870.092705325223505, 3901047.931395799852908 ], [ 4951869.529577969573438, 3901036.642716422211379 ], [ 4951842.456903596408665, 3901037.704277275595814 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964836.182218574918807, 3899623.147061166353524 ], [ 4964821.732178770005703, 3899653.710567340254784 ], [ 4964790.938836185261607, 3899639.095457688905299 ], [ 4964805.388848749920726, 3899608.531935237813741 ], [ 4964836.182218574918807, 3899623.147061166353524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964817.15935374982655, 3904073.157106936909258 ], [ 4964844.810737401247025, 3904068.832376339007169 ], [ 4964848.800844159908593, 3904094.32803083723411 ], [ 4964821.14948607981205, 3904098.65275740204379 ], [ 4964817.15935374982655, 3904073.157106936909258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964799.554154233075678, 3891297.635796716902405 ], [ 4964804.510813362896442, 3891261.230987004935741 ], [ 4964826.689691475592554, 3891264.179952602367848 ], [ 4964827.856841013766825, 3891255.078634702600539 ], [ 4964844.563026651740074, 3891257.290488400962204 ], [ 4964843.103640089742839, 3891268.94023046689108 ], [ 4964850.593023020774126, 3891269.680631699040532 ], [ 4964845.927943867631257, 3891303.901135616004467 ], [ 4964799.554154233075678, 3891297.635796716902405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964789.568270166404545, 3896217.729531224351376 ], [ 4964805.51166760083288, 3896155.489226430188864 ], [ 4964839.775000193156302, 3896164.283871899824589 ], [ 4964824.120164284482598, 3896226.160495130810887 ], [ 4964789.568270166404545, 3896217.729531224351376 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964694.660404682159424, 3901650.395992283243686 ], [ 4964729.193558035418391, 3901666.109454768244177 ], [ 4964724.280104883946478, 3901677.025424994062632 ], [ 4964740.97157071903348, 3901684.33504324266687 ], [ 4964731.145254557020962, 3901705.802850903943181 ], [ 4964679.920679142698646, 3901682.77979479636997 ], [ 4964694.660404682159424, 3901650.395992283243686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964665.16402346175164, 3899764.516916000284255 ], [ 4964637.214944557286799, 3899772.118518502451479 ], [ 4964624.613718068227172, 3899728.038425099104643 ], [ 4964652.275419135577977, 3899720.0722153657116 ], [ 4964665.16402346175164, 3899764.516916000284255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951682.417600936256349, 3899944.768069436773658 ], [ 4951676.402047291398048, 3899915.994988387450576 ], [ 4951690.517638294957578, 3899913.097931684926152 ], [ 4951688.226374014280736, 3899901.807306716684252 ], [ 4951721.066500864923, 3899895.290178011637181 ], [ 4951731.376082956790924, 3899947.008328743744642 ], [ 4951701.128479277715087, 3899953.164252110756934 ], [ 4951698.549629743210971, 3899941.509170154575258 ], [ 4951682.417600936256349, 3899944.768069436773658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951663.255448775365949, 3892442.956649450119585 ], [ 4951685.464867599308491, 3892419.313437526579946 ], [ 4951743.596346060745418, 3892473.998569080606103 ], [ 4951726.002067058347166, 3892492.549167314078659 ], [ 4951710.174279264174402, 3892477.601965234149247 ], [ 4951705.559133772738278, 3892482.694534328300506 ], [ 4951663.255448775365949, 3892442.956649450119585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951643.558250698260963, 3899925.789337589405477 ], [ 4951644.387678634375334, 3899956.377196167595685 ], [ 4951586.496924722567201, 3899957.768311970867217 ], [ 4951585.66743095126003, 3899927.180455144029111 ], [ 4951643.558250698260963, 3899925.789337589405477 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951636.049806417897344, 3893318.654898441862315 ], [ 4951639.549945440143347, 3893280.425354295875877 ], [ 4951705.224914711900055, 3893286.325730913318694 ], [ 4951700.85220443084836, 3893331.836850049439818 ], [ 4951674.927791262976825, 3893329.62272683205083 ], [ 4951675.512186313979328, 3893322.340816556010395 ], [ 4951636.049806417897344, 3893318.654898441862315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964635.163839589804411, 3890512.673518547788262 ], [ 4964661.971286681480706, 3890504.341840248554945 ], [ 4964669.137498999014497, 3890526.929362002294511 ], [ 4964642.330072173848748, 3890535.261033275630325 ], [ 4964635.163839589804411, 3890512.673518547788262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964575.120020852424204, 3904345.500053197611123 ], [ 4964572.550114471465349, 3904332.023055198136717 ], [ 4964598.762573488987982, 3904326.967489104252309 ], [ 4964608.185308615677059, 3904376.504535981453955 ], [ 4964564.977498749271035, 3904385.174005716107786 ], [ 4964557.837230018340051, 3904348.749375786166638 ], [ 4964575.120020852424204, 3904345.500053197611123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964541.367708227597177, 3896695.066548464354128 ], [ 4964540.202645106241107, 3896703.075522012542933 ], [ 4964507.661699543707073, 3896698.289451298769563 ], [ 4964515.235146467573941, 3896645.866987222805619 ], [ 4964551.231472384184599, 3896651.386891913600266 ], [ 4964549.483870771713555, 3896663.400351310148835 ], [ 4964586.056834779679775, 3896668.557102076243609 ], [ 4964581.395941673777997, 3896700.957117134705186 ], [ 4964541.367708227597177, 3896695.066548464354128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964500.974807882681489, 3899958.697741338051856 ], [ 4964524.921476601622999, 3899932.518909710925072 ], [ 4964549.07817851100117, 3899954.769760163035244 ], [ 4964525.132092267274857, 3899980.58444131212309 ], [ 4964500.974807882681489, 3899958.697741338051856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964080.044873618520796, 3904030.097108168061823 ], [ 4964080.920946766622365, 3904022.451750694774091 ], [ 4964103.090533030219376, 3904024.67188103729859 ], [ 4964097.532749152742326, 3904078.91855846112594 ], [ 4964071.332908490672708, 3904075.963747879955918 ], [ 4964072.210138195194304, 3904067.590129473246634 ], [ 4964054.64738869573921, 3904065.741493230685592 ], [ 4964058.739175640046597, 3904027.878372990526259 ], [ 4964080.044873618520796, 3904030.097108168061823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964052.075155375525355, 3903872.747903260402381 ], [ 4964046.552237526513636, 3903905.146775216329843 ], [ 4963999.626398898661137, 3903897.42533186962828 ], [ 4964005.149261717684567, 3903865.026450416538864 ], [ 4964052.075155375525355, 3903872.747903260402381 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963986.009022319689393, 3906665.530645377933979 ], [ 4964000.348929783329368, 3906701.238364866934717 ], [ 4964018.788249047473073, 3906693.985073335468769 ], [ 4964029.971850152127445, 3906722.76928281551227 ], [ 4963983.00923486892134, 3906741.265273631550372 ], [ 4963983.582784101366997, 3906742.722712719347328 ], [ 4963943.535246647894382, 3906758.316717118956149 ], [ 4963924.607450068928301, 3906710.585393008310348 ], [ 4963940.454186352901161, 3906704.056193853728473 ], [ 4963933.284198391251266, 3906686.202349001076072 ], [ 4963986.009022319689393, 3906665.530645377933979 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963895.84155497699976, 3909051.544281270820647 ], [ 4963856.389489151537418, 3909056.943674388807267 ], [ 4963853.541010670363903, 3909037.640148222912103 ], [ 4963892.993682171218097, 3909031.876619657501578 ], [ 4963895.84155497699976, 3909051.544281270820647 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963545.087626481428742, 3904163.978342974558473 ], [ 4963560.127499111928046, 3904122.126936435699463 ], [ 4963593.22464051656425, 3904133.831263217143714 ], [ 4963578.184149250388145, 3904176.046781775541604 ], [ 4963545.087626481428742, 3904163.978342974558473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963481.825467786751688, 3892558.33126648934558 ], [ 4963490.403935273177922, 3892599.127150719054043 ], [ 4963467.349753135815263, 3892603.824610630515963 ], [ 4963466.205992643721402, 3892598.360884965863079 ], [ 4963452.373370237648487, 3892601.252196535468102 ], [ 4963444.938040929846466, 3892566.284176726359874 ], [ 4963481.825467786751688, 3892558.33126648934558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962898.36880617775023, 3903765.33710501017049 ], [ 4962861.177944361232221, 3903793.317583204247057 ], [ 4962833.014340409077704, 3903756.496752772945911 ], [ 4962869.917258577421308, 3903728.515790254808962 ], [ 4962898.36880617775023, 3903765.33710501017049 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962741.049212733283639, 3896548.032114494591951 ], [ 4962751.172285728156567, 3896521.102161174174398 ], [ 4962770.172393336892128, 3896528.049962179735303 ], [ 4962783.766641743481159, 3896491.65801732474938 ], [ 4962822.342393901199102, 3896505.918698160443455 ], [ 4962807.011403674259782, 3896547.769880899228156 ], [ 4962798.087165575474501, 3896544.478920378256589 ], [ 4962789.988224756903946, 3896566.31417173659429 ], [ 4962741.049212733283639, 3896548.032114494591951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951310.062074534595013, 3893473.043070555664599 ], [ 4951275.199306631460786, 3893478.101911680772901 ], [ 4951265.48200261220336, 3893408.906626343261451 ], [ 4951300.632934109307826, 3893403.848094840999693 ], [ 4951310.062074534595013, 3893473.043070555664599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951150.615166757255793, 3896966.682813168969005 ], [ 4951207.646197378635406, 3896967.11044258158654 ], [ 4951207.32325978204608, 3896998.425207542255521 ], [ 4951082.316319216042757, 3896997.193792368285358 ], [ 4951082.34622417204082, 3896970.248253132216632 ], [ 4951096.459658335894346, 3896970.628049693070352 ], [ 4951096.472596326842904, 3896958.975924753118306 ], [ 4951123.548134536482394, 3896959.006001841276884 ], [ 4951123.558251510374248, 3896949.902779296040535 ], [ 4951150.633393816649914, 3896950.297012560069561 ], [ 4951150.615166757255793, 3896966.682813168969005 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962637.500423357822001, 3895517.386404069140553 ], [ 4962660.518306558951735, 3895534.53592746052891 ], [ 4962655.034084198996425, 3895541.810064684133977 ], [ 4962680.066058981232345, 3895560.419224473647773 ], [ 4962657.551960753276944, 3895590.243134160060436 ], [ 4962609.789621512405574, 3895554.849066811148077 ], [ 4962637.500423357822001, 3895517.386404069140553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962528.591605286113918, 3893469.721441981848329 ], [ 4962519.924200038425624, 3893486.093931306153536 ], [ 4962486.822959989309311, 3893468.200825326610357 ], [ 4962507.334963698871434, 3893429.998772430699319 ], [ 4962549.071782625280321, 3893452.274713570717722 ], [ 4962537.226586339995265, 3893474.468376487959176 ], [ 4962528.591605286113918, 3893469.721441981848329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950926.125897983089089, 3894455.035763408523053 ], [ 4950965.598780640400946, 3894447.796790848951787 ], [ 4950970.75334710534662, 3894475.476278972346336 ], [ 4950930.992439505644143, 3894482.714926036540419 ], [ 4950926.125897983089089, 3894455.035763408523053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961995.506625591777265, 3896036.018135622609407 ], [ 4961986.4982426809147, 3896088.074979455210268 ], [ 4961930.055914228782058, 3896078.158011307008564 ], [ 4961934.411891339346766, 3896054.860325370915234 ], [ 4961945.354933548718691, 3896056.697536616586149 ], [ 4961950.295292301103473, 3896027.938798096496612 ], [ 4961995.506625591777265, 3896036.018135622609407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961986.341538297012448, 3901512.518494171556085 ], [ 4961993.297432136721909, 3901483.398595917969942 ], [ 4962043.677848366089165, 3901495.127196587622166 ], [ 4962036.721350307576358, 3901524.611211703624576 ], [ 4961986.341538297012448, 3901512.518494171556085 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961969.384846859611571, 3910040.452060860581696 ], [ 4961926.188098810613155, 3910048.39754069969058 ], [ 4961915.620220808312297, 3909992.66928123915568 ], [ 4961915.620220808312297, 3909992.66928123915568 ], [ 4961910.765081722289324, 3909966.80853106547147 ], [ 4961951.082421272993088, 3909959.222796891350299 ], [ 4961955.936971262097359, 3909985.447685812599957 ], [ 4961971.487881370820105, 3909982.558191865682602 ], [ 4961976.915442896075547, 3910010.604615651071072 ], [ 4961964.244077759794891, 3910013.134337545372546 ], [ 4961969.384846859611571, 3910040.452060860581696 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961855.058001227676868, 3897864.10002580890432 ], [ 4961837.990124172531068, 3897913.231762637849897 ], [ 4961810.353778403252363, 3897903.722672152798623 ], [ 4961804.2777313394472, 3897921.919991428032517 ], [ 4961753.323232531547546, 3897904.36493376083672 ], [ 4961766.630129660479724, 3897866.151366224512458 ], [ 4961793.979050924070179, 3897875.295848172158003 ], [ 4961790.797014867886901, 3897884.394292094744742 ], [ 4961812.100626147352159, 3897891.344896957743913 ], [ 4961818.754389789886773, 3897872.056062504183501 ], [ 4961791.981529525481164, 3897862.912424225360155 ], [ 4961804.710797090083361, 3897825.790394318290055 ], [ 4961826.877436742186546, 3897833.470572179649025 ], [ 4961820.512785070575774, 3897852.031581107061356 ], [ 4961855.058001227676868, 3897864.10002580890432 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961815.516713542863727, 3893336.821386988740414 ], [ 4961850.455351654440165, 3893282.983073225710541 ], [ 4961876.069445701315999, 3893299.407562300097197 ], [ 4961869.42772307433188, 3893309.957260284107178 ], [ 4961886.695815457031131, 3893320.907219463028014 ], [ 4961858.398853503167629, 3893364.195784573908895 ], [ 4961815.516713542863727, 3893336.821386988740414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961766.03457956854254, 3899025.539942824747413 ], [ 4961751.309575714170933, 3899049.550329585559666 ], [ 4961710.448684990406036, 3899024.727950054686517 ], [ 4961730.659675541333854, 3898991.622553632128984 ], [ 4961745.622784934937954, 3899000.748342971783131 ], [ 4961740.1367720188573, 3899009.843327600043267 ], [ 4961766.03457956854254, 3899025.539942824747413 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961688.561161087825894, 3898257.837439720984548 ], [ 4961674.654424602165818, 3898312.071864625439048 ], [ 4961639.528733161278069, 3898303.279944010544568 ], [ 4961653.435403237119317, 3898249.045501212589443 ], [ 4961688.561161087825894, 3898257.837439720984548 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961507.920171300880611, 3908094.926513741724193 ], [ 4961464.734059444628656, 3908093.769446555059403 ], [ 4961465.646319922059774, 3908061.363065444864333 ], [ 4961508.831938241608441, 3908062.884265235159546 ], [ 4961507.920171300880611, 3908094.926513741724193 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961501.74447962641716, 3892219.931355168111622 ], [ 4961550.13350972905755, 3892226.558159661013633 ], [ 4961545.182523519732058, 3892262.235334167256951 ], [ 4961537.981961270794272, 3892261.132157288957387 ], [ 4961535.07052668556571, 3892281.518992302473634 ], [ 4961482.648907111957669, 3892274.522051031235605 ], [ 4961486.433831191621721, 3892247.946332813240588 ], [ 4961497.378999403677881, 3892249.41922992374748 ], [ 4961501.74447962641716, 3892219.931355168111622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961434.932183862663805, 3895672.501501930411905 ], [ 4961439.316649219952524, 3895629.904934332240373 ], [ 4961492.021967045962811, 3895635.44572218414396 ], [ 4961490.853952107019722, 3895646.003721889108419 ], [ 4961510.150689905509353, 3895647.853261813987046 ], [ 4961506.646082698367536, 3895679.891387591138482 ], [ 4961434.932183862663805, 3895672.501501930411905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950481.300450308248401, 3891854.670701095368713 ], [ 4950512.14099414460361, 3891841.231505239382386 ], [ 4950530.533307378180325, 3891883.126279199495912 ], [ 4950499.980894222855568, 3891896.565767719876021 ], [ 4950481.300450308248401, 3891854.670701095368713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961017.270652416162193, 3898583.460347685031593 ], [ 4961028.260687566362321, 3898552.889700664207339 ], [ 4961084.683576363138855, 3898572.636274710763246 ], [ 4961073.693485012277961, 3898603.206899015232921 ], [ 4961017.270652416162193, 3898583.460347685031593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961009.20955763105303, 3898970.518523927312344 ], [ 4961027.864858808927238, 3899014.969981707632542 ], [ 4960984.923617599532008, 3899033.112964153289795 ], [ 4960980.332056541927159, 3899021.818147564306855 ], [ 4960969.092455429956317, 3899026.535225486848503 ], [ 4960955.028645648621023, 3898993.378619404044002 ], [ 4961009.20955763105303, 3898970.518523927312344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949929.090628310106695, 3892064.906241687946022 ], [ 4949905.183032376691699, 3892061.239466456696391 ], [ 4949910.403978328220546, 3892028.109357764013112 ], [ 4949960.235076327808201, 3892036.173347842879593 ], [ 4949947.766344004310668, 3892111.898720116820186 ], [ 4949922.130643014796078, 3892107.865956799127162 ], [ 4949929.090628310106695, 3892064.906241687946022 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949668.558850433677435, 3900876.19279495626688 ], [ 4949673.201053961180151, 3900843.790117974858731 ], [ 4949750.948006800375879, 3900855.160487915854901 ], [ 4949746.596409589983523, 3900885.014548605773598 ], [ 4949726.151810512878001, 3900882.079837670084089 ], [ 4949723.25025150924921, 3900902.468054026830941 ], [ 4949699.926094486378133, 3900899.166182294953614 ], [ 4949702.53732758294791, 3900880.962437224574387 ], [ 4949668.558850433677435, 3900876.19279495626688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949627.958517372608185, 3895140.381083918735385 ], [ 4949662.52421813737601, 3895141.509982286952436 ], [ 4949660.429697095416486, 3895215.425945126451552 ], [ 4949625.863706923089921, 3895214.661177954636514 ], [ 4949627.958517372608185, 3895140.381083918735385 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959600.76032255217433, 3905058.192119555082172 ], [ 4959623.813550263643265, 3905046.208698230795562 ], [ 4959633.864268112927675, 3905065.522010109852999 ], [ 4959652.88306943513453, 3905055.717638845089823 ], [ 4959674.994367510080338, 3905098.352606617379934 ], [ 4959647.330835044384003, 3905112.514184026513249 ], [ 4959645.608336245641112, 3905108.870409964583814 ], [ 4959630.912468794733286, 3905116.13204169459641 ], [ 4959600.76032255217433, 3905058.192119555082172 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959472.837774443440139, 3901059.489259744528681 ], [ 4959481.289560948498547, 3900989.224118216428906 ], [ 4959492.519272143952549, 3900990.696616324596107 ], [ 4959494.851726358756423, 3900970.672765056136996 ], [ 4959511.264829657971859, 3900972.516777834389359 ], [ 4959512.43028649687767, 3900963.051047510001808 ], [ 4959547.847412291914225, 3900967.471057143062353 ], [ 4959542.019037174060941, 3901015.527961540501565 ], [ 4959506.025467034429312, 3901011.47126921499148 ], [ 4959504.568392349407077, 3901023.485497653018683 ], [ 4959505.144380525685847, 3901023.48631750466302 ], [ 4959500.192511933855712, 3901062.805350796319544 ], [ 4959472.837774443440139, 3901059.489259744528681 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959392.436315081082284, 3898660.121662794146687 ], [ 4959395.98298320453614, 3898596.403971673920751 ], [ 4959442.927154119126499, 3898598.655414972919971 ], [ 4959439.674602759070694, 3898658.003959697671235 ], [ 4959418.074696376919746, 3898656.880889005959034 ], [ 4959417.780472100712359, 3898661.250029519200325 ], [ 4959392.436315081082284, 3898660.121662794146687 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959216.864709212444723, 3907951.036568647250533 ], [ 4959209.622471855022013, 3907982.341680777259171 ], [ 4959219.984487088397145, 3907984.541113341692835 ], [ 4959210.713959748856723, 3908024.946657782420516 ], [ 4959166.676731012761593, 3908014.688783983699977 ], [ 4959170.733294598758221, 3907996.487912643235177 ], [ 4959156.917788436636329, 3907993.191230895929039 ], [ 4959163.290036641061306, 3907966.254459793679416 ], [ 4959177.969314851798117, 3907969.552364014089108 ], [ 4959184.052641598507762, 3907943.343454183544964 ], [ 4959216.864709212444723, 3907951.036568647250533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959107.481792096048594, 3906910.19356827577576 ], [ 4959117.857058502733707, 3906903.289686207659543 ], [ 4959109.811406042426825, 3906891.626135239843279 ], [ 4959127.968524294905365, 3906879.271247773431242 ], [ 4959132.278767237439752, 3906885.467562498990446 ], [ 4959161.09860947355628, 3906866.57336210925132 ], [ 4959195.290978969074786, 3906917.235928293317556 ], [ 4959173.099226702935994, 3906932.133997763972729 ], [ 4959164.191869352012873, 3906919.012687392998487 ], [ 4959129.031445636413991, 3906942.267526072449982 ], [ 4959107.481792096048594, 3906910.19356827577576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958770.194593412801623, 3900601.879728361964226 ], [ 4958855.43810429982841, 3900604.911907655186951 ], [ 4958854.244842726737261, 3900634.404790528584272 ], [ 4958769.001425258815289, 3900631.372614975087345 ], [ 4958770.194593412801623, 3900601.879728361964226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958697.146229902282357, 3899494.093935782555491 ], [ 4958733.432502874173224, 3899496.329296227078885 ], [ 4958731.374283415265381, 3899526.549218653701246 ], [ 4958755.277091545984149, 3899528.039082451257855 ], [ 4958753.803506975062191, 3899552.069608848076314 ], [ 4958693.902530032210052, 3899548.344791836570948 ], [ 4958697.146229902282357, 3899494.093935782555491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948726.543628160841763, 3893812.559323969762772 ], [ 4948752.469677723944187, 3893812.949963308405131 ], [ 4948752.164098341017962, 3893830.063697041012347 ], [ 4948726.238437439315021, 3893829.308929726481438 ], [ 4948726.543628160841763, 3893812.559323969762772 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958135.265443839132786, 3900312.609711415600032 ], [ 4958186.23974378593266, 3900314.136236883234233 ], [ 4958185.035194960422814, 3900352.368252761196345 ], [ 4958134.060467751696706, 3900351.205859060399234 ], [ 4958135.265443839132786, 3900312.609711415600032 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957854.213586149737239, 3897958.125438898336142 ], [ 4957853.31479499861598, 3897983.613292683847249 ], [ 4957817.02541715092957, 3897982.107380444183946 ], [ 4957818.212200884707272, 3897956.619917315430939 ], [ 4957854.213586149737239, 3897958.125438898336142 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957612.159642986953259, 3896336.692364826798439 ], [ 4957643.546119838021696, 3896344.381556152366102 ], [ 4957633.696923270821571, 3896385.514837680384517 ], [ 4957602.309999242424965, 3896378.189786337781698 ], [ 4957612.159642986953259, 3896336.692364826798439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947322.61544119566679, 3890704.782587558031082 ], [ 4947338.128221439197659, 3890751.041887697763741 ], [ 4947310.461045297794044, 3890760.482383547350764 ], [ 4947294.948222940787673, 3890714.223099120892584 ], [ 4947322.61544119566679, 3890704.782587558031082 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947300.998945184051991, 3889524.259169273078442 ], [ 4947262.099233533255756, 3889528.226912899874151 ], [ 4947256.961726509034634, 3889477.972318715415895 ], [ 4947295.861510085873306, 3889474.004567766096443 ], [ 4947300.998945184051991, 3889524.259169273078442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946599.893821116536856, 3891174.18071079486981 ], [ 4946600.794170332141221, 3891135.94811423169449 ], [ 4946633.06068703904748, 3891136.706813832279295 ], [ 4946632.160291962325573, 3891174.939409331884235 ], [ 4946599.893821116536856, 3891174.18071079486981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956623.983777127228677, 3897131.72478393279016 ], [ 4956634.967005100101233, 3897102.973011507187039 ], [ 4956701.757762393914163, 3897128.550081592984498 ], [ 4956690.774953421205282, 3897156.937698317691684 ], [ 4956623.983777127228677, 3897131.72478393279016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955990.595870555378497, 3905149.412974569480866 ], [ 4955958.024142313748598, 3905175.224202110432088 ], [ 4955912.025947909802198, 3905117.996227601543069 ], [ 4955944.597701120190322, 3905092.184945214539766 ], [ 4955990.595870555378497, 3905149.412974569480866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955742.900489995256066, 3900931.731491340324283 ], [ 4955741.988371550105512, 3900969.235741035081446 ], [ 4955702.822496980428696, 3900968.093114393763244 ], [ 4955704.023022686131299, 3900930.225102888885885 ], [ 4955742.900489995256066, 3900931.731491340324283 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955442.463318052701652, 3898260.454088747035712 ], [ 4955432.634392601437867, 3898288.843704230152071 ], [ 4955404.996177316643298, 3898279.341197640169412 ], [ 4955414.825077012181282, 3898250.951572214253247 ], [ 4955442.463318052701652, 3898260.454088747035712 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944819.773570970632136, 3891447.113781332038343 ], [ 4944821.238955101929605, 3891418.713075051084161 ], [ 4944812.020169953815639, 3891418.340866247657686 ], [ 4944813.187557083554566, 3891401.227869371883571 ], [ 4944823.846514770761132, 3891401.965469381771982 ], [ 4944824.722300610505044, 3891388.857626377604902 ], [ 4944860.15635334700346, 3891391.07348856376484 ], [ 4944858.110256317071617, 3891424.571475591976196 ], [ 4944875.107016181573272, 3891425.678789965808392 ], [ 4944873.644774995744228, 3891450.438215291593224 ], [ 4944819.773570970632136, 3891447.113781332038343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954582.488203184679151, 3895885.249982276931405 ], [ 4954608.387773605063558, 3895905.309214826673269 ], [ 4954562.2268430525437, 3895964.24089882383123 ], [ 4954536.32729513105005, 3895944.181710052769631 ], [ 4954582.488203184679151, 3895885.249982276931405 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954500.631259568035603, 3894994.853007823228836 ], [ 4954551.967053763568401, 3894945.395013319794089 ], [ 4954575.55811670795083, 3894969.456761041190475 ], [ 4954523.933815749362111, 3895019.27848307788372 ], [ 4954500.631259568035603, 3894994.853007823228836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944724.899037249386311, 3890891.007269537542015 ], [ 4944754.557058383710682, 3890909.967835699208081 ], [ 4944761.769491109997034, 3890898.686174656264484 ], [ 4944776.454438439570367, 3890908.166347956284881 ], [ 4944768.953899725340307, 3890919.447753093671054 ], [ 4944781.047506307251751, 3890927.105022434145212 ], [ 4944761.429803992621601, 3890957.674610732123256 ], [ 4944749.048103565350175, 3890950.017098267562687 ], [ 4944745.874526258558035, 3890955.112116511445493 ], [ 4944727.158072500489652, 3890943.443671095184982 ], [ 4944723.119238710962236, 3890949.630320413969457 ], [ 4944697.780232325196266, 3890933.58657864946872 ], [ 4944724.899037249386311, 3890891.007269537542015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954102.444399741478264, 3895303.508966135326773 ], [ 4954112.271667945198715, 3895276.211299913469702 ], [ 4954201.530986807309091, 3895307.27153371879831 ], [ 4954186.210963149555027, 3895350.584115785546601 ], [ 4954154.826353117823601, 3895339.621809281408787 ], [ 4954151.358105840161443, 3895349.084919523913413 ], [ 4954125.73235347494483, 3895339.95034132245928 ], [ 4954131.223659452050924, 3895325.027766589540988 ], [ 4954117.402799970470369, 3895320.277187132276595 ], [ 4954121.159984800033271, 3895310.086167894303799 ], [ 4954102.444399741478264, 3895303.508966135326773 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944198.788247080519795, 3892956.980514710303396 ], [ 4944195.011190353892744, 3892994.482516918797046 ], [ 4944203.652972248382866, 3892995.218150722794235 ], [ 4944201.90956982690841, 3893012.694826177787036 ], [ 4944192.691944374702871, 3893011.594573081005365 ], [ 4944190.948239401914179, 3893029.43537757685408 ], [ 4944158.109940571710467, 3893026.130219978280365 ], [ 4944165.085619008168578, 3892953.674611004069448 ], [ 4944198.788247080519795, 3892956.980514710303396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943884.13925698492676, 3892007.43128604022786 ], [ 4943885.31277307216078, 3891982.307428398635238 ], [ 4943896.259616455994546, 3891983.044903475325555 ], [ 4943897.720929386094213, 3891958.285417341627181 ], [ 4943926.816607574000955, 3891960.130583900492638 ], [ 4943922.720994123257697, 3892034.045153944287449 ], [ 4943888.727858278900385, 3892032.195867285598069 ], [ 4943890.188855042681098, 3892007.800507976673543 ], [ 4943884.13925698492676, 3892007.43128604022786 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953337.553440094925463, 3890079.526235320605338 ], [ 4953301.244463846087456, 3890085.308974644634873 ], [ 4953296.954042952507734, 3890059.086650272365659 ], [ 4953333.263053662143648, 3890053.303905243054032 ], [ 4953337.553440094925463, 3890079.526235320605338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953249.850363611243665, 3892598.460501566063613 ], [ 4953210.074375985190272, 3892615.52722406340763 ], [ 4953195.422321286983788, 3892581.64586381521076 ], [ 4953255.950854003429413, 3892555.864735121838748 ], [ 4953265.431202217005193, 3892578.087858309503645 ], [ 4953244.678711921907961, 3892586.802235972136259 ], [ 4953249.850363611243665, 3892598.460501566063613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943564.401463503018022, 3893690.893610968720168 ], [ 4943554.007283772341907, 3893719.28701278893277 ], [ 4943451.772571058012545, 3893681.697146164253354 ], [ 4943462.454730310477316, 3893653.303943465929478 ], [ 4943564.401463503018022, 3893690.893610968720168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943548.747012457810342, 3889294.033957202918828 ], [ 4943538.050964121706784, 3889336.992149106692523 ], [ 4943487.064385390840471, 3889324.205466039013118 ], [ 4943491.400936163961887, 3889306.36679903510958 ], [ 4943484.199450610205531, 3889304.540204839315265 ], [ 4943490.558564258739352, 3889279.784785659983754 ], [ 4943548.747012457810342, 3889294.033957202918828 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943474.616558318957686, 3889395.200063596945256 ], [ 4943482.704355583526194, 3889370.446070235688239 ], [ 4943489.905522390268743, 3889372.636791488155723 ], [ 4943498.86071113217622, 3889344.242244399152696 ], [ 4943539.763077746145427, 3889357.020588377956301 ], [ 4943522.719711320474744, 3889410.533228558022529 ], [ 4943474.616558318957686, 3889395.200063596945256 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943455.850049985572696, 3889442.157025157939643 ], [ 4943464.48908301256597, 3889447.626076155807823 ], [ 4943452.66090496443212, 3889466.186816923785955 ], [ 4943414.361331017687917, 3889441.758664988446981 ], [ 4943428.209025219082832, 3889419.922424509655684 ], [ 4943419.282157650217414, 3889414.089020300656557 ], [ 4943431.97559277061373, 3889394.436596283689141 ], [ 4943470.563336649909616, 3889418.865010741632432 ], [ 4943455.850049985572696, 3889442.157025157939643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943031.285294262692332, 3889647.541874189395458 ], [ 4943016.578703468665481, 3889663.187455417122692 ], [ 4942991.531471181660891, 3889639.863017811439931 ], [ 4943023.540367661975324, 3889605.296789267566055 ], [ 4943057.800529823638499, 3889637.00366393988952 ], [ 4943040.210397723130882, 3889655.559915102086961 ], [ 4943031.285294262692332, 3889647.541874189395458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952935.688677784986794, 3891991.814641808625311 ], [ 4952916.987218311987817, 3891971.037293509580195 ], [ 4952927.658172627910972, 3891961.218400103505701 ], [ 4952914.998456940986216, 3891947.36661085486412 ], [ 4952937.205094483681023, 3891927.365717841777951 ], [ 4952992.734108737669885, 3891988.968907232861966 ], [ 4952969.373829055577517, 3892010.060778934974223 ], [ 4952945.205549723468721, 3891983.450908390805125 ], [ 4952935.688677784986794, 3891991.814641808625311 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952514.476384191773832, 3891763.741337601095438 ], [ 4952450.496005060151219, 3891784.058194894343615 ], [ 4952441.597647876478732, 3891756.009993454441428 ], [ 4952467.535354941152036, 3891748.029276429209858 ], [ 4952462.943191593512893, 3891733.094686107244343 ], [ 4952487.728129139170051, 3891725.476778591051698 ], [ 4952491.460230610333383, 3891736.769091081805527 ], [ 4952504.717192564159632, 3891732.779088438954204 ], [ 4952514.476384191773832, 3891763.741337601095438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952281.490699810907245, 3893190.1265275971964 ], [ 4952280.020889692939818, 3893215.613830652553588 ], [ 4952246.605549624189734, 3893214.118768345098943 ], [ 4952247.78725009970367, 3893188.631131323985755 ], [ 4952281.490699810907245, 3893190.1265275971964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952052.317009583115578, 3893573.654518568888307 ], [ 4952049.375781048089266, 3893626.449802483431995 ], [ 4952022.586626620963216, 3893624.962609888985753 ], [ 4952023.174860933795571, 3893614.403552375733852 ], [ 4951996.097619589418173, 3893612.916056438814849 ], [ 4951996.686260199174285, 3893601.992870247457176 ], [ 4951985.164148278534412, 3893601.251437565777451 ], [ 4951987.223545129410923, 3893563.748542004730552 ], [ 4952002.778709275647998, 3893564.494588745757937 ], [ 4952002.195480269379914, 3893570.684108439832926 ], [ 4952052.317009583115578, 3893573.654518568888307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950991.652691535651684, 3901100.107953489758074 ], [ 4950968.325639626011252, 3901099.718019045423716 ], [ 4950968.631349202245474, 3901083.696626136545092 ], [ 4950992.246005478315055, 3901084.451009341515601 ], [ 4950991.652691535651684, 3901100.107953489758074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950423.269121562130749, 3892500.571308322716504 ], [ 4950429.060470188036561, 3892473.267964382655919 ], [ 4950440.581130978651345, 3892475.829369417857379 ], [ 4950441.449737114831805, 3892471.824900334235281 ], [ 4950490.988996236585081, 3892482.438459099270403 ], [ 4950483.172278810292482, 3892517.750412160530686 ], [ 4950448.609960423782468, 3892510.430284904781729 ], [ 4950449.478962128050625, 3892506.061688021756709 ], [ 4950423.269121562130749, 3892500.571308322716504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950415.472488526254892, 3890658.438317649532109 ], [ 4950443.409199628978968, 3890667.20770897064358 ], [ 4950433.86932270321995, 3890697.055848587304354 ], [ 4950462.95801061950624, 3890706.190638907253742 ], [ 4950450.238696068525314, 3890745.502647451590747 ], [ 4950400.989850362762809, 3890729.791700569912791 ], [ 4950412.263836802914739, 3890694.847637517843395 ], [ 4950404.487772070802748, 3890692.290308297146112 ], [ 4950415.472488526254892, 3890658.438317649532109 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950038.863477648235857, 3892055.192100094165653 ], [ 4950084.654196132905781, 3892069.806304060854018 ], [ 4950062.973688241094351, 3892138.603308664169163 ], [ 4950036.190351071767509, 3892130.199666895437986 ], [ 4950048.909969544969499, 3892089.430919385049492 ], [ 4950029.902278026565909, 3892083.584512552712113 ], [ 4950038.863477648235857, 3892055.192100094165653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947103.015827206894755, 3899457.136799978557974 ], [ 4947119.407212969847023, 3899483.369920093100518 ], [ 4947068.110547550022602, 3899515.364023108035326 ], [ 4947051.719131323508918, 3899489.130933771375567 ], [ 4947103.015827206894755, 3899457.136799978557974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947008.059577200561762, 3898764.834953795652837 ], [ 4946980.97365743573755, 3898777.553549504838884 ], [ 4946966.026674399152398, 3898746.224091754294932 ], [ 4946993.112618620507419, 3898733.505481213796884 ], [ 4947008.059577200561762, 3898764.834953795652837 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946747.018352803774178, 3890970.044003920163959 ], [ 4946768.044601364992559, 3890975.525872292462736 ], [ 4946761.683904317207634, 3890999.188157239928842 ], [ 4946740.657672978006303, 3890993.706293769180775 ], [ 4946747.018352803774178, 3890970.044003920163959 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945581.071480798535049, 3889694.151917766314 ], [ 4945607.278774839825928, 3889706.555989138316363 ], [ 4945591.691536257043481, 3889738.585114173125476 ], [ 4945565.772381426766515, 3889726.181318318936974 ], [ 4945581.071480798535049, 3889694.151917766314 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944534.900949426926672, 3893046.480990302283317 ], [ 4944515.31311453692615, 3893044.643389802891761 ], [ 4944513.862318468280137, 3893056.65837248088792 ], [ 4944484.480731467716396, 3893053.719935995992273 ], [ 4944483.026802886277437, 3893069.376201986335218 ], [ 4944457.965788047760725, 3893067.169785484671593 ], [ 4944460.579565150663257, 3893042.775437254458666 ], [ 4944450.209642060101032, 3893041.674101016949862 ], [ 4944456.018695345148444, 3892986.695723270531744 ], [ 4944497.498466538265347, 3892991.101101078558713 ], [ 4944497.498151666484773, 3892991.465229222550988 ], [ 4944530.04837135411799, 3892994.770551838446409 ], [ 4944528.886276634410024, 3893006.057526515331119 ], [ 4944538.680050300434232, 3893007.158393975812942 ], [ 4944534.900949426926672, 3893046.480990302283317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944104.311963079497218, 3893279.153701736126095 ], [ 4944144.352195363491774, 3893282.100798116531223 ], [ 4944140.853414638899267, 3893331.25516338320449 ], [ 4944100.813255194574594, 3893328.308072133455426 ], [ 4944104.311963079497218, 3893279.153701736126095 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943593.705954988487065, 3893092.654840881470591 ], [ 4943595.172378427349031, 3893061.341015245299786 ], [ 4943585.089901715517044, 3893060.968508476857096 ], [ 4943585.971384, 3893040.213920998387039 ], [ 4943598.93466476816684, 3893040.588822775986046 ], [ 4943600.107870859093964, 3893015.464937580749393 ], [ 4943629.491111085750163, 3893016.581766670104116 ], [ 4943626.257677679881454, 3893094.138428544159979 ], [ 4943593.705954988487065, 3893092.654840881470591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943352.019272417761385, 3889223.230768003966659 ], [ 4943346.519247523508966, 3889254.541222096886486 ], [ 4943356.890077764168382, 3889256.370384961832315 ], [ 4943352.837238324806094, 3889279.671220584306866 ], [ 4943305.592140995897353, 3889271.621617152355611 ], [ 4943315.144923898391426, 3889217.010312986560166 ], [ 4943352.019272417761385, 3889223.230768003966659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943081.925417793914676, 3891505.727564803790301 ], [ 4943090.045646330341697, 3891439.826977741904557 ], [ 4943201.81649449467659, 3891453.026615663897246 ], [ 4943198.625136695802212, 3891480.333616014104337 ], [ 4943291.671002690680325, 3891491.697707538958639 ], [ 4943285.291402853094041, 3891542.306282569654286 ], [ 4943182.451046067290008, 3891530.205964627210051 ], [ 4943179.259122967720032, 3891558.241224205587059 ], [ 4943153.909387742169201, 3891554.943406701087952 ], [ 4943158.839651806280017, 3891514.893333751708269 ], [ 4943081.925417793914676, 3891505.727564803790301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993758.570956151932478, 3910901.613032531458884 ], [ 4993751.017076945863664, 3910927.081993523519486 ], [ 4993732.319095145910978, 3910921.569538721814752 ], [ 4993724.763281776569784, 3910947.766769182402641 ], [ 4993689.95635580457747, 3910937.47715680161491 ], [ 4993705.065970850177109, 3910885.810940923634917 ], [ 4993758.570956151932478, 3910901.613032531458884 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992129.921926257200539, 3912449.568591895513237 ], [ 4992166.772380967624485, 3912448.573442316614091 ], [ 4992167.570631710812449, 3912473.336649579927325 ], [ 4992130.719250194728374, 3912474.695929379202425 ], [ 4992129.921926257200539, 3912449.568591895513237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990248.573828705586493, 3908786.951327238231897 ], [ 4990206.265879228711128, 3908781.016585771925747 ], [ 4990211.839927887544036, 3908740.6121382615529 ], [ 4990247.528784487396479, 3908745.43749090982601 ], [ 4990244.890830063261092, 3908763.637362573761493 ], [ 4990251.797892147675157, 3908764.747498777229339 ], [ 4990248.573828705586493, 3908786.951327238231897 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989948.271109412424266, 3912506.167959479615092 ], [ 4989957.412205195054412, 3912533.865502549801022 ], [ 4989902.959037305787206, 3912551.568845541682094 ], [ 4989893.817891550250351, 3912523.871320690028369 ], [ 4989948.271109412424266, 3912506.167959479615092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989148.539714527316391, 3907843.593959001358598 ], [ 4989122.053741419687867, 3907842.434644021559507 ], [ 4989121.450305681675673, 3907853.357099926564842 ], [ 4989096.404865108430386, 3907851.837316336110234 ], [ 4989098.532487842254341, 3907807.418503304943442 ], [ 4989134.805983419530094, 3907809.330786548554897 ], [ 4989135.407585530541837, 3907799.136591916438192 ], [ 4989150.665583672001958, 3907799.903411001898348 ], [ 4989148.539714527316391, 3907843.593959001358598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988783.151651799678802, 3908078.266956612467766 ], [ 4988830.078702239319682, 3908079.8414759314619 ], [ 4988828.538368582725525, 3908119.892200940754265 ], [ 4988804.643001883290708, 3908119.103846522513777 ], [ 4988804.623776256106794, 3908126.750585389323533 ], [ 4988781.304250970482826, 3908125.963699513114989 ], [ 4988783.151651799678802, 3908078.266956612467766 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988637.208026141859591, 3908065.5200230255723 ], [ 4988639.973966418765485, 3908110.67941624019295 ], [ 4988614.633518070913851, 3908112.072402765974402 ], [ 4988615.460754758678377, 3908126.639785465784371 ], [ 4988590.120322787202895, 3908128.03279513027519 ], [ 4988586.527047279290855, 3908068.306025106459856 ], [ 4988637.208026141859591, 3908065.5200230255723 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987903.245972736738622, 3903907.848304245155305 ], [ 4987917.562830948270857, 3903940.655676104594022 ], [ 4987880.663863901048899, 3903956.585959037300199 ], [ 4987853.750599873252213, 3903893.888580523896962 ], [ 4987881.423970590345562, 3903882.30496581364423 ], [ 4987894.02212078589946, 3903911.466745540965348 ], [ 4987903.245972736738622, 3903907.848304245155305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987579.12334553245455, 3907006.538660809863359 ], [ 4987622.625956196337938, 3906996.450374640524387 ], [ 4987643.420818450860679, 3907087.17072690743953 ], [ 4987599.630417598411441, 3907097.258268998470157 ], [ 4987579.12334553245455, 3907006.538660809863359 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987570.145913947373629, 3908543.884359464515001 ], [ 4987534.136963598430157, 3908551.806423106696457 ], [ 4987517.899228383786976, 3908481.48874520836398 ], [ 4987553.909166598692536, 3908473.202529619447887 ], [ 4987570.145913947373629, 3908543.884359464515001 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986915.329958057031035, 3896797.580216369591653 ], [ 4986943.803140108473599, 3896815.128036108333617 ], [ 4986911.993413594551384, 3896866.392668466083705 ], [ 4986883.520265323109925, 3896848.844881889875978 ], [ 4986915.329958057031035, 3896797.580216369591653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986425.317190370522439, 3910118.870880909729749 ], [ 4986378.37415208760649, 3910125.311440727673471 ], [ 4986372.711543321609497, 3910085.971340607386082 ], [ 4986381.064086549915373, 3910084.535055222455412 ], [ 4986379.080584805458784, 3910071.421455780975521 ], [ 4986416.23167968634516, 3910066.413677284028381 ], [ 4986417.64466892555356, 3910077.341097119264305 ], [ 4986429.74076275806874, 3910075.549774260725826 ], [ 4986432.572028649039567, 3910095.219829926732928 ], [ 4986421.916311048902571, 3910096.650512350257486 ], [ 4986425.317190370522439, 3910118.870880909729749 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985951.67880224622786, 3914799.391970985103399 ], [ 4985969.83418524172157, 3914790.696487324777991 ], [ 4985980.718829642981291, 3914812.934897496830672 ], [ 4985962.851304333657026, 3914821.631067363545299 ], [ 4985951.67880224622786, 3914799.391970985103399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985705.456620424054563, 3903925.063188072759658 ], [ 4985707.010593638755381, 3903997.529122232925147 ], [ 4985660.070133720524609, 3903998.508968296926469 ], [ 4985659.553556096740067, 3903973.74677476612851 ], [ 4985662.722016087733209, 3903973.390237433835864 ], [ 4985661.684499601833522, 3903925.686499364674091 ], [ 4985705.456620424054563, 3903925.063188072759658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985389.553741369396448, 3908873.228439419064671 ], [ 4985385.750067814253271, 3908898.708654503338039 ], [ 4985348.335705964826047, 3908892.793245972134173 ], [ 4985352.427254868671298, 3908867.313712582457811 ], [ 4985389.553741369396448, 3908873.228439419064671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985193.305498250760138, 3916326.575969841796905 ], [ 4985250.414720971137285, 3916276.825558312702924 ], [ 4985282.851042094640434, 3916314.044579597655684 ], [ 4985236.125392735935748, 3916354.716294195502996 ], [ 4985224.356459269300103, 3916341.215285437647253 ], [ 4985213.973770377226174, 3916349.929786629509181 ], [ 4985193.305498250760138, 3916326.575969841796905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985113.980924650095403, 3908769.522436265368015 ], [ 4985146.767283877357841, 3908784.529829840641469 ], [ 4985133.164477138780057, 3908814.356369883753359 ], [ 4985100.378146829083562, 3908799.348992626648396 ], [ 4985113.980924650095403, 3908769.522436265368015 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984734.366300251334906, 3916018.522038538940251 ], [ 4984769.816307550296187, 3915998.942588392179459 ], [ 4984784.719920394942164, 3916025.923781174235046 ], [ 4984749.269937699660659, 3916045.503211987670511 ], [ 4984734.366300251334906, 3916018.522038538940251 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984646.133945437148213, 3917059.738361231982708 ], [ 4984672.681516423821449, 3917031.034397065173835 ], [ 4984667.224064290523529, 3917026.28776117041707 ], [ 4984688.866660959087312, 3917002.670117911417037 ], [ 4984715.576541353017092, 3917027.130235277116299 ], [ 4984667.099404085427523, 3917079.086988737341017 ], [ 4984646.133945437148213, 3917059.738361231982708 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984387.691517015919089, 3909210.955505728721619 ], [ 4984435.792429882101715, 3909202.329394843894988 ], [ 4984442.045868173241615, 3909236.572587933391333 ], [ 4984393.945014517754316, 3909245.198687815573066 ], [ 4984387.691517015919089, 3909210.955505728721619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984058.405631085857749, 3915825.398286136332899 ], [ 4984020.6157934255898, 3915860.9951151474379 ], [ 4983996.497187154367566, 3915835.449361116625369 ], [ 4984034.287028548307717, 3915799.852498762775213 ], [ 4984058.405631085857749, 3915825.398286136332899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983951.185079506598413, 3916380.816871708258986 ], [ 4983935.315365687943995, 3916397.530016580130905 ], [ 4983914.637526, 3916377.81850765272975 ], [ 4983930.506388795562088, 3916361.469483233988285 ], [ 4983951.185079506598413, 3916380.816871708258986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983462.997372063808143, 3909306.750174673274159 ], [ 4983418.928478224202991, 3909315.023223049007356 ], [ 4983413.813582878559828, 3909285.880762953311205 ], [ 4983457.881679797545075, 3909277.971837196964771 ], [ 4983462.997372063808143, 3909306.750174673274159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983327.920121631585062, 3909950.952951323706657 ], [ 4983302.528713313862681, 3909975.291203666012734 ], [ 4983243.075786067172885, 3909913.615486684255302 ], [ 4983268.467198425903916, 3909889.277179096825421 ], [ 4983327.920121631585062, 3909950.952951323706657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983226.822286359965801, 3907848.581356024369597 ], [ 4983266.861788454465568, 3907840.662826694082469 ], [ 4983265.152751601301134, 3907832.647967523429543 ], [ 4983289.637817581184208, 3907827.606636320706457 ], [ 4983290.492332654073834, 3907831.614066654350609 ], [ 4983335.141142603009939, 3907822.613884788937867 ], [ 4983349.939681728370488, 3907897.659375777002424 ], [ 4983240.480353871360421, 3907918.890434179455042 ], [ 4983226.822286359965801, 3907848.581356024369597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983205.117329102009535, 3895403.986667947843671 ], [ 4983159.294891242869198, 3895413.348471925593913 ], [ 4983142.484133995138109, 3895333.201218720991164 ], [ 4983172.456958307884634, 3895326.715909626334906 ], [ 4983176.445272291079164, 3895346.023972902912647 ], [ 4983192.295844506472349, 3895342.783324321266264 ], [ 4983205.117329102009535, 3895403.986667947843671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982996.211397364735603, 3916859.990428089164197 ], [ 4983012.265092133544385, 3916888.065696714445949 ], [ 4982987.191755562089384, 3916902.209302105009556 ], [ 4982971.138879870064557, 3916873.769915595185012 ], [ 4982996.211397364735603, 3916859.990428089164197 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982664.983933670446277, 3916330.143667578697205 ], [ 4982624.982210522517562, 3916327.139161377679557 ], [ 4982628.257341545075178, 3916279.445039083715528 ], [ 4982643.797697635367513, 3916280.572957229334861 ], [ 4982644.993963518179953, 3916260.912434446625412 ], [ 4982669.743249883875251, 3916262.789686506614089 ], [ 4982664.983933670446277, 3916330.143667578697205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982677.718141913414001, 3904841.409670926164836 ], [ 4982700.904955787584186, 3904901.544431256595999 ], [ 4982661.421340721659362, 3904916.383573869708925 ], [ 4982638.233619698323309, 3904856.612976949196309 ], [ 4982677.718141913414001, 3904841.409670926164836 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982058.241835789754987, 3915945.693926225882024 ], [ 4982022.521562310867012, 3915958.357786819338799 ], [ 4982013.654719582758844, 3915933.576595249120146 ], [ 4982049.37419755384326, 3915921.276855494361371 ], [ 4982058.241835789754987, 3915945.693926225882024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981237.903285623528063, 3894665.803581648040563 ], [ 4981317.955289930105209, 3894679.090999486390501 ], [ 4981311.236304839141667, 3894720.950884092133492 ], [ 4981230.896360237151384, 3894707.662843201775104 ], [ 4981237.903285623528063, 3894665.803581648040563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981151.525604309514165, 3906793.717045878060162 ], [ 4981178.630217884667218, 3906776.299138688016683 ], [ 4981196.993717174977064, 3906805.106543484609574 ], [ 4981210.833960859104991, 3906796.398251835256815 ], [ 4981221.162949752993882, 3906812.807251346763223 ], [ 4981210.206093445420265, 3906819.701310832053423 ], [ 4981220.823005506768823, 3906836.110952957998961 ], [ 4981193.430493029765785, 3906853.528175897430629 ], [ 4981182.526451577432454, 3906836.753771824762225 ], [ 4981180.219748665578663, 3906838.205155738629401 ], [ 4981151.525604309514165, 3906793.717045878060162 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981082.947137438692153, 3907592.106323034502566 ], [ 4981063.039873319678009, 3907610.268619058653712 ], [ 4981044.945260635577142, 3907590.201065592933446 ], [ 4981064.851716704666615, 3907572.402886942028999 ], [ 4981082.947137438692153, 3907592.106323034502566 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980977.66314363759011, 3909750.450140272732824 ], [ 4981022.927531035616994, 3909721.784309213515371 ], [ 4981082.888788202777505, 3909816.228183047380298 ], [ 4981037.625305565074086, 3909844.529783695470542 ], [ 4980977.66314363759011, 3909750.450140272732824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980575.294791440479457, 3906436.681554488837719 ], [ 4980601.811452433466911, 3906424.723752488847822 ], [ 4980612.98465365357697, 3906450.237680292222649 ], [ 4980586.756752694025636, 3906461.831976964138448 ], [ 4980575.294791440479457, 3906436.681554488837719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980542.886587968096137, 3899199.50076453294605 ], [ 4980563.51750052254647, 3899247.611509712878615 ], [ 4980527.193316167220473, 3899263.18898621853441 ], [ 4980506.274337274953723, 3899215.077633506152779 ], [ 4980542.886587968096137, 3899199.50076453294605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980499.971431327052414, 3904816.856653134804219 ], [ 4980541.787347109988332, 3904788.546610247343779 ], [ 4980562.166159080341458, 3904818.450383563525975 ], [ 4980520.35026815161109, 3904846.760395259596407 ], [ 4980499.971431327052414, 3904816.856653134804219 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980404.245221395045519, 3900556.31014447286725 ], [ 4980409.678731742314994, 3900573.800381543114781 ], [ 4980428.410687028430402, 3900568.379658459685743 ], [ 4980434.128970602527261, 3900587.327050825115293 ], [ 4980417.701818585395813, 3900592.388713012915105 ], [ 4980427.708813647739589, 3900625.546647083479911 ], [ 4980399.466543650254607, 3900633.859485232271254 ], [ 4980392.319471219554543, 3900609.811124528292567 ], [ 4980380.791519239544868, 3900613.427067394368351 ], [ 4980374.215615898370743, 3900591.564753199461848 ], [ 4980380.26759447157383, 3900589.757413372863084 ], [ 4980373.120492966845632, 3900565.709058420732617 ], [ 4980404.245221395045519, 3900556.31014447286725 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980334.485689170658588, 3901502.168728451244533 ], [ 4980318.91587838716805, 3901510.509516270365566 ], [ 4980313.466496421024203, 3901500.30187221057713 ], [ 4980293.572857968509197, 3901510.453827654011548 ], [ 4980277.799849371425807, 3901480.196308642625809 ], [ 4980343.247855056077242, 3901446.475953087210655 ], [ 4980357.300082067959011, 3901473.452546636108309 ], [ 4980327.602769467048347, 3901489.044882181100547 ], [ 4980334.485689170658588, 3901502.168728451244533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980264.586389064788818, 3907758.525609021540731 ], [ 4980279.338403335772455, 3907727.606762204319239 ], [ 4980349.806470611132681, 3907760.897711997851729 ], [ 4980335.054393275640905, 3907791.816520765889436 ], [ 4980264.586389064788818, 3907758.525609021540731 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980176.503689808771014, 3904597.302249087486416 ], [ 4980185.932759731076658, 3904630.823040525428951 ], [ 4980126.289286728948355, 3904647.442355227191001 ], [ 4980111.71682699304074, 3904595.703734669368714 ], [ 4980135.920275364071131, 3904588.838259401731193 ], [ 4980141.350739371031523, 3904607.420874644536525 ], [ 4980176.503689808771014, 3904597.302249087486416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979949.45605328772217, 3907032.847942891996354 ], [ 4979939.880406894721091, 3907066.691321046557277 ], [ 4979915.708653342910111, 3907060.084155887365341 ], [ 4979925.284271591342986, 3907026.240769244264811 ], [ 4979949.45605328772217, 3907032.847942891996354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979851.959617314860225, 3900114.502092481125146 ], [ 4979890.560074719600379, 3900110.944977100472897 ], [ 4979893.37575882486999, 3900140.445704948157072 ], [ 4979854.487339876592159, 3900144.002188351470977 ], [ 4979851.959617314860225, 3900114.502092481125146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979737.234950446523726, 3901615.563600910827518 ], [ 4979731.50055084284395, 3901603.898930402006954 ], [ 4979752.545858959667385, 3901593.749065874610096 ], [ 4979770.608227470889688, 3901630.929751426912844 ], [ 4979730.535167754627764, 3901650.505597180686891 ], [ 4979717.919175321236253, 3901624.988978102337569 ], [ 4979737.234950446523726, 3901615.563600910827518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979638.876014859415591, 3901421.632053543347865 ], [ 4979696.527034209109843, 3901397.360591990407556 ], [ 4979713.718515322543681, 3901437.816519140265882 ], [ 4979656.06756698153913, 3901462.087944408878684 ], [ 4979638.876014859415591, 3901421.632053543347865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979568.264015035703778, 3900384.798258692957461 ], [ 4979589.819822651334107, 3900405.236360498238355 ], [ 4979559.222228704951704, 3900437.213465217500925 ], [ 4979537.378423038870096, 3900416.774762973655015 ], [ 4979568.264015035703778, 3900384.798258692957461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979535.247056731022894, 3899540.307716851122677 ], [ 4979510.467148284427822, 3899545.351819317322224 ], [ 4979511.608137637376785, 3899550.452120059169829 ], [ 4979479.624842069111764, 3899556.937159508001059 ], [ 4979471.644965846091509, 3899517.957905649673194 ], [ 4979502.187465181574225, 3899511.833864586893469 ], [ 4979504.752724361605942, 3899524.219862384721637 ], [ 4979530.973491799086332, 3899518.814748434815556 ], [ 4979535.247056731022894, 3899540.307716851122677 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979283.800710101611912, 3909413.192375027574599 ], [ 4979278.915776362642646, 3909408.81223146757111 ], [ 4979269.393705957569182, 3909418.623250747099519 ], [ 4979244.110803327523172, 3909394.171773484442383 ], [ 4979274.6970847947523, 3909362.558265795465559 ], [ 4979304.864137019962072, 3909391.7540496988222 ], [ 4979283.800710101611912, 3909413.192375027574599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979217.374557727947831, 3909509.544150416273624 ], [ 4979210.144772446714342, 3909524.457995320204645 ], [ 4979197.489606341347098, 3909518.604574042372406 ], [ 4979178.111386391334236, 3909559.709786529187113 ], [ 4979150.21229752805084, 3909546.905002650339156 ], [ 4979166.986796153709292, 3909511.620281406678259 ], [ 4979164.110904440283775, 3909510.157551205717027 ], [ 4979173.945143251679838, 3909489.059052456635982 ], [ 4979217.374557727947831, 3909509.544150416273624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979032.545712473802269, 3909372.96037746174261 ], [ 4979038.914857930503786, 3909356.588104372378439 ], [ 4979029.996857051737607, 3909353.291730124969035 ], [ 4979040.420955333858728, 3909325.640064717270434 ], [ 4979100.833205017261207, 3909347.982169064693153 ], [ 4979091.857199091464281, 3909371.631469262763858 ], [ 4979072.583261865191162, 3909364.307328450027853 ], [ 4979064.765172428451478, 3909385.046068220864981 ], [ 4979032.545712473802269, 3909372.96037746174261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979008.908565880730748, 3908716.742558152414858 ], [ 4978967.193447186611593, 3908701.723481006454676 ], [ 4978977.907207475043833, 3908673.344159271102399 ], [ 4979019.334452389739454, 3908688.362633753102273 ], [ 4979008.908565880730748, 3908716.742558152414858 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978898.645958121865988, 3901062.093394699506462 ], [ 4978915.253494004718959, 3901106.917117652483284 ], [ 4978864.238108229823411, 3901125.742511819116771 ], [ 4978851.925427759066224, 3901092.580211872234941 ], [ 4978876.712374404072762, 3901083.530076562426984 ], [ 4978872.417455032467842, 3901071.868680658750236 ], [ 4978898.645958121865988, 3901062.093394699506462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978857.380836497992277, 3907010.82128589740023 ], [ 4978884.767764359712601, 3906995.222332254517823 ], [ 4978908.002590394578874, 3907036.054982457775623 ], [ 4978880.615690504200757, 3907051.653912812005728 ], [ 4978857.380836497992277, 3907010.82128589740023 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978824.660710855387151, 3907768.510367653798312 ], [ 4978782.684161715209484, 3907740.382265088614076 ], [ 4978799.726939678192139, 3907714.565367460250854 ], [ 4978841.991433571092784, 3907742.694113340694457 ], [ 4978824.660710855387151, 3907768.510367653798312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978808.313186716288328, 3906797.698831433895975 ], [ 4978778.617968645878136, 3906815.477712049614638 ], [ 4978759.107951451092958, 3906783.028190387412906 ], [ 4978788.803192334249616, 3906765.249288566410542 ], [ 4978808.313186716288328, 3906797.698831433895975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978814.279230767861009, 3903878.102914810646325 ], [ 4978827.00735673494637, 3903851.184454069007188 ], [ 4978855.486891222186387, 3903864.718351856339723 ], [ 4978814.703057926148176, 3903949.109460073523223 ], [ 4978769.251708357594907, 3903927.164248906075954 ], [ 4978797.019355305470526, 3903869.690924814436585 ], [ 4978814.279230767861009, 3903878.102914810646325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978762.392460073344409, 3904844.761142616160214 ], [ 4978772.948514124378562, 3904890.664329167921096 ], [ 4978723.107784826308489, 3904902.209899773821235 ], [ 4978714.834250256419182, 3904866.143168995156884 ], [ 4978739.897838626988232, 3904860.734802613500506 ], [ 4978737.328073273412883, 3904850.533617979846895 ], [ 4978762.392460073344409, 3904844.761142616160214 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978762.191107692196965, 3897806.110351312439889 ], [ 4978784.6705855820328, 3897799.968246591277421 ], [ 4978781.812901079654694, 3897789.402356079313904 ], [ 4978811.20898768492043, 3897781.454427949618548 ], [ 4978813.208813737146556, 3897789.105443356093019 ], [ 4978837.129241758026183, 3897782.602338274009526 ], [ 4978849.702632126398385, 3897829.237936398014426 ], [ 4978801.573836294002831, 3897842.243529142811894 ], [ 4978797.002025687135756, 3897825.119624109473079 ], [ 4978769.622968138195574, 3897832.70775395212695 ], [ 4978762.191107692196965, 3897806.110351312439889 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978523.860481407493353, 3908676.742047697771341 ], [ 4978530.54300956055522, 3908648.353956142440438 ], [ 4978552.98930302914232, 3908653.49967390159145 ], [ 4978553.572117075324059, 3908650.223724152892828 ], [ 4978576.306316918693483, 3908655.370075446553528 ], [ 4978569.040926809422672, 3908687.034105209168047 ], [ 4978523.860481407493353, 3908676.742047697771341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978457.75962847750634, 3906321.757875175215304 ], [ 4978516.838771564885974, 3906297.486875490751117 ], [ 4978527.151744438335299, 3906322.269832347054034 ], [ 4978504.672461891546845, 3906331.68935743579641 ], [ 4978508.969794035889208, 3906341.894210424739867 ], [ 4978496.865575288422406, 3906346.96626830752939 ], [ 4978493.714557940140367, 3906339.312783278524876 ], [ 4978469.218966856598854, 3906349.092174747493118 ], [ 4978457.75962847750634, 3906321.757875175215304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978363.212387343868613, 3905963.979168915655464 ], [ 4978380.974159060977399, 3906006.620361451525241 ], [ 4978349.560768610797822, 3906019.662340771406889 ], [ 4978331.510241279378533, 3905977.38468725932762 ], [ 4978363.212387343868613, 3905963.979168915655464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978285.295544468797743, 3904281.525092835538089 ], [ 4978244.101936836726964, 3904288.720325199887156 ], [ 4978238.412252831272781, 3904255.936420310288668 ], [ 4978279.605909141711891, 3904248.741179373115301 ], [ 4978285.295544468797743, 3904281.525092835538089 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978161.34023046400398, 3902984.226271579042077 ], [ 4978181.577027694322169, 3902947.127747606951743 ], [ 4978221.271051242016256, 3902969.059741547331214 ], [ 4978215.489202769473195, 3902979.607291263993829 ], [ 4978247.129949369467795, 3902996.788548201322556 ], [ 4978251.177017265930772, 3902989.514506832696497 ], [ 4978273.325442772358656, 3903001.577825198881328 ], [ 4978270.722870348021388, 3903006.670140602625906 ], [ 4978287.118774221278727, 3903015.444084228016436 ], [ 4978271.50798238068819, 3903043.813195154070854 ], [ 4978161.34023046400398, 3902984.226271579042077 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978109.278725391253829, 3909350.599204160738736 ], [ 4978121.713358604349196, 3909324.772102571558207 ], [ 4978143.572558971121907, 3909335.014096104539931 ], [ 4978131.425814169459045, 3909360.841797262895852 ], [ 4978109.278725391253829, 3909350.599204160738736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978022.799297298304737, 3904768.177311691921204 ], [ 4978069.478635752573609, 3904753.710705449339002 ], [ 4978078.631563455797732, 3904782.860591579694301 ], [ 4978031.6650863699615, 3904796.962443708907813 ], [ 4978022.799297298304737, 3904768.177311691921204 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977955.647292503155768, 3908616.183229482732713 ], [ 4977972.093678881414235, 3908599.467849484179169 ], [ 4978004.561689561232924, 3908630.85180753422901 ], [ 4977988.403214457444847, 3908647.567775974050164 ], [ 4977955.647292503155768, 3908616.183229482732713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977792.60997071210295, 3908516.43146701157093 ], [ 4977779.886603746563196, 3908542.622233088128269 ], [ 4977743.933398650959134, 3908525.432387252338231 ], [ 4977756.656738603487611, 3908499.241604421753436 ], [ 4977792.60997071210295, 3908516.43146701157093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977722.258224048651755, 3907468.310595513787121 ], [ 4977749.637899958528578, 3907455.623525483068079 ], [ 4977769.415121354162693, 3907498.268590957392007 ], [ 4977742.035479428246617, 3907510.955641175620258 ], [ 4977722.258224048651755, 3907468.310595513787121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977709.886541466228664, 3904311.989438311196864 ], [ 4977738.985693805851042, 3904304.76796098286286 ], [ 4977749.837028736248612, 3904348.122426335234195 ], [ 4977721.025878737680614, 3904355.344497239682823 ], [ 4977709.886541466228664, 3904311.989438311196864 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977665.277613228186965, 3904162.965962801128626 ], [ 4977695.820541511289775, 3904153.9268125933595 ], [ 4977709.828858337365091, 3904202.385729979723692 ], [ 4977678.998785011470318, 3904211.060129948426038 ], [ 4977665.277613228186965, 3904162.965962801128626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977613.513421082869172, 3907562.028383875731379 ], [ 4977645.925024058669806, 3907621.085818788036704 ], [ 4977619.117592588998377, 3907635.594857193995267 ], [ 4977586.706711861304939, 3907576.173323429189622 ], [ 4977613.513421082869172, 3907562.028383875731379 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977455.173488212749362, 3907552.95753081748262 ], [ 4977421.132977056317031, 3907584.201720593031496 ], [ 4977400.736044977791607, 3907562.311153177637607 ], [ 4977434.776559988036752, 3907531.066937981173396 ], [ 4977455.173488212749362, 3907552.95753081748262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977445.327474594116211, 3904826.316955086309463 ], [ 4977414.214815278537571, 3904832.806279708165675 ], [ 4977404.2361303223297, 3904785.084181770682335 ], [ 4977435.34884241130203, 3904778.59484577504918 ], [ 4977445.327474594116211, 3904826.316955086309463 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977428.312195312231779, 3907042.388026654720306 ], [ 4977464.077930992469192, 3907012.603992713149637 ], [ 4977482.459723020903766, 3907034.490382767282426 ], [ 4977446.693995944224298, 3907064.27439264440909 ], [ 4977428.312195312231779, 3907042.388026654720306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977335.275670797564089, 3909403.95638735499233 ], [ 4977360.356803328730166, 3909387.986917920410633 ], [ 4977375.853440373204648, 3909412.052041165996343 ], [ 4977387.962154814042151, 3909404.066420070827007 ], [ 4977401.735899748280644, 3909425.943162734620273 ], [ 4977390.491663781926036, 3909433.56645138328895 ], [ 4977399.100626682862639, 3909447.057350204791874 ], [ 4977373.442958109080791, 3909463.38971233740449 ], [ 4977335.275670797564089, 3909403.95638735499233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977252.274361009709537, 3905852.765461039729416 ], [ 4977285.171164331957698, 3905818.605646649375558 ], [ 4977307.58663656655699, 3905839.77204715507105 ], [ 4977274.689830491319299, 3905873.931834530550987 ], [ 4977252.274361009709537, 3905852.765461039729416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977186.7003118628636, 3906507.338092829100788 ], [ 4977205.648689459078014, 3906533.959181168116629 ], [ 4977183.445098736323416, 3906549.570629807189107 ], [ 4977164.497467962093651, 3906522.585426441859454 ], [ 4977186.7003118628636, 3906507.338092829100788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977151.40859794896096, 3909076.946241297293454 ], [ 4977174.078279482200742, 3909113.042543382383883 ], [ 4977165.718355563469231, 3909118.123000283259898 ], [ 4977180.065211014822125, 3909141.457347875460982 ], [ 4977152.67918580584228, 3909158.150452846195549 ], [ 4977115.949755008332431, 3909099.084576866589487 ], [ 4977151.40859794896096, 3909076.946241297293454 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977116.798146538436413, 3909521.844329350162297 ], [ 4977168.690412952564657, 3909488.452074587345123 ], [ 4977177.587372614070773, 3909501.943502106238157 ], [ 4977186.524502431973815, 3909496.135984264779836 ], [ 4977222.397868276573718, 3909551.194729670882225 ], [ 4977193.856073947623372, 3909570.070184530224651 ], [ 4977172.905887441709638, 3909537.9828931693919 ], [ 4977140.90549483615905, 3909558.671868924982846 ], [ 4977116.798146538436413, 3909521.844329350162297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976980.189510483294725, 3906536.403683423995972 ], [ 4977006.138417653739452, 3906519.707442391198128 ], [ 4977031.970189793966711, 3906559.451444399543107 ], [ 4977006.021304799243808, 3906576.147660889662802 ], [ 4976980.189510483294725, 3906536.403683423995972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976959.791489221155643, 3907625.480579666793346 ], [ 4976944.509663920849562, 3907636.008734716102481 ], [ 4976932.452354461885989, 3907618.869529502931982 ], [ 4976947.734939542599022, 3907607.97723702667281 ], [ 4976959.791489221155643, 3907625.480579666793346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976962.749011836014688, 3905643.516083265189081 ], [ 4976991.065774382092059, 3905596.237673274707049 ], [ 4977020.111953074112535, 3905613.77626749034971 ], [ 4977000.752408103086054, 3905646.143825496081263 ], [ 4976992.699780315160751, 3905641.393406251911074 ], [ 4976983.743288069032133, 3905655.940100526902825 ], [ 4976962.749011836014688, 3905643.516083265189081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976901.3950867485255, 3911909.017030407208949 ], [ 4976933.361558464355767, 3911903.257136682979763 ], [ 4976941.620179206132889, 3911946.606109175831079 ], [ 4976909.365880262106657, 3911952.365396798588336 ], [ 4976901.3950867485255, 3911909.017030407208949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976887.31911703851074, 3908696.971977720037103 ], [ 4976847.251899335533381, 3908719.829385918565094 ], [ 4976838.931843644939363, 3908705.611003792379051 ], [ 4976830.861275090835989, 3908709.963897414971143 ], [ 4976819.673385447822511, 3908690.277601719368249 ], [ 4976824.861825603991747, 3908687.375273145269603 ], [ 4976814.820299547165632, 3908670.240278316196054 ], [ 4976843.357506053522229, 3908653.91334779933095 ], [ 4976855.406869191676378, 3908674.693833211436868 ], [ 4976869.819811110384762, 3908666.348618211224675 ], [ 4976887.31911703851074, 3908696.971977720037103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976802.895078122615814, 3911513.364543905947357 ], [ 4976801.453410913236439, 3911514.453962225932628 ], [ 4976812.650672517716885, 3911529.042442896403372 ], [ 4976798.810525771230459, 3911539.573683408554643 ], [ 4976761.488269114866853, 3911489.974434596020728 ], [ 4976776.481460036709905, 3911478.717292042914778 ], [ 4976802.895078122615814, 3911513.364543905947357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976768.812176079489291, 3909478.155347008258104 ], [ 4976787.180042693391442, 3909506.231523668393493 ], [ 4976735.576189042069018, 3909539.625110229477286 ], [ 4976717.496194687671959, 3909511.549562628846616 ], [ 4976768.812176079489291, 3909478.155347008258104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976587.859473564662039, 3912904.638143097981811 ], [ 4976606.506285108625889, 3912935.992036391049623 ], [ 4976583.448469328694046, 3912949.78160411445424 ], [ 4976589.472658508457243, 3912959.989749712869525 ], [ 4976569.009415473788977, 3912971.964007595553994 ], [ 4976544.337627473287284, 3912930.766134822741151 ], [ 4976587.859473564662039, 3912904.638143097981811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976443.854586371220648, 3912658.915976101532578 ], [ 4976459.630530186928809, 3912686.622529913671315 ], [ 4976420.722584079019725, 3912708.754734038375318 ], [ 4976404.658744108863175, 3912681.047611662652344 ], [ 4976443.854586371220648, 3912658.915976101532578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976416.350240661762655, 3904602.06458981288597 ], [ 4976432.97988991253078, 3904637.055363997817039 ], [ 4976398.679573707282543, 3904653.370870256796479 ], [ 4976382.049890022724867, 3904618.380116952117532 ], [ 4976416.350240661762655, 3904602.06458981288597 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976369.250990104861557, 3907628.996391137130558 ], [ 4976398.649809140712023, 3907614.127293552737683 ], [ 4976420.444515920244157, 3907656.77550706313923 ], [ 4976391.045731344260275, 3907671.644581192173064 ], [ 4976369.250990104861557, 3907628.996391137130558 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976197.083277671597898, 3907623.545911489520222 ], [ 4976167.968038682825863, 3907640.600602450314909 ], [ 4976145.586655982770026, 3907603.049247500486672 ], [ 4976174.990589407272637, 3907585.630990537814796 ], [ 4976197.083277671597898, 3907623.545911489520222 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976134.581366860307753, 3903828.07239198544994 ], [ 4976159.934850231744349, 3903821.933951154816896 ], [ 4976157.080504715442657, 3903809.547652195207775 ], [ 4976197.703563873656094, 3903799.799136162269861 ], [ 4976208.267393461428583, 3903844.244766517076641 ], [ 4976158.42509332858026, 3903856.159216348547488 ], [ 4976159.851519566960633, 3903862.716495895758271 ], [ 4976143.717372584156692, 3903866.688979221973568 ], [ 4976134.581366860307753, 3903828.07239198544994 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976112.176559644751251, 3910287.365979872178286 ], [ 4976082.78156170155853, 3910301.871284333523363 ], [ 4976079.340201791375875, 3910295.309870093129575 ], [ 4976060.031940479762852, 3910304.737926599569619 ], [ 4976047.415821607224643, 3910279.587026741821319 ], [ 4976096.407758878543973, 3910255.290096000302583 ], [ 4976112.176559644751251, 3910287.365979872178286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976041.08623063005507, 3906041.801875548902899 ], [ 4976055.704345830716193, 3906074.603555095382035 ], [ 4976010.457700521685183, 3906094.174430273473263 ], [ 4975992.688519801944494, 3906053.355454185511917 ], [ 4976014.015388578176498, 3906043.931481921579689 ], [ 4976017.454344624653459, 3906051.949392000213265 ], [ 4976041.08623063005507, 3906041.801875548902899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975970.464972864836454, 3911309.562273980583996 ], [ 4976029.764594114385545, 3911311.867919803597033 ], [ 4976029.160612853243947, 3911325.703744565136731 ], [ 4975969.86102210264653, 3911323.398100062273443 ], [ 4975970.464972864836454, 3911309.562273980583996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975856.997307398356497, 3911188.075099374167621 ], [ 4975857.260028175078332, 3911200.456156301312149 ], [ 4975847.18331198208034, 3911200.799809411168098 ], [ 4975846.91984657663852, 3911188.782884098123759 ], [ 4975837.994666766375303, 3911189.128880847245455 ], [ 4975837.731936982832849, 3911176.747824189718813 ], [ 4975885.523116279393435, 3911175.752572551835328 ], [ 4975885.787305084988475, 3911187.405366617254913 ], [ 4975856.997307398356497, 3911188.075099374167621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975806.333696207031608, 3911469.447022167034447 ], [ 4975791.635443013161421, 3911477.428106226492673 ], [ 4975754.346702544949949, 3911410.351942812092602 ], [ 4975768.757837299257517, 3911402.006122903432697 ], [ 4975806.333696207031608, 3911469.447022167034447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975737.885581533424556, 3907034.90150233823806 ], [ 4975752.775940054096282, 3907075.350363467354327 ], [ 4975725.401992124505341, 3907085.490551087073982 ], [ 4975710.224406566470861, 3907044.676990705076605 ], [ 4975737.885581533424556, 3907034.90150233823806 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975588.613036544062197, 3911509.424549070652574 ], [ 4975512.021788717247546, 3911516.552405745256692 ], [ 4975510.614739810116589, 3911500.527707932516932 ], [ 4975587.206032918766141, 3911493.399847317952663 ], [ 4975588.613036544062197, 3911509.424549070652574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975547.862137347459793, 3911730.735091257374734 ], [ 4975565.269650592468679, 3911806.50997468829155 ], [ 4975548.853214141912758, 3911810.11812112107873 ], [ 4975539.721308797597885, 3911770.40915183769539 ], [ 4975531.080526641570032, 3911772.576490746345371 ], [ 4975527.085534132085741, 3911755.090028081554919 ], [ 4975536.014200689271092, 3911752.923269626684487 ], [ 4975531.733536308631301, 3911734.343829820398241 ], [ 4975547.862137347459793, 3911730.735091257374734 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975303.474741611629725, 3911003.796830563340336 ], [ 4975316.662590310908854, 3911031.133340158034116 ], [ 4975254.706897120922804, 3911060.867632837034762 ], [ 4975241.51900016143918, 3911033.531153146643192 ], [ 4975303.474741611629725, 3911003.796830563340336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975201.39062992669642, 3911232.631287546362728 ], [ 4975209.767808715812862, 3911218.446924049872905 ], [ 4975264.977273098193109, 3911250.601574122905731 ], [ 4975256.599343089386821, 3911265.15005224570632 ], [ 4975201.39062992669642, 3911232.631287546362728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975120.062863159924746, 3904411.178728205617517 ], [ 4975115.115759065374732, 3904437.02214692113921 ], [ 4975088.34592401701957, 3904431.870660420972854 ], [ 4975083.10652017686516, 3904459.898288620635867 ], [ 4975048.852727521210909, 3904453.275324053131044 ], [ 4975051.471317319199443, 3904439.807701520621777 ], [ 4975040.821263861842453, 3904437.601592337246984 ], [ 4975044.602615632116795, 3904418.674324554391205 ], [ 4975056.404507017694414, 3904420.882741460110992 ], [ 4975060.478204812854528, 3904399.771272571291775 ], [ 4975120.062863159924746, 3904411.178728205617517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974957.648837046697736, 3896487.007502833381295 ], [ 4974931.958498087711632, 3896514.265916625969112 ], [ 4974882.218701872974634, 3896468.286281887907535 ], [ 4974920.609834475442767, 3896427.58037695242092 ], [ 4974940.735775556415319, 3896446.191184862982482 ], [ 4974928.323016796261072, 3896459.639195038471371 ], [ 4974957.648837046697736, 3896487.007502833381295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974949.186281576752663, 3899425.156066774390638 ], [ 4974921.53429651260376, 3899426.557356308214366 ], [ 4974918.471599904820323, 3899373.752336318604648 ], [ 4974961.102434632368386, 3899371.28858129074797 ], [ 4974963.325027846731246, 3899412.07562478678301 ], [ 4974948.346982452087104, 3899412.773957048077136 ], [ 4974949.186281576752663, 3899425.156066774390638 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974922.064942950382829, 3898872.352068668231368 ], [ 4974882.580438142642379, 3898885.381941951811314 ], [ 4974871.702623954042792, 3898851.860254926141351 ], [ 4974910.898428170010448, 3898839.19391970615834 ], [ 4974922.064942950382829, 3898872.352068668231368 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974699.242205106653273, 3909534.040408546105027 ], [ 4974641.009843022562563, 3909572.158551814965904 ], [ 4974623.50132037140429, 3909545.177950563374907 ], [ 4974681.445812677964568, 3909507.059197433292866 ], [ 4974699.242205106653273, 3909534.040408546105027 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974633.646366923116148, 3896028.286950211040676 ], [ 4974587.541408533230424, 3896036.934540248475969 ], [ 4974582.977439663372934, 3896014.349447382614017 ], [ 4974584.994496474973857, 3896013.989319739397615 ], [ 4974581.85703541431576, 3895998.325520707294345 ], [ 4974560.245496816001832, 3896002.288078207056969 ], [ 4974555.112623396329582, 3895976.060566104948521 ], [ 4974621.100958443246782, 3895963.446964806411415 ], [ 4974633.646366923116148, 3896028.286950211040676 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974610.557613455690444, 3906204.603043030947447 ], [ 4974550.329337603412569, 3906229.244475509505719 ], [ 4974539.154625434428453, 3906201.54828995000571 ], [ 4974599.382952964864671, 3906176.90683284169063 ], [ 4974610.557613455690444, 3906204.603043030947447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974143.663512712344527, 3894863.196339577436447 ], [ 4974149.236969484947622, 3894812.22919484321028 ], [ 4974159.028881391510367, 3894813.34085335303098 ], [ 4974160.496418667957187, 3894799.506825973745435 ], [ 4974201.392442584969103, 3894803.956902184523642 ], [ 4974197.577368376776576, 3894839.634065683465451 ], [ 4974209.096913019195199, 3894841.113274668809026 ], [ 4974205.871582337655127, 3894869.873141414020211 ], [ 4974143.663512712344527, 3894863.196339577436447 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974115.922589561901987, 3895639.829902393743396 ], [ 4974117.926061596721411, 3895646.388174294959754 ], [ 4974135.50796121917665, 3895640.96081537893042 ], [ 4974152.677843358367682, 3895698.527068750932813 ], [ 4974110.59803057461977, 3895710.824693283997476 ], [ 4974099.152589105069637, 3895671.840327004902065 ], [ 4974086.471168953925371, 3895675.456693657208234 ], [ 4974079.030493959784508, 3895650.681260735727847 ], [ 4974115.922589561901987, 3895639.829902393743396 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974084.391303200274706, 3900396.762925310526043 ], [ 4974102.322538170032203, 3900358.564471176359802 ], [ 4974131.383435681462288, 3900372.458595770411193 ], [ 4974113.452168566174805, 3900410.657030835747719 ], [ 4974084.391303200274706, 3900396.762925310526043 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973946.67771893274039, 3902477.864181797020137 ], [ 4973972.342094199731946, 3902460.436228606849909 ], [ 4974002.779919840395451, 3902505.284074626397341 ], [ 4973973.656259409151971, 3902524.525867559015751 ], [ 4973951.54550495557487, 3902492.074837145395577 ], [ 4973954.717551451176405, 3902489.896271613892168 ], [ 4973946.67771893274039, 3902477.864181797020137 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973894.375978967174888, 3908006.73643247410655 ], [ 4973892.388367214240134, 3907992.53138042287901 ], [ 4973911.972596436738968, 3907989.656699315179139 ], [ 4973918.219031312502921, 3908034.45721010863781 ], [ 4973878.762722100131214, 3908040.206013713032007 ], [ 4973874.215925638563931, 3908009.609998631756753 ], [ 4973894.375978967174888, 3908006.73643247410655 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973532.80824748147279, 3900723.401811526156962 ], [ 4973502.833166040480137, 3900735.359828176442534 ], [ 4973488.214668546803296, 3900699.646609741263092 ], [ 4973517.902493678964674, 3900687.323887708596885 ], [ 4973532.80824748147279, 3900723.401811526156962 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973311.697905560955405, 3896819.86101962858811 ], [ 4973318.567113783210516, 3896842.450370899867266 ], [ 4973299.257932040840387, 3896847.87492151139304 ], [ 4973308.986373087391257, 3896881.393700859043747 ], [ 4973270.655410869047046, 3896892.607515865471214 ], [ 4973254.057673835195601, 3896836.499413408339024 ], [ 4973311.697905560955405, 3896819.86101962858811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973137.227395624853671, 3901849.983968328218907 ], [ 4973157.12861770298332, 3901834.364771294873208 ], [ 4973173.790967200882733, 3901855.516548404470086 ], [ 4973153.601766033098102, 3901871.135177115909755 ], [ 4973137.227395624853671, 3901849.983968328218907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972991.570561063475907, 3897627.611174986697733 ], [ 4973003.617362377233803, 3897653.851723031140864 ], [ 4972983.14969814568758, 3897662.915571067482233 ], [ 4972971.102180320769548, 3897637.03916064882651 ], [ 4972991.570561063475907, 3897627.611174986697733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972913.673359035514295, 3910575.972555965650827 ], [ 4972933.568008992820978, 3910560.353109549731016 ], [ 4972946.778805483132601, 3910577.128635797649622 ], [ 4972926.596268667839468, 3910592.747518844902515 ], [ 4972913.673359035514295, 3910575.972555965650827 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972904.526316938921809, 3910242.409349782392383 ], [ 4972887.500602571293712, 3910263.132187217008322 ], [ 4972857.893573277629912, 3910239.042538971174508 ], [ 4972874.919279963709414, 3910218.319683075882494 ], [ 4972904.526316938921809, 3910242.409349782392383 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972838.995061414316297, 3910935.228176075965166 ], [ 4972851.639747630804777, 3910946.904712155461311 ], [ 4972857.698680284433067, 3910939.997825268190354 ], [ 4972886.149885339662433, 3910965.90592828206718 ], [ 4972846.62607229873538, 3911009.161808576900512 ], [ 4972826.796815977431834, 3910990.91708840848878 ], [ 4972833.143619700334966, 3910984.010748469736427 ], [ 4972811.876994414255023, 3910964.670881230849773 ], [ 4972838.995061414316297, 3910935.228176075965166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972681.586579231545329, 3907441.075145719572902 ], [ 4972692.250970125198364, 3907435.269447188358754 ], [ 4972708.321095402352512, 3907463.338389938697219 ], [ 4972662.77946457080543, 3907489.104590515140444 ], [ 4972634.942677579820156, 3907440.985904417466372 ], [ 4972645.031207632273436, 3907435.179085903335363 ], [ 4972630.395753717981279, 3907409.661849604453892 ], [ 4972655.184528558515012, 3907395.50811097631231 ], [ 4972681.586579231545329, 3907441.075145719572902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971998.279677434824407, 3908081.376753614284098 ], [ 4971975.215953810140491, 3908097.355020180344582 ], [ 4971946.791053811088204, 3908055.426167423371226 ], [ 4971970.142027922905982, 3908039.812551280483603 ], [ 4971998.279677434824407, 3908081.376753614284098 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971941.188212622888386, 3911482.631643941160291 ], [ 4971886.752432295121253, 3911496.366040947847068 ], [ 4971866.749574465677142, 3911417.311489338520914 ], [ 4971921.472700583748519, 3911403.941727139055729 ], [ 4971941.188212622888386, 3911482.631643941160291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971914.991236307658255, 3906596.653194383252412 ], [ 4971941.695629778318107, 3906635.665671842172742 ], [ 4971917.766900881193578, 3906651.64234389225021 ], [ 4971891.350422869436443, 3906612.630432479083538 ], [ 4971914.991236307658255, 3906596.653194383252412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971169.123986226506531, 3905418.383424448315054 ], [ 4971179.456925528123975, 3905436.24507052404806 ], [ 4971171.386297435499728, 3905440.59965523891151 ], [ 4971181.431956672109663, 3905458.096637016627938 ], [ 4971154.335900966078043, 3905473.703961657825857 ], [ 4971118.743398760445416, 3905412.827906314749271 ], [ 4971144.687029991298914, 3905397.582538079936057 ], [ 4971159.900214047171175, 3905423.464133631438017 ], [ 4971169.123986226506531, 3905418.383424448315054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970846.841510985977948, 3906235.626427738927305 ], [ 4970865.495640345849097, 3906269.160989100113511 ], [ 4970828.889906333759427, 3906289.484803683590144 ], [ 4970810.235745548270643, 3906255.950267315842211 ], [ 4970846.841510985977948, 3906235.626427738927305 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970820.471169323660433, 3908355.554364019539207 ], [ 4970756.497566332109272, 3908386.023523941170424 ], [ 4970743.303773296065629, 3908358.689297967590392 ], [ 4970807.565342043526471, 3908328.220638190861791 ], [ 4970820.471169323660433, 3908355.554364019539207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970830.608245458453894, 3897240.473704291973263 ], [ 4970796.881346833892167, 3897254.976707360241562 ], [ 4970775.083310287445784, 3897204.686624344438314 ], [ 4970816.881959239020944, 3897186.557179575320333 ], [ 4970826.63351749908179, 3897209.151210462674499 ], [ 4970818.562495289370418, 3897212.413493819069117 ], [ 4970830.608245458453894, 3897240.473704291973263 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970366.825261030346155, 3893954.810596556402743 ], [ 4970386.141912769526243, 3893946.106797964312136 ], [ 4970400.774893818423152, 3893978.176907324697822 ], [ 4970356.087526111863554, 3893998.122341942507774 ], [ 4970338.586438675411046, 3893959.128566663712263 ], [ 4970363.66913237515837, 3893947.886377741582692 ], [ 4970366.825261030346155, 3893954.810596556402743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970343.275430308654904, 3904164.978041108697653 ], [ 4970313.581601029261947, 3904183.494507459457964 ], [ 4970290.899193946272135, 3904147.039973878767341 ], [ 4970282.250409609638155, 3904152.486161458306015 ], [ 4970266.74570370092988, 3904127.696947843302041 ], [ 4970305.088363260962069, 3904103.734247489832342 ], [ 4970343.275430308654904, 3904164.978041108697653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970155.16129126213491, 3903731.682980210985988 ], [ 4970104.135869098827243, 3903762.177192023023963 ], [ 4970057.912427050061524, 3903685.62564808735624 ], [ 4970011.499757737852633, 3903713.21536346944049 ], [ 4969987.382657220587134, 3903673.481314064469188 ], [ 4970047.344317792914808, 3903637.905270723626018 ], [ 4970037.583219132386148, 3903621.501645021140575 ], [ 4970055.744270638562739, 3903610.974817620124668 ], [ 4970063.208246686495841, 3903623.732965415343642 ], [ 4970135.277963791973889, 3903580.896491424180567 ], [ 4970131.259676835499704, 3903573.606558703817427 ], [ 4970178.537937168963253, 3903545.290365478955209 ], [ 4970227.631650350987911, 3903626.94517810177058 ], [ 4970183.23579247109592, 3903653.810009789653122 ], [ 4970151.654958699829876, 3903601.317633341066539 ], [ 4970138.681894332170486, 3903609.304915280081332 ], [ 4970148.443598367273808, 3903625.344447598792613 ], [ 4970106.354854570701718, 3903650.392948292661458 ], [ 4970155.16129126213491, 3903731.682980210985988 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969981.315041114576161, 3906701.588066529948264 ], [ 4969943.8434675373137, 3906723.732179027516395 ], [ 4969928.054647371172905, 3906697.486077417153865 ], [ 4969965.526244417764246, 3906675.34194325748831 ], [ 4969981.315041114576161, 3906701.588066529948264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969986.567513045854867, 3891891.328565618488938 ], [ 4970021.229701619595289, 3891841.141671053133905 ], [ 4970049.140304228290915, 3891860.127005598973483 ], [ 4970014.477427382022142, 3891910.677992182318121 ], [ 4969986.567513045854867, 3891891.328565618488938 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969767.193209438584745, 3910631.644631349015981 ], [ 4969725.441111536696553, 3910635.938858043868095 ], [ 4969722.044887967407703, 3910603.524916575290263 ], [ 4969763.797035668045282, 3910599.230684685520828 ], [ 4969767.193209438584745, 3910631.644631349015981 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969728.165489180013537, 3893159.850132913794369 ], [ 4969739.178799052722752, 3893123.092976240906864 ], [ 4969768.259637735784054, 3893131.520408113487065 ], [ 4969757.246291493996978, 3893168.27755303028971 ], [ 4969728.165489180013537, 3893159.850132913794369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969618.727070221677423, 3905145.72653163317591 ], [ 4969648.972960389219224, 3905139.59075480280444 ], [ 4969653.540150393731892, 3905161.811003122478724 ], [ 4969623.294284164905548, 3905167.946774902287871 ], [ 4969618.727070221677423, 3905145.72653163317591 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969394.197231559082866, 3898836.028887356165797 ], [ 4969443.688584603369236, 3898862.699080114252865 ], [ 4969426.928107583895326, 3898893.620093556586653 ], [ 4969392.111323602497578, 3898874.987073650583625 ], [ 4969396.156608199700713, 3898867.711717137135565 ], [ 4969381.482076833955944, 3898859.674572492949665 ], [ 4969394.197231559082866, 3898836.028887356165797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969385.890205857343972, 3892697.883863430004567 ], [ 4969388.530551378615201, 3892671.307189286220819 ], [ 4969425.974892441183329, 3892675.015550112817436 ], [ 4969423.623245981521904, 3892701.228609217796475 ], [ 4969385.890205857343972, 3892697.883863430004567 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969315.223653026856482, 3891456.806953695602715 ], [ 4969284.935126665048301, 3891478.236405277624726 ], [ 4969247.002613125368953, 3891424.277638291474432 ], [ 4969277.290519346483052, 3891403.212271994445473 ], [ 4969315.223653026856482, 3891456.806953695602715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969276.612748136743903, 3897103.652490023523569 ], [ 4969258.413796507753432, 3897133.114488716702908 ], [ 4969217.844288456253707, 3897108.645368596538901 ], [ 4969242.687552052550018, 3897068.271313313860446 ], [ 4969263.404063867405057, 3897080.688720150385052 ], [ 4969257.047754707746208, 3897091.601259084884077 ], [ 4969276.612748136743903, 3897103.652490023523569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968650.882281079888344, 3895861.588149463292211 ], [ 4968661.772284063510597, 3895893.286617148667574 ], [ 4968612.197692243382335, 3895910.313310159835964 ], [ 4968601.307637806050479, 3895878.614862234797329 ], [ 4968650.882281079888344, 3895861.588149463292211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968570.991949428804219, 3901971.550668801181018 ], [ 4968544.179327131249011, 3901988.617617872077972 ], [ 4968503.684380021877587, 3901925.551762423943728 ], [ 4968530.209054703824222, 3901908.484266976360232 ], [ 4968570.991949428804219, 3901971.550668801181018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968144.288386193104088, 3903735.381374374963343 ], [ 4968197.900135957635939, 3903706.70861961459741 ], [ 4968213.112027546390891, 3903735.501560507807881 ], [ 4968159.500318827107549, 3903764.174285429064184 ], [ 4968144.288386193104088, 3903735.381374374963343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968033.822045337408781, 3907970.767919751815498 ], [ 4968046.735304232686758, 3907995.551390162669122 ], [ 4967994.862304653041065, 3908022.771003413479775 ], [ 4967981.66109177749604, 3907997.987056754063815 ], [ 4968033.822045337408781, 3907970.767919751815498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967980.492982213385403, 3899727.473426673561335 ], [ 4967974.403035846538842, 3899751.495437237434089 ], [ 4967924.311824706383049, 3899738.663844123482704 ], [ 4967930.401096734218299, 3899715.005951560568064 ], [ 4967980.492982213385403, 3899727.473426673561335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967913.446048829704523, 3913455.125611737370491 ], [ 4967939.358590399846435, 3913452.257568827364594 ], [ 4967943.604983410798013, 3913493.412017951253802 ], [ 4967917.692481061443686, 3913496.280056833289564 ], [ 4967913.446048829704523, 3913455.125611737370491 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967781.380187564529479, 3896789.691673211287707 ], [ 4967787.954031178727746, 3896819.1975541501306 ], [ 4967763.173214013688266, 3896824.616606976371258 ], [ 4967756.59934454690665, 3896795.110732003115118 ], [ 4967781.380187564529479, 3896789.691673211287707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967752.003066908568144, 3905443.203934618271887 ], [ 4967729.512360437773168, 3905461.007468297611922 ], [ 4967712.847348855808377, 3905440.223151050042361 ], [ 4967735.337431699037552, 3905422.783734084106982 ], [ 4967752.003066908568144, 3905443.203934618271887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967186.000567693263292, 3899317.913854219485074 ], [ 4967206.456294059753418, 3899313.943390459287912 ], [ 4967212.73777068592608, 3899345.997586326673627 ], [ 4967192.569457370787859, 3899350.332666791975498 ], [ 4967186.000567693263292, 3899317.913854219485074 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966121.076396461576223, 3897848.671093359123915 ], [ 4966125.743814788758755, 3897813.358292912133038 ], [ 4966185.064290676265955, 3897821.468251645565033 ], [ 4966184.482146682217717, 3897825.108576647471637 ], [ 4966211.838749909773469, 3897828.795621234923601 ], [ 4966207.755194410681725, 3897859.375696036964655 ], [ 4966167.440402773208916, 3897853.846349022351205 ], [ 4966165.98322535213083, 3897864.039549120236188 ], [ 4966132.291252224706113, 3897859.613712029997259 ], [ 4966133.458564911969006, 3897850.512415592093021 ], [ 4966121.076396461576223, 3897848.671093359123915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966090.092465098947287, 3905024.541242504026741 ], [ 4966050.329093720763922, 3905040.13257085904479 ], [ 4966034.271195444278419, 3904999.687219513580203 ], [ 4966074.034617234021425, 3904984.095867791678756 ], [ 4966090.092465098947287, 3905024.541242504026741 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965976.169634885154665, 3891113.133682287298143 ], [ 4966017.612421490252018, 3891139.419900035485625 ], [ 4965964.174636841751635, 3891223.080504897516221 ], [ 4965922.731927358545363, 3891196.794368270784616 ], [ 4965976.169634885154665, 3891113.133682287298143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965745.334636033512652, 3897940.535447331145406 ], [ 4965736.026165519841015, 3897995.867775527760386 ], [ 4965700.032483834773302, 3897989.98215104918927 ], [ 4965709.340882230550051, 3897934.649810581468046 ], [ 4965745.334636033512652, 3897940.535447331145406 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965369.989051505923271, 3904108.287384225055575 ], [ 4965338.005065573379397, 3904120.615352095570415 ], [ 4965322.809425798244774, 3904080.171865863725543 ], [ 4965354.792855178937316, 3904068.208010389469564 ], [ 4965369.989051505923271, 3904108.287384225055575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965295.631237866356969, 3903444.354406309314072 ], [ 4965287.509056851267815, 3903480.390067636035383 ], [ 4965231.663573331199586, 3903467.918157048523426 ], [ 4965239.497714872471988, 3903431.882007740437984 ], [ 4965295.631237866356969, 3903444.354406309314072 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965187.463608901947737, 3900383.294761451426893 ], [ 4965203.016850996762514, 3900382.591931346338242 ], [ 4965203.854652153328061, 3900398.615037115756422 ], [ 4965188.300824023783207, 3900399.681996116414666 ], [ 4965187.463608901947737, 3900383.294761451426893 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964808.13501447532326, 3899868.889481924474239 ], [ 4964795.423793657682836, 3899892.901480229571462 ], [ 4964775.568466420285404, 3899882.309541844762862 ], [ 4964788.279674466699362, 3899858.297534307464957 ], [ 4964808.13501447532326, 3899868.889481924474239 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964787.942350829020143, 3905576.972125904168934 ], [ 4964811.834726587869227, 3905581.380425509996712 ], [ 4964807.188056867569685, 3905605.769703350961208 ], [ 4964783.295702047646046, 3905601.361407815013081 ], [ 4964787.942350829020143, 3905576.972125904168934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964550.761104854755104, 3893903.302800039295107 ], [ 4964544.66236756183207, 3893933.879808768630028 ], [ 4964483.898910191841424, 3893921.765764202922583 ], [ 4964489.709510537795722, 3893891.18827856099233 ], [ 4964550.761104854755104, 3893903.302800039295107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964518.177188906818628, 3901259.399177342187613 ], [ 4964549.261504628695548, 3901271.101415921468288 ], [ 4964532.196708281524479, 3901316.590245853178203 ], [ 4964501.112437839619815, 3901304.888026687316597 ], [ 4964518.177188906818628, 3901259.399177342187613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964434.101810559630394, 3902144.101375639438629 ], [ 4964464.310067643411458, 3902162.720599913503975 ], [ 4964440.923845315352082, 3902199.824340200051665 ], [ 4964393.742231375537813, 3902170.253966242074966 ], [ 4964408.755879049189389, 3902146.245444716420025 ], [ 4964426.01783755980432, 3902156.832962458021939 ], [ 4964434.101810559630394, 3902144.101375639438629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963427.319557995535433, 3893696.876307334285229 ], [ 4963456.700676071457565, 3893698.378934887237847 ], [ 4963456.997323877178133, 3893692.917467521503568 ], [ 4963473.127675930969417, 3893694.0351836765185 ], [ 4963470.760761179029942, 3893733.721513936296105 ], [ 4963425.536853041499853, 3893731.46575377555564 ], [ 4963427.319557995535433, 3893696.876307334285229 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963096.985821631737053, 3894381.650739666540176 ], [ 4963095.794451066292822, 3894406.773787163663656 ], [ 4963103.571638859808445, 3894407.150023332796991 ], [ 4963100.293518648482859, 3894477.421821685973555 ], [ 4963040.668184908106923, 3894474.780161087401211 ], [ 4963043.949546162039042, 3894402.323586768470705 ], [ 4963055.471015118062496, 3894403.069759455509484 ], [ 4963056.659516778774559, 3894379.767350877635181 ], [ 4963096.985821631737053, 3894381.650739666540176 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962697.810360522009432, 3897316.278762000147253 ], [ 4962644.525787483900785, 3897315.104262672830373 ], [ 4962645.458863134495914, 3897270.317755349446088 ], [ 4962663.315867985598743, 3897271.073520677629858 ], [ 4962663.934573752805591, 3897243.400622726418078 ], [ 4962704.834362757392228, 3897244.191927638370544 ], [ 4962704.519934595562518, 3897261.305534895509481 ], [ 4962702.216220916248858, 3897260.93785254471004 ], [ 4962701.591299302875996, 3897292.616166286636144 ], [ 4962698.422924580052495, 3897292.611280494835228 ], [ 4962697.810360522009432, 3897316.278762000147253 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962643.246175959706306, 3897584.922371724620461 ], [ 4962620.393656242638826, 3897648.609886657446623 ], [ 4962574.910068342462182, 3897632.154084342997521 ], [ 4962584.455388577654958, 3897605.951422946061939 ], [ 4962577.258539823815227, 3897603.391448960639536 ], [ 4962582.754640555940568, 3897588.106452709063888 ], [ 4962592.254619761370122, 3897591.398229782003909 ], [ 4962598.329594186507165, 3897574.293478703591973 ], [ 4962619.056621277704835, 3897581.607964548747987 ], [ 4962620.504061763174832, 3897576.876506311818957 ], [ 4962643.246175959706306, 3897584.922371724620461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962540.18883427977562, 3895859.518280571326613 ], [ 4962547.76986269466579, 3895799.812719287350774 ], [ 4962605.081181349232793, 3895806.819284692872316 ], [ 4962597.788076891563833, 3895866.525273131206632 ], [ 4962540.18883427977562, 3895859.518280571326613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962526.037674673832953, 3894382.58868075395003 ], [ 4962521.958361515775323, 3894412.805124928243458 ], [ 4962498.05344243068248, 3894409.855403192341328 ], [ 4962493.97248881496489, 3894441.164236563723534 ], [ 4962446.45131251309067, 3894434.901177299208939 ], [ 4962452.281251093372703, 3894390.122244384605438 ], [ 4962440.185303670354187, 3894388.283063020091504 ], [ 4962442.514933157712221, 3894371.900827704928815 ], [ 4962526.037674673832953, 3894382.58868075395003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962396.635586983524263, 3899314.524763268884271 ], [ 4962410.210088009946048, 3899289.78470360301435 ], [ 4962434.383065651170909, 3899302.930414673406631 ], [ 4962421.096561216749251, 3899327.670903500635177 ], [ 4962396.635586983524263, 3899314.524763268884271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962301.172231905162334, 3899400.313486157916486 ], [ 4962317.636733999475837, 3899369.023451504297554 ], [ 4962298.355513360351324, 3899358.798355826176703 ], [ 4962310.487059307284653, 3899335.876691961660981 ], [ 4962336.675571644678712, 3899349.38952473225072 ], [ 4962329.455235951580107, 3899362.487170828506351 ], [ 4962354.492222719825804, 3899375.63413120014593 ], [ 4962346.982760208658874, 3899389.459590784739703 ], [ 4962366.839963346719742, 3899399.685602704063058 ], [ 4962352.39762591291219, 3899426.973269212525338 ], [ 4962301.172231905162334, 3899400.313486157916486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962237.922609847970307, 3899137.315062412060797 ], [ 4962220.367058742791414, 3899128.549176107160747 ], [ 4962232.211737221106887, 3899104.898782699368894 ], [ 4962292.073189989663661, 3899134.848784539382905 ], [ 4962277.917133597657084, 3899163.229314068332314 ], [ 4962254.605774239636958, 3899151.541579672135413 ], [ 4962249.984217147342861, 3899160.27365006133914 ], [ 4962231.277183594182134, 3899151.141870001796633 ], [ 4962237.922609847970307, 3899137.315062412060797 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962061.12597213126719, 3899487.339147437363863 ], [ 4962079.61008975468576, 3899453.503121922723949 ], [ 4962103.495070374570787, 3899466.648099170066416 ], [ 4962085.010931647382677, 3899500.484108534175903 ], [ 4962061.12597213126719, 3899487.339147437363863 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961951.137734834104776, 3898705.385244740638882 ], [ 4961936.410186194814742, 3898730.852041858248413 ], [ 4961902.453173716552556, 3898711.501775872893631 ], [ 4961917.180700701661408, 3898686.034960438497365 ], [ 4961951.137734834104776, 3898705.385244740638882 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961808.964675682596862, 3909699.381487228441983 ], [ 4961857.93813543766737, 3909679.428182596806437 ], [ 4961862.24069342110306, 3909689.994524182751775 ], [ 4961873.475998352281749, 3909685.277788989711553 ], [ 4961879.785597597248852, 3909701.309153510257602 ], [ 4961869.990904531441629, 3909705.29979936638847 ], [ 4961880.891496554017067, 3909731.533811927307397 ], [ 4961839.120029387064278, 3909748.584895559120923 ], [ 4961827.646901495754719, 3909720.165240847039968 ], [ 4961819.004376308992505, 3909723.793513084296137 ], [ 4961808.964675682596862, 3909699.381487228441983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961832.715451222844422, 3893012.044517839327455 ], [ 4961776.249039441347122, 3893013.779982018750161 ], [ 4961774.879445776343346, 3892966.805316630750895 ], [ 4961812.619628857821226, 3892965.769846280571073 ], [ 4961812.350227696821094, 3892953.38906459370628 ], [ 4961830.788483005948365, 3892952.68863289989531 ], [ 4961832.715451222844422, 3893012.044517839327455 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961731.915258972905576, 3909627.531211756635457 ], [ 4961735.145279055461287, 3909585.660860328935087 ], [ 4961713.555345698259771, 3909583.807674690149724 ], [ 4961716.191438343375921, 3909553.952794245909899 ], [ 4961730.297023663297296, 3909555.066439870744944 ], [ 4961731.175544806756079, 3909545.23619084758684 ], [ 4961780.688778970390558, 3909549.316293326206505 ], [ 4961777.757022064179182, 3909584.268574069719762 ], [ 4961771.135817124508321, 3909583.894454934634268 ], [ 4961767.61070014256984, 3909630.498077463824302 ], [ 4961731.915258972905576, 3909627.531211756635457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961670.479798029176891, 3909319.382787797600031 ], [ 4961705.589975936338305, 3909328.903070284985006 ], [ 4961700.667082116939127, 3909347.830536358524114 ], [ 4961714.768389041535556, 3909351.857225274667144 ], [ 4961708.979037341661751, 3909372.604046559426934 ], [ 4961693.150860581547022, 3909368.210628862958401 ], [ 4961686.780787902884185, 3909392.233771530445665 ], [ 4961693.975657522678375, 3909394.065262441057712 ], [ 4961686.160041255876422, 3909422.091684872284532 ], [ 4961644.430919231846929, 3909410.740813488606364 ], [ 4961653.115136921405792, 3909379.438494807109237 ], [ 4961626.350958192721009, 3909372.115615120623261 ], [ 4961633.298433211632073, 3909347.000929539557546 ], [ 4961660.925801866687834, 3909354.68924655392766 ], [ 4961670.479798029176891, 3909319.382787797600031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961536.883092232048512, 3892033.186066446825862 ], [ 4961543.574659583158791, 3891989.500677327625453 ], [ 4961583.034371481277049, 3891995.385901414789259 ], [ 4961580.126151913776994, 3892013.587962452787906 ], [ 4961587.038688164204359, 3892014.69071823079139 ], [ 4961582.967180932871997, 3892040.173603489995003 ], [ 4961536.883092232048512, 3892033.186066446825862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961456.68672027438879, 3893260.543555224314332 ], [ 4961463.383304513990879, 3893213.216835748404264 ], [ 4961476.632158095948398, 3893215.057300536427647 ], [ 4961477.79809073638171, 3893205.955826921854168 ], [ 4961499.399568725377321, 3893208.901188891381025 ], [ 4961498.232538610696793, 3893218.730917418375611 ], [ 4961510.905777024105191, 3893220.206408623605967 ], [ 4961509.155499218963087, 3893234.768936840351671 ], [ 4961520.388341819867492, 3893236.242275560740381 ], [ 4961513.687845355831087, 3893286.117876967880875 ], [ 4961485.461749251931906, 3893282.434330301359296 ], [ 4961487.792525590397418, 3893264.959639061242342 ], [ 4961456.68672027438879, 3893260.543555224314332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961435.597001875750721, 3900429.493791793938726 ], [ 4961463.800342844799161, 3900443.372926752548665 ], [ 4961440.980254450812936, 3900488.855078900232911 ], [ 4961412.776949535124004, 3900474.975967512931675 ], [ 4961435.597001875750721, 3900429.493791793938726 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961371.767943712882698, 3896305.628042122349143 ], [ 4961363.60760180093348, 3896369.338507728651166 ], [ 4961313.497178818099201, 3896363.073575729504228 ], [ 4961317.286257009021938, 3896333.220612703822553 ], [ 4961327.941726217977703, 3896334.693014976102859 ], [ 4961332.312886191532016, 3896300.835499134846032 ], [ 4961371.767943712882698, 3896305.628042122349143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961097.545484728179872, 3899222.263160939794034 ], [ 4961113.142491563223302, 3899192.427627648692578 ], [ 4961097.313613943755627, 3899184.393296011257917 ], [ 4961105.401217680424452, 3899168.7476971084252 ], [ 4961147.706298536621034, 3899191.022392112296075 ], [ 4961124.310202224180102, 3899236.139794726856053 ], [ 4961097.545484728179872, 3899222.263160939794034 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960990.9542321190238, 3898265.900204465258867 ], [ 4961028.085570584051311, 3898281.976841202471405 ], [ 4961001.498556490056217, 3898342.018927675206214 ], [ 4960964.65584624465555, 3898325.578623636160046 ], [ 4960990.9542321190238, 3898265.900204465258867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960987.586276488378644, 3899375.034979314543307 ], [ 4961021.835428188554943, 3899391.471489298623055 ], [ 4960992.080321049317718, 3899452.237195607274771 ], [ 4960965.026663835160434, 3899439.08852466288954 ], [ 4960984.383157257921994, 3899398.698697017505765 ], [ 4960977.475725236348808, 3899395.411315905861557 ], [ 4960987.586276488378644, 3899375.034979314543307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960819.588142279535532, 3893759.547092801891267 ], [ 4960857.049831194803119, 3893751.227295629214495 ], [ 4960870.50013177189976, 3893811.692502524703741 ], [ 4960835.056094150990248, 3893819.286994312424213 ], [ 4960833.625388455577195, 3893812.730568442959338 ], [ 4960812.013070669956505, 3893817.432429580017924 ], [ 4960806.004828106611967, 3893789.385667516384274 ], [ 4960825.311522042378783, 3893785.408665029332042 ], [ 4960819.588142279535532, 3893759.547092801891267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960595.400330250151455, 3908559.663765204139054 ], [ 4960589.021453500725329, 3908590.241519497241825 ], [ 4960562.253535682335496, 3908584.740359858144075 ], [ 4960568.632383250631392, 3908554.162599324714392 ], [ 4960595.400330250151455, 3908559.663765204139054 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960347.02521154563874, 3893646.704006376676261 ], [ 4960404.932154085487127, 3893643.875253350939602 ], [ 4960406.881309377029538, 3893690.122450613882393 ], [ 4960349.263068459928036, 3893692.587490454316139 ], [ 4960347.02521154563874, 3893646.704006376676261 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960318.521755378693342, 3895221.520353326108307 ], [ 4960324.320459488779306, 3895195.675612977705896 ], [ 4960349.660960614681244, 3895201.538524852134287 ], [ 4960343.862762931734324, 3895227.019131457433105 ], [ 4960318.521755378693342, 3895221.520353326108307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960068.245282139629126, 3900575.32102032052353 ], [ 4960048.955664440989494, 3900570.92360340571031 ], [ 4960055.6238027587533, 3900540.346286335960031 ], [ 4960091.612659791484475, 3900548.045008806977421 ], [ 4960082.625234261155128, 3900589.178744503762573 ], [ 4960065.92656616307795, 3900585.513319618534297 ], [ 4960068.245282139629126, 3900575.32102032052353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960023.963202846236527, 3896134.329977412242442 ], [ 4960074.967414285987616, 3896120.566681565251201 ], [ 4960082.989585246890783, 3896150.436874292325228 ], [ 4960031.697905492037535, 3896163.835611012298614 ], [ 4960023.963202846236527, 3896134.329977412242442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959587.341417702846229, 3899930.848531456198543 ], [ 4959640.328762748278677, 3899934.929595943540335 ], [ 4959637.68990433588624, 3899967.697539961431175 ], [ 4959595.357785941101611, 3899964.359940415713936 ], [ 4959594.769826743751764, 3899972.734095013700426 ], [ 4959535.734954955987632, 3899968.280374789610505 ], [ 4959536.616607081145048, 3899955.901205711066723 ], [ 4959584.99634191673249, 3899959.611467917449772 ], [ 4959587.341417702846229, 3899930.848531456198543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959470.194785822182894, 3893195.015871609561145 ], [ 4959511.145389079116285, 3893164.487311797216535 ], [ 4959545.361870561726391, 3893210.052116273902357 ], [ 4959504.123220146633685, 3893240.580214864574373 ], [ 4959470.194785822182894, 3893195.015871609561145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959296.797010445035994, 3892362.736074600834399 ], [ 4959261.343788864091039, 3892375.794551467522979 ], [ 4959254.169415468350053, 3892356.121469449717551 ], [ 4959238.605001660063863, 3892361.561399731319398 ], [ 4959232.004724317230284, 3892343.345649032853544 ], [ 4959283.021896975114942, 3892325.211348013486713 ], [ 4959296.797010445035994, 3892362.736074600834399 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958946.386962438933551, 3904958.222490350715816 ], [ 4958970.029176516458392, 3904936.771923365071416 ], [ 4958993.029548220336437, 3904962.29340495634824 ], [ 4958969.675800926983356, 3904983.380225705914199 ], [ 4958946.386962438933551, 3904958.222490350715816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958760.869915046729147, 3907487.584522290155292 ], [ 4958737.813068211078644, 3907503.938275037333369 ], [ 4958736.950818323530257, 3907502.844676651060581 ], [ 4958719.082225311547518, 3907515.200234600808471 ], [ 4958712.47316103707999, 3907505.723592336289585 ], [ 4958700.369161321781576, 3907513.717618908267468 ], [ 4958680.829351202584803, 3907485.652243179269135 ], [ 4958733.858827041462064, 3907448.948857350740582 ], [ 4958760.869915046729147, 3907487.584522290155292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958706.412173639982939, 3900905.111305414233357 ], [ 4958762.303093543276191, 3900890.988173664081842 ], [ 4958763.734939055517316, 3900896.816257562022656 ], [ 4958794.561642284505069, 3900888.848435707390308 ], [ 4958803.728146228007972, 3900924.181885270401835 ], [ 4958775.782448251731694, 3900931.425458489451557 ], [ 4958777.214288663119078, 3900937.25354324746877 ], [ 4958736.016273622401059, 3900947.7558299950324 ], [ 4958734.011482023634017, 3900939.742166230920702 ], [ 4958716.437696636654437, 3900944.087226053699851 ], [ 4958706.412173639982939, 3900905.111305414233357 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958690.550619998015463, 3904641.434809726662934 ], [ 4958729.763329488225281, 3904605.076356417499483 ], [ 4958751.328501954674721, 3904627.682574310339987 ], [ 4958712.115288523025811, 3904664.405127117875963 ], [ 4958690.550619998015463, 3904641.434809726662934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958096.225548112764955, 3897487.636486874427646 ], [ 4958094.170393221080303, 3897516.035777406767011 ], [ 4958069.402163363993168, 3897514.1811907524243 ], [ 4958067.343547497875988, 3897545.129386151209474 ], [ 4958023.855295611545444, 3897541.792688423302025 ], [ 4958024.735331419855356, 3897530.141745495609939 ], [ 4958014.07916123047471, 3897529.398909405805171 ], [ 4958016.430231343954802, 3897495.173944072332233 ], [ 4958029.966235669329762, 3897496.284851042553782 ], [ 4958030.848766854964197, 3897482.813264135271311 ], [ 4958096.225548112764955, 3897487.636486874427646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958038.213534361682832, 3905988.912046812474728 ], [ 4958067.606454145163298, 3905972.202257030177861 ], [ 4958090.013438560068607, 3906010.466769770719111 ], [ 4958060.620047776959836, 3906027.540666210930794 ], [ 4958038.213534361682832, 3905988.912046812474728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958033.065702438354492, 3900282.61097266105935 ], [ 4958045.449291038326919, 3900282.992053644731641 ], [ 4958045.751749911345541, 3900272.43269228329882 ], [ 4958078.582496391609311, 3900273.570049895904958 ], [ 4958075.902667032554746, 3900337.653292119968683 ], [ 4958030.688933067023754, 3900335.770728325936943 ], [ 4958033.065702438354492, 3900282.61097266105935 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957773.813866366632283, 3901802.501627805642784 ], [ 4957731.187528398819268, 3901805.72090657427907 ], [ 4957731.75311978161335, 3901813.368415203876793 ], [ 4957713.320063764229417, 3901814.799921706318855 ], [ 4957712.473891859874129, 3901801.690075046382844 ], [ 4957697.785137229599059, 3901802.762541957665235 ], [ 4957697.220523588359356, 3901794.386774401646107 ], [ 4957685.988089029677212, 3901795.099804791621864 ], [ 4957684.007236681878567, 3901769.243853061459959 ], [ 4957709.064496879465878, 3901767.457181531004608 ], [ 4957708.500379951670766, 3901758.717284089885652 ], [ 4957745.654556597582996, 3901755.854668293148279 ], [ 4957746.220639435574412, 3901763.138047153130174 ], [ 4957770.701937176287174, 3901761.350650939624757 ], [ 4957773.813866366632283, 3901802.501627805642784 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957600.056674305349588, 3897831.427535159979016 ], [ 4957610.803369348868728, 3897765.170476005412638 ], [ 4957636.432528371922672, 3897769.210583854932338 ], [ 4957640.209933875128627, 3897744.819012240506709 ], [ 4957677.93386593926698, 3897750.696184806525707 ], [ 4957674.736925749108195, 3897771.811371126677841 ], [ 4957660.626467627473176, 3897769.607475626282394 ], [ 4957656.559538745321333, 3897795.091041530482471 ], [ 4957640.721412122249603, 3897792.520686826203018 ], [ 4957633.460562910884619, 3897836.934674272779375 ], [ 4957600.056674305349588, 3897831.427535159979016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957374.94902719091624, 3907160.515831956174225 ], [ 4957395.927138456143439, 3907190.766975302249193 ], [ 4957346.645468388684094, 3907224.929106516763568 ], [ 4957327.965862981975079, 3907198.322404206730425 ], [ 4957344.392917670309544, 3907187.056382791604847 ], [ 4957341.80645633302629, 3907183.41159147163853 ], [ 4957374.94902719091624, 3907160.515831956174225 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957214.311844166368246, 3899608.954618413932621 ], [ 4957244.588412919081748, 3899582.413656268268824 ], [ 4957237.686910361982882, 3899574.393554158974439 ], [ 4957250.373965108767152, 3899563.486643945798278 ], [ 4957282.86976018641144, 3899600.30732143111527 ], [ 4957240.193669215776026, 3899638.119665335863829 ], [ 4957214.311844166368246, 3899608.954618413932621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956853.365025043487549, 3897270.396837237756699 ], [ 4956866.946061076596379, 3897237.643173435237259 ], [ 4956901.779418878257275, 3897251.89040250191465 ], [ 4956908.13646577578038, 3897236.605395512189716 ], [ 4956936.348393349908292, 3897248.294979823287576 ], [ 4956928.257327073253691, 3897267.947232745122164 ], [ 4956948.696641808375716, 3897276.349348978605121 ], [ 4956933.092037561349571, 3897314.562228803057224 ], [ 4956909.485823114402592, 3897305.063534171786159 ], [ 4956913.531342362985015, 3897295.237404332496226 ], [ 4956853.365025043487549, 3897270.396837237756699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956854.781343235634267, 3891415.934497689362615 ], [ 4956854.171394623816013, 3891441.422668499406427 ], [ 4956805.484967504628003, 3891439.901724954135716 ], [ 4956806.382967044599354, 3891414.413934076670557 ], [ 4956854.781343235634267, 3891415.934497689362615 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956509.728619502857327, 3897059.112902809400111 ], [ 4956458.201552233658731, 3897035.012817649636418 ], [ 4956471.776976235210896, 3897006.264375813305378 ], [ 4956552.090558268129826, 3897043.510937456507236 ], [ 4956534.760077833198011, 3897080.265258249361068 ], [ 4956505.974114663898945, 3897066.754696823656559 ], [ 4956509.728619502857327, 3897059.112902809400111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956329.066452944651246, 3900858.935850803740323 ], [ 4956356.436047041788697, 3900851.32485180022195 ], [ 4956358.156412087380886, 3900857.153183561749756 ], [ 4956394.456747654825449, 3900847.369109196588397 ], [ 4956407.067601242102683, 3900893.994279501028359 ], [ 4956343.685774486511946, 3900911.389697825070471 ], [ 4956329.066452944651246, 3900858.935850803740323 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956193.355074122548103, 3900909.009041499812156 ], [ 4956194.269718024879694, 3900870.048289829865098 ], [ 4956229.116253636777401, 3900870.821880214381963 ], [ 4956229.418466804549098, 3900859.898365029133856 ], [ 4956259.36908548604697, 3900860.665623025037348 ], [ 4956258.149750829674304, 3900912.370535769034177 ], [ 4956231.079142599366605, 3900911.607027404941618 ], [ 4956230.776929283514619, 3900922.530542905908078 ], [ 4956206.298287132754922, 3900921.770433182362467 ], [ 4956206.602384938858449, 3900909.390398699790239 ], [ 4956193.355074122548103, 3900909.009041499812156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956089.560956893488765, 3904996.605992478784174 ], [ 4956108.874019494280219, 3904980.973397467285395 ], [ 4956158.89766894467175, 3905042.576507901772857 ], [ 4956131.801913014613092, 3905064.389194463379681 ], [ 4956095.578191568143666, 3905019.554059839341789 ], [ 4956103.072953213937581, 3905013.373549130745232 ], [ 4956089.560956893488765, 3904996.605992478784174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955927.168611019849777, 3904763.716127769090235 ], [ 4955900.938971900381148, 3904783.709505490027368 ], [ 4955856.37975574657321, 3904726.483496480621397 ], [ 4955882.609886690042913, 3904706.125945453997701 ], [ 4955927.168611019849777, 3904763.716127769090235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954505.075922739692032, 3900714.970395271666348 ], [ 4954508.546761160716414, 3900702.958392805885524 ], [ 4954485.8030621483922, 3900696.375914008356631 ], [ 4954495.347520283423364, 3900663.615999292582273 ], [ 4954570.775894850492477, 3900685.557220669928938 ], [ 4954557.76049245800823, 3900730.329104796983302 ], [ 4954505.075922739692032, 3900714.970395271666348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954195.521980574354529, 3894334.311638509854674 ], [ 4954209.078928844071925, 3894319.76310290582478 ], [ 4954228.357457589358091, 3894337.629058849997818 ], [ 4954214.512442285194993, 3894352.177231648005545 ], [ 4954195.521980574354529, 3894334.311638509854674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954111.538890718482435, 3893990.471260138787329 ], [ 4954095.098022550344467, 3894007.565219963900745 ], [ 4954078.121500515379012, 3893991.522818226832896 ], [ 4954094.274298042990267, 3893974.428496232256293 ], [ 4954111.538890718482435, 3893990.471260138787329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953979.580916240811348, 3894008.516718424856663 ], [ 4954002.887907955795527, 3894030.392830290831625 ], [ 4953965.39063414465636, 3894070.037207948509604 ], [ 4953942.371715238317847, 3894048.161478398367763 ], [ 4953979.580916240811348, 3894008.516718424856663 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953652.081890010274947, 3894934.463803207036108 ], [ 4953697.22941214684397, 3894998.969085780438036 ], [ 4953669.840566591359675, 3895018.234876377042383 ], [ 4953624.40495213214308, 3894953.729292153380811 ], [ 4953652.081890010274947, 3894934.463803207036108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953310.652850144542754, 3892826.113240137696266 ], [ 4953333.996611862443388, 3892818.494390207342803 ], [ 4953329.691458088345826, 3892805.016498274169862 ], [ 4953345.830144654028118, 3892799.937961663119495 ], [ 4953349.848948176018894, 3892811.959000245202333 ], [ 4953381.261644975282252, 3892802.165055926889181 ], [ 4953388.723487513139844, 3892825.842327633872628 ], [ 4953366.244832135736942, 3892832.733906526584178 ], [ 4953369.975974905304611, 3892844.390476224478334 ], [ 4953349.226699315011501, 3892850.555878622923046 ], [ 4953347.791942631825805, 3892845.820494995452464 ], [ 4953319.549509841948748, 3892854.525874623563141 ], [ 4953310.652850144542754, 3892826.113240137696266 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952806.449634915217757, 3892876.494673678651452 ], [ 4952801.808281632140279, 3892903.798864126205444 ], [ 4952737.290484113618731, 3892893.163495453074574 ], [ 4952741.931773668155074, 3892865.859294035937637 ], [ 4952806.449634915217757, 3892876.494673678651452 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952389.625722623430192, 3890114.09620251134038 ], [ 4952418.729575652629137, 3890110.124518351629376 ], [ 4952427.588815287686884, 3890172.400664318352938 ], [ 4952398.485028329305351, 3890176.372339023742825 ], [ 4952389.625722623430192, 3890114.09620251134038 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951752.985376154072583, 3893339.542651417199522 ], [ 4951757.943831263110042, 3893285.6572479121387 ], [ 4951777.242923048324883, 3893287.499798468314111 ], [ 4951776.659326641820371, 3893294.053450171370059 ], [ 4951825.91509488876909, 3893298.843096939846873 ], [ 4951822.997885715216398, 3893330.883094484452158 ], [ 4951801.970782765187323, 3893328.674418555106968 ], [ 4951800.513020756654441, 3893343.966162553522736 ], [ 4951752.985376154072583, 3893339.542651417199522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951254.225233236327767, 3894460.861891508568078 ], [ 4951313.861081445589662, 3894455.102457301225513 ], [ 4951317.847962176427245, 3894496.253473178017884 ], [ 4951281.835890501737595, 3894499.854506498668343 ], [ 4951282.405509796924889, 3894505.681204091291875 ], [ 4951258.78182873968035, 3894507.83959577511996 ], [ 4951254.225233236327767, 3894460.861891508568078 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951165.048897518776357, 3891760.749463950283825 ], [ 4951157.234327249228954, 3891793.14818379143253 ], [ 4951115.472168553620577, 3891782.906169010791928 ], [ 4951123.574784882366657, 3891750.507757333572954 ], [ 4951165.048897518776357, 3891760.749463950283825 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950738.393764801323414, 3893326.030243803281337 ], [ 4950765.759439831599593, 3893327.516789003275335 ], [ 4950764.283078853040934, 3893360.286739670205861 ], [ 4950736.917437104508281, 3893358.80019595194608 ], [ 4950738.393764801323414, 3893326.030243803281337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950721.415335952304304, 3893046.725036755669862 ], [ 4950723.497361663728952, 3892987.010244828183204 ], [ 4950757.489626597613096, 3892988.13991811266169 ], [ 4950755.407125825993717, 3893048.218835515435785 ], [ 4950721.415335952304304, 3893046.725036755669862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949759.683534982614219, 3889900.713012844324112 ], [ 4949717.890917689539492, 3889915.962099675554782 ], [ 4949690.02598419226706, 3889838.373384318780154 ], [ 4949716.542490287683904, 3889828.93412204599008 ], [ 4949724.873888588510454, 3889851.518868783023208 ], [ 4949739.861593739129603, 3889846.072828368283808 ], [ 4949759.683534982614219, 3889900.713012844324112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949708.592845902778208, 3889717.86672666342929 ], [ 4949670.264282487332821, 3889726.565252611879259 ], [ 4949664.528916309587657, 3889701.070245560258627 ], [ 4949654.442568787373602, 3889703.244354949332774 ], [ 4949650.141222468577325, 3889683.941038615535945 ], [ 4949636.884445080533624, 3889687.204189304728061 ], [ 4949632.295352170243859, 3889667.536444446537644 ], [ 4949655.061883759684861, 3889662.462697470095009 ], [ 4949651.334070956334472, 3889645.708881746977568 ], [ 4949676.118206990882754, 3889639.909028366673738 ], [ 4949677.839588624425232, 3889646.829276042059064 ], [ 4949698.588948760181665, 3889642.117561065591872 ], [ 4949706.333012880757451, 3889675.261383780278265 ], [ 4949698.840078567154706, 3889677.074093578383327 ], [ 4949708.592845902778208, 3889717.86672666342929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949073.969517874531448, 3891017.867434429936111 ], [ 4949072.782822551205754, 3891051.001859784126282 ], [ 4949008.826291663572192, 3891049.115110678132623 ], [ 4949009.724806923419237, 3891015.980385072994977 ], [ 4949073.969517874531448, 3891017.867434429936111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949049.941876177676022, 3888900.075102030765265 ], [ 4949024.290189511142671, 3888908.42352782189846 ], [ 4949016.822657538577914, 3888885.475775799714029 ], [ 4949042.474363757297397, 3888877.127342998050153 ], [ 4949049.941876177676022, 3888900.075102030765265 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948889.89443978946656, 3894639.299002275802195 ], [ 4948907.489478964358568, 3894616.741111991461366 ], [ 4948948.074059993959963, 3894648.097975916229188 ], [ 4948955.285001921467483, 3894639.002186008263379 ], [ 4948974.569792510941625, 3894653.951349823269993 ], [ 4948949.76378883048892, 3894685.604986363090575 ], [ 4948889.89443978946656, 3894639.299002275802195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946823.032066931948066, 3889503.045042369049042 ], [ 4946791.622067025862634, 3889508.477101986762136 ], [ 4946783.312303995713592, 3889460.404352626297623 ], [ 4946814.434240304864943, 3889454.972009508404881 ], [ 4946823.032066931948066, 3889503.045042369049042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946691.261415594257414, 3891436.439235060941428 ], [ 4946694.754072492942214, 3891398.93734507728368 ], [ 4946726.730103538371623, 3891401.880651221610606 ], [ 4946723.525499192997813, 3891439.382810070179403 ], [ 4946691.261415594257414, 3891436.439235060941428 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946593.592346883378923, 3889606.968325762078166 ], [ 4946548.068581741303205, 3889608.381965418346226 ], [ 4946547.236093471758068, 3889574.517303930129856 ], [ 4946592.759572699666023, 3889573.467790275346488 ], [ 4946593.592346883378923, 3889606.968325762078166 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945030.559384206309915, 3891235.740986607503146 ], [ 4945074.635299717076123, 3891239.421288443729281 ], [ 4945070.560620152391493, 3891286.026069231331348 ], [ 4945017.554693634621799, 3891281.245493956841528 ], [ 4945020.171080919913948, 3891254.666458860971034 ], [ 4945028.813399804756045, 3891255.40235716663301 ], [ 4945030.559384206309915, 3891235.740986607503146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944729.910940404050052, 3891090.189659266732633 ], [ 4944732.233554258011281, 3891069.800518960226327 ], [ 4944723.014966157265007, 3891069.064213005825877 ], [ 4944725.919501503929496, 3891042.121276348829269 ], [ 4944778.06101060193032, 3891047.628775091841817 ], [ 4944774.576398967765272, 3891078.940734860487282 ], [ 4944790.996541831642389, 3891080.775747156701982 ], [ 4944789.253910787403584, 3891096.795854109339416 ], [ 4944729.910940404050052, 3891090.189659266732633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944446.855466402135789, 3892254.789859003853053 ], [ 4944443.926522633992136, 3892310.498956503346562 ], [ 4944393.80181360989809, 3892307.542733680922538 ], [ 4944394.972972091287374, 3892285.696045876014978 ], [ 4944404.191465457901359, 3892286.068111867178231 ], [ 4944404.778303572908044, 3892273.688256317283958 ], [ 4944394.119680175557733, 3892272.950822073034942 ], [ 4944395.290213413536549, 3892251.832390695344657 ], [ 4944446.855466402135789, 3892254.789859003853053 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944396.4629429243505, 3892228.16506374347955 ], [ 4944405.732576082460582, 3892169.18427008157596 ], [ 4944448.075998623855412, 3892175.775081778410822 ], [ 4944443.153043080121279, 3892205.265222234651446 ], [ 4944456.115143347531557, 3892207.461177048273385 ], [ 4944451.480587208643556, 3892236.587437213864177 ], [ 4944396.4629429243505, 3892228.16506374347955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943899.202184158377349, 3891909.857616601046175 ], [ 4943900.399646661244333, 3891856.331783847417682 ], [ 4943941.020048937760293, 3891857.094292953144759 ], [ 4943939.534106553532183, 3891910.984008700586855 ], [ 4943899.202184158377349, 3891909.857616601046175 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4942709.225205911323428, 3889941.133975669275969 ], [ 4942721.632959175854921, 3889917.475577724166214 ], [ 4942732.000666696578264, 3889922.945775411557406 ], [ 4942740.945558996871114, 3889906.203047245275229 ], [ 4942780.400740932673216, 3889926.625766611658037 ], [ 4942759.048045610077679, 3889967.026857149321586 ], [ 4942709.225205911323428, 3889941.133975669275969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993032.969721097499132, 3912992.705243422184139 ], [ 4993005.608850654214621, 3912997.730022631119937 ], [ 4992999.935173498466611, 3912966.399346821475774 ], [ 4993027.29607473872602, 3912961.374561939854175 ], [ 4993032.969721097499132, 3912992.705243422184139 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989762.63699368853122, 3912601.825209355913103 ], [ 4989745.067638514563441, 3912605.421745608560741 ], [ 4989740.513706216588616, 3912585.018643881659955 ], [ 4989758.084002684801817, 3912581.05797329172492 ], [ 4989762.63699368853122, 3912601.825209355913103 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989696.630767060443759, 3909018.584665650501847 ], [ 4989718.343599594198167, 3908971.666837287601084 ], [ 4989751.126224837265909, 3908987.043981520459056 ], [ 4989738.967226873151958, 3909013.230557141359895 ], [ 4989753.633847747929394, 3909019.822340832091868 ], [ 4989744.079959142021835, 3909040.553562387358397 ], [ 4989696.630767060443759, 3909018.584665650501847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989581.551027921959758, 3908645.783778396900743 ], [ 4989585.760432874783874, 3908688.762163069099188 ], [ 4989544.866754963994026, 3908692.663648864720017 ], [ 4989541.503437652252614, 3908656.605945643037558 ], [ 4989559.93445319775492, 3908654.832133747171611 ], [ 4989559.088305491954088, 3908647.911458021495491 ], [ 4989581.551027921959758, 3908645.783778396900743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988687.775494533590972, 3907534.377360533922911 ], [ 4988650.6378243714571, 3907532.463514338247478 ], [ 4988652.451232081279159, 3907498.239600480534136 ], [ 4988689.301938669756055, 3907499.78859620494768 ], [ 4988687.775494533590972, 3907534.377360533922911 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988304.243149678222835, 3905578.755014321301132 ], [ 4988302.706201200373471, 3905617.713318263180554 ], [ 4988258.942214970476925, 3905616.147620507515967 ], [ 4988260.191154779866338, 3905577.188596035819501 ], [ 4988304.243149678222835, 3905578.755014321301132 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987954.464518396183848, 3904503.695047843270004 ], [ 4987955.145806529559195, 3904577.251381692942232 ], [ 4987924.909522387199104, 3904577.540475615300238 ], [ 4987924.673967005684972, 3904556.420240995008498 ], [ 4987919.490754879079759, 3904556.40738118859008 ], [ 4987919.044929264113307, 3904503.971282795071602 ], [ 4987954.464518396183848, 3904503.695047843270004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987919.77200076635927, 3908272.742452145088464 ], [ 4987931.870815612375736, 3908270.223546650726348 ], [ 4987937.279772339388728, 3908294.997996627353132 ], [ 4987910.777030467987061, 3908300.758354677353054 ], [ 4987900.245170593261719, 3908251.938441836740822 ], [ 4987914.6491330973804, 3908248.696981349028647 ], [ 4987919.77200076635927, 3908272.742452145088464 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987699.037936138920486, 3907534.09879284305498 ], [ 4987703.007638724520802, 3907558.869624240323901 ], [ 4987674.491454906761646, 3907563.53283717809245 ], [ 4987667.684787684120238, 3907521.640767274424434 ], [ 4987652.995241195894778, 3907523.789256158750504 ], [ 4987650.158289337530732, 3907506.668015515897423 ], [ 4987663.408221757039428, 3907504.515966755338013 ], [ 4987660.857399289496243, 3907488.123697492294014 ], [ 4987701.471007629297674, 3907481.669722931925207 ], [ 4987709.406814286485314, 3907532.66790711088106 ], [ 4987699.037936138920486, 3907534.09879284305498 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987681.080733682028949, 3901752.732061917427927 ], [ 4987674.421950462274253, 3901766.916722964961082 ], [ 4987681.613502841442823, 3901770.211679860949516 ], [ 4987659.32340367231518, 3901816.765394990798086 ], [ 4987605.533031718805432, 3901791.143342253752053 ], [ 4987634.192936758510768, 3901730.768328516744077 ], [ 4987681.080733682028949, 3901752.732061917427927 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987669.811497202143073, 3902001.041752883698791 ], [ 4987631.323324864730239, 3901959.799820805434138 ], [ 4987640.848387219943106, 3901951.084197800606489 ], [ 4987623.90228723641485, 3901932.835774980485439 ], [ 4987666.910040643066168, 3901893.251714017242193 ], [ 4987687.87711865734309, 3901915.879679118748754 ], [ 4987694.227182130329311, 3901910.06927692098543 ], [ 4987708.013524499721825, 3901925.032748380210251 ], [ 4987700.508823107928038, 3901931.932686359155923 ], [ 4987728.943613605573773, 3901962.59003857569769 ], [ 4987687.667381279170513, 3902000.721757009159774 ], [ 4987679.625441277399659, 3901991.962726047728211 ], [ 4987669.811497202143073, 3902001.041752883698791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987558.682572612538934, 3907705.622630100697279 ], [ 4987500.208271672017872, 3907716.038234968204051 ], [ 4987499.072742566466331, 3907709.481048590969294 ], [ 4987477.468686806969345, 3907713.433248826302588 ], [ 4987472.640416574664414, 3907686.475537301041186 ], [ 4987552.430941893719137, 3907672.107005140278488 ], [ 4987558.682572612538934, 3907705.622630100697279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987525.015620985999703, 3901275.69899319158867 ], [ 4987499.07305926643312, 3901285.102442215196788 ], [ 4987486.484901847317815, 3901251.207217674702406 ], [ 4987523.3810551809147, 3901237.825322280172259 ], [ 4987529.673770829103887, 3901255.31913564261049 ], [ 4987518.720213614404202, 3901259.29756754077971 ], [ 4987525.015620985999703, 3901275.69899319158867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987436.65456216596067, 3907918.339340632781386 ], [ 4987374.43422601185739, 3907930.202522544190288 ], [ 4987369.320660256780684, 3907902.151726139709353 ], [ 4987431.54016212746501, 3907890.652663005050272 ], [ 4987436.65456216596067, 3907918.339340632781386 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987382.984638079069555, 3908784.478950355667621 ], [ 4987411.207081648521125, 3908781.635368608869612 ], [ 4987415.419038265012205, 3908824.9775475054048 ], [ 4987387.196639744564891, 3908827.821124912705272 ], [ 4987382.984638079069555, 3908784.478950355667621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987215.251833037473261, 3907680.016285967081785 ], [ 4987217.779664793051779, 3907705.875904807820916 ], [ 4987187.539762064814568, 3907709.078872170299292 ], [ 4987185.012795072048903, 3907682.855125748086721 ], [ 4987215.251833037473261, 3907680.016285967081785 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986688.868554025888443, 3909122.151243947446346 ], [ 4986754.5300621567294, 3909114.664457047823817 ], [ 4986757.065297759138048, 3909137.611009717918932 ], [ 4986750.153751022182405, 3909138.32242525042966 ], [ 4986752.403744330629706, 3909160.175883777439594 ], [ 4986757.875750980339944, 3909159.460958982352167 ], [ 4986761.540409595705569, 3909191.513588882051408 ], [ 4986762.116222720593214, 3909191.514992881100625 ], [ 4986765.780871715396643, 3909223.567623992916197 ], [ 4986768.948728067800403, 3909223.211215924005955 ], [ 4986771.484828651882708, 3909245.793640761636198 ], [ 4986703.520388780161738, 3909253.27477574441582 ], [ 4986688.868554025888443, 3909122.151243947446346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986560.462607550434768, 3909476.868401522282511 ], [ 4986558.557921903207898, 3909431.347152818925679 ], [ 4986543.873048513196409, 3909432.039727457799017 ], [ 4986542.79664877615869, 3909401.085811575874686 ], [ 4986553.45087852794677, 3909400.383439305238426 ], [ 4986552.091893846169114, 3909367.244039213750511 ], [ 4986564.185660699382424, 3909366.545170017518103 ], [ 4986563.362664616666734, 3909349.793054637499154 ], [ 4986594.172027517110109, 3909348.411435740068555 ], [ 4986593.636954582296312, 3909331.66001982241869 ], [ 4986610.625124706886709, 3909330.973075368907303 ], [ 4986611.168159460648894, 3909344.447314660530537 ], [ 4986624.989367748610675, 3909343.752675227820873 ], [ 4986626.889517610892653, 3909391.094580069649965 ], [ 4986602.990793368779123, 3909392.128836989402771 ], [ 4986604.341742281801999, 3909428.545417279936373 ], [ 4986632.846898711286485, 3909427.522371046245098 ], [ 4986634.749686519615352, 3909473.771886509377509 ], [ 4986624.096369653940201, 3909474.110095774289221 ], [ 4986624.635850369930267, 3909489.040859757456928 ], [ 4986607.647779789753258, 3909489.727795415557921 ], [ 4986607.108289649710059, 3909474.797031776048243 ], [ 4986560.462607550434768, 3909476.868401522282511 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986386.272622028365731, 3901164.403937858063728 ], [ 4986356.006056612357497, 3901175.618665137328207 ], [ 4986334.259716901928186, 3901117.305019346997142 ], [ 4986364.525456527248025, 3901106.454396923538297 ], [ 4986386.272622028365731, 3901164.403937858063728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986137.296563448384404, 3910169.516495127230883 ], [ 4986164.94690443854779, 3910164.485425338149071 ], [ 4986162.675407065078616, 3910151.371145614422858 ], [ 4986188.020840666256845, 3910147.0627970257774 ], [ 4986196.827675276435912, 3910195.877920371014625 ], [ 4986143.831980736926198, 3910205.217323969583958 ], [ 4986137.296563448384404, 3910169.516495127230883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986015.847717675380409, 3894257.776921082753688 ], [ 4985989.625766262412071, 3894260.990926516242325 ], [ 4985989.061032720841467, 3894256.255881840828806 ], [ 4985967.73709134105593, 3894259.11757483985275 ], [ 4985964.064103020355105, 3894229.2501066098921 ], [ 4985983.082655495032668, 3894226.746988870669156 ], [ 4985981.948800448328257, 3894219.097537369932979 ], [ 4985997.796870487742126, 3894217.315055100712925 ], [ 4985998.640900121070445, 3894225.692068398930132 ], [ 4986011.608297915197909, 3894223.902656197547913 ], [ 4986015.847717675380409, 3894257.776921082753688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985966.628362161107361, 3910027.092949849087745 ], [ 4985964.353247778490186, 3910015.435211799573153 ], [ 4985983.07537367939949, 3910011.838983474764973 ], [ 4985985.063459969125688, 3910023.131898447405547 ], [ 4986000.904851290397346, 3910020.257007805630565 ], [ 4986008.013648592866957, 3910057.05158087098971 ], [ 4985968.841197622939944, 3910064.603985914960504 ], [ 4985968.27329739741981, 3910061.325420298147947 ], [ 4985955.600557034835219, 3910063.479695143643767 ], [ 4985949.058716253377497, 3910030.327831863425672 ], [ 4985966.628362161107361, 3910027.092949849087745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985877.399895218200982, 3914685.603311541490257 ], [ 4985926.10051070805639, 3914663.144207351841033 ], [ 4985939.559211651794612, 3914692.307344879489392 ], [ 4985890.858637603931129, 3914714.766425088979304 ], [ 4985877.399895218200982, 3914685.603311541490257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985836.047447768040001, 3910693.506493321154267 ], [ 4985803.503576127812266, 3910698.526143391150981 ], [ 4985796.133026625029743, 3910650.806985167786479 ], [ 4985828.676954622380435, 3910645.78732632054016 ], [ 4985836.047447768040001, 3910693.506493321154267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985647.935888164676726, 3909421.502298697363585 ], [ 4985674.275276131927967, 3909603.267778047826141 ], [ 4985626.754844148643315, 3909610.072399202268571 ], [ 4985624.206475680693984, 3909592.223778484389186 ], [ 4985614.990113801322877, 3909593.658229570835829 ], [ 4985613.012306991033256, 3909577.995774673298001 ], [ 4985621.076191975735128, 3909576.922694643959403 ], [ 4985619.093153131194413, 3909563.445024582091719 ], [ 4985611.029264184646308, 3909564.518105205148458 ], [ 4985608.475647370330989, 3909548.854271586053073 ], [ 4985616.828316011466086, 3909547.417749099433422 ], [ 4985614.845272786915302, 3909533.940079608466476 ], [ 4985606.204697193577886, 3909535.375913077965379 ], [ 4985603.655435580760241, 3909517.891425981651992 ], [ 4985606.247435363009572, 3909517.533501571975648 ], [ 4985602.28482033777982, 3909489.121641551144421 ], [ 4985606.89301872253418, 3909488.404413470998406 ], [ 4985604.909966021776199, 3909474.926745207514614 ], [ 4985596.55814758874476, 3909475.999140503350645 ], [ 4985594.007129796780646, 3909459.24291663011536 ], [ 4985602.358953331597149, 3909458.170520549174398 ], [ 4985600.66205563955009, 3909445.421804080717266 ], [ 4985592.310228212736547, 3909446.494200678076595 ], [ 4985589.758332909084857, 3909430.102108340710402 ], [ 4985647.935888164676726, 3909421.502298697363585 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985060.37838492821902, 3916183.883285304065794 ], [ 4985026.632918044924736, 3916212.933896968606859 ], [ 4985010.557581619359553, 3916194.689011224545538 ], [ 4984994.40531537309289, 3916208.851918336004019 ], [ 4984976.033349352888763, 3916188.052662144880742 ], [ 4985030.834617106243968, 3916140.48111962294206 ], [ 4985054.08587631303817, 3916167.11815330106765 ], [ 4985049.471053625456989, 3916171.11267072474584 ], [ 4985060.37838492821902, 3916183.883285304065794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985072.999106712639332, 3903355.508378554135561 ], [ 4985037.293531416915357, 3903354.331209719181061 ], [ 4985038.551718076691031, 3903309.546017691027373 ], [ 4985074.258217629045248, 3903310.359058687929064 ], [ 4985072.999106712639332, 3903355.508378554135561 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984976.074240319430828, 3909496.368252314627171 ], [ 4984983.490624558180571, 3909525.51647697435692 ], [ 4984937.110623857006431, 3909537.058750686701387 ], [ 4984929.693329536356032, 3909508.274669475387782 ], [ 4984976.074240319430828, 3909496.368252314627171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984946.292321525514126, 3908578.68296229839325 ], [ 4984923.786773519590497, 3908599.021049913950264 ], [ 4984901.101174375042319, 3908573.842142037581652 ], [ 4984923.894639559090137, 3908553.504718045704067 ], [ 4984946.292321525514126, 3908578.68296229839325 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984719.108537641353905, 3907489.753089836332947 ], [ 4984722.787907481193542, 3907516.707582644652575 ], [ 4984698.017801439389586, 3907520.290405288338661 ], [ 4984694.050482505001128, 3907493.335235970560461 ], [ 4984719.108537641353905, 3907489.753089836332947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984673.504388434812427, 3909000.795768929645419 ], [ 4984629.13897682633251, 3909012.343327914830297 ], [ 4984621.148823017254472, 3908982.101459927856922 ], [ 4984665.514281035400927, 3908970.553887966088951 ], [ 4984673.504388434812427, 3909000.795768929645419 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984466.022473490796983, 3908835.354656775016338 ], [ 4984257.564399546012282, 3908962.311465262901038 ], [ 4984255.270520085468888, 3908958.300625633914024 ], [ 4984231.051163353025913, 3908973.173286007717252 ], [ 4984236.172062745317817, 3908999.402849806006998 ], [ 4984126.714806138537824, 3909021.35857404069975 ], [ 4984114.19422769267112, 3908958.334307426586747 ], [ 4984232.581186461262405, 3908934.578799624461681 ], [ 4984227.455149902030826, 3908910.534022083505988 ], [ 4984253.115817298181355, 3908894.936473099980503 ], [ 4984235.33455560170114, 3908865.400031274184585 ], [ 4984151.144621077924967, 3908916.545519747771323 ], [ 4984140.532028476707637, 3908899.406437404919416 ], [ 4984126.705546190962195, 3908902.287139214109629 ], [ 4984109.782769132405519, 3908874.937586136162281 ], [ 4984172.925441370345652, 3908836.48731599515304 ], [ 4984149.691651025786996, 3908799.291376207955182 ], [ 4984217.735874775797129, 3908757.939626039937139 ], [ 4984228.393710498698056, 3908755.779809203464538 ], [ 4984226.398815447464585, 3908747.035948093514889 ], [ 4984275.990457803942263, 3908716.929215837270021 ], [ 4984261.362470818683505, 3908693.226280446629971 ], [ 4984289.041312377899885, 3908676.541102315299213 ], [ 4984317.436059419997036, 3908722.852591487113386 ], [ 4984339.636886884458363, 3908709.431801721453667 ], [ 4984328.737274865619838, 3908691.927840504329652 ], [ 4984361.318363117054105, 3908671.977051814552397 ], [ 4984406.634726653806865, 3908746.002474680077285 ], [ 4984378.955883137881756, 3908762.68753238581121 ], [ 4984399.892949067056179, 3908796.965210173279047 ], [ 4984431.032695831730962, 3908777.739382731262594 ], [ 4984466.022473490796983, 3908835.354656775016338 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984461.403848878107965, 3907494.243451402522624 ], [ 4984513.249164739623666, 3907486.354555121157318 ], [ 4984519.205558132380247, 3907524.602486683987081 ], [ 4984467.360314239747822, 3907532.491371660493314 ], [ 4984461.403848878107965, 3907494.243451402522624 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984375.889978763647377, 3906391.085630482062697 ], [ 4984407.868055248633027, 3906383.878130059689283 ], [ 4984413.566016243770719, 3906409.744909151922911 ], [ 4984424.513590928167105, 3906407.221719929948449 ], [ 4984430.213243193924427, 3906432.360242543742061 ], [ 4984423.011415718123317, 3906433.799838863778859 ], [ 4984432.131189691834152, 3906473.875823880545795 ], [ 4984396.408339325338602, 3906481.802759472280741 ], [ 4984375.889978763647377, 3906391.085630482062697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984325.834978520870209, 3916671.180961188394576 ], [ 4984348.312811118550599, 3916659.581449814606458 ], [ 4984363.210487941280007, 3916689.111347778700292 ], [ 4984340.733528820797801, 3916700.346714375540614 ], [ 4984325.834978520870209, 3916671.180961188394576 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984104.676582974381745, 3906011.38829335058108 ], [ 4984034.095393259078264, 3906026.516836266033351 ], [ 4984026.116426454856992, 3905990.813249273225665 ], [ 4984069.618480298668146, 3905981.083347290754318 ], [ 4984070.757474889047444, 3905986.547991440165788 ], [ 4984097.838397947140038, 3905980.42107082111761 ], [ 4984104.676582974381745, 3906011.38829335058108 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983412.501205402426422, 3896905.773077166173607 ], [ 4983426.283241896890104, 3896924.739716911688447 ], [ 4983401.181839089840651, 3896942.888170960359275 ], [ 4983416.398999681696296, 3896964.042904892005026 ], [ 4983389.278011353686452, 3896983.643220065161586 ], [ 4983359.990749016404152, 3896943.521222304552794 ], [ 4983412.501205402426422, 3896905.773077166173607 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983003.652644083835185, 3917128.738846580497921 ], [ 4983026.708514359779656, 3917115.683018604293466 ], [ 4983040.181683164089918, 3917139.382758700288832 ], [ 4983017.125826601870358, 3917152.438575311563909 ], [ 4983003.652644083835185, 3917128.738846580497921 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982953.936039995402098, 3916343.550592318177223 ], [ 4982974.889050960540771, 3916369.088142675813287 ], [ 4982969.409410676918924, 3916373.809298722073436 ], [ 4982979.16883875336498, 3916385.484026898629963 ], [ 4982954.945155842229724, 3916405.455762363504618 ], [ 4982948.056490801274776, 3916397.064846589695662 ], [ 4982927.869974526576698, 3916413.768670204095542 ], [ 4982897.443653721362352, 3916377.285379470326006 ], [ 4982917.630178342573345, 3916360.581533366814256 ], [ 4982923.944875113666058, 3916368.242854388430715 ], [ 4982953.936039995402098, 3916343.550592318177223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982916.751156908459961, 3917871.738081412389874 ], [ 4982895.922442391514778, 3917917.935384737327695 ], [ 4982853.081725845113397, 3917898.902084465138614 ], [ 4982874.489350502379239, 3917851.249537776689976 ], [ 4982882.539780391380191, 3917854.90935713564977 ], [ 4982891.796617882326245, 3917834.539053202141076 ], [ 4982916.810514460317791, 3917845.884649224579334 ], [ 4982906.974691079929471, 3917867.710154689848423 ], [ 4982916.751156908459961, 3917871.738081412389874 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982722.403616213239729, 3904692.581957909744233 ], [ 4982805.997245989739895, 3904654.90361088886857 ], [ 4982824.334598302841187, 3904695.000115795992315 ], [ 4982740.741067154332995, 3904732.678406697697937 ], [ 4982722.403616213239729, 3904692.581957909744233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982479.787730944342911, 3907541.361519125290215 ], [ 4982466.814548012800515, 3907548.614607059396803 ], [ 4982459.646305872127414, 3907535.48951055528596 ], [ 4982465.123504291288555, 3907532.588929223828018 ], [ 4982424.69280647393316, 3907459.306240798439831 ], [ 4982512.042875468730927, 3907411.803914407733828 ], [ 4982618.99502825550735, 3907606.49467030307278 ], [ 4982539.429289731197059, 3907649.644819697830826 ], [ 4982479.787730944342911, 3907541.361519125290215 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982046.761689785867929, 3905117.079068015795201 ], [ 4982018.224973872303963, 3905130.123266097158194 ], [ 4982006.476650349795818, 3905104.607472570613027 ], [ 4982035.013387575745583, 3905091.563262213952839 ], [ 4982046.761689785867929, 3905117.079068015795201 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981905.884022284299135, 3916751.54297939222306 ], [ 4981929.141955158673227, 3916776.356655215844512 ], [ 4981937.79481344576925, 3916768.365245305933058 ], [ 4981954.162181463092566, 3916785.51655132882297 ], [ 4981940.894249068573117, 3916797.867141755763441 ], [ 4981947.785593323409557, 3916805.165403482038528 ], [ 4981910.289401233196259, 3916840.037608817219734 ], [ 4981885.021664318628609, 3916813.034604207612574 ], [ 4981890.501846323721111, 3916807.949092975351959 ], [ 4981869.253751076757908, 3916785.324792843312025 ], [ 4981905.884022284299135, 3916751.54297939222306 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981774.189716961234808, 3895344.650872032623738 ], [ 4981798.393713276833296, 3895341.428210945334285 ], [ 4981801.512285554781556, 3895363.647146778181195 ], [ 4981777.30748897138983, 3895367.233932941220701 ], [ 4981774.189716961234808, 3895344.650872032623738 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981474.820684998296201, 3895379.663219497073442 ], [ 4981481.81721355766058, 3895342.537667104043067 ], [ 4981541.420906784944236, 3895353.231043405365199 ], [ 4981535.877636537887156, 3895384.533764679450542 ], [ 4981503.052480724640191, 3895378.634094764012843 ], [ 4981501.887204091995955, 3895384.457557990215719 ], [ 4981474.820684998296201, 3895379.663219497073442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981436.765088773332536, 3905811.197817652951926 ], [ 4981511.148234769701958, 3905769.489348765928298 ], [ 4981541.550117345526814, 3905823.084944622125477 ], [ 4981467.167071955278516, 3905864.793330719228834 ], [ 4981436.765088773332536, 3905811.197817652951926 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980993.963008004240692, 3895161.933080220595002 ], [ 4981001.974373444914818, 3895186.347571725025773 ], [ 4980976.895647494122386, 3895194.302691454533488 ], [ 4980968.8834527740255, 3895170.252335127443075 ], [ 4980993.963008004240692, 3895161.933080220595002 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980973.892606046050787, 3903285.640133475419134 ], [ 4980987.484657574445009, 3903259.8170146048069 ], [ 4981049.614900984801352, 3903291.998757957946509 ], [ 4981035.442816465161741, 3903319.641212636604905 ], [ 4981003.227477569133043, 3903302.819518640637398 ], [ 4980998.600533260032535, 3903311.548384813126177 ], [ 4980982.2048828471452, 3903303.136915021110326 ], [ 4980987.411000440828502, 3903292.952807910274714 ], [ 4980973.892606046050787, 3903285.640133475419134 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980774.738645162433386, 3908170.028182351961732 ], [ 4980794.646914822980762, 3908151.13740506162867 ], [ 4980788.04013794939965, 3908144.204247426707298 ], [ 4980805.639442421495914, 3908127.857289572246373 ], [ 4980838.959592658095062, 3908163.252015454228967 ], [ 4980801.45202346239239, 3908198.489709673915058 ], [ 4980774.738645162433386, 3908170.028182351961732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980743.270337077789009, 3907298.225562635343522 ], [ 4980758.780484057962894, 3907315.374126123730093 ], [ 4980736.564986773766577, 3907335.716342676896602 ], [ 4980720.766910811886191, 3907318.567154524382204 ], [ 4980743.270337077789009, 3907298.225562635343522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980616.022088241763413, 3901034.15262195141986 ], [ 4980645.135230231098831, 3901022.564756706357002 ], [ 4980677.504650027491152, 3901101.288585698697716 ], [ 4980648.678767492994666, 3901113.2411820567213 ], [ 4980638.652918084524572, 3901088.822255016770214 ], [ 4980629.428280185908079, 3901092.807312603574246 ], [ 4980620.547140595503151, 3901071.668099890463054 ], [ 4980629.771784408949316, 3901067.683039306662977 ], [ 4980616.022088241763413, 3901034.15262195141986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980297.771717573516071, 3898943.705708494409919 ], [ 4980308.368316802196205, 3898971.038772105239332 ], [ 4980277.813022701069713, 3898982.623825189191848 ], [ 4980267.505212822929025, 3898954.927277176640928 ], [ 4980297.771717573516071, 3898943.705708494409919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980258.615096847526729, 3902216.7913131355308 ], [ 4980226.596433335915208, 3902240.753684861585498 ], [ 4980178.068158719688654, 3902176.560153797268867 ], [ 4980201.145036281086504, 3902159.132469745818526 ], [ 4980234.741419695317745, 3902203.6301837884821 ], [ 4980243.683231920935214, 3902197.095450220629573 ], [ 4980258.615096847526729, 3902216.7913131355308 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980225.755100140348077, 3895798.556067324243486 ], [ 4980208.172066012397408, 3895803.979443228337914 ], [ 4980214.461243163794279, 3895825.841022708453238 ], [ 4980185.061803850345314, 3895834.151534893084317 ], [ 4980179.630368576385081, 3895815.20488054677844 ], [ 4980158.301110872067511, 3895821.348336288705468 ], [ 4980150.009897783398628, 3895792.928047990892082 ], [ 4980176.527272553183138, 3895785.339439157862216 ], [ 4980175.096599697135389, 3895780.966746137477458 ], [ 4980217.178297077305615, 3895769.042742791585624 ], [ 4980225.755100140348077, 3895798.556067324243486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980134.605583732016385, 3907422.51042888732627 ], [ 4980123.606171729974449, 3907449.067983742803335 ], [ 4980073.552619334310293, 3907428.202817965764552 ], [ 4980084.551192960701883, 3907402.00937350327149 ], [ 4980134.605583732016385, 3907422.51042888732627 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980021.973847568035126, 3893222.257942910771817 ], [ 4979996.008663347922266, 3893239.679392872843891 ], [ 4979984.522953324019909, 3893222.540225161239505 ], [ 4979980.483502029441297, 3893225.444433759897947 ], [ 4979959.807117109186947, 3893195.540679080877453 ], [ 4980001.929365574382246, 3893166.866494802758098 ], [ 4980019.734498403035104, 3893192.39445437444374 ], [ 4980007.328840086236596, 3893200.742308929096907 ], [ 4980021.973847568035126, 3893222.257942910771817 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979968.429408715106547, 3896897.300773965194821 ], [ 4979923.16606529802084, 3896916.136695176362991 ], [ 4979914.570219653658569, 3896895.362525351345539 ], [ 4979906.497995392419398, 3896898.622079110238701 ], [ 4979896.755538313649595, 3896875.296503428835422 ], [ 4979949.803929389454424, 3896852.836237960029393 ], [ 4979968.429408715106547, 3896897.300773965194821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979484.5821169372648, 3901522.52568969456479 ], [ 4979498.548419958911836, 3901456.648252298124135 ], [ 4979533.380139197222888, 3901463.642255059443414 ], [ 4979526.68611166253686, 3901496.035394209902734 ], [ 4979537.049767923541367, 3901497.878523434977978 ], [ 4979532.976859600283206, 3901516.804500638507307 ], [ 4979520.598867606371641, 3901514.228743529878557 ], [ 4979517.397833661176264, 3901529.515303941909224 ], [ 4979484.5821169372648, 3901522.52568969456479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979283.282014631666243, 3896451.210221870802343 ], [ 4979245.225760919041932, 3896467.149801927153021 ], [ 4979228.31683561205864, 3896427.423171922564507 ], [ 4979266.373135383240879, 3896411.483568308874965 ], [ 4979283.282014631666243, 3896451.210221870802343 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979217.120543814264238, 3908159.339973108842969 ], [ 4979163.371653245761991, 3908250.257179438136518 ], [ 4979134.041024476289749, 3908233.0797507497482 ], [ 4979187.78984978236258, 3908142.162486707326025 ], [ 4979217.120543814264238, 3908159.339973108842969 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979173.413842511363328, 3908533.573899663053453 ], [ 4979162.703744722530246, 3908560.132486823014915 ], [ 4979123.869171486236155, 3908544.39111209101975 ], [ 4979134.867150839418173, 3908517.833129977807403 ], [ 4979173.413842511363328, 3908533.573899663053453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979112.982518460601568, 3901164.146509262733161 ], [ 4979089.920386334881186, 3901174.656662562396377 ], [ 4979068.135577615350485, 3901126.908643850591034 ], [ 4979111.088079703971744, 3901107.702145821414888 ], [ 4979127.9996931347996, 3901144.87990860035643 ], [ 4979108.108593582175672, 3901153.940351801458746 ], [ 4979112.982518460601568, 3901164.146509262733161 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978966.652345390990376, 3901043.668680128641427 ], [ 4978981.542769575491548, 3901083.390924329403788 ], [ 4978936.867833285592496, 3901100.045015896204859 ], [ 4978918.826610988937318, 3901052.30515657691285 ], [ 4978941.884872493334115, 3901043.615503069479018 ], [ 4978944.746832665987313, 3901051.99665613938123 ], [ 4978966.652345390990376, 3901043.668680128641427 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978786.778556682169437, 3905155.781829245388508 ], [ 4978801.936954482458532, 3905203.879681517835706 ], [ 4978757.851100716739893, 3905217.622305202297866 ], [ 4978742.69263191986829, 3905169.524477384053171 ], [ 4978786.778556682169437, 3905155.781829245388508 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978771.408855038695037, 3907224.018567607272416 ], [ 4978791.94763145968318, 3907179.274282266385853 ], [ 4978818.986349858343601, 3907191.712694256566465 ], [ 4978798.44753778912127, 3907236.456959264352918 ], [ 4978771.408855038695037, 3907224.018567607272416 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978765.79653391148895, 3906079.539418584201485 ], [ 4978754.6027228590101, 3906062.765391428954899 ], [ 4978777.670671353116632, 3906047.521225394681096 ], [ 4978809.817019933834672, 3906095.655484017450362 ], [ 4978786.460375094786286, 3906111.263136649969965 ], [ 4978778.423013458028436, 3906099.593705422244966 ], [ 4978769.1956926882267, 3906105.764195433817804 ], [ 4978755.992550235241652, 3906086.072810708545148 ], [ 4978765.79653391148895, 3906079.539418584201485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978737.559277669526637, 3907299.685627172701061 ], [ 4978764.888944115489721, 3907310.66807940043509 ], [ 4978747.232691389508545, 3907353.962027799803764 ], [ 4978719.903061880730093, 3907342.97959323739633 ], [ 4978737.559277669526637, 3907299.685627172701061 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978713.235179367475212, 3907633.542882821522653 ], [ 4978677.181734469719231, 3907662.960519387852401 ], [ 4978657.653543171472847, 3907639.250189762562513 ], [ 4978693.419074828736484, 3907609.831911874935031 ], [ 4978713.235179367475212, 3907633.542882821522653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978681.55849717464298, 3906423.463975038845092 ], [ 4978693.59577143099159, 3906449.707211715169251 ], [ 4978641.140100336633623, 3906473.627838446293026 ], [ 4978627.096564317122102, 3906443.010756521020085 ], [ 4978660.529817103408277, 3906427.788622312713414 ], [ 4978662.823970341123641, 3906432.163108344189823 ], [ 4978681.55849717464298, 3906423.463975038845092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978637.805484320037067, 3902506.77109611267224 ], [ 4978649.687251307070255, 3902471.839880177285522 ], [ 4978673.285154931247234, 3902479.537045903503895 ], [ 4978661.115382499992847, 3902514.467636365909129 ], [ 4978637.805484320037067, 3902506.77109611267224 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978534.2091208929196, 3908549.317728503607213 ], [ 4978490.456362135708332, 3908544.490759943146259 ], [ 4978493.687024815008044, 3908514.638777989894152 ], [ 4978537.440608016215265, 3908519.10162088368088 ], [ 4978534.2091208929196, 3908549.317728503607213 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978469.705714992247522, 3904227.297389931045473 ], [ 4978428.219366015866399, 3904236.676505972165614 ], [ 4978421.659817783161998, 3904206.803764272015542 ], [ 4978463.146210524253547, 3904197.424638273194432 ], [ 4978469.705714992247522, 3904227.297389931045473 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978353.593016980215907, 3906561.135178241413087 ], [ 4978376.066635767929256, 3906554.264438243117183 ], [ 4978370.919415829703212, 3906537.503421688452363 ], [ 4978389.935514967888594, 3906531.717739775311202 ], [ 4978393.65389094222337, 3906543.377872596960515 ], [ 4978403.44987484253943, 3906540.48565042251721 ], [ 4978414.317037161439657, 3906575.465443928260356 ], [ 4978362.742690832354128, 3906591.377584612928331 ], [ 4978353.593016980215907, 3906561.135178241413087 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978298.534495395608246, 3908353.641293761320412 ], [ 4978312.897019217722118, 3908369.329488060902804 ], [ 4978293.568035929463804, 3908387.495067606214434 ], [ 4978278.917595253325999, 3908371.80627234838903 ], [ 4978298.534495395608246, 3908353.641293761320412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978294.34224817622453, 3906395.329253748990595 ], [ 4978308.102117961272597, 3906424.124897583853453 ], [ 4978270.344611554406583, 3906441.887217451818287 ], [ 4978256.583938010968268, 3906413.455723012797534 ], [ 4978294.34224817622453, 3906395.329253748990595 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978152.005078081972897, 3906712.550601749215275 ], [ 4978195.266041827388108, 3906679.142097088508308 ], [ 4978213.644380863755941, 3906702.485504614189267 ], [ 4978170.383431667461991, 3906735.893980165012181 ], [ 4978152.005078081972897, 3906712.550601749215275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978111.993327827192843, 3912556.796324280556291 ], [ 4978114.373743851669133, 3912656.20978433592245 ], [ 4978062.842804706655443, 3912657.193157644476742 ], [ 4978060.461428076960146, 3912558.143833859823644 ], [ 4978111.993327827192843, 3912556.796324280556291 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977965.533194639720023, 3903932.010356427170336 ], [ 4977983.62181565258652, 3903957.173608920536935 ], [ 4977943.823050213977695, 3903985.491870637051761 ], [ 4977925.73441116604954, 3903960.328644498251379 ], [ 4977965.533194639720023, 3903932.010356427170336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977901.818996712565422, 3912023.989353280514479 ], [ 4977852.552270539104939, 3912042.82043725065887 ], [ 4977830.217577178962529, 3911985.968599156010896 ], [ 4977879.485159253701568, 3911966.773343255743384 ], [ 4977901.818996712565422, 3912023.989353280514479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977786.501167423091829, 3909503.946183145511895 ], [ 4977852.616878624074161, 3909552.515039088204503 ], [ 4977831.250732377171516, 3909581.600651882123202 ], [ 4977810.266053715720773, 3909566.262893714010715 ], [ 4977803.625900068320334, 3909574.98810109263286 ], [ 4977787.527882540598512, 3909563.30197430588305 ], [ 4977795.323476253077388, 3909552.758531195577234 ], [ 4977766.001826973631978, 3909531.577140064910054 ], [ 4977786.501167423091829, 3909503.946183145511895 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977780.169481970369816, 3911281.629669132176787 ], [ 4977808.127975066192448, 3911265.666656689718366 ], [ 4977832.221298801712692, 3911307.956828877795488 ], [ 4977804.262835241854191, 3911323.919816665817052 ], [ 4977780.169481970369816, 3911281.629669132176787 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977657.445895709097385, 3904875.919147442560643 ], [ 4977665.740721603855491, 3904902.518171421717852 ], [ 4977624.536774576641619, 3904915.176307155285031 ], [ 4977616.242675667628646, 3904888.213165635243058 ], [ 4977657.445895709097385, 3904875.919147442560643 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977567.835628693923354, 3912594.976466535124928 ], [ 4977555.657318009994924, 3912636.826279923319817 ], [ 4977522.860010093078017, 3912627.290091076400131 ], [ 4977535.038273913785815, 3912585.44026306970045 ], [ 4977567.835628693923354, 3912594.976466535124928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977500.130965755321085, 3906432.981198715046048 ], [ 4977525.217250337824225, 3906415.919521385803819 ], [ 4977552.200862652622163, 3906455.302302662283182 ], [ 4977527.114597542211413, 3906472.36395521601662 ], [ 4977500.130965755321085, 3906432.981198715046048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977180.697969208471477, 3912156.479406932368875 ], [ 4977144.945432071574032, 3912183.350859811529517 ], [ 4977126.571449731476605, 3912159.279840489383787 ], [ 4977162.611875417642295, 3912132.408962702378631 ], [ 4977180.697969208471477, 3912156.479406932368875 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977174.338072007521987, 3912860.700091758277267 ], [ 4977199.948397789150476, 3912865.487152808811516 ], [ 4977198.204510894604027, 3912873.494456709828228 ], [ 4977226.11623923946172, 3912879.014602740295231 ], [ 4977217.681612504646182, 3912920.508242874871939 ], [ 4977164.448269853368402, 3912909.837521251291037 ], [ 4977174.338072007521987, 3912860.700091758277267 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977127.38027467019856, 3913292.828834191896021 ], [ 4977156.165778149850667, 3913293.252857747022063 ], [ 4977155.193069666624069, 3913345.686064479872584 ], [ 4977126.69548440631479, 3913345.262640697415918 ], [ 4977127.38027467019856, 3913292.828834191896021 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976955.697743775323033, 3907933.528004990424961 ], [ 4976993.756825328804553, 3907907.753542307764292 ], [ 4977010.11765412800014, 3907932.184355335310102 ], [ 4976972.34726626612246, 3907957.595261573791504 ], [ 4976955.697743775323033, 3907933.528004990424961 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976956.265522073954344, 3905715.236609184648842 ], [ 4976947.584941667504609, 3905735.609997279942036 ], [ 4976905.580623465590179, 3905718.408769961446524 ], [ 4976916.86625146958977, 3905691.486392369028181 ], [ 4976908.810605628415942, 3905688.192519133910537 ], [ 4976916.913020140491426, 3905668.910316828638315 ], [ 4976958.341520380228758, 3905686.110367432702333 ], [ 4976947.634000478312373, 3905711.941530404612422 ], [ 4976956.265522073954344, 3905715.236609184648842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976843.548977609723806, 3911622.324447884224355 ], [ 4976878.954510792158544, 3911624.218402761500329 ], [ 4976872.110859179869294, 3911731.623516583815217 ], [ 4976836.994099899195135, 3911729.366034633014351 ], [ 4976843.548977609723806, 3911622.324447884224355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976782.885283471085131, 3912837.311768080107868 ], [ 4976762.709728070534766, 3912849.286472567357123 ], [ 4976730.292012761346996, 3912795.327757012099028 ], [ 4976762.573102012276649, 3912776.095372479874641 ], [ 4976783.515967694111168, 3912810.731331806164235 ], [ 4976771.122601958923042, 3912817.988383692223579 ], [ 4976782.885283471085131, 3912837.311768080107868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976365.23112431447953, 3913096.807067747227848 ], [ 4976375.689149429090321, 3913050.583575084339827 ], [ 4976419.136605374515057, 3913060.504369153641164 ], [ 4976413.908674451522529, 3913083.069908584468067 ], [ 4976421.390169516205788, 3913084.541806404478848 ], [ 4976415.872133422642946, 3913108.199150434695184 ], [ 4976365.23112431447953, 3913096.807067747227848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976271.213345684111118, 3911213.68126516463235 ], [ 4976300.131661569699645, 3911150.381356987636536 ], [ 4976316.813351179473102, 3911158.062337722163647 ], [ 4976299.463371243327856, 3911195.532483896240592 ], [ 4976293.423006700351834, 3911192.971176305785775 ], [ 4976281.567505365237594, 3911218.436202014330775 ], [ 4976271.213345684111118, 3911213.68126516463235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976175.410493426956236, 3910478.664925421588123 ], [ 4976160.132827114313841, 3910488.10115121351555 ], [ 4976156.402129054069519, 3910482.267400660086423 ], [ 4976132.476535013876855, 3910497.147963210009038 ], [ 4976108.657290234230459, 3910459.957763467449695 ], [ 4976147.861329121515155, 3910435.276807501446456 ], [ 4976175.410493426956236, 3910478.664925421588123 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976011.137967191636562, 3901096.837496648076922 ], [ 4975980.613643328659236, 3901095.318796086590737 ], [ 4975983.301985030062497, 3901047.987270890269428 ], [ 4976013.825620545074344, 3901049.870103708002716 ], [ 4976011.137967191636562, 3901096.837496648076922 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975640.492051866836846, 3910342.119259257335216 ], [ 4975590.910905241966248, 3910373.334353612270206 ], [ 4975569.100171783007681, 3910339.061761918012053 ], [ 4975597.061271160840988, 3910321.639932576101273 ], [ 4975592.469690255820751, 3910314.347988532856107 ], [ 4975614.089778654277325, 3910300.554680294822901 ], [ 4975640.492051866836846, 3910342.119259257335216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975508.302407243289053, 3906515.184667536988854 ], [ 4975517.743967526592314, 3906545.062555172946304 ], [ 4975478.271898111328483, 3906557.363353311549872 ], [ 4975468.541628506034613, 3906527.849028815049678 ], [ 4975508.302407243289053, 3906515.184667536988854 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974867.843577883206308, 3904683.408800386358052 ], [ 4974820.869187234900892, 3904702.249954504426569 ], [ 4974812.558420387096703, 3904682.206153539475054 ], [ 4974805.353742809966207, 3904685.10484628751874 ], [ 4974799.336441007442772, 3904670.163461936637759 ], [ 4974809.134894539602101, 3904666.177542500197887 ], [ 4974802.544582748785615, 3904649.778489448595792 ], [ 4974852.40078535489738, 3904629.85065736528486 ], [ 4974861.283817062154412, 3904651.716269364114851 ], [ 4974855.80830985121429, 3904653.890135299414396 ], [ 4974867.843577883206308, 3904683.408800386358052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974808.724326075986028, 3905883.468883369117975 ], [ 4974828.325437753461301, 3905872.948136526159942 ], [ 4974838.367829511873424, 3905890.810620160307735 ], [ 4974818.766000980511308, 3905901.69549014326185 ], [ 4974808.724326075986028, 3905883.468883369117975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974768.311402942985296, 3900583.822692676447332 ], [ 4974796.021676521748304, 3900552.562651674728841 ], [ 4974827.932961125858128, 3900581.028436257038265 ], [ 4974813.789087951183319, 3900597.021992148831487 ], [ 4974819.826173084788024, 3900602.495984011795372 ], [ 4974806.26048962213099, 3900617.398304578382522 ], [ 4974768.311402942985296, 3900583.822692676447332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974474.233847958035767, 3896235.160616174805909 ], [ 4974436.180875699967146, 3896250.742874183226377 ], [ 4974429.588972485624254, 3896233.979867122601718 ], [ 4974417.192937022075057, 3896239.053161812480539 ], [ 4974411.745999930426478, 3896225.933720634318888 ], [ 4974427.600748029537499, 3896219.774876487441361 ], [ 4974414.127421065233648, 3896186.976555762346834 ], [ 4974449.009081188589334, 3896172.844509217888117 ], [ 4974474.233847958035767, 3896235.160616174805909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974295.986803913488984, 3895186.115143629722297 ], [ 4974229.131111500784755, 3895199.456090141553432 ], [ 4974224.56597906164825, 3895177.235197294037789 ], [ 4974234.939609979279339, 3895175.434994769282639 ], [ 4974229.235885148867965, 3895146.293397940229625 ], [ 4974285.717339891009033, 3895135.116759014315903 ], [ 4974295.986803913488984, 3895186.115143629722297 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974281.994627999141812, 3897022.02920408686623 ], [ 4974307.476107379421592, 3897100.003277041949332 ], [ 4974265.683577897027135, 3897113.75775138149038 ], [ 4974250.794017361477017, 3897068.940416328143328 ], [ 4974254.8293999414891, 3897067.49185401154682 ], [ 4974243.948622816242278, 3897034.698714083060622 ], [ 4974281.994627999141812, 3897022.02920408686623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974181.241292076185346, 3896406.451298920903355 ], [ 4974142.904271632432938, 3896420.21276499517262 ], [ 4974119.698802194558084, 3896356.080286346841604 ], [ 4974169.565557331778109, 3896338.336056809406728 ], [ 4974178.160283096134663, 3896362.0214085849002 ], [ 4974166.917963829822838, 3896366.368831175845116 ], [ 4974181.241292076185346, 3896406.451298920903355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974009.864927465096116, 3894786.830372617114335 ], [ 4974062.287006693892181, 3894789.482214093208313 ], [ 4974061.090411996468902, 3894812.055883574765176 ], [ 4974070.306921740062535, 3894812.802250017877668 ], [ 4974069.697173932567239, 3894829.915132034569979 ], [ 4974059.615773326717317, 3894829.531196082476526 ], [ 4974058.71368052624166, 3894848.828280413057655 ], [ 4974011.476087089627981, 3894846.550749992951751 ], [ 4974013.270200541242957, 3894813.054369848687202 ], [ 4974008.661945001222193, 3894812.681196017656475 ], [ 4974009.864927465096116, 3894786.830372617114335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974005.777844133786857, 3894961.240321295335889 ], [ 4974006.970813177525997, 3894940.487287298776209 ], [ 4974015.323817286640406, 3894940.867810981813818 ], [ 4974016.516794541850686, 3894920.11477765114978 ], [ 4974000.674951725639403, 3894919.355427890550345 ], [ 4974002.168125547468662, 3894892.412783855572343 ], [ 4974059.485584796406329, 3894895.80248607089743 ], [ 4974055.89511142205447, 3894963.887628173921257 ], [ 4974005.777844133786857, 3894961.240321295335889 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973893.502427004277706, 3898603.410413210745901 ], [ 4973856.317199625074863, 3898618.995206436142325 ], [ 4973853.451253713108599, 3898611.706993861123919 ], [ 4973834.71428591106087, 3898619.68119442043826 ], [ 4973824.679886968806386, 3898595.993103836663067 ], [ 4973843.416155776940286, 3898588.383025171235204 ], [ 4973839.115088832564652, 3898578.543095021508634 ], [ 4973876.300362061709166, 3898562.958278383594006 ], [ 4973893.502427004277706, 3898603.410413210745901 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973754.638606338761747, 3909823.848091018386185 ], [ 4973756.933976743370295, 3909827.858036052901298 ], [ 4973795.270931806415319, 3909804.264362816233188 ], [ 4973820.813519837334752, 3909845.461320300586522 ], [ 4973771.812225690111518, 3909875.224363571964204 ], [ 4973768.368823371827602, 3909869.391509652137756 ], [ 4973743.579603054560721, 3909884.63663687184453 ], [ 4973719.184265843592584, 3909845.62678840290755 ], [ 4973754.638606338761747, 3909823.848091018386185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973743.296620867215097, 3903691.843546575400978 ], [ 4973704.954564770683646, 3903713.616555514279753 ], [ 4973679.699581787921488, 3903669.507385981734842 ], [ 4973724.095364564098418, 3903644.468980085570365 ], [ 4973735.287635653279722, 3903664.153925860766321 ], [ 4973729.521920055150986, 3903667.419847241602838 ], [ 4973743.296620867215097, 3903691.843546575400978 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973708.897546958178282, 3904349.033476505428553 ], [ 4973688.424074889160693, 3904363.55877484055236 ], [ 4973681.245010152459145, 3904353.349086738191545 ], [ 4973667.980456413701177, 3904362.790626846719533 ], [ 4973638.400966456159949, 3904321.586093982681632 ], [ 4973659.739740322344005, 3904306.334182635881007 ], [ 4973662.898055692203343, 3904311.074050920084119 ], [ 4973675.298045847564936, 3904301.99495331896469 ], [ 4973708.897546958178282, 3904349.033476505428553 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973672.135759088210762, 3903708.818808775860816 ], [ 4973687.063061352819204, 3903732.880596957169473 ], [ 4973663.133554224856198, 3903747.399166578892618 ], [ 4973668.587130677886307, 3903756.513086097314954 ], [ 4973640.332505824975669, 3903773.936290425714105 ], [ 4973619.950882677920163, 3903741.12474677618593 ], [ 4973672.135759088210762, 3903708.818808775860816 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973378.523772597312927, 3899789.835597897879779 ], [ 4973334.711380210705101, 3899807.957180468831211 ], [ 4973315.504486175253987, 3899761.67540394840762 ], [ 4973340.292900306172669, 3899751.527782836463302 ], [ 4973344.02006237860769, 3899760.274136471096426 ], [ 4973363.044097872450948, 3899752.300146817229688 ], [ 4973378.523772597312927, 3899789.835597897879779 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973330.905971468426287, 3901920.271724124904722 ], [ 4973312.148889555595815, 3901939.898449512664229 ], [ 4973289.727716566063464, 3901918.371302642393857 ], [ 4973308.484797032549977, 3901898.744561865925789 ], [ 4973330.905971468426287, 3901920.271724124904722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973211.135029771365225, 3899520.783244125545025 ], [ 4973234.772289208136499, 3899510.269171015825123 ], [ 4973250.545224949717522, 3899545.256197014357895 ], [ 4973226.90799003560096, 3899555.770256478339434 ], [ 4973211.135029771365225, 3899520.783244125545025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973061.934736240655184, 3899675.614753591828048 ], [ 4973104.88313306402415, 3899657.491060831584036 ], [ 4973117.497896402142942, 3899687.374093301594257 ], [ 4973096.168416856788099, 3899696.072069904301316 ], [ 4973104.482722131535411, 3899715.751150651369244 ], [ 4973082.864559075795114, 3899724.812711353413761 ], [ 4973061.934736240655184, 3899675.614753591828048 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973039.983846531249583, 3904639.405287862289697 ], [ 4973066.759480327367783, 3904641.641693477053195 ], [ 4973062.93461961299181, 3904683.873570617754012 ], [ 4973036.159729319624603, 3904681.273038620594889 ], [ 4973039.983846531249583, 3904639.405287862289697 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972685.301248700357974, 3900234.195702926721424 ], [ 4972684.983978681266308, 3900249.488576761446893 ], [ 4972659.640465653501451, 3900249.075957586523145 ], [ 4972659.957721251994371, 3900233.783083459362388 ], [ 4972685.301248700357974, 3900234.195702926721424 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972567.367968167178333, 3903776.235509003978223 ], [ 4972542.863177552819252, 3903790.753976770211011 ], [ 4972527.361734221689403, 3903765.235204551368952 ], [ 4972588.768475639633834, 3903728.57518765097484 ], [ 4972607.714325685054064, 3903759.926677518989891 ], [ 4972570.525147846899927, 3903781.703507281374186 ], [ 4972567.367968167178333, 3903776.235509003978223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972554.341413833200932, 3900191.342131555080414 ], [ 4972603.881409124471247, 3900189.616089901421219 ], [ 4972606.324539540335536, 3900267.544684087857604 ], [ 4972556.785382802598178, 3900268.906592139042914 ], [ 4972554.341413833200932, 3900191.342131555080414 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972350.236307377927005, 3898326.242148012854159 ], [ 4972379.061463730409741, 3898314.280671625398099 ], [ 4972394.544040360487998, 3898351.451395059004426 ], [ 4972366.006939473561943, 3898363.413402833975852 ], [ 4972350.236307377927005, 3898326.242148012854159 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972182.820921179838479, 3907026.106955554336309 ], [ 4972207.036714890040457, 3907010.495192570146173 ], [ 4972232.874410091899335, 3907050.59872327465564 ], [ 4972208.946566711179912, 3907066.211009407881647 ], [ 4972182.820921179838479, 3907026.106955554336309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971902.86610815487802, 3905544.289524487685412 ], [ 4971837.118531786836684, 3905595.144102386664599 ], [ 4971810.978560767136514, 3905561.594792747870088 ], [ 4971857.405670628882945, 3905525.633155971299857 ], [ 4971863.150870554149151, 3905532.926609495189041 ], [ 4971882.471367279998958, 3905518.033609522040933 ], [ 4971902.86610815487802, 3905544.289524487685412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971844.195554134435952, 3907341.897938983514905 ], [ 4971809.59505617711693, 3907368.050318351015449 ], [ 4971763.92707207147032, 3907308.246769696008414 ], [ 4971798.239675243385136, 3907282.093790824525058 ], [ 4971844.195554134435952, 3907341.897938983514905 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971540.819517374970019, 3911134.132235584314913 ], [ 4971569.928032429888844, 3911117.072493757121265 ], [ 4971586.860086789354682, 3911145.506579150445759 ], [ 4971557.751591683365405, 3911162.566302930470556 ], [ 4971540.819517374970019, 3911134.132235584314913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971406.456264602020383, 3893500.476441889069974 ], [ 4971414.467999495565891, 3893529.621711863670498 ], [ 4971383.629100985825062, 3893537.5750228962861 ], [ 4971375.905409691855311, 3893508.430299107450992 ], [ 4971406.456264602020383, 3893500.476441889069974 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971241.70675515383482, 3904788.57080096565187 ], [ 4971273.408780162222683, 3904774.06453771609813 ], [ 4971289.469105103984475, 3904809.051060094032437 ], [ 4971239.034564189612865, 3904831.897474933881313 ], [ 4971219.820916553027928, 3904789.2583576310426 ], [ 4971238.265534824691713, 3904780.917638570535928 ], [ 4971241.70675515383482, 3904788.57080096565187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971215.27762327902019, 3905529.165214918088168 ], [ 4971234.486680705100298, 3905573.989130526315421 ], [ 4971207.974724655039608, 3905585.227908818982542 ], [ 4971188.766307854093611, 3905540.03988148458302 ], [ 4971215.27762327902019, 3905529.165214918088168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971210.069162636995316, 3899191.45670762239024 ], [ 4971218.919737922027707, 3899233.34813778847456 ], [ 4971182.615860175341368, 3899240.9274044604972 ], [ 4971184.61504019703716, 3899250.034374661743641 ], [ 4971169.632272873073816, 3899253.283715528901666 ], [ 4971158.783112614415586, 3899201.921203880105168 ], [ 4971210.069162636995316, 3899191.45670762239024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971145.377807147800922, 3898045.054959450848401 ], [ 4971185.154483595862985, 3898029.471236797980964 ], [ 4971192.607305815443397, 3898048.783972586039454 ], [ 4971201.542877564206719, 3898045.159276966471225 ], [ 4971211.575056063942611, 3898071.395281586330384 ], [ 4971162.863548507913947, 3898090.239542391616851 ], [ 4971145.377807147800922, 3898045.054959450848401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971004.336661584675312, 3891769.753195250872523 ], [ 4971035.45814926084131, 3891765.805392105598003 ], [ 4971041.137068926356733, 3891810.603731661569327 ], [ 4971010.015632230788469, 3891814.551528329029679 ], [ 4971004.336661584675312, 3891769.753195250872523 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970953.505311784334481, 3904143.523637344129384 ], [ 4970892.100408992730081, 3904180.915660339407623 ], [ 4970867.410454620607197, 3904140.451485901139677 ], [ 4970886.437382373027503, 3904128.834421416278929 ], [ 4970885.863478458486497, 3904127.740967445541173 ], [ 4970903.737233782187104, 3904116.850047920364887 ], [ 4970910.627436295151711, 3904128.150850586593151 ], [ 4970934.843747539445758, 3904113.266228982247412 ], [ 4970953.505311784334481, 3904143.523637344129384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970628.884776720777154, 3905131.541986271739006 ], [ 4970604.389626413583755, 3905142.056800382677466 ], [ 4970594.639446847140789, 3905120.191002890001982 ], [ 4970619.423232504166663, 3905109.3125787707977 ], [ 4970628.884776720777154, 3905131.541986271739006 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970637.896825003437698, 3893172.429856772534549 ], [ 4970677.376929859630764, 3893165.21983536798507 ], [ 4970684.793313032016158, 3893205.287653933744878 ], [ 4970645.313264967873693, 3893212.49766462482512 ], [ 4970637.896825003437698, 3893172.429856772534549 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970539.725644236430526, 3897850.584512952715158 ], [ 4970482.94142618495971, 3897873.784760379698128 ], [ 4970462.296089028008282, 3897823.132894123904407 ], [ 4970504.956317215226591, 3897805.73279703874141 ], [ 4970515.565989343449473, 3897831.605465074069798 ], [ 4970529.40136094763875, 3897826.168877936434001 ], [ 4970539.725644236430526, 3897850.584512952715158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970412.487718733027577, 3908673.420512364711612 ], [ 4970383.929817131720483, 3908703.227123820222914 ], [ 4970343.690695635974407, 3908665.647940485272557 ], [ 4970372.249258023686707, 3908635.47715585725382 ], [ 4970412.487718733027577, 3908673.420512364711612 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969873.656251466833055, 3893153.922689975239336 ], [ 4969891.312704619951546, 3893107.710260103456676 ], [ 4969928.161091604270041, 3893121.977982244919986 ], [ 4969910.21650608908385, 3893168.189866879023612 ], [ 4969873.656251466833055, 3893153.922689975239336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969636.743027183227241, 3906974.06428363872692 ], [ 4969658.241368432529271, 3907027.630398123525083 ], [ 4969635.478525818325579, 3907036.692697155755013 ], [ 4969613.980801944620907, 3906982.762469836976379 ], [ 4969636.743027183227241, 3906974.06428363872692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969530.750952190719545, 3897534.87329961033538 ], [ 4969508.253771785646677, 3897551.947002082131803 ], [ 4969478.942528039216995, 3897514.024891505483538 ], [ 4969516.438955982215703, 3897484.961809961590916 ], [ 4969540.57738515548408, 3897516.320330110844225 ], [ 4969525.290779689326882, 3897527.945025844499469 ], [ 4969530.750952190719545, 3897534.87329961033538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969182.492804982699454, 3898034.564472373574972 ], [ 4969226.511405436322093, 3898062.316880538593978 ], [ 4969194.738933600485325, 3898112.5101208970882 ], [ 4969172.298280626535416, 3898098.269034279044718 ], [ 4969178.652370906434953, 3898088.448855135124177 ], [ 4969156.786442697048187, 3898074.937066419515759 ], [ 4969182.492804982699454, 3898034.564472373574972 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969129.638387537561357, 3892941.028447824530303 ], [ 4969123.860563140362501, 3892950.121379367541522 ], [ 4969098.537337756715715, 3892934.418756943196058 ], [ 4969126.271553843282163, 3892890.408543912693858 ], [ 4969171.162249326705933, 3892918.526444352697581 ], [ 4969149.206465649418533, 3892953.079556705895811 ], [ 4969129.638387537561357, 3892941.028447824530303 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968636.151533707976341, 3913357.346436759456992 ], [ 4968608.220582174137235, 3913362.030916001647711 ], [ 4968602.519827790558338, 3913329.977133167907596 ], [ 4968630.450811627320945, 3913325.292648080736399 ], [ 4968636.151533707976341, 3913357.346436759456992 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968483.718317666091025, 3904437.292602306231856 ], [ 4968458.442025511525571, 3904400.835054672788829 ], [ 4968485.542070277035236, 3904382.676110634580255 ], [ 4968481.808215089142323, 3904377.207578065805137 ], [ 4968505.16035876981914, 3904361.590986037161201 ], [ 4968533.882509252987802, 3904403.516609436366707 ], [ 4968483.718317666091025, 3904437.292602306231856 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968455.754887822084129, 3913304.229499932378531 ], [ 4968502.973943803459406, 3913298.85051617026329 ], [ 4968506.378972066566348, 3913326.894771873019636 ], [ 4968458.872102475725114, 3913332.273243873380125 ], [ 4968455.754887822084129, 3913304.229499932378531 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968315.505212336778641, 3905778.457785980775952 ], [ 4968342.315192816779017, 3905760.662308319937438 ], [ 4968359.259162859991193, 3905786.181221288163215 ], [ 4968332.449196526780725, 3905803.976682318840176 ], [ 4968315.505212336778641, 3905778.457785980775952 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967618.63409669790417, 3901966.977610276546329 ], [ 4967641.612473204731941, 3902001.973818484228104 ], [ 4967595.194367100484669, 3902032.480716237798333 ], [ 4967572.215956438332796, 3901997.484547069761902 ], [ 4967618.63409669790417, 3901966.977610276546329 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967424.166861748322845, 3902682.524003560654819 ], [ 4967458.761584620922804, 3902660.735610221978277 ], [ 4967487.194831402972341, 3902705.208485353272408 ], [ 4967479.122732317075133, 3902710.292431379202753 ], [ 4967492.621264545246959, 3902731.43524814164266 ], [ 4967467.251842023804784, 3902747.413367602042854 ], [ 4967449.732903722673655, 3902719.709295093081892 ], [ 4967439.354505895636976, 3902726.245812104549259 ], [ 4967427.004079448059201, 3902707.289780445862561 ], [ 4967436.229951322078705, 3902701.115408887155354 ], [ 4967424.166861748322845, 3902682.524003560654819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967392.085220499895513, 3899059.734456410631537 ], [ 4967423.773140114732087, 3899056.147573275957257 ], [ 4967430.011250966228545, 3899113.326719376724213 ], [ 4967398.036008566617966, 3899116.548971722833812 ], [ 4967392.085220499895513, 3899059.734456410631537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967158.432950823567808, 3899607.350259681232274 ], [ 4967135.96760674752295, 3899607.676027056295425 ], [ 4967135.44940107408911, 3899573.811031537130475 ], [ 4967157.914773452095687, 3899573.485263724811375 ], [ 4967158.432950823567808, 3899607.350259681232274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966945.791887272149324, 3901692.727121025323868 ], [ 4966920.992835532873869, 3901711.619762472808361 ], [ 4966899.153469177894294, 3901683.544596003834158 ], [ 4966923.952531364746392, 3901664.651934734079987 ], [ 4966945.791887272149324, 3901692.727121025323868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966785.550670201890171, 3906521.927381320856512 ], [ 4966792.464200018905103, 3906520.11843931581825 ], [ 4966790.174295335076749, 3906512.103659887332469 ], [ 4966824.166714784689248, 3906502.693866282701492 ], [ 4966834.182680393569171, 3906539.124030645005405 ], [ 4966793.276780411601067, 3906550.342751835472882 ], [ 4966785.550670201890171, 3906521.927381320856512 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966547.37865636497736, 3894931.252170402090997 ], [ 4966575.89837574120611, 3894930.207854643464088 ], [ 4966577.270521461032331, 3894970.628510437905788 ], [ 4966548.750844906084239, 3894971.672824760433286 ], [ 4966547.37865636497736, 3894931.252170402090997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966225.854671893641353, 3906491.125933143310249 ], [ 4966237.705750294961035, 3906463.835892658680677 ], [ 4966259.860947662033141, 3906473.340419585350901 ], [ 4966248.00985090713948, 3906500.630450451746583 ], [ 4966225.854671893641353, 3906491.125933143310249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966232.724841143935919, 3899633.458929167129099 ], [ 4966241.13013057410717, 3899601.793669521342963 ], [ 4966287.47949606180191, 3899613.887592143844813 ], [ 4966279.074155739508569, 3899645.552837525028735 ], [ 4966232.724841143935919, 3899633.458929167129099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966042.726903717964888, 3899580.342736346647143 ], [ 4966037.788873979821801, 3899605.459491117391735 ], [ 4966005.830151434056461, 3899599.216041681356728 ], [ 4966010.768152425996959, 3899574.099281135480851 ], [ 4966042.726903717964888, 3899580.342736346647143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966003.140624682419002, 3897581.931467846035957 ], [ 4965968.276762124150991, 3897589.156038973480463 ], [ 4965961.988538566045463, 3897560.015197466127574 ], [ 4965996.852437190711498, 3897552.790618314407766 ], [ 4966003.140624682419002, 3897581.931467846035957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965929.213964687660336, 3905665.144652625545859 ], [ 4965894.353944431059062, 3905676.374790989328176 ], [ 4965886.332031650468707, 3905651.964651658199728 ], [ 4965921.19208016898483, 3905640.734503043815494 ], [ 4965929.213964687660336, 3905665.144652625545859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965726.359312767162919, 3907837.946564552839845 ], [ 4965747.431822955608368, 3907805.209572506602854 ], [ 4965792.587194120511413, 3907834.414952237624675 ], [ 4965751.021016605198383, 3907898.06918241456151 ], [ 4965724.272744983434677, 3907880.910689541138709 ], [ 4965744.766965226270258, 3907849.629265493713319 ], [ 4965726.359312767162919, 3907837.946564552839845 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965722.457785655744374, 3893139.452541684731841 ], [ 4965744.524125781841576, 3893209.401785525493324 ], [ 4965702.442486891523004, 3893222.804936988744885 ], [ 4965689.25892910733819, 3893181.636585002299398 ], [ 4965678.882700994610786, 3893184.896594336722046 ], [ 4965669.711731936782598, 3893156.115263860672712 ], [ 4965722.457785655744374, 3893139.452541684731841 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965501.496789302676916, 3905037.76665196288377 ], [ 4965481.907125952653587, 3905043.196370673365891 ], [ 4965473.604486778378487, 3905014.05219486868009 ], [ 4965493.194169666618109, 3905008.622470206115395 ], [ 4965501.496789302676916, 3905037.76665196288377 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965066.592716683633626, 3904214.117286966182292 ], [ 4965090.787288508377969, 3904210.515435490291566 ], [ 4965092.497226004488766, 3904221.442161038517952 ], [ 4965113.523047603666782, 3904218.563422865234315 ], [ 4965119.219234641641378, 3904257.170628455001861 ], [ 4965073.710954998619854, 3904263.650737557094544 ], [ 4965066.592716683633626, 3904214.117286966182292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965022.949271380901337, 3898831.831750242505223 ], [ 4965031.422184430062771, 3898757.927159435115755 ], [ 4965072.025055957958102, 3898762.727017054799944 ], [ 4965066.179805958643556, 3898814.788078167010099 ], [ 4965060.708655662834644, 3898814.050899796187878 ], [ 4965058.368904324248433, 3898835.894886851776391 ], [ 4965022.949271380901337, 3898831.831750242505223 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964738.059543015435338, 3904551.49739412823692 ], [ 4964718.157575205899775, 3904571.85654477821663 ], [ 4964695.156411718577147, 3904549.971472810953856 ], [ 4964715.058378227986395, 3904529.612305410671979 ], [ 4964738.059543015435338, 3904551.49739412823692 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964743.920824295841157, 3892919.010232961270958 ], [ 4964736.383600543253124, 3892948.128339166287333 ], [ 4964699.81266279052943, 3892938.601861560251564 ], [ 4964697.49389380030334, 3892947.33720383932814 ], [ 4964657.755229101516306, 3892937.077406828291714 ], [ 4964667.611132596619427, 3892899.223933912348002 ], [ 4964743.920824295841157, 3892919.010232961270958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963411.609798357822001, 3900589.461116337217391 ], [ 4963424.593168606981635, 3900574.552141951862723 ], [ 4963416.827481523156166, 3900567.985610750969499 ], [ 4963432.406857633031905, 3900550.531800869386643 ], [ 4963468.64498810749501, 3900582.268041685689241 ], [ 4963440.082232812419534, 3900614.630791731178761 ], [ 4963411.609798357822001, 3900589.461116337217391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963042.215734824538231, 3896258.651624811813235 ], [ 4963089.727314353920519, 3896268.921157736331224 ], [ 4963076.382623368874192, 3896329.710003776475787 ], [ 4963020.232640593312681, 3896317.606422111392021 ], [ 4963026.614892522804439, 3896288.485986489802599 ], [ 4963035.541451966390014, 3896290.320508231874555 ], [ 4963042.215734824538231, 3896258.651624811813235 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962709.476910529658198, 3897782.382750711869448 ], [ 4962729.722653351724148, 3897728.158656257204711 ], [ 4962776.932471903972328, 3897745.709777912124991 ], [ 4962756.687209184281528, 3897799.569708509836346 ], [ 4962709.476910529658198, 3897782.382750711869448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962210.90498246345669, 3897210.66304972441867 ], [ 4962240.264001497067511, 3897224.18059984408319 ], [ 4962235.35075363330543, 3897235.096996053587645 ], [ 4962254.923780598677695, 3897243.865957975387573 ], [ 4962258.968486475758255, 3897235.861277048010379 ], [ 4962275.375347833149135, 3897243.168905198574066 ], [ 4962271.328971072100103, 3897252.265969985630363 ], [ 4962281.690987106412649, 3897257.015470424667001 ], [ 4962257.705800545401871, 3897308.321144203655422 ], [ 4962181.717527452856302, 3897273.613010400906205 ], [ 4962210.90498246345669, 3897210.66304972441867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962155.342153050936759, 3899274.102149390149862 ], [ 4962182.681190572679043, 3899288.708972574211657 ], [ 4962168.817223145626485, 3899314.541096299886703 ], [ 4962141.19074584916234, 3899299.569719611201435 ], [ 4962155.342153050936759, 3899274.102149390149862 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961985.581116124987602, 3899544.028840922750533 ], [ 4961973.452147730626166, 3899565.494137219153345 ], [ 4961943.52449784707278, 3899548.698824183549732 ], [ 4961955.653449857607484, 3899527.233514599036425 ], [ 4961985.581116124987602, 3899544.028840922750533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961961.143463068641722, 3892668.501236863434315 ], [ 4962021.0725860260427, 3892663.49425374949351 ], [ 4962022.771267374046147, 3892683.159775729291141 ], [ 4962036.889014127664268, 3892682.088804463390261 ], [ 4962038.871898772194982, 3892704.303659291006625 ], [ 4962025.330330044031143, 3892705.375503391958773 ], [ 4962026.459466936998069, 3892720.67061863001436 ], [ 4961985.546155506744981, 3892724.249881471972913 ], [ 4961983.000302516855299, 3892693.29509026510641 ], [ 4961963.408428968861699, 3892694.721927945036441 ], [ 4961961.143463068641722, 3892668.501236863434315 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961707.758718545548618, 3898132.96980591211468 ], [ 4961698.504107628948987, 3898158.080833368934691 ], [ 4961667.990453517064452, 3898146.746908868197352 ], [ 4961676.957014598883688, 3898121.635437878314406 ], [ 4961707.758718545548618, 3898132.96980591211468 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961295.769712211564183, 3896661.633294929750264 ], [ 4961338.674762150272727, 3896670.436355214565992 ], [ 4961330.25860011857003, 3896712.662823646795005 ], [ 4961287.065574509091675, 3896703.859347549267113 ], [ 4961295.769712211564183, 3896661.633294929750264 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960896.26726907491684, 3896068.238443571608514 ], [ 4960882.61845769174397, 3896143.228960079140961 ], [ 4960845.758711661212146, 3896136.256182692945004 ], [ 4960855.631156045012176, 3896082.743714100215584 ], [ 4960863.694326465018094, 3896084.212112665642053 ], [ 4960867.758110919035971, 3896063.098600524477661 ], [ 4960896.26726907491684, 3896068.238443571608514 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960813.042707832530141, 3894292.258025467861444 ], [ 4960811.838463881984353, 3894327.576761438511312 ], [ 4960791.674926407635212, 3894326.818837557453662 ], [ 4960792.879143900237978, 3894291.500100698787719 ], [ 4960813.042707832530141, 3894292.258025467861444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960737.143124391324818, 3898111.863368476275355 ], [ 4960764.493214661255479, 3898120.278546313755214 ], [ 4960753.495812090113759, 3898155.947099159937352 ], [ 4960726.145754717290401, 3898147.531932333949953 ], [ 4960737.143124391324818, 3898111.863368476275355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960512.586058650165796, 3893505.299195386469364 ], [ 4960500.420469249598682, 3893550.797527925577015 ], [ 4960445.707614148966968, 3893536.152550692670047 ], [ 4960460.770329468883574, 3893479.370427527930588 ], [ 4960486.975050257518888, 3893486.327107479330152 ], [ 4960483.789753269404173, 3893497.610450549051166 ], [ 4960512.586058650165796, 3893505.299195386469364 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960386.683512723073363, 3896482.599173421040177 ], [ 4960384.916556913405657, 3896509.17804789962247 ], [ 4960338.545956702902913, 3896506.197542517445982 ], [ 4960340.312866846099496, 3896479.618665046989918 ], [ 4960386.683512723073363, 3896482.599173421040177 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960352.125557431951165, 3907166.139923677314073 ], [ 4960355.628391571342945, 3907133.373163603711873 ], [ 4960378.37157067283988, 3907135.591063387691975 ], [ 4960379.243840668350458, 3907129.766225620638579 ], [ 4960399.108265138231218, 3907131.615819183178246 ], [ 4960395.020503045059741, 3907170.571961356326938 ], [ 4960352.125557431951165, 3907166.139923677314073 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960299.058759015053511, 3895135.557600166648626 ], [ 4960302.861691049300134, 3895095.508922187611461 ], [ 4960364.209484545513988, 3895101.424181076232344 ], [ 4960360.406461915001273, 3895141.4728505150415 ], [ 4960299.058759015053511, 3895135.557600166648626 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959783.611092847771943, 3893204.202363797929138 ], [ 4959736.641888330690563, 3893212.874170893803239 ], [ 4959727.20515595190227, 3893164.067418487742543 ], [ 4959774.174964414909482, 3893155.0314672132954 ], [ 4959783.611092847771943, 3893204.202363797929138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959694.827912137843668, 3900492.854968994855881 ], [ 4959706.985383216291666, 3900449.904991251416504 ], [ 4959751.895162457600236, 3900462.713847900740802 ], [ 4959739.737625321373343, 3900505.663805660326034 ], [ 4959694.827912137843668, 3900492.854968994855881 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959474.425722545944154, 3899132.878764010500163 ], [ 4959477.663795304484665, 3899083.725824732799083 ], [ 4959504.446587190032005, 3899085.584580102004111 ], [ 4959503.856564904563129, 3899095.415249160956591 ], [ 4959529.487284454517066, 3899097.272389858495444 ], [ 4959526.837592210620642, 3899137.687042109202594 ], [ 4959513.589971413835883, 3899136.939919527154416 ], [ 4959512.70985920727253, 3899148.226695597637445 ], [ 4959493.702477538958192, 3899147.107254022732377 ], [ 4959494.584654276259243, 3899134.363960416521877 ], [ 4959474.425722545944154, 3899132.878764010500163 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959418.237247504293919, 3901584.487759941723198 ], [ 4959460.580295543186367, 3901578.357709848787636 ], [ 4959462.292174778878689, 3901589.648189295083284 ], [ 4959486.776337084360421, 3901586.041707668919116 ], [ 4959490.770347462967038, 3901612.6289171888493 ], [ 4959423.655231459066272, 3901622.365027422085404 ], [ 4959418.237247504293919, 3901584.487759941723198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959400.593405084684491, 3907317.707403244450688 ], [ 4959436.891309120692313, 3907304.286089199595153 ], [ 4959431.727771800011396, 3907290.805875930469483 ], [ 4959459.959627243690193, 3907280.28618675051257 ], [ 4959483.766898372210562, 3907344.043112407438457 ], [ 4959460.143991662189364, 3907353.112803549971431 ], [ 4959457.275602312758565, 3907345.461957320105284 ], [ 4959416.656264513731003, 3907360.697764359414577 ], [ 4959400.593405084684491, 3907317.707403244450688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959235.88102606870234, 3892454.410322335548699 ], [ 4959239.943557520397007, 3892433.660736850462854 ], [ 4959233.895806565880775, 3892432.19567753514275 ], [ 4959240.280525200068951, 3892399.069003841374069 ], [ 4959287.225745666772127, 3892408.238595193251967 ], [ 4959280.260678535327315, 3892444.277465234044939 ], [ 4959271.332586779259145, 3892442.44419466657564 ], [ 4959267.562237533740699, 3892460.281160500831902 ], [ 4959235.88102606870234, 3892454.410322335548699 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959142.836616734042764, 3906340.741561558563262 ], [ 4959031.94294204749167, 3906367.531143960077316 ], [ 4959022.496819918975234, 3906327.827525069005787 ], [ 4959133.390135508961976, 3906301.402035154402256 ], [ 4959142.836616734042764, 3906340.741561558563262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958944.146012708544731, 3904297.685417235363275 ], [ 4958976.144734303466976, 3904272.605275487527251 ], [ 4958994.82935419678688, 3904295.935902507975698 ], [ 4958962.542684101499617, 3904321.015618248842657 ], [ 4958944.146012708544731, 3904297.685417235363275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958881.253378788009286, 3904792.815627064555883 ], [ 4958901.433606334030628, 3904776.093859450425953 ], [ 4958919.831517409533262, 3904798.33164656534791 ], [ 4958899.36334159784019, 3904815.05299715930596 ], [ 4958881.253378788009286, 3904792.815627064555883 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958855.137237380258739, 3904730.148502557072788 ], [ 4958874.451592657715082, 3904714.88202831055969 ], [ 4958878.188373177312315, 3904719.620965856593102 ], [ 4958895.772980803623796, 3904705.808609690051526 ], [ 4958916.756409565918148, 3904732.419590110424906 ], [ 4958911.279153143055737, 3904736.781487467698753 ], [ 4958913.865638219751418, 3904740.426424387842417 ], [ 4958907.524010993540287, 3904745.151242252904922 ], [ 4958914.135219388641417, 3904753.535525019280612 ], [ 4958889.056179909966886, 3904772.799339243676513 ], [ 4958855.137237380258739, 3904730.148502557072788 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958605.307435833849013, 3898224.245216397568583 ], [ 4958594.369097463786602, 3898219.496330140624195 ], [ 4958590.324619174003601, 3898228.229825237765908 ], [ 4958555.20792277995497, 3898212.159354812465608 ], [ 4958572.542464450933039, 3898173.949795958586037 ], [ 4958618.597042294219136, 3898195.133309275843203 ], [ 4958605.307435833849013, 3898224.245216397568583 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958286.004292159341276, 3905872.002106406260282 ], [ 4958314.252254161983728, 3905850.557300662621856 ], [ 4958361.965192560106516, 3905912.525498163886368 ], [ 4958333.717257408425212, 3905933.970254553016275 ], [ 4958286.004292159341276, 3905872.002106406260282 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958150.802150105126202, 3905357.298477535136044 ], [ 4958170.97799729090184, 3905343.125069925095886 ], [ 4958180.461758625693619, 3905356.610960457008332 ], [ 4958160.285916533321142, 3905370.7843610602431 ], [ 4958150.802150105126202, 3905357.298477535136044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958036.150116545148194, 3901395.761552797164768 ], [ 4958065.916349253617227, 3901320.427313966676593 ], [ 4958093.260509935207665, 3901331.388697975315154 ], [ 4958083.435387265868485, 3901355.77196902083233 ], [ 4958092.934082911349833, 3901359.42629300057888 ], [ 4958084.552914315834641, 3901380.898500104434788 ], [ 4958077.644640897400677, 3901378.340119836386293 ], [ 4958066.085124793462455, 3901407.454716950189322 ], [ 4958036.150116545148194, 3901395.761552797164768 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957822.011010586284101, 3905112.152768061496317 ], [ 4957841.313595615327358, 3905104.896420293021947 ], [ 4957836.436287231743336, 3905091.781054446473718 ], [ 4957870.719267668202519, 3905079.447290546726435 ], [ 4957874.447737337090075, 3905090.376309246290475 ], [ 4957890.86935683246702, 3905084.208464477211237 ], [ 4957902.631127238273621, 3905116.632185772061348 ], [ 4957855.095530874095857, 3905134.045690722763538 ], [ 4957854.2351528191939, 3905131.495599951129407 ], [ 4957832.052092066965997, 3905139.476279562804848 ], [ 4957822.011010586284101, 3905112.152768061496317 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957650.154542808420956, 3898696.303468818776309 ], [ 4957642.03429954778403, 3898737.439145110081881 ], [ 4957607.768953993916512, 3898730.83843609271571 ], [ 4957615.889146766625345, 3898689.702749602496624 ], [ 4957650.154542808420956, 3898696.303468818776309 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956998.345659880898893, 3901310.246970091946423 ], [ 4957070.893673119135201, 3901329.642477604560554 ], [ 4957059.895682780072093, 3901370.410426683723927 ], [ 4957008.363332261331379, 3901356.86898800637573 ], [ 4957011.837145832367241, 3901343.400785233825445 ], [ 4956991.109082035720348, 3901337.91125568933785 ], [ 4956998.345659880898893, 3901310.246970091946423 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956881.144199938513339, 3896304.762453399132937 ], [ 4956865.267490386962891, 3896330.594593950081617 ], [ 4956842.817868463695049, 3896317.092074609361589 ], [ 4956858.694564363919199, 3896291.259921011514962 ], [ 4956881.144199938513339, 3896304.762453399132937 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956667.264269102364779, 3900790.558773749507964 ], [ 4956656.556587780825794, 3900829.870735588483512 ], [ 4956592.643466221168637, 3900813.03662005905062 ], [ 4956601.325504275970161, 3900781.00457422202453 ], [ 4956625.220602167770267, 3900787.590359796769917 ], [ 4956627.246643842197955, 3900779.946290867868811 ], [ 4956667.264269102364779, 3900790.558773749507964 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956494.070526965893805, 3893623.170259637758136 ], [ 4956548.822160348296165, 3893609.769331703428179 ], [ 4956549.969195071607828, 3893613.776253774296492 ], [ 4956596.364346529357135, 3893602.185094921849668 ], [ 4956601.809494214132428, 3893623.675849446095526 ], [ 4956581.061511124484241, 3893628.74637598125264 ], [ 4956583.641249307431281, 3893638.581242122221738 ], [ 4956549.637612387537956, 3893646.911532493773848 ], [ 4956552.789681029506028, 3893659.660177152603865 ], [ 4956530.312341625802219, 3893665.456729466561228 ], [ 4956528.593460788950324, 3893658.171899107750505 ], [ 4956504.099614740349352, 3893663.965827194508165 ], [ 4956494.070526965893805, 3893623.170259637758136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956435.675925058312714, 3900820.113269630353898 ], [ 4956460.162763270549476, 3900814.683384131640196 ], [ 4956463.598681502044201, 3900829.981357391458005 ], [ 4956504.79359588585794, 3900821.296236319933087 ], [ 4956513.954532449133694, 3900863.18323731655255 ], [ 4956488.603740227408707, 3900868.611941156443208 ], [ 4956492.039635299704969, 3900883.909918536897749 ], [ 4956451.420811962336302, 3900892.59581388765946 ], [ 4956435.675925058312714, 3900820.113269630353898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956176.835325271822512, 3901432.242881018668413 ], [ 4956178.084295904263854, 3901357.597772354260087 ], [ 4956204.290484834462404, 3901358.360103860497475 ], [ 4956203.972658822312951, 3901381.29990531783551 ], [ 4956244.290345911867917, 3901382.080632692668587 ], [ 4956243.661738329567015, 3901422.498288810718805 ], [ 4956225.806370024569333, 3901422.475046022329479 ], [ 4956225.50463792309165, 3901433.03443516464904 ], [ 4956176.835325271822512, 3901432.242881018668413 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956021.946401428431273, 3904509.675083697773516 ], [ 4956047.60001227632165, 3904490.045212155673653 ], [ 4956091.009278108365834, 3904545.813514656852931 ], [ 4956065.355688625946641, 3904565.443345431704074 ], [ 4956021.946401428431273, 3904509.675083697773516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955799.227140318602324, 3898112.709509562235326 ], [ 4955814.824520681984723, 3898078.501373093575239 ], [ 4955879.880785752087831, 3898107.715484261978418 ], [ 4955864.282870485447347, 3898142.287712645716965 ], [ 4955799.227140318602324, 3898112.709509562235326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954556.252024536952376, 3896136.830741047859192 ], [ 4954590.785532562062144, 3896162.726726721040905 ], [ 4954565.683996407315135, 3896196.195494590327144 ], [ 4954531.150507315061986, 3896170.299540647771209 ], [ 4954556.252024536952376, 3896136.830741047859192 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954263.785601168870926, 3894575.448691859841347 ], [ 4954274.431413877755404, 3894585.657376782037318 ], [ 4954298.371088784188032, 3894560.926032197196037 ], [ 4954321.101215179078281, 3894582.801718753762543 ], [ 4954281.874074306339025, 3894623.900055007543415 ], [ 4954248.210522813722491, 3894591.451240181922913 ], [ 4954263.785601168870926, 3894575.448691859841347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954136.934028143063188, 3901251.609556534793228 ], [ 4954122.218395887874067, 3901274.531764746177942 ], [ 4954098.909785120747983, 3901259.209791619796306 ], [ 4954113.624960578978062, 3901236.651700642425567 ], [ 4954136.934028143063188, 3901251.609556534793228 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954059.217233498580754, 3900982.058145978953689 ], [ 4954121.128486534580588, 3900988.324010611046106 ], [ 4954117.047581204213202, 3901028.37335047731176 ], [ 4954111.28859094902873, 3901027.638047795277089 ], [ 4954107.790370939299464, 3901062.226148072630167 ], [ 4954072.083602509461343, 3901058.541214909870178 ], [ 4954074.41512490529567, 3901035.967984528746456 ], [ 4954069.231678401120007, 3901035.597524066455662 ], [ 4954071.271648718044162, 3901015.936979951802641 ], [ 4954056.00973570626229, 3901014.461825192905962 ], [ 4954059.217233498580754, 3900982.058145978953689 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954048.71539596747607, 3893065.87186460243538 ], [ 4954024.218440669588745, 3893074.216946273576468 ], [ 4954022.784258759580553, 3893069.117397991009057 ], [ 4954000.016233478672802, 3893077.100480855442584 ], [ 4953990.830513527616858, 3893050.14377875905484 ], [ 4954010.716431593522429, 3893043.24956163065508 ], [ 4954007.557760654948652, 3893034.870755847077817 ], [ 4954057.704955936409533, 3893017.45373505866155 ], [ 4954069.474445995874703, 3893051.696184866130352 ], [ 4954046.706392058171332, 3893059.679228096734732 ], [ 4954048.71539596747607, 3893065.87186460243538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953899.552499698475003, 3893963.26743867713958 ], [ 4953951.345699697732925, 3894012.123645103536546 ], [ 4953930.001576059497893, 3894034.309544710908085 ], [ 4953878.207938218489289, 3893985.81750697735697 ], [ 4953899.552499698475003, 3893963.26743867713958 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953597.676733990199864, 3898253.801092965528369 ], [ 4953600.582390435039997, 3898232.685069202911109 ], [ 4953620.164513728581369, 3898235.621682131197304 ], [ 4953617.547304433770478, 3898256.373921501915902 ], [ 4953597.676733990199864, 3898253.801092965528369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952805.059272193349898, 3893815.580711442045867 ], [ 4952825.331184810958803, 3893724.572340212296695 ], [ 4952857.587148099206388, 3893731.528690226841718 ], [ 4952837.603202700614929, 3893822.537375973071903 ], [ 4952805.059272193349898, 3893815.580711442045867 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952800.662305367179215, 3892652.912994244601578 ], [ 4952869.602979365736246, 3892577.619399984832853 ], [ 4952887.44494130089879, 3892594.026170294266194 ], [ 4952850.234115942381322, 3892634.764792965725064 ], [ 4952902.609238815493882, 3892682.527234390377998 ], [ 4952880.109596937894821, 3892707.261489374563098 ], [ 4952829.172762422822416, 3892661.321422808337957 ], [ 4952820.231050510890782, 3892670.778261065483093 ], [ 4952800.662305367179215, 3892652.912994244601578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952227.383123923093081, 3891145.483469265513122 ], [ 4952288.774893572553992, 3891122.614201560150832 ], [ 4952297.679087703116238, 3891145.928682748228312 ], [ 4952336.877940233796835, 3891131.044724558945745 ], [ 4952344.058544260449708, 3891149.987690830137581 ], [ 4952337.717399491928518, 3891152.529254858382046 ], [ 4952350.929556552320719, 3891187.500836133025587 ], [ 4952289.537881904281676, 3891210.369962772820145 ], [ 4952277.761952184140682, 3891179.041350085288286 ], [ 4952252.68637206312269, 3891188.479754800442606 ], [ 4952244.931613563559949, 3891167.715509988367558 ], [ 4952236.861045009456575, 3891170.983360403683037 ], [ 4952227.383123923093081, 3891145.483469265513122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952173.689817641861737, 3890737.234075318556279 ], [ 4952201.351184890605509, 3890734.352880296297371 ], [ 4952202.775357791222632, 3890748.55551352025941 ], [ 4952205.944503867998719, 3890748.559162175748497 ], [ 4952213.070369252003729, 3890815.202801102306694 ], [ 4952182.527630522847176, 3890818.444797009695321 ], [ 4952173.689817641861737, 3890737.234075318556279 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952130.358833125792444, 3890335.915217470843345 ], [ 4952167.531962091103196, 3890329.767762519884855 ], [ 4952176.977140512317419, 3890384.033691695891321 ], [ 4952169.485073802992702, 3890385.11745874164626 ], [ 4952173.490527490153909, 3890409.518639305140823 ], [ 4952145.538629251532257, 3890414.220168837346137 ], [ 4952139.240836660377681, 3890378.892519690096378 ], [ 4952128.002527879551053, 3890380.700250559486449 ], [ 4952125.14068113360554, 3890363.94707765057683 ], [ 4952134.938455069437623, 3890362.137690811417997 ], [ 4952130.358833125792444, 3890335.915217470843345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952111.942811638116837, 3893327.571958061307669 ], [ 4952134.986844295635819, 3893329.419064917601645 ], [ 4952135.862787267193198, 3893319.224470749497414 ], [ 4952155.737982601858675, 3893321.067954984493554 ], [ 4952156.030245307832956, 3893317.427005089819431 ], [ 4952188.29189813695848, 3893320.013013101648539 ], [ 4952184.19932865165174, 3893371.714564018882811 ], [ 4952109.018159069120884, 3893365.802103086840361 ], [ 4952111.942811638116837, 3893327.571958061307669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951890.790055843070149, 3900070.993801809847355 ], [ 4951895.076905863359571, 3900100.129092743620276 ], [ 4951863.679080079309642, 3900104.827001954428852 ], [ 4951864.820726552978158, 3900113.931553542148322 ], [ 4951844.369138431735337, 3900116.821305862627923 ], [ 4951843.226241723634303, 3900108.809143853839487 ], [ 4951815.573313305154443, 3900112.783112132921815 ], [ 4951811.288035339675844, 3900082.191315380390733 ], [ 4951890.790055843070149, 3900070.993801809847355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951869.832738700322807, 3894196.470266071148217 ], [ 4951908.147758268751204, 3894194.693290643393993 ], [ 4951907.581174640916288, 3894186.317682784982026 ], [ 4951926.018731648102403, 3894185.246329211629927 ], [ 4951928.276314846239984, 3894226.395456858444959 ], [ 4951871.523812985979021, 3894229.243781952187419 ], [ 4951869.832738700322807, 3894196.470266071148217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951205.006807832978666, 3893648.7999337031506 ], [ 4951176.483921683393419, 3893652.04532485967502 ], [ 4951170.488287114538252, 3893603.609542224090546 ], [ 4951190.080130309797823, 3893601.082454049028456 ], [ 4951190.648977895267308, 3893607.637403004802763 ], [ 4951213.986182456836104, 3893604.750375143252313 ], [ 4951217.410999396815896, 3893633.52035501645878 ], [ 4951203.293786079622805, 3893634.961136600002646 ], [ 4951205.006807832978666, 3893648.7999337031506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951107.282299380749464, 3890856.1909339861013 ], [ 4951134.365198940970004, 3890855.1286391611211 ], [ 4951134.918334854766726, 3890875.884553034324199 ], [ 4951153.645423460751772, 3890875.541247277054936 ], [ 4951154.758548878133297, 3890910.862907126545906 ], [ 4951097.136037651449442, 3890912.619517236016691 ], [ 4951096.019602903164923, 3890880.210880597122014 ], [ 4951108.120323976501822, 3890879.86018811352551 ], [ 4951107.282299380749464, 3890856.1909339861013 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950994.05105496942997, 3893466.137263532262295 ], [ 4951001.19047146383673, 3893522.585097796749324 ], [ 4950937.51757063344121, 3893530.161409300751984 ], [ 4950933.233845386654139, 3893496.292718290351331 ], [ 4950962.621493882499635, 3893492.683896338567138 ], [ 4950959.765695290639997, 3893470.104766674805433 ], [ 4950994.05105496942997, 3893466.137263532262295 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950901.854727334342897, 3900527.231946380808949 ], [ 4950863.261202258989215, 3900528.64591585798189 ], [ 4950862.154138155281544, 3900487.862122676335275 ], [ 4950897.867321637459099, 3900486.809104205109179 ], [ 4950897.871740067377687, 3900482.803677811753005 ], [ 4950917.456535829231143, 3900482.097028922755271 ], [ 4950918.567535829730332, 3900519.239527432247996 ], [ 4950901.574762450531125, 3900519.949035029858351 ], [ 4950901.854727334342897, 3900527.231946380808949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948764.087527916766703, 3890342.091124275699258 ], [ 4948770.973061044700444, 3890370.500148537103087 ], [ 4948764.34470837470144, 3890372.314004216808826 ], [ 4948771.231351584196091, 3890399.630646412726492 ], [ 4948760.856858102604747, 3890402.168924526777118 ], [ 4948764.873972757719457, 3890418.194663843605667 ], [ 4948728.275359751656651, 3890426.896305238828063 ], [ 4948725.118827048689127, 3890414.512729967478663 ], [ 4948720.219506858848035, 3890415.964235557243228 ], [ 4948705.586991817690432, 3890356.232310908380896 ], [ 4948764.087527916766703, 3890342.091124275699258 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947591.657235750928521, 3897515.707917545456439 ], [ 4947609.199672746472061, 3897543.763080507982522 ], [ 4947573.750774264335632, 3897565.211977672763169 ], [ 4947556.495989414863288, 3897537.521248466335237 ], [ 4947591.657235750928521, 3897515.707917545456439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946055.603762054815888, 3891873.891407237853855 ], [ 4946100.250301229767501, 3891882.307585951406509 ], [ 4946093.013007402420044, 3891920.170230602379888 ], [ 4946048.078437152318656, 3891911.753797994926572 ], [ 4946055.603762054815888, 3891873.891407237853855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945085.237645218148828, 3891629.047744959127158 ], [ 4945113.181543590500951, 3891630.529045613948256 ], [ 4945111.717154897749424, 3891657.473228044807911 ], [ 4945084.061056119389832, 3891656.356312137562782 ], [ 4945085.237645218148828, 3891629.047744959127158 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944998.879659313708544, 3891549.227263928391039 ], [ 4945038.92108275834471, 3891553.63220105599612 ], [ 4945033.404103750362992, 3891602.42048849677667 ], [ 4944976.655165120027959, 3891595.816040930338204 ], [ 4944979.269875003024936, 3891571.057636194862425 ], [ 4944996.265894109383225, 3891572.89328293595463 ], [ 4944998.879659313708544, 3891549.227263928391039 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943860.840882834047079, 3892305.996831345837563 ], [ 4943886.479750590398908, 3892307.110791351180524 ], [ 4943882.089162381365895, 3892389.400084445253015 ], [ 4943845.503693495877087, 3892387.548669547308236 ], [ 4943848.427104032598436, 3892336.937296508811414 ], [ 4943859.086023059673607, 3892337.310386425349861 ], [ 4943860.840882834047079, 3892305.996831345837563 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943739.9763915380463, 3891803.398524976335466 ], [ 4943735.295339283533394, 3891888.964728209655732 ], [ 4943697.557115461677313, 3891886.748423494398594 ], [ 4943699.606597097590566, 3891847.424292590934783 ], [ 4943704.216075728647411, 3891847.428141975775361 ], [ 4943706.84723038226366, 3891801.550191531423479 ], [ 4943739.9763915380463, 3891803.398524976335466 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943389.855970454402268, 3889810.235700923483819 ], [ 4943395.060620939359069, 3889787.664067892823368 ], [ 4943389.299530523829162, 3889786.202812626957893 ], [ 4943396.239471861161292, 3889755.621799169108272 ], [ 4943433.687489805743098, 3889764.027607584837824 ], [ 4943421.54253201186657, 3889817.544365996960551 ], [ 4943389.855970454402268, 3889810.235700923483819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943169.857374021783471, 3890015.423498401418328 ], [ 4943183.735170463100076, 3889956.081990053877234 ], [ 4943234.433474910445511, 3889967.775484423153102 ], [ 4943227.494664911180735, 3889997.264160797931254 ], [ 4943218.564673062413931, 3889995.436224070843309 ], [ 4943211.625590139068663, 3890025.289032546803355 ], [ 4943169.857374021783471, 3890015.423498401418328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992221.531246919184923, 3910354.221672608051449 ], [ 4992192.086244367994368, 3910384.366974316071719 ], [ 4992159.922869934700429, 3910353.694864352699369 ], [ 4992189.656725619919598, 3910323.186157325282693 ], [ 4992221.531246919184923, 3910354.221672608051449 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989935.418814877048135, 3909088.015173108782619 ], [ 4989916.316403072327375, 3909127.292708692140877 ], [ 4989878.072173308581114, 3909108.624213081318885 ], [ 4989897.462450140155852, 3909069.347386369947344 ], [ 4989935.418814877048135, 3909088.015173108782619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989410.356893842108548, 3907806.022915149107575 ], [ 4989427.630330408923328, 3907806.795004248153418 ], [ 4989427.323006399907172, 3907814.441010625567287 ], [ 4989462.158712544478476, 3907815.621822372544557 ], [ 4989460.921059009619057, 3907849.483019728213549 ], [ 4989432.418733718805015, 3907848.682412758469582 ], [ 4989432.103092761710286, 3907859.605592337902635 ], [ 4989408.783352587372065, 3907858.818161985371262 ], [ 4989410.356893842108548, 3907806.022915149107575 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988912.169393597170711, 3907380.549273031763732 ], [ 4988899.985742375254631, 3907416.56771930726245 ], [ 4988859.997070878744125, 3907403.358296894002706 ], [ 4988872.180674348026514, 3907367.339832775294781 ], [ 4988912.169393597170711, 3907380.549273031763732 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988534.137950330041349, 3908408.274763805791736 ], [ 4988545.013966696336865, 3908434.155429124832153 ], [ 4988553.660528150387108, 3908430.535758777521551 ], [ 4988563.966161273419857, 3908454.230206701438874 ], [ 4988521.598062876611948, 3908471.96660210005939 ], [ 4988500.705182481557131, 3908422.028108401224017 ], [ 4988534.137950330041349, 3908408.274763805791736 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988417.874958232976496, 3900897.762672804761678 ], [ 4988381.149467161856592, 3900957.752548459451646 ], [ 4988352.968707071617246, 3900940.568010951858014 ], [ 4988389.694158430211246, 3900880.578097396995872 ], [ 4988417.874958232976496, 3900897.762672804761678 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988396.821408056654036, 3907478.664674675557762 ], [ 4988444.331750818528235, 3907477.691046749707311 ], [ 4988445.09353697579354, 3907518.475799816660583 ], [ 4988397.871190764941275, 3907519.450145952869207 ], [ 4988396.821408056654036, 3907478.664674675557762 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988117.851038205437362, 3905615.067889879457653 ], [ 4988115.705853781662881, 3905667.133448537904769 ], [ 4988085.761455062776804, 3905666.330688543152064 ], [ 4988087.619542325846851, 3905613.90028142137453 ], [ 4988117.851038205437362, 3905615.067889879457653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988040.979626625776291, 3904799.949191980063915 ], [ 4988024.973879398778081, 3904867.63795946771279 ], [ 4987969.431517367251217, 3904854.391248452477157 ], [ 4987985.437132325954735, 3904786.702448434662074 ], [ 4988040.979626625776291, 3904799.949191980063915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988011.351417233236134, 3907916.483940065372735 ], [ 4987984.270637269131839, 3907922.971054297406226 ], [ 4987974.866027221083641, 3907883.985504705924541 ], [ 4988001.658923493698239, 3907877.497665874660015 ], [ 4988011.351417233236134, 3907916.483940065372735 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987658.351449175737798, 3907686.569752125069499 ], [ 4987585.483635733835399, 3907695.857203658670187 ], [ 4987581.527329438365996, 3907665.624432103708386 ], [ 4987599.096021983772516, 3907663.483013537712395 ], [ 4987597.39905477873981, 3907651.09831554768607 ], [ 4987614.103988834656775, 3907648.954773959238082 ], [ 4987615.235895026475191, 3907656.968486385419965 ], [ 4987653.83017613645643, 3907651.965982613153756 ], [ 4987658.351449175737798, 3907686.569752125069499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987494.891391647048295, 3908004.054029558319598 ], [ 4987520.817598880268633, 3907998.655972522683442 ], [ 4987527.362499156966805, 3908029.987524404190481 ], [ 4987501.724239744246006, 3908035.386285158339888 ], [ 4987494.891391647048295, 3908004.054029558319598 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4993634.253042747266591, 3911310.199796966742724 ], [ 4993680.345874343067408, 3911298.671748424880207 ], [ 4993689.744917414151132, 3911336.202852525748312 ], [ 4993643.65214604511857, 3911347.730885219294578 ], [ 4993634.253042747266591, 3911310.199796966742724 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987275.655348628759384, 3908407.701692466624081 ], [ 4987271.398361038416624, 3908382.566073222551495 ], [ 4987326.700472136028111, 3908373.598699387162924 ], [ 4987334.92731955088675, 3908423.505117503926158 ], [ 4987295.754796681925654, 3908429.963188480120152 ], [ 4987291.784851487725973, 3908405.192403913941234 ], [ 4987275.655348628759384, 3908407.701692466624081 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987221.090912683866918, 3908116.261501772329211 ], [ 4987258.52473621442914, 3908114.532775358296931 ], [ 4987258.252025444991887, 3908108.341849998105317 ], [ 4987295.397944337688386, 3908106.612467649392784 ], [ 4987297.589404391124845, 3908152.134438907261938 ], [ 4987246.909628487192094, 3908154.558837499469519 ], [ 4987246.634232314303517, 3908149.460303548257798 ], [ 4987222.734378694556653, 3908150.494008361827582 ], [ 4987221.090912683866918, 3908116.261501772329211 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986970.577612334862351, 3903534.136888159438968 ], [ 4986949.501705002039671, 3903556.297384357545525 ], [ 4986913.589470699429512, 3903521.981237326748669 ], [ 4986934.664485114626586, 3903500.184842870570719 ], [ 4986970.577612334862351, 3903534.136888159438968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986895.267023565247655, 3907839.086820591706783 ], [ 4986846.585252439603209, 3907848.435375936329365 ], [ 4986840.897055151872337, 3907819.655014841817319 ], [ 4986829.950714794918895, 3907821.813091376330703 ], [ 4986825.115594543516636, 3907797.404407294467092 ], [ 4986851.328897347673774, 3907792.370538047514856 ], [ 4986854.737724324688315, 3907811.313755458686501 ], [ 4986888.728455252014101, 3907804.842383014503866 ], [ 4986895.267023565247655, 3907839.086820591706783 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986795.493271588347852, 3894912.186939897015691 ], [ 4986784.18438289873302, 3894942.746268156450242 ], [ 4986736.985244511626661, 3894925.153017508331686 ], [ 4986748.293199606239796, 3894894.957797291688621 ], [ 4986795.493271588347852, 3894912.186939897015691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986578.26140736695379, 3910326.798217951320112 ], [ 4986569.613066702149808, 3910331.510921276640147 ], [ 4986577.065560158342123, 3910345.001967748161405 ], [ 4986558.615547285415232, 3910355.152840771246701 ], [ 4986553.456465512514114, 3910345.672838389873505 ], [ 4986532.700655002146959, 3910356.910524189472198 ], [ 4986506.330260897986591, 3910309.145018062088639 ], [ 4986526.509423011913896, 3910298.270044256933033 ], [ 4986530.523138386197388, 3910305.198326117359102 ], [ 4986557.909418335184455, 3910290.335424062330276 ], [ 4986578.26140736695379, 3910326.798217951320112 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992959.366871881298721, 3910370.017949289642274 ], [ 4992969.307075303979218, 3910421.023155758157372 ], [ 4992932.725184485316277, 3910428.208194755017757 ], [ 4992923.073779640719295, 3910376.83963882829994 ], [ 4992959.366871881298721, 3910370.017949289642274 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4992913.424656186252832, 3907949.866782096680254 ], [ 4992954.890947313979268, 3907947.792613028548658 ], [ 4992956.246975106187165, 3907979.111655369866639 ], [ 4992914.781703389249742, 3907980.821692144498229 ], [ 4992913.424656186252832, 3907949.866782096680254 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985697.268415784463286, 3905538.1477061198093 ], [ 4985717.764102752320468, 3905516.713079237844795 ], [ 4985722.073681740090251, 3905520.728871165774763 ], [ 4985750.07435551751405, 3905491.665503839496523 ], [ 4985773.05846628267318, 3905513.204472817480564 ], [ 4985757.18210209812969, 3905529.552297605201602 ], [ 4985767.524545883759856, 3905539.408692614641041 ], [ 4985745.297667717561126, 3905562.295654937624931 ], [ 4985734.955224646255374, 3905552.439268351532519 ], [ 4985723.986209657974541, 3905563.701041203923523 ], [ 4985697.268415784463286, 3905538.1477061198093 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985222.029853321611881, 3904381.257474174723029 ], [ 4985253.15014283079654, 3904372.592413351405412 ], [ 4985257.147732609882951, 3904386.803073851857334 ], [ 4985269.249777816236019, 3904383.554716068319976 ], [ 4985275.243976752273738, 3904405.781035095453262 ], [ 4985285.328575100749731, 3904403.256141507066786 ], [ 4985293.321971505880356, 3904432.405732771847397 ], [ 4985242.320533456280828, 3904446.121241547632962 ], [ 4985240.036816952750087, 3904437.740772341843694 ], [ 4985227.934799683280289, 3904440.989143395330757 ], [ 4985221.654345586895943, 3904418.03388950927183 ], [ 4985231.450976522639394, 3904415.508290190249681 ], [ 4985222.029853321611881, 3904381.257474174723029 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985076.917380815371871, 3909464.19979814812541 ], [ 4985122.712238065898418, 3909456.661836748942733 ], [ 4985127.535612377338111, 3909486.532202355097979 ], [ 4985081.740804622881114, 3909494.07015567459166 ], [ 4985076.917380815371871, 3909464.19979814812541 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984991.425375616177917, 3909821.575388852506876 ], [ 4985098.520643005147576, 3909823.286213154438883 ], [ 4985097.859175885096192, 3909859.333807374816388 ], [ 4985090.949590153992176, 3909859.317388175055385 ], [ 4985090.921902633272111, 3909870.969578276388347 ], [ 4985099.270981768146157, 3909870.989418358076364 ], [ 4985099.25107875932008, 3909879.364430034998804 ], [ 4985087.735111134126782, 3909879.337065093684942 ], [ 4985087.416065162979066, 3909892.445095073897392 ], [ 4985099.795724323019385, 3909892.474512440618128 ], [ 4985099.461961613036692, 3909911.772768537513912 ], [ 4985019.140776846557856, 3909910.489607404917479 ], [ 4985019.131269948557019, 3909914.495047900360078 ], [ 4984990.342252376489341, 3909914.062599692959338 ], [ 4984991.425375616177917, 3909821.575388852506876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984966.012829025276005, 3903539.869206199422479 ], [ 4984955.617527187801898, 3903551.86090344376862 ], [ 4984944.409253534860909, 3903542.366914773825556 ], [ 4984918.419748821295798, 3903572.892380829434842 ], [ 4984883.932714426890016, 3903543.680170459672809 ], [ 4984889.708439780399203, 3903536.775347539223731 ], [ 4984870.740537433885038, 3903520.708646914921701 ], [ 4984893.840875605121255, 3903494.18174045253545 ], [ 4984909.360074232332408, 3903507.327234897296876 ], [ 4984916.868795177899301, 3903498.241733793634921 ], [ 4984966.012829025276005, 3903539.869206199422479 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984969.108528524637222, 3900533.608989359345287 ], [ 4984999.950368357822299, 3900522.758199660107493 ], [ 4985017.114568769931793, 3900571.592460986692458 ], [ 4984986.272777901031077, 3900582.443231314886361 ], [ 4984969.108528524637222, 3900533.608989359345287 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984761.084794453345239, 3907150.116734894923866 ], [ 4984727.955819698981941, 3907157.321097535081208 ], [ 4984729.379977042786777, 3907163.878844785969704 ], [ 4984713.824109121225774, 3907167.119290393777192 ], [ 4984712.970644650049508, 3907162.747686112299562 ], [ 4984676.096912538632751, 3907170.671533104497939 ], [ 4984678.376270686276257, 3907180.872620162554085 ], [ 4984659.651491411030293, 3907184.833881637547165 ], [ 4984657.944545730017126, 3907176.090676443651319 ], [ 4984629.13712879922241, 3907182.21296218642965 ], [ 4984630.561308899894357, 3907188.770704293623567 ], [ 4984613.564968809485435, 3907192.37194258114323 ], [ 4984604.165512762032449, 3907149.01802631886676 ], [ 4984629.227312155999243, 3907143.97927575930953 ], [ 4984626.950508729554713, 3907132.685802087187767 ], [ 4984650.572684277780354, 3907127.643675920087844 ], [ 4984652.85119662899524, 3907138.208890870213509 ], [ 4984683.675885815173388, 3907131.363128093536943 ], [ 4984681.113754194229841, 3907118.976579179987311 ], [ 4984705.31266961991787, 3907113.571730252820998 ], [ 4984707.592881582677364, 3907123.408689092844725 ], [ 4984726.029781995341182, 3907119.446780995000154 ], [ 4984723.465088231489062, 3907108.15261912252754 ], [ 4984750.832100921310484, 3907102.391162830870599 ], [ 4984761.084794453345239, 3907150.116734894923866 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990384.140638467855752, 3909250.112825925461948 ], [ 4990462.359126797877252, 3909285.999243061058223 ], [ 4990469.308260438963771, 3909270.723557430319488 ], [ 4990400.292422994971275, 3909238.866267279721797 ], [ 4990421.427684209309518, 3909193.039910594932735 ], [ 4990480.37909490801394, 3909220.137589646968991 ], [ 4990491.379590367898345, 3909196.861423181369901 ], [ 4990425.814720856025815, 3909166.469495114870369 ], [ 4990446.949144160374999, 3909121.007291172165424 ], [ 4990515.678261819295585, 3909152.499826029408723 ], [ 4990526.38996917847544, 3909129.58706323755905 ], [ 4990458.810559588484466, 3909098.825729032047093 ], [ 4990481.394014241173863, 3909049.725956476293504 ], [ 4990570.540297995321453, 3909090.738705090712756 ], [ 4990610.613040855154395, 3909070.08654323592782 ], [ 4990602.29314679466188, 3909170.20164422923699 ], [ 4990688.563547156751156, 3909209.750833671074361 ], [ 4990665.980787225067616, 3909258.486306338105351 ], [ 4990579.998416934162378, 3909218.937931129708886 ], [ 4990570.444899449124932, 3909239.30473076319322 ], [ 4990653.55098394677043, 3909277.753246848471463 ], [ 4990631.258129837922752, 3909325.761233213823289 ], [ 4990548.726095169782639, 3909288.042531336657703 ], [ 4990535.987826101481915, 3909315.319657855201513 ], [ 4990632.898110194131732, 3909359.62984293513 ], [ 4990605.103221165016294, 3909420.004169931635261 ], [ 4990476.561133394949138, 3909361.047240321524441 ], [ 4990460.059578341431916, 3909396.325635151937604 ], [ 4990421.957665761932731, 3909322.67263550683856 ], [ 4990366.370758941397071, 3909442.693492872640491 ], [ 4990307.419723378494382, 3909415.596060248091817 ], [ 4990384.140638467855752, 3909250.112825925461948 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984067.708463140763342, 3906428.597282918635756 ], [ 4984039.471148565411568, 3906436.906325487885624 ], [ 4984030.616593398153782, 3906406.298532448709011 ], [ 4984058.565149707719684, 3906398.35293789440766 ], [ 4984067.708463140763342, 3906428.597282918635756 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983800.780932897701859, 3906679.954080244991928 ], [ 4983875.69370701815933, 3906658.64476971141994 ], [ 4983887.403920753858984, 3906699.454875737894326 ], [ 4983854.5574706569314, 3906708.845766024664044 ], [ 4983851.416504208929837, 3906697.550348551478237 ], [ 4983809.35026818793267, 3906709.468741514254361 ], [ 4983800.780932897701859, 3906679.954080244991928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4990138.037666375748813, 3913156.996937959454954 ], [ 4990154.273866821080446, 3913111.885973206721246 ], [ 4990232.214097835123539, 3913139.760174806695431 ], [ 4990215.976848185993731, 3913185.23522476060316 ], [ 4990138.037666375748813, 3913156.996937959454954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989912.866351523436606, 3908336.751368252560496 ], [ 4989924.190925125032663, 3908299.274631487671286 ], [ 4989961.879069999791682, 3908310.65910234907642 ], [ 4989950.55444850679487, 3908348.135823487304151 ], [ 4989912.866351523436606, 3908336.751368252560496 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983145.839000319130719, 3917502.668271711096168 ], [ 4983150.757912497036159, 3917491.391432013362646 ], [ 4983125.742105728015304, 3917480.77388620423153 ], [ 4983136.160595096647739, 3917456.036730577703565 ], [ 4983208.907151811756194, 3917487.155889726243913 ], [ 4983193.570518546737731, 3917522.805715957656503 ], [ 4983145.839000319130719, 3917502.668271711096168 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982993.010984041728079, 3915873.17878663353622 ], [ 4983037.319978804327548, 3915880.927492054179311 ], [ 4983034.405615170486271, 3915896.578563916496933 ], [ 4983057.710172393359244, 3915901.001789492554963 ], [ 4983051.006197043694556, 3915937.399796486832201 ], [ 4982983.680593168362975, 3915925.228548326995224 ], [ 4982993.010984041728079, 3915873.17878663353622 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982876.2267662063241, 3915588.521735126618296 ], [ 4982835.034206221811473, 3915602.264362918678671 ], [ 4982814.737090114504099, 3915541.407418754883111 ], [ 4982873.789095900021493, 3915521.879578472580761 ], [ 4982880.651275125332177, 3915541.922704447992146 ], [ 4982862.504085407592356, 3915547.707221638876945 ], [ 4982876.2267662063241, 3915588.521735126618296 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4989218.56612092256546, 3908388.513580664526671 ], [ 4989170.482447153888643, 3908389.120254119858146 ], [ 4989169.468855165876448, 3908334.497773392591625 ], [ 4989195.38219297118485, 3908334.199157460127026 ], [ 4989195.357331133447587, 3908344.030679806135595 ], [ 4989217.52775670401752, 3908343.722620480228215 ], [ 4989218.56612092256546, 3908388.513580664526671 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982805.185290661640465, 3916820.589582739863545 ], [ 4982770.914955843240023, 3916828.886161902919412 ], [ 4982760.935318470001221, 3916787.716105810366571 ], [ 4982768.710767775774002, 3916785.913240395952016 ], [ 4982760.725043342448771, 3916753.85111492825672 ], [ 4982785.2043944792822, 3916747.716897723730654 ], [ 4982790.621355542913079, 3916770.305647608824074 ], [ 4982803.868831733241677, 3916767.058792054653168 ], [ 4982807.574677911587059, 3916782.725068723782897 ], [ 4982796.631479161791503, 3916785.248933278955519 ], [ 4982805.185290661640465, 3916820.589582739863545 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982529.506909744814038, 3894571.858350434340537 ], [ 4982528.502445291727781, 3894633.393955739680678 ], [ 4982494.511892633512616, 3894632.952366263139993 ], [ 4982495.516279294155538, 3894571.416759707499295 ], [ 4982529.506909744814038, 3894571.858350434340537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982224.704955200664699, 3917045.393122194334865 ], [ 4982254.073591320775449, 3917040.726058445405215 ], [ 4982254.640139006078243, 3917044.732825316488743 ], [ 4982302.148217340931296, 3917037.193942165933549 ], [ 4982308.389259678311646, 3917077.262930417433381 ], [ 4982280.172769316472113, 3917081.568418080918491 ], [ 4982283.294131338596344, 3917101.238777223508805 ], [ 4982234.634884675033391, 3917108.775080047547817 ], [ 4982224.704955200664699, 3917045.393122194334865 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982034.467858297750354, 3908005.711668612901121 ], [ 4982069.535488663241267, 3908031.644429621752352 ], [ 4981955.174040799029171, 3908184.321460947860032 ], [ 4981920.394417958334088, 3908158.389496868941933 ], [ 4982034.467858297750354, 3908005.711668612901121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988378.69785637781024, 3901132.165239680558443 ], [ 4988347.760797490365803, 3901180.881560804322362 ], [ 4988302.903934915550053, 3901152.731510211247951 ], [ 4988333.840944508090615, 3901104.015138274524361 ], [ 4988378.69785637781024, 3901132.165239680558443 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981767.34667444974184, 3916537.119435887318105 ], [ 4981754.674867073073983, 3916540.368098861072212 ], [ 4981750.395177578553557, 3916523.608275539241731 ], [ 4981761.338383531197906, 3916521.083985158242285 ], [ 4981758.200984861701727, 3916508.332212749868631 ], [ 4981798.232081440277398, 3916498.226656009443104 ], [ 4981809.641769639216363, 3916544.133314982056618 ], [ 4981807.625333336181939, 3916544.857037661597133 ], [ 4981818.748800238594413, 3916590.034787776414305 ], [ 4981783.038522588089108, 3916598.693513581063598 ], [ 4981767.34667444974184, 3916537.119435887318105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4988109.86516201030463, 3907551.503884739242494 ], [ 4988092.292731430381536, 3907555.101490467321128 ], [ 4988086.602181115187705, 3907527.777392210904509 ], [ 4988134.422102502547204, 3907518.06480497866869 ], [ 4988146.654178166761994, 3907577.81299810949713 ], [ 4988116.694692596793175, 3907583.928678923752159 ], [ 4988109.86516201030463, 3907551.503884739242494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981302.746021217666566, 3901485.744155773427337 ], [ 4981293.81184995546937, 3901488.637242200318724 ], [ 4981300.386783017776906, 3901510.499793148599565 ], [ 4981271.28120344132185, 3901518.809789204504341 ], [ 4981273.851958058774471, 3901528.282937065698206 ], [ 4981259.154778924770653, 3901532.619688652921468 ], [ 4981235.431334312073886, 3901452.093774904031307 ], [ 4981261.655452884733677, 3901444.505567939952016 ], [ 4981258.224781950004399, 3901433.209846706595272 ], [ 4981285.025718357414007, 3901425.258819519076496 ], [ 4981302.746021217666566, 3901485.744155773427337 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987564.496262005530298, 3902782.571809666231275 ], [ 4987522.702138533815742, 3902797.762234518770128 ], [ 4987514.40562956687063, 3902775.529755392577499 ], [ 4987524.782618598081172, 3902771.549897709395736 ], [ 4987515.055203652940691, 3902745.672575207892805 ], [ 4987544.4556654850021, 3902734.821140623651445 ], [ 4987552.751263990998268, 3902757.41775774396956 ], [ 4987569.757094874978065, 3902751.269483639393002 ], [ 4987575.192684254609048, 3902765.848157487809658 ], [ 4987560.204485697671771, 3902771.273143482394516 ], [ 4987564.496262005530298, 3902782.571809666231275 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980811.447636569850147, 3901739.542571203783154 ], [ 4980858.730711764656007, 3901715.614752734079957 ], [ 4980872.207115077413619, 3901742.226213115267456 ], [ 4980878.550086621195078, 3901738.963106082752347 ], [ 4980889.73307407554239, 3901760.835783582180738 ], [ 4980841.297299427911639, 3901785.125123179052025 ], [ 4980833.841149740852416, 3901770.907480121590197 ], [ 4980828.651749789714813, 3901773.444892891682684 ], [ 4980811.447636569850147, 3901739.542571203783154 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4987255.995603902265429, 3908558.040216199122369 ], [ 4987194.356229703873396, 3908568.448712178040296 ], [ 4987190.385318519547582, 3908544.042071037460119 ], [ 4987204.499336825683713, 3908541.527783808298409 ], [ 4987202.79777621012181, 3908530.96375686256215 ], [ 4987250.035290923900902, 3908523.068828982766718 ], [ 4987255.995603902265429, 3908558.040216199122369 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980751.103247800841928, 3905971.345402349717915 ], [ 4980699.775622087530792, 3906004.731938933953643 ], [ 4980665.052345469594002, 3905951.491869267541915 ], [ 4980691.004112893715501, 3905934.799192965496331 ], [ 4980708.796053946949542, 3905962.14845457393676 ], [ 4980752.050120995379984, 3905933.84190472913906 ], [ 4980764.389667290262878, 3905952.804094661492854 ], [ 4980746.511509214527905, 3905964.41672743530944 ], [ 4980751.103247800841928, 3905971.345402349717915 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980665.168731811456382, 3907070.834220551420003 ], [ 4980701.070153503678739, 3906981.337103305384517 ], [ 4980738.46803274936974, 3906996.349294307641685 ], [ 4980702.566506219096482, 3907085.846362407784909 ], [ 4980665.168731811456382, 3907070.834220551420003 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980562.188679789192975, 3903112.130055476911366 ], [ 4980575.495665607973933, 3903084.849577106535435 ], [ 4980598.50930112414062, 3903095.824330843053758 ], [ 4980585.201493338681757, 3903123.468927566893399 ], [ 4980562.188679789192975, 3903112.130055476911366 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980512.188193432986736, 3904500.089023512788117 ], [ 4980480.484048620797694, 3904513.127864511683583 ], [ 4980467.881357041187584, 3904482.513030854053795 ], [ 4980499.58553175535053, 3904469.474175242241472 ], [ 4980512.188193432986736, 3904500.089023512788117 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986813.78114409931004, 3895445.317584643606097 ], [ 4986854.657243937253952, 3895456.705337803810835 ], [ 4986843.323635895736516, 3895497.460226960480213 ], [ 4986862.32182240113616, 3895502.968539122957736 ], [ 4986857.09065218269825, 3895521.890525573398918 ], [ 4986797.216462081298232, 3895504.99448869144544 ], [ 4986813.78114409931004, 3895445.317584643606097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980277.547944732941687, 3908804.706730360165238 ], [ 4980253.312268446199596, 3908827.957984547596425 ], [ 4980196.43461543880403, 3908769.207790494896472 ], [ 4980220.670295153744519, 3908745.956485847011209 ], [ 4980277.547944732941687, 3908804.706730360165238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980086.350335724651814, 3900266.856673221103847 ], [ 4980081.764618190005422, 3900256.65097517427057 ], [ 4980071.962976761162281, 3900260.999090225435793 ], [ 4980055.628908318467438, 3900223.457884574774653 ], [ 4980093.393928456120193, 3900206.79052759334445 ], [ 4980114.313663482666016, 3900254.537458550650626 ], [ 4980086.350335724651814, 3900266.856673221103847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980076.613826363347471, 3903399.090663898736238 ], [ 4980096.170975490473211, 3903410.421555037144572 ], [ 4980086.053014365956187, 3903428.241839963011444 ], [ 4980096.407913565635681, 3903433.72648359509185 ], [ 4980080.797842038795352, 3903461.002161607611924 ], [ 4980039.669403883628547, 3903437.607746137306094 ], [ 4980053.544465109705925, 3903413.60543075716123 ], [ 4980064.761687976308167, 3903419.820211828686297 ], [ 4980076.613826363347471, 3903399.090663898736238 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986504.673610615544021, 3895573.831560412421823 ], [ 4986509.702216411009431, 3895519.588415171485394 ], [ 4986541.957084243185818, 3895522.579777893610299 ], [ 4986539.29385609831661, 3895551.703699949197471 ], [ 4986556.860648917965591, 3895553.567020972259343 ], [ 4986554.495190431363881, 3895578.68623669911176 ], [ 4986504.673610615544021, 3895573.831560412421823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986319.962579127401114, 3906426.674305035267025 ], [ 4986264.107363555580378, 3906424.71844285633415 ], [ 4986266.572085640393198, 3906358.088204286061227 ], [ 4986337.11045755725354, 3906360.807897666934878 ], [ 4986336.192845144309103, 3906383.017742258496583 ], [ 4986321.50983926653862, 3906382.253916609100997 ], [ 4986319.962579127401114, 3906426.674305035267025 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986315.342874685302377, 3896915.55590778728947 ], [ 4986348.058729918673635, 3896846.450387339107692 ], [ 4986376.542815594933927, 3896859.628070422448218 ], [ 4986344.114940884523094, 3896928.734254254028201 ], [ 4986315.342874685302377, 3896915.55590778728947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986171.522079044952989, 3905178.798617266118526 ], [ 4986158.247374302707613, 3905190.782904663588852 ], [ 4986170.022511332295835, 3905203.555969122797251 ], [ 4986145.782007929868996, 3905225.345336322672665 ], [ 4986138.02760651987046, 3905216.951574799139053 ], [ 4986117.538388038985431, 3905235.472838236950338 ], [ 4986089.967335370369256, 3905205.547474226914346 ], [ 4986147.684702955186367, 3905152.887667424045503 ], [ 4986171.522079044952989, 3905178.798617266118526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986154.755547733046114, 3910331.233770998660475 ], [ 4986120.481173739768565, 3910337.341256076470017 ], [ 4986121.901302234269679, 3910345.355614080093801 ], [ 4986096.555187416262925, 3910350.028156596235931 ], [ 4986088.027329630218446, 3910304.855066266376525 ], [ 4986109.916991233825684, 3910300.902437440585345 ], [ 4986107.642841787077487, 3910288.880554270464927 ], [ 4986126.940586419776082, 3910285.285815568175167 ], [ 4986129.214727551676333, 3910297.307700341567397 ], [ 4986147.935799985192716, 3910294.075717254541814 ], [ 4986154.755547733046114, 3910331.233770998660475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4986106.257226374000311, 3909431.708061603363603 ], [ 4986125.260648008435965, 3909431.025675127282739 ], [ 4986125.516899271868169, 3909444.135079457890242 ], [ 4986153.446211966685951, 3909443.11013423698023 ], [ 4986155.054883148521185, 3909492.271967287641019 ], [ 4986130.581340724602342, 3909492.941122662741691 ], [ 4986130.032792519778013, 3909481.65167675120756 ], [ 4986108.150372109375894, 3909482.32710976107046 ], [ 4986106.257226374000311, 3909431.708061603363603 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979907.284775958396494, 3902080.929556743241847 ], [ 4979915.082566238939762, 3902070.750906515400857 ], [ 4979894.095572643913329, 3902054.319203175604343 ], [ 4979908.823240830563009, 3902035.780658771749586 ], [ 4979946.771815269254148, 3902065.722263814881444 ], [ 4979924.247139341197908, 3902094.075303780380636 ], [ 4979907.284775958396494, 3902080.929556743241847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979801.935504139401019, 3898090.556049392092973 ], [ 4979782.847318783402443, 3898126.563368079252541 ], [ 4979755.515841788612306, 3898112.302784698083997 ], [ 4979774.892026198096573, 3898076.296074045822024 ], [ 4979801.935504139401019, 3898090.556049392092973 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979720.745280995965004, 3900458.319828855339438 ], [ 4979689.382559972815216, 3900444.778779537882656 ], [ 4979700.669212180189788, 3900419.678302539046854 ], [ 4979732.03195689432323, 3900433.219364819582552 ], [ 4979720.745280995965004, 3900458.319828855339438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979697.443756580352783, 3903756.568655885290354 ], [ 4979732.810333845205605, 3903781.042407135944813 ], [ 4979714.611530363559723, 3903807.22027437062934 ], [ 4979679.244179422035813, 3903783.110676433891058 ], [ 4979697.443756580352783, 3903756.568655885290354 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979658.47217343468219, 3902475.834065571893007 ], [ 4979678.663128214888275, 3902460.948577225208282 ], [ 4979692.733699227683246, 3902479.549862205516547 ], [ 4979672.541958984918892, 3902494.799469617195427 ], [ 4979658.47217343468219, 3902475.834065571893007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979559.016876782290637, 3902522.955150176770985 ], [ 4979534.609029345214367, 3902490.494528872892261 ], [ 4979561.722450045868754, 3902470.526130293495953 ], [ 4979601.060876893810928, 3902523.410535992123187 ], [ 4979561.544682705774903, 3902552.455261291004717 ], [ 4979546.613285223022103, 3902532.395652195904404 ], [ 4979559.016876782290637, 3902522.955150176770985 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979509.39252951182425, 3897383.507906213868409 ], [ 4979518.620639214292169, 3897378.430088023189455 ], [ 4979512.595620922744274, 3897367.493126063141972 ], [ 4979529.321287312544882, 3897358.426133137196302 ], [ 4979534.486148904077709, 3897367.540583355352283 ], [ 4979551.78867918998003, 3897358.110725172329694 ], [ 4979575.888667609542608, 3897401.858616422861814 ], [ 4979564.64195528998971, 3897408.024425879586488 ], [ 4979560.62608381267637, 3897400.368982390500605 ], [ 4979528.615746254101396, 3897418.141934256535023 ], [ 4979509.39252951182425, 3897383.507906213868409 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985925.287855987437069, 3910576.470283218659461 ], [ 4985916.915331846103072, 3910586.281725503969938 ], [ 4985901.112837580032647, 3910573.13489933963865 ], [ 4985910.062896457500756, 3910562.596575823612511 ], [ 4985896.846155868843198, 3910551.640774754807353 ], [ 4985918.789053157903254, 3910525.475994549691677 ], [ 4985930.855982434004545, 3910535.700771678239107 ], [ 4985934.89786967355758, 3910530.976771500427276 ], [ 4985949.550557871349156, 3910543.392581836786121 ], [ 4985953.014909123070538, 3910539.395459896884859 ], [ 4985972.839113566093147, 3910556.193336333148181 ], [ 4985943.101193502545357, 3910591.442631537560374 ], [ 4985925.287855987437069, 3910576.470283218659461 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985857.559709956869483, 3905458.059437476098537 ], [ 4985854.114856328815222, 3905453.681570865213871 ], [ 4985823.822710276581347, 3905477.641474363394082 ], [ 4985797.411239710636437, 3905444.442004586104304 ], [ 4985851.647643181495368, 3905401.968892019242048 ], [ 4985881.216870025731623, 3905439.181461377535015 ], [ 4985857.559709956869483, 3905458.059437476098537 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979223.470559246838093, 3907351.344003981910646 ], [ 4979201.438946882262826, 3907420.481607455294579 ], [ 4979102.172059206292033, 3907388.95232146140188 ], [ 4979124.203441483899951, 3907319.814637935254723 ], [ 4979223.470559246838093, 3907351.344003981910646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979165.183235034346581, 3904737.843243614304811 ], [ 4979185.928504392504692, 3904732.061855079606175 ], [ 4979193.360356635414064, 3904757.567095783073455 ], [ 4979135.733460551127791, 3904774.192956711165607 ], [ 4979125.443975143134594, 3904738.485890424344689 ], [ 4979162.324879960156977, 3904728.005528477020562 ], [ 4979165.183235034346581, 3904737.843243614304811 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979069.094612026587129, 3904562.853136170655489 ], [ 4979073.660383673384786, 3904582.161936555057764 ], [ 4979090.082494248636067, 3904578.191830387804657 ], [ 4979098.93152697570622, 3904614.259910109452903 ], [ 4979053.69899847637862, 3904625.086524284444749 ], [ 4979045.133948880247772, 3904590.839728255756199 ], [ 4979050.31950399838388, 3904589.758486529346555 ], [ 4979045.181720451451838, 3904568.627801678609103 ], [ 4979069.094612026587129, 3904562.853136170655489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985659.09549052733928, 3903804.424447807017714 ], [ 4985704.886178902350366, 3903802.713578323367983 ], [ 4985707.051898242905736, 3903860.251575771253556 ], [ 4985712.812045490369201, 3903859.901260785292834 ], [ 4985713.348666611127555, 3903876.288473282475024 ], [ 4985653.734982377849519, 3903878.330328366253525 ], [ 4985652.645086497068405, 3903852.474367797840387 ], [ 4985660.708072123117745, 3903852.493692239746451 ], [ 4985659.09549052733928, 3903804.424447807017714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985558.389107919298112, 3907139.268477358389646 ], [ 4985576.930116980336607, 3907212.13933946006 ], [ 4985538.900128158740699, 3907221.879897105041891 ], [ 4985532.339641995728016, 3907196.010800031945109 ], [ 4985534.35687991976738, 3907195.287361247930676 ], [ 4985522.664192449301481, 3907148.286309853661805 ], [ 4985558.389107919298112, 3907139.268477358389646 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978999.490862456150353, 3899968.097048427909613 ], [ 4978956.827755188569427, 3899985.847814230713993 ], [ 4978945.078946976922452, 3899958.148664958309382 ], [ 4978987.742090334184468, 3899940.397880811709911 ], [ 4978999.490862456150353, 3899968.097048427909613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978896.028979195281863, 3899999.554307511076331 ], [ 4978898.615557583980262, 3900002.10876963660121 ], [ 4978917.948614895343781, 3899985.036105161067098 ], [ 4978941.795990525744855, 3900011.668818047270179 ], [ 4978925.925245189107955, 3900025.835850266739726 ], [ 4978926.500473344698548, 3900026.201215291395783 ], [ 4978899.088472024537623, 3900050.175025981385261 ], [ 4978872.65607128944248, 3900020.259632570203394 ], [ 4978896.028979195281863, 3899999.554307511076331 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978851.430902564898133, 3906159.831882816273719 ], [ 4978874.65947914775461, 3906203.941656057257205 ], [ 4978851.887353462167084, 3906215.545054383110255 ], [ 4978828.657969396561384, 3906171.799430821090937 ], [ 4978851.430902564898133, 3906159.831882816273719 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978775.808856452815235, 3909337.816852112766355 ], [ 4978801.988711182959378, 3909346.976235066074878 ], [ 4978791.560967440716922, 3909376.448648499790579 ], [ 4978765.38113793451339, 3909367.289275532122701 ], [ 4978775.808856452815235, 3909337.816852112766355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978755.801238643936813, 3906310.013569353148341 ], [ 4978768.407351098954678, 3906339.535243256483227 ], [ 4978743.622164481319487, 3906350.042028906755149 ], [ 4978731.016029804013669, 3906320.520366457290947 ], [ 4978755.801238643936813, 3906310.013569353148341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978721.20360295753926, 3904176.855660047847778 ], [ 4978719.954421346075833, 3904222.36943035107106 ], [ 4978690.584077462553978, 3904221.578372294548899 ], [ 4978691.83320935908705, 3904176.064600643701851 ], [ 4978721.20360295753926, 3904176.855660047847778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978698.351266370154917, 3904090.507626997306943 ], [ 4978728.584079280495644, 3904092.028800931293517 ], [ 4978726.180702557787299, 3904138.632494508754462 ], [ 4978696.235902681015432, 3904137.111938814166933 ], [ 4978698.351266370154917, 3904090.507626997306943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978673.744745495729148, 3904420.722347004339099 ], [ 4978706.282406580634415, 3904421.520159061532468 ], [ 4978705.02236043382436, 3904472.131755856797099 ], [ 4978672.484760601073503, 3904471.333945319056511 ], [ 4978673.744745495729148, 3904420.722347004339099 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978661.392615174874663, 3903328.301572334952652 ], [ 4978638.609596798196435, 3903343.910557453520596 ], [ 4978611.338792606256902, 3903303.433756300713867 ], [ 4978634.121051779016852, 3903288.188878119457513 ], [ 4978661.392615174874663, 3903328.301572334952652 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985119.512415107339621, 3907169.172941834200174 ], [ 4985099.640175494365394, 3907171.310507409274578 ], [ 4985096.541317724622786, 3907142.536685417871922 ], [ 4985136.285842173732817, 3907138.261564467102289 ], [ 4985134.876500290818512, 3907125.513580273836851 ], [ 4985150.428979822434485, 3907123.729899782687426 ], [ 4985154.93884576484561, 3907164.523452379275113 ], [ 4985141.978609723970294, 3907165.949161630123854 ], [ 4985143.106078878976405, 3907176.147549519315362 ], [ 4985120.642489294521511, 3907178.278937793336809 ], [ 4985119.512415107339621, 3907169.172941834200174 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4985024.304204813204706, 3904095.308225856162608 ], [ 4985026.196163512766361, 3904026.127694144379348 ], [ 4985053.26285411324352, 3904026.920206864364445 ], [ 4985052.950685376301408, 3904037.115152970887721 ], [ 4985071.091413607820868, 3904037.522361151408404 ], [ 4985069.855684746056795, 3904072.840200697537512 ], [ 4985075.038990148343146, 3904072.85251086531207 ], [ 4985074.406853880733252, 3904096.51957002049312 ], [ 4985024.304204813204706, 3904095.308225856162608 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984990.100549334660172, 3908802.364347632043064 ], [ 4985000.508534360677004, 3908784.182403129525483 ], [ 4985015.172979772090912, 3908792.228122021071613 ], [ 4985005.052898542955518, 3908810.410744111053646 ], [ 4984990.100549334660172, 3908802.364347632043064 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978386.144517606124282, 3907366.664671529550105 ], [ 4978413.527710425667465, 3907352.521756471600384 ], [ 4978434.7466846331954, 3907393.713849300052971 ], [ 4978407.363522484898567, 3907407.856743092183024 ], [ 4978386.144517606124282, 3907366.664671529550105 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978263.630295112729073, 3911912.237580310553312 ], [ 4978278.519531606696546, 3911950.13904185872525 ], [ 4978249.707881577312946, 3911961.366028069984168 ], [ 4978234.818610760383308, 3911923.464582221582532 ], [ 4978263.630295112729073, 3911912.237580310553312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978203.57128101401031, 3905070.060865230858326 ], [ 4978151.712392600253224, 3905083.059745244681835 ], [ 4978142.003789780661464, 3905044.441227668430656 ], [ 4978166.780687019228935, 3905038.303456372581422 ], [ 4978162.210487052798271, 3905020.815455028321594 ], [ 4978189.292564368806779, 3905013.954323342069983 ], [ 4978203.57128101401031, 3905070.060865230858326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984804.132125255651772, 3904775.348897986579686 ], [ 4984821.71884763147682, 3904766.287200944498181 ], [ 4984817.705580577254295, 3904758.630938394460827 ], [ 4984849.130492141470313, 3904742.683492821175605 ], [ 4984853.429983102716506, 3904751.068701145239174 ], [ 4984873.034141944721341, 3904741.283549182582647 ], [ 4984887.651685817167163, 3904770.084577315021306 ], [ 4984880.444215158000588, 3904773.7088283742778 ], [ 4984886.175699759274721, 3904785.374619617592543 ], [ 4984853.021370590664446, 3904802.046192573383451 ], [ 4984857.895033948123455, 3904811.161024652887136 ], [ 4984829.641991309821606, 3904825.295305631589144 ], [ 4984804.132125255651772, 3904775.348897986579686 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984614.777141112834215, 3905823.601765068247914 ], [ 4984629.548960071988404, 3905786.859263401012868 ], [ 4984694.275104227475822, 3905812.86538357520476 ], [ 4984679.503210805356503, 3905849.607850240077823 ], [ 4984614.777141112834215, 3905823.601765068247914 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984497.849472375586629, 3904242.629747322294861 ], [ 4984487.995436985045671, 3904269.552303954958916 ], [ 4984459.223488392308354, 3904259.288924090564251 ], [ 4984469.078355279751122, 3904232.002227372955531 ], [ 4984497.849472375586629, 3904242.629747322294861 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4984385.338015200570226, 3916704.092865627259016 ], [ 4984396.579496376216412, 3916697.200734762474895 ], [ 4984378.801884620450437, 3916668.392318376339972 ], [ 4984408.779501223936677, 3916649.89192887628451 ], [ 4984436.020242343656719, 3916693.652140260674059 ], [ 4984394.801178231835365, 3916719.044626840855926 ], [ 4984385.338015200570226, 3916704.092865627259016 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978158.511099423281848, 3904048.212135507725179 ], [ 4978136.293343424797058, 3904069.284720804076642 ], [ 4978103.53815252892673, 3904034.987043231725693 ], [ 4978125.755911027081311, 3904013.914431293029338 ], [ 4978158.511099423281848, 3904048.212135507725179 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977643.080573159269989, 3906095.366362346801907 ], [ 4977664.406461183913052, 3906086.671960386447608 ], [ 4977674.433126337826252, 3906111.089851934928447 ], [ 4977653.108018724247813, 3906119.420115743763745 ], [ 4977643.080573159269989, 3906095.366362346801907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977625.989645844325423, 3911221.223731558769941 ], [ 4977662.89624682161957, 3911193.99122162302956 ], [ 4977681.556003503501415, 3911219.155592332128435 ], [ 4977644.937302555888891, 3911246.388681369367987 ], [ 4977625.989645844325423, 3911221.223731558769941 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977515.427814886905253, 3906965.738425508141518 ], [ 4977535.535652936436236, 3906988.356729870196432 ], [ 4977500.920000519603491, 3907018.871340347453952 ], [ 4977480.812156329862773, 3906996.253061465919018 ], [ 4977515.427814886905253, 3906965.738425508141518 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977406.429145461879671, 3905389.183246149215847 ], [ 4977355.153997815214097, 3905398.907697911374271 ], [ 4977348.317761688493192, 3905363.208513115998358 ], [ 4977399.592974894680083, 3905353.484048524405807 ], [ 4977406.429145461879671, 3905389.183246149215847 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977336.271506078541279, 3912788.210995113477111 ], [ 4977339.549813065677881, 3912734.690226035192609 ], [ 4977380.421827611513436, 3912737.324526954442263 ], [ 4977378.632991873659194, 3912766.815596823580563 ], [ 4977384.677464241161942, 3912767.19235988240689 ], [ 4977383.187906461767852, 3912791.222053854726255 ], [ 4977336.271506078541279, 3912788.210995113477111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977330.464872261509299, 3906880.873106022365391 ], [ 4977347.766598539426923, 3906868.528730676043779 ], [ 4977361.546247052028775, 3906888.220635451376438 ], [ 4977344.245287222787738, 3906900.20087156817317 ], [ 4977330.464872261509299, 3906880.873106022365391 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983900.788104142062366, 3902810.92245019460097 ], [ 4983898.677208275534213, 3902851.700244479812682 ], [ 4983860.956790880300105, 3902849.791680907830596 ], [ 4983861.56667383108288, 3902835.227846319321543 ], [ 4983850.913307333365083, 3902834.474765473045409 ], [ 4983852.125429613515735, 3902808.62426086794585 ], [ 4983900.788104142062366, 3902810.92245019460097 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977273.119211467914283, 3906212.935362855903804 ], [ 4977280.25465373788029, 3906243.173191994894296 ], [ 4977237.329866554588079, 3906253.643547352869064 ], [ 4977229.90644047036767, 3906223.40512955468148 ], [ 4977273.119211467914283, 3906212.935362855903804 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977267.174430582672358, 3907683.288415905553848 ], [ 4977284.968685927800834, 3907710.635439803823829 ], [ 4977236.531708636321127, 3907742.213978548999876 ], [ 4977218.736666625365615, 3907715.231116889510304 ], [ 4977267.174430582672358, 3907683.288415905553848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977260.38963308930397, 3904998.52925197687 ], [ 4977303.603624294511974, 3904988.423672306351364 ], [ 4977311.024275882169604, 3905020.118607975076884 ], [ 4977268.098283938132226, 3905030.224776184652001 ], [ 4977260.38963308930397, 3904998.52925197687 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977171.429186798632145, 3906235.663853931240737 ], [ 4977156.451095391064882, 3906238.181610529311001 ], [ 4977153.03750207927078, 3906218.147251735441387 ], [ 4977168.015604319050908, 3906215.629493264947087 ], [ 4977171.429186798632145, 3906235.663853931240737 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977009.777577210217714, 3911841.512986273504794 ], [ 4977032.170832167379558, 3911871.054263648577034 ], [ 4977032.747343943454325, 3911870.691327502019703 ], [ 4977057.15115350112319, 3911902.421600449830294 ], [ 4977017.937073623761535, 3911932.56322709703818 ], [ 4976993.246878915466368, 3911900.104128532111645 ], [ 4976991.805224648676813, 3911901.193536909297109 ], [ 4976969.411195414140821, 3911872.016424257773906 ], [ 4977009.777577210217714, 3911841.512986273504794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4983162.706228115595877, 3906809.563905970659107 ], [ 4983243.519372275099158, 3906851.26130887074396 ], [ 4983213.441809923388064, 3906908.724830326624215 ], [ 4983132.916724001988769, 3906867.02817953703925 ], [ 4983162.706228115595877, 3906809.563905970659107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976678.169511345215142, 3912385.570124368648976 ], [ 4976640.977671147324145, 3912412.803413903340697 ], [ 4976622.604896828532219, 3912388.004472251050174 ], [ 4976659.508879979141057, 3912360.770563952159137 ], [ 4976678.169511345215142, 3912385.570124368648976 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976683.194245918653905, 3900597.899611887522042 ], [ 4976681.366371182724833, 3900646.325223584659398 ], [ 4976651.416817574761808, 3900645.171078679151833 ], [ 4976653.244638415053487, 3900596.745464974083006 ], [ 4976683.194245918653905, 3900597.899611887522042 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976523.586626023985445, 3901045.087557724677026 ], [ 4976518.59188805706799, 3901093.142549252603203 ], [ 4976490.373779627494514, 3901090.535619998350739 ], [ 4976492.727873062714934, 3901066.143696133978665 ], [ 4976486.969497222453356, 3901065.403599050827324 ], [ 4976489.610086746513844, 3901041.740525653585792 ], [ 4976523.586626023985445, 3901045.087557724677026 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976491.438027872703969, 3901273.331472350284457 ], [ 4976488.515454722568393, 3901294.08092260081321 ], [ 4976457.4213822549209, 3901289.647462175227702 ], [ 4976464.139437823556364, 3901243.780779153108597 ], [ 4976507.901452830061316, 3901250.060944098047912 ], [ 4976504.393898204900324, 3901275.178759533446282 ], [ 4976491.438027872703969, 3901273.331472350284457 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976452.042123981751502, 3908533.671083464287221 ], [ 4976425.804597396403551, 3908551.823812779970467 ], [ 4976411.164371711201966, 3908530.674070787150413 ], [ 4976437.113995131105185, 3908512.520736047998071 ], [ 4976452.042123981751502, 3908533.671083464287221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976451.1174405394122, 3908002.764172594528645 ], [ 4976478.498963835649192, 3907988.619279960170388 ], [ 4976493.985223334282637, 3908018.509966325480491 ], [ 4976466.603722248226404, 3908032.654843440279365 ], [ 4976451.1174405394122, 3908002.764172594528645 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976299.965151402167976, 3911372.138046043924987 ], [ 4976354.1439538160339, 3911344.57500336645171 ], [ 4976361.884688194841146, 3911360.248603765387088 ], [ 4976307.994538616389036, 3911387.448089525103569 ], [ 4976299.965151402167976, 3911372.138046043924987 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976310.248613432049751, 3905791.465211718343198 ], [ 4976277.111307609826326, 3905803.049550922587514 ], [ 4976263.370561654679477, 3905763.69517969712615 ], [ 4976296.50716404337436, 3905752.474954107310623 ], [ 4976310.248613432049751, 3905791.465211718343198 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976299.712920061312616, 3907982.426269236952066 ], [ 4976341.790979410521686, 3907962.12110275728628 ], [ 4976355.552130103111267, 3907990.915774487424642 ], [ 4976313.762024527415633, 3908011.221509828232229 ], [ 4976299.712920061312616, 3907982.426269236952066 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976260.477379275485873, 3900705.906150260008872 ], [ 4976251.151173924095929, 3900759.778406865894794 ], [ 4976236.180549248121679, 3900757.198859395924956 ], [ 4976230.934032691642642, 3900787.77510569896549 ], [ 4976203.296036679297686, 3900782.984881515149027 ], [ 4976211.457490452565253, 3900735.300447749905288 ], [ 4976236.792302088811994, 3900739.721837169025093 ], [ 4976239.122354442253709, 3900726.982029820326716 ], [ 4976218.106001392006874, 3900723.297731512226164 ], [ 4976222.187119079753757, 3900699.273452674504369 ], [ 4976260.477379275485873, 3900705.906150260008872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982524.328397922217846, 3907327.353221703320742 ], [ 4982535.680450182408094, 3907273.487525388598442 ], [ 4982521.290737082250416, 3907270.541649984195828 ], [ 4982530.603229553438723, 3907227.231139959767461 ], [ 4982596.507892228662968, 3907240.854421969968826 ], [ 4982593.3066067090258, 3907255.776538798119873 ], [ 4982601.652341444045305, 3907257.616254899650812 ], [ 4982594.082269280217588, 3907294.376337138004601 ], [ 4982570.771825122646987, 3907289.22527646785602 ], [ 4982560.877619878388941, 3907335.083373402245343 ], [ 4982524.328397922217846, 3907327.353221703320742 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976091.348938480019569, 3913015.408928351476789 ], [ 4976145.54133306723088, 3912979.470402195118368 ], [ 4976179.979522758163512, 3913031.247746981680393 ], [ 4976126.075051148422062, 3913067.186792871914804 ], [ 4976091.348938480019569, 3913015.408928351476789 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976060.716280497610569, 3900651.970811700914055 ], [ 4976072.937724813818932, 3900590.457654777448624 ], [ 4976102.013705841265619, 3900596.343070645350963 ], [ 4976089.792940560728312, 3900657.492085388861597 ], [ 4976060.716280497610569, 3900651.970811700914055 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976027.926746398210526, 3909389.242776117753237 ], [ 4976033.932646129280329, 3909408.918183374684304 ], [ 4976004.836508799344301, 3909417.598054346628487 ], [ 4975998.831331737339497, 3909397.558522389270365 ], [ 4976027.926746398210526, 3909389.242776117753237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975953.305043962784111, 3908425.960248253773898 ], [ 4976002.030162243172526, 3908392.92344601592049 ], [ 4976024.132818199694157, 3908425.740411165636033 ], [ 4975975.696388077922165, 3908458.41362950950861 ], [ 4975953.305043962784111, 3908425.960248253773898 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975892.198769777081907, 3909308.857222331687808 ], [ 4975931.684038154780865, 3909288.181996156927198 ], [ 4975946.023718466050923, 3909315.521129310131073 ], [ 4975906.539219850674272, 3909335.832203666679561 ], [ 4975892.198769777081907, 3909308.857222331687808 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4982124.320199298672378, 3895027.556269424036145 ], [ 4982059.432117655873299, 3895060.545205834787339 ], [ 4982040.50263377930969, 3895024.089428843930364 ], [ 4982051.461205678060651, 3895018.652268078178167 ], [ 4982045.439153987914324, 3895006.622370408847928 ], [ 4982070.529083080589771, 3894993.934587534051389 ], [ 4982057.623274281620979, 3894968.78044735873118 ], [ 4982071.754640691913664, 3894961.529823971446604 ], [ 4982077.491103681735694, 3894972.466692147776484 ], [ 4982092.19859154894948, 3894965.217383103445172 ], [ 4982124.320199298672378, 3895027.556269424036145 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975781.427002196200192, 3909556.970619714353234 ], [ 4975816.915199644863605, 3909519.537008470389992 ], [ 4975857.432560223154724, 3909557.489123851060867 ], [ 4975831.754484643228352, 3909584.382762908935547 ], [ 4975808.478759485296905, 3909562.487528506666422 ], [ 4975798.38072968646884, 3909573.026871897745878 ], [ 4975781.427002196200192, 3909556.970619714353234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975627.375140391290188, 3908003.633390471804887 ], [ 4975618.442274360917509, 3908007.256636701989919 ], [ 4975626.180722528137267, 3908024.750646710395813 ], [ 4975607.449776950292289, 3908032.723657228983939 ], [ 4975600.570657045580447, 3908017.416184586938471 ], [ 4975585.585607173852623, 3908023.94025852996856 ], [ 4975567.530622428283095, 3907982.392671288456768 ], [ 4975610.180282189510763, 3907963.908177159260958 ], [ 4975627.375140391290188, 3908003.633390471804887 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975533.391701871529222, 3902361.951453260611743 ], [ 4975635.801958076655865, 3902416.778160892892629 ], [ 4975617.301311888732016, 3902451.333178346045315 ], [ 4975594.575286445207894, 3902439.270888288971037 ], [ 4975570.006551421247423, 3902484.009338583797216 ], [ 4975641.635800614021719, 3902522.387976678553969 ], [ 4975618.510633575730026, 3902565.308651139494032 ], [ 4975540.266064171679318, 3902522.911267025396228 ], [ 4975500.375881690531969, 3902596.749322818592191 ], [ 4975540.936534652486444, 3902618.679097137413919 ], [ 4975520.124246972613037, 3902657.234957521781325 ], [ 4975471.221123670227826, 3902630.918807992711663 ], [ 4975433.644642745144665, 3902700.027930691838264 ], [ 4975502.684667883440852, 3902736.944459506310523 ], [ 4975479.271930959075689, 3902779.864678014069796 ], [ 4975401.890228472650051, 3902738.197693866677582 ], [ 4975358.243873364292085, 3902818.582760852295905 ], [ 4975315.956988851539791, 3902795.921524143777788 ], [ 4975364.805884759873152, 3902706.079456290695816 ], [ 4975278.794014123268425, 3902659.661748461425304 ], [ 4975302.206534463912249, 3902616.741358407773077 ], [ 4975385.341671290807426, 3902661.696820374578238 ], [ 4975375.802510722540319, 3902679.520030638668686 ], [ 4975395.938845400698483, 3902690.484526548534632 ], [ 4975399.526623778045177, 3902624.948157088831067 ], [ 4975420.834714372642338, 3902626.083492630627006 ], [ 4975433.263238579966128, 3902603.532419914379716 ], [ 4975361.346665286459029, 3902564.789625861681998 ], [ 4975384.470688132569194, 3902522.232859703712165 ], [ 4975465.305833379738033, 3902565.363277868367732 ], [ 4975545.373559876345098, 3902418.051838858518749 ], [ 4975512.579227713868022, 3902400.507313495967537 ], [ 4975533.391701871529222, 3902361.951453260611743 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981848.632035075686872, 3918143.500479044392705 ], [ 4981849.240518652833998, 3918128.936459918506444 ], [ 4981820.461903003975749, 3918127.779140566010028 ], [ 4981821.976506219245493, 3918094.282155295368284 ], [ 4981851.043790433555841, 3918095.075992676895112 ], [ 4981851.650633114390075, 3918081.240239924751222 ], [ 4981907.193280258215964, 3918083.550426301546395 ], [ 4981904.750997225753963, 3918145.447826222050935 ], [ 4981848.632035075686872, 3918143.500479044392705 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981713.140640362165868, 3904042.137800770346075 ], [ 4981674.224867939949036, 3904060.256849607918411 ], [ 4981658.748612880706787, 3904027.450212840456516 ], [ 4981669.12670268677175, 3904022.375701918266714 ], [ 4981665.114063709974289, 3904013.99165418650955 ], [ 4981681.545095848850906, 3904006.381835734471679 ], [ 4981684.411614916287363, 3904012.214387307409197 ], [ 4981720.733345243148506, 3903995.181910985149443 ], [ 4981743.661306023597717, 3904043.663014582823962 ], [ 4981719.446301635354757, 3904055.260726161766797 ], [ 4981713.140640362165868, 3904042.137800770346075 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975127.656629060395062, 3903208.832237612921745 ], [ 4975151.012927368283272, 3903193.585562230087817 ], [ 4975161.061957152560353, 3903208.535099287517369 ], [ 4975170.000737498514354, 3903202.726933192461729 ], [ 4975203.304458383470774, 3903253.043883378617465 ], [ 4975160.051953023299575, 3903281.359318117145449 ], [ 4975128.184388586319983, 3903232.86595610762015 ], [ 4975138.853897264227271, 3903225.604724638629705 ], [ 4975127.656629060395062, 3903208.832237612921745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981316.784083920530975, 3907702.231894727796316 ], [ 4981272.652223070152104, 3907737.81824846053496 ], [ 4981253.414295120164752, 3907714.106674575246871 ], [ 4981297.546169231645763, 3907678.520289762411267 ], [ 4981316.784083920530975, 3907702.231894727796316 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4981218.452425776049495, 3904027.556459594517946 ], [ 4981273.805362134240568, 3903998.913645360153168 ], [ 4981320.255006440915167, 3904088.593803207855672 ], [ 4981264.902204643003643, 3904117.236523339524865 ], [ 4981218.452425776049495, 3904027.556459594517946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975091.929089105688035, 3904368.15483058616519 ], [ 4975101.484979071654379, 3904341.592381142545491 ], [ 4975091.988913643173873, 3904338.296170035377145 ], [ 4975098.359755124896765, 3904320.466493654064834 ], [ 4975110.445994951762259, 3904324.496161179151386 ], [ 4975113.921935718506575, 3904314.307447229977697 ], [ 4975149.028080595657229, 3904326.758306832052767 ], [ 4975136.863718681037426, 3904361.690532267093658 ], [ 4975154.129531062208116, 3904367.551263860426843 ], [ 4975147.178365563973784, 3904387.564552525989711 ], [ 4975091.929089105688035, 3904368.15483058616519 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975053.02145382296294, 3901220.163348003290594 ], [ 4975094.196282185614109, 3901224.251246334519237 ], [ 4975088.315357510000467, 3901284.685175131540745 ], [ 4975046.852629568427801, 3901280.59670919412747 ], [ 4975053.02145382296294, 3901220.163348003290594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974882.066593148745596, 3898709.870139708742499 ], [ 4974904.2622185125947, 3898700.8111815857701 ], [ 4974911.141960620880127, 3898717.210775800980628 ], [ 4974933.626335948705673, 3898707.788288128562272 ], [ 4974945.95222648140043, 3898737.307457658462226 ], [ 4974901.271550619974732, 3898756.153006483335048 ], [ 4974882.066593148745596, 3898709.870139708742499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974852.484953390434384, 3899389.642393726855516 ], [ 4974902.326223250478506, 3899382.09510113671422 ], [ 4974909.432010480202734, 3899429.446235227398574 ], [ 4974885.80782828759402, 3899433.040385326370597 ], [ 4974883.817908399738371, 3899419.927720744628459 ], [ 4974857.600893979892135, 3899423.880852182395756 ], [ 4974852.484953390434384, 3899389.642393726855516 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980820.909046806395054, 3916302.321905405726284 ], [ 4980834.400725455023348, 3916318.737875664141029 ], [ 4980816.809976199641824, 3916333.628368662670255 ], [ 4980803.030464133247733, 3916317.211768931243569 ], [ 4980820.909046806395054, 3916302.321905405726284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974690.934972171671689, 3896624.481105749029666 ], [ 4974709.905863136053085, 3896644.545965733472258 ], [ 4974682.490576720796525, 3896670.34467006335035 ], [ 4974663.807724568992853, 3896650.28040147991851 ], [ 4974690.934972171671689, 3896624.481105749029666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980411.491317092441022, 3904983.069916018284857 ], [ 4980407.455184216611087, 3904985.245820932090282 ], [ 4980417.204650782048702, 3905003.838005392346531 ], [ 4980387.222442593425512, 3905019.793804582208395 ], [ 4980355.105651636607945, 3904958.913141051772982 ], [ 4980389.123244476504624, 3904941.145528375171125 ], [ 4980411.491317092441022, 3904983.069916018284857 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974408.761863846331835, 3906033.78936921665445 ], [ 4974434.887323987670243, 3906072.803171452600509 ], [ 4974401.154410729184747, 3906094.948468182701617 ], [ 4974375.316863494925201, 3906055.93526747636497 ], [ 4974408.761863846331835, 3906033.78936921665445 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974226.052692672237754, 3894715.157925540115684 ], [ 4974225.137560773640871, 3894741.009305827785283 ], [ 4974211.600109361112118, 3894740.254373235162348 ], [ 4974210.381149013526738, 3894774.116001649294049 ], [ 4974172.935362652875483, 3894772.949868354480714 ], [ 4974174.16001084074378, 3894736.1752147693187 ], [ 4974163.21439210511744, 3894735.789538650307804 ], [ 4974163.835669026710093, 3894712.850612782873213 ], [ 4974226.052692672237754, 3894715.157925540115684 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980167.013081672601402, 3898943.054636470042169 ], [ 4980198.429227774962783, 3898932.927867360878736 ], [ 4980213.878273137845099, 3898980.298709608148783 ], [ 4980182.462176467292011, 3898990.425460940692574 ], [ 4980167.013081672601402, 3898943.054636470042169 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980098.729902035556734, 3897901.128239122219384 ], [ 4980065.864484583027661, 3897914.893251723609865 ], [ 4980042.082456248812377, 3897858.036913973279297 ], [ 4980067.163999599404633, 3897847.532010457012802 ], [ 4980075.472985598258674, 3897867.577353563159704 ], [ 4980083.256912058219314, 3897864.317218226846308 ], [ 4980098.729902035556734, 3897901.128239122219384 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980046.251508104614913, 3899243.926080689299852 ], [ 4980090.648579915054142, 3899224.360191478859633 ], [ 4980102.972558809444308, 3899252.061090577859432 ], [ 4980058.575523650273681, 3899271.626959753222764 ], [ 4980046.251508104614913, 3899243.926080689299852 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980015.208473412320018, 3906326.939474081154913 ], [ 4979985.241508489474654, 3906336.705519551876932 ], [ 4979967.218433706089854, 3906283.138720026705414 ], [ 4979997.186247778125107, 3906273.008524491451681 ], [ 4980015.208473412320018, 3906326.939474081154913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4980023.725707026198506, 3901115.508546171244234 ], [ 4979994.246943967416883, 3901162.781113198027015 ], [ 4979968.64981172978878, 3901147.067547609098256 ], [ 4979975.008725967258215, 3901136.521645358297974 ], [ 4979958.327410655096173, 3901126.289536177646369 ], [ 4979986.072618747130036, 3901081.562058374751359 ], [ 4980012.244993841275573, 3901097.641028431244195 ], [ 4980007.331594255752861, 3901105.64116566022858 ], [ 4980023.725707026198506, 3901115.508546171244234 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974037.308289385400712, 3905598.647896287962794 ], [ 4974045.72451514005661, 3905565.164313037879765 ], [ 4974080.260784085839987, 3905573.971351343672723 ], [ 4974071.557288794778287, 3905607.090227623935789 ], [ 4974037.308289385400712, 3905598.647896287962794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974007.373406347818673, 3895322.459847796708345 ], [ 4974066.435448919422925, 3895317.113884090445936 ], [ 4974070.10432631149888, 3895355.718817074783146 ], [ 4974055.410669336095452, 3895357.146467325277627 ], [ 4974058.79794040415436, 3895392.473681112751365 ], [ 4974014.429696635343134, 3895396.391981117427349 ], [ 4974007.373406347818673, 3895322.459847796708345 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973792.847929644398391, 3898819.870928511954844 ], [ 4973804.019390719011426, 3898851.207968440372497 ], [ 4973737.729177217930555, 3898874.746900107245892 ], [ 4973725.411266228184104, 3898840.494607367087156 ], [ 4973768.067735221236944, 3898825.28445177199319 ], [ 4973768.926096209324896, 3898828.19917071564123 ], [ 4973792.847929644398391, 3898819.870928511954844 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979860.756379197351635, 3916409.449970730114728 ], [ 4979838.907569007016718, 3916397.385871785227209 ], [ 4979856.825287300162017, 3916364.288735921029001 ], [ 4979905.123426182195544, 3916390.611831960268319 ], [ 4979882.294290314428508, 3916432.073304905090481 ], [ 4979856.132838571444154, 3916417.814972243737429 ], [ 4979860.756379197351635, 3916409.449970730114728 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979791.729184060357511, 3907269.918050698935986 ], [ 4979806.488854785449803, 3907235.357648436911404 ], [ 4979836.693456521257758, 3907248.16811779839918 ], [ 4979821.933753872290254, 3907282.728503741789609 ], [ 4979791.729184060357511, 3907269.918050698935986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979632.355338897556067, 3900446.111365501303226 ], [ 4979615.607041159644723, 3900466.46631068829447 ], [ 4979585.421568561345339, 3900441.275755821727216 ], [ 4979602.169068448245525, 3900421.284921140875667 ], [ 4979632.355338897556067, 3900446.111365501303226 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973725.358918957412243, 3908895.252874450292438 ], [ 4973685.288300261832774, 3908921.392180239316076 ], [ 4973669.788077294826508, 3908897.329193067736924 ], [ 4973709.858005698770285, 3908871.553995605558157 ], [ 4973725.358918957412243, 3908895.252874450292438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973673.529815135523677, 3909193.012068717274815 ], [ 4973698.03385787922889, 3909176.673928044736385 ], [ 4973723.295689357444644, 3909214.593034568242729 ], [ 4973692.738529386930168, 3909234.560662182047963 ], [ 4973682.117269851267338, 3909218.518101871944964 ], [ 4973687.88250201754272, 3909214.888028019107878 ], [ 4973673.529815135523677, 3909193.012068717274815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973632.259093793109059, 3901858.591019097249955 ], [ 4973675.390805928036571, 3901892.539293520152569 ], [ 4973650.27365340385586, 3901924.533827620558441 ], [ 4973606.853976330719888, 3901890.585031813941896 ], [ 4973632.259093793109059, 3901858.591019097249955 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973572.518557709641755, 3900740.593229272402823 ], [ 4973554.625178433954716, 3900759.857324209995568 ], [ 4973535.075390406884253, 3900742.341014636214823 ], [ 4973552.9694758746773, 3900722.712777633685619 ], [ 4973572.518557709641755, 3900740.593229272402823 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973549.392465311102569, 3900192.895838147494942 ], [ 4973502.70908026676625, 3900206.641997546423227 ], [ 4973493.26656455732882, 3900174.944287185557187 ], [ 4973516.032269654795527, 3900168.070069134235382 ], [ 4973510.309021803550422, 3900149.124153897631913 ], [ 4973534.515479131601751, 3900141.888622531667352 ], [ 4973549.392465311102569, 3900192.895838147494942 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973503.958745708689094, 3905340.164364280179143 ], [ 4973491.294704375788569, 3905337.226687995716929 ], [ 4973497.976268748752773, 3905307.01675215177238 ], [ 4973537.69540505670011, 3905316.197300183586776 ], [ 4973527.529380835592747, 3905361.329844994936138 ], [ 4973500.473634495399892, 3905355.451116673182696 ], [ 4973503.958745708689094, 3905340.164364280179143 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973445.04413849581033, 3911505.90272538177669 ], [ 4973478.951890759170055, 3911538.012330945581198 ], [ 4973455.874676341190934, 3911562.000257703475654 ], [ 4973421.967634075321257, 3911529.526549119502306 ], [ 4973445.04413849581033, 3911505.90272538177669 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973458.903163650073111, 3902890.200911459047347 ], [ 4973476.420755714178085, 3902915.359995089005679 ], [ 4973419.614279131405056, 3902954.211688020732254 ], [ 4973402.671900123357773, 3902929.417888246942312 ], [ 4973424.298909096047282, 3902914.530491453129798 ], [ 4973419.129517513327301, 3902907.237833841238171 ], [ 4973438.160544166341424, 3902894.530195680912584 ], [ 4973442.755399491637945, 3902901.093478873372078 ], [ 4973458.903163650073111, 3902890.200911459047347 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973453.333711733110249, 3898195.818571832962334 ], [ 4973431.716330735012889, 3898203.787457573227584 ], [ 4973436.872489088214934, 3898218.362671145703644 ], [ 4973420.155073869973421, 3898224.520429857540876 ], [ 4973414.996080931276083, 3898211.401734262704849 ], [ 4973398.278666435740888, 3898217.559506565332413 ], [ 4973383.378391785547137, 3898177.840424377005547 ], [ 4973413.642879117280245, 3898166.611109233926982 ], [ 4973408.770483425818384, 3898154.221231635659933 ], [ 4973434.423074019141495, 3898144.803641263861209 ], [ 4973453.333711733110249, 3898195.818571832962334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979451.610248577781022, 3901587.633709658868611 ], [ 4979467.787271874025464, 3901564.728495975024998 ], [ 4979458.585053777322173, 3901558.518337140791118 ], [ 4979472.739869495853782, 3901538.521794796455652 ], [ 4979521.337303105741739, 3901572.127169011160731 ], [ 4979506.604124861769378, 3901593.214825455099344 ], [ 4979497.114726609550416, 3901586.639899799600244 ], [ 4979481.803232748992741, 3901608.818709550891072 ], [ 4979451.610248577781022, 3901587.633709658868611 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979393.358565539121628, 3900026.114726590923965 ], [ 4979403.206665618345141, 3900000.282757943961769 ], [ 4979468.243750340305269, 3900024.456177451182157 ], [ 4979458.104437534697354, 3900051.744014632422477 ], [ 4979434.218982689082623, 3900042.953160676639527 ], [ 4979432.479919573292136, 3900048.047224927693605 ], [ 4979412.623366027139127, 3900040.721634692978114 ], [ 4979415.229591943323612, 3900034.172923265956342 ], [ 4979393.358565539121628, 3900026.114726590923965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979307.65613922290504, 3908899.088595227804035 ], [ 4979321.176089733839035, 3908904.579802040942013 ], [ 4979310.178869558498263, 3908930.773583339992911 ], [ 4979267.030993707478046, 3908912.837880737148225 ], [ 4979285.552374324761331, 3908868.817836049478501 ], [ 4979315.180350730195642, 3908881.26235736720264 ], [ 4979307.65613922290504, 3908899.088595227804035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979320.042235874570906, 3899568.2440777705051 ], [ 4979347.112784583121538, 3899569.394970109220594 ], [ 4979346.200744236819446, 3899591.604961439035833 ], [ 4979353.112183397635818, 3899591.984032071661204 ], [ 4979351.901896644383669, 3899618.927075851242989 ], [ 4979318.207974264398217, 3899617.397737539839 ], [ 4979320.042235874570906, 3899568.2440777705051 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979234.38198522105813, 3900158.314836239907891 ], [ 4979247.710286446847022, 3900121.202267173677683 ], [ 4979277.351874737069011, 3900131.826035962905735 ], [ 4979276.191998779773712, 3900135.464838376268744 ], [ 4979299.502988563850522, 3900143.526050376240164 ], [ 4979291.969288629479706, 3900164.629358250182122 ], [ 4979267.795876860618591, 3900155.838029639795423 ], [ 4979263.448317238129675, 3900168.573218291625381 ], [ 4979234.38198522105813, 3900158.314836239907891 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973327.391719448380172, 3909973.403343137353659 ], [ 4973284.440587728284299, 3910001.358340651262552 ], [ 4973266.642382798716426, 3909974.742190144024789 ], [ 4973309.594243952073157, 3909946.423033331986517 ], [ 4973327.391719448380172, 3909973.403343137353659 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973258.819291299208999, 3900181.043940753210336 ], [ 4973225.060256601311266, 3900213.386250572279096 ], [ 4973192.867985439486802, 3900180.188139974139631 ], [ 4973226.627022855915129, 3900147.845790359657258 ], [ 4973258.819291299208999, 3900181.043940753210336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973229.1014742879197, 3902442.23839893238619 ], [ 4973215.891762656159699, 3902422.913910151924938 ], [ 4973240.402389023452997, 3902406.211290437728167 ], [ 4973283.191448798403144, 3902468.196371584199369 ], [ 4973262.140821615234017, 3902482.720862939022481 ], [ 4973242.901213467121124, 3902454.281415942590684 ], [ 4973230.789906896650791, 3902462.633000591304153 ], [ 4973220.738820058293641, 3902448.048321712762117 ], [ 4973229.1014742879197, 3902442.23839893238619 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973175.493974540382624, 3904104.029469459783286 ], [ 4973191.393768790178001, 3904072.016636995598674 ], [ 4973185.352208777330816, 3904069.0919094174169 ], [ 4973193.735467423684895, 3904052.358070112764835 ], [ 4973234.299315913580358, 3904072.46373241301626 ], [ 4973210.3041737601161, 3904121.210928432177752 ], [ 4973175.493974540382624, 3904104.029469459783286 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4979091.704902861267328, 3914924.300384152680635 ], [ 4979098.057883999310434, 3914914.846581372898072 ], [ 4979077.362814825028181, 3914900.964931414462626 ], [ 4979096.999032571911812, 3914871.876493185292929 ], [ 4979149.024541640654206, 3914906.581305793952197 ], [ 4979138.339737522415817, 3914922.580172541085631 ], [ 4979164.783022834919393, 3914940.479736060835421 ], [ 4979149.478578613139689, 3914963.023050844669342 ], [ 4979091.704902861267328, 3914924.300384152680635 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978945.130819156765938, 3900336.480520446784794 ], [ 4978991.169589799828827, 3900355.878316041082144 ], [ 4978979.591662700287998, 3900382.799116537440568 ], [ 4978933.840931098908186, 3900363.401958584785461 ], [ 4978945.130819156765938, 3900336.480520446784794 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978919.663952251896262, 3908444.543864692561328 ], [ 4978904.066559713333845, 3908467.8148711360991 ], [ 4978862.091189074330032, 3908439.686632402706891 ], [ 4978877.688561425544322, 3908416.415601993445307 ], [ 4978919.663952251896262, 3908444.543864692561328 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978875.459049849770963, 3907307.991924913134426 ], [ 4978891.675903204828501, 3907264.694973632227629 ], [ 4978921.02181382291019, 3907275.317777629010379 ], [ 4978904.804919480346143, 3907318.614711481146514 ], [ 4978875.459049849770963, 3907307.991924913134426 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978826.563767366111279, 3907149.12546256557107 ], [ 4978799.468077723868191, 3907163.268571574706584 ], [ 4978777.098543168976903, 3907121.709600294940174 ], [ 4978803.907113851979375, 3907107.201721842866391 ], [ 4978826.563767366111279, 3907149.12546256557107 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978788.859717571176589, 3909293.420610858593136 ], [ 4978804.18968865647912, 3909260.317371869459748 ], [ 4978832.377145525999367, 3909273.122411204036325 ], [ 4978817.047146911732852, 3909306.225634371861815 ], [ 4978788.859717571176589, 3909293.420610858593136 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973107.841439644806087, 3897676.264524964150041 ], [ 4973047.018001382239163, 3897701.636345273349434 ], [ 4973034.402920686639845, 3897671.389252641703933 ], [ 4973044.203658982180059, 3897667.40270654251799 ], [ 4973039.902151012793183, 3897657.562909665517509 ], [ 4973062.386752183549106, 3897648.138862636871636 ], [ 4973058.371874452568591, 3897639.027875300496817 ], [ 4973086.910052691586316, 3897627.06660779286176 ], [ 4973107.841439644806087, 3897676.264524964150041 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972829.05892897117883, 3899761.101616614963859 ], [ 4972839.667683583684266, 3899785.882844803854823 ], [ 4972821.22054101806134, 3899793.494181249290705 ], [ 4972810.61177243757993, 3899768.712960216216743 ], [ 4972829.05892897117883, 3899761.101616614963859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978668.604190436191857, 3901570.291806082241237 ], [ 4978680.449057021178305, 3901552.838829177431762 ], [ 4978676.134677156805992, 3901550.280693469103426 ], [ 4978690.5792375234887, 3901529.19196677301079 ], [ 4978731.989637418650091, 3901557.318587326444685 ], [ 4978719.278438837267458, 3901575.8620819398202 ], [ 4978724.455217497423291, 3901579.150330811738968 ], [ 4978710.588968561962247, 3901599.14788349205628 ], [ 4978668.604190436191857, 3901570.291806082241237 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978562.859605762176216, 3901729.919589046854526 ], [ 4978574.361979531124234, 3901737.955002509523183 ], [ 4978584.762117401696742, 3901722.683686334174126 ], [ 4978610.067633943632245, 3901740.215971318539232 ], [ 4978579.447865053080022, 3901783.846356029622257 ], [ 4978553.854383674450219, 3901766.313485373277217 ], [ 4978562.52036908082664, 3901753.951510776765645 ], [ 4978551.593971339985728, 3901745.917330347467214 ], [ 4978562.859605762176216, 3901729.919589046854526 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978528.15771115757525, 3904769.613859469071031 ], [ 4978502.516621561720967, 3904775.749456046614796 ], [ 4978505.084931618534029, 3904786.678877776954323 ], [ 4978482.325727125629783, 3904791.72823906224221 ], [ 4978469.768964860588312, 3904738.538277397863567 ], [ 4978495.122128036804497, 3904732.402036297600716 ], [ 4978491.983329271897674, 3904718.922479162923992 ], [ 4978514.743373160250485, 3904713.508996294345707 ], [ 4978528.15771115757525, 3904769.613859469071031 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978412.04660986084491, 3905747.788662697654217 ], [ 4978387.555155926384032, 3905755.383343691937625 ], [ 4978379.833327430300415, 3905730.605958535801619 ], [ 4978404.324027224443853, 3905723.375400824937969 ], [ 4978412.04660986084491, 3905747.788662697654217 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972537.866267342120409, 3913346.305522585753351 ], [ 4972559.708312260918319, 3913364.918037162162364 ], [ 4972538.64781897328794, 3913389.274760301224887 ], [ 4972517.092946229502559, 3913371.026944029144943 ], [ 4972537.866267342120409, 3913346.305522585753351 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972487.655284894630313, 3904956.233286431524903 ], [ 4972483.066103814169765, 3904946.757116660941392 ], [ 4972506.699008182622492, 3904935.878238410688937 ], [ 4972517.596034840680659, 3904959.567575599998236 ], [ 4972498.574542183429003, 3904968.270449326839298 ], [ 4972504.022707615979016, 3904980.297181020490825 ], [ 4972461.368385112844408, 3904999.878962163813412 ], [ 4972449.324374918825924, 3904973.638541123829782 ], [ 4972487.655284894630313, 3904956.233286431524903 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972456.838726403191686, 3903145.713558455463499 ], [ 4972475.504113547503948, 3903173.423097159713507 ], [ 4972442.345131164416671, 3903195.571911445818841 ], [ 4972423.679031972773373, 3903168.22652522334829 ], [ 4972456.838726403191686, 3903145.713558455463499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978137.607917600311339, 3907936.732625877019018 ], [ 4978155.107030171900988, 3907966.99266648106277 ], [ 4978150.782837083563209, 3907969.532435305882245 ], [ 4978189.222860153764486, 3908036.250090916641057 ], [ 4978158.954352135770023, 3908053.664318956434727 ], [ 4978120.801427852362394, 3907987.311446067411453 ], [ 4978067.759566444903612, 3908017.786349406931549 ], [ 4978049.974008996970952, 3907986.797494616825134 ], [ 4978137.607917600311339, 3907936.732625877019018 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978090.247257748618722, 3902558.406438316684216 ], [ 4978114.696849523112178, 3902571.931013661902398 ], [ 4978093.01535783521831, 3902611.211311205290258 ], [ 4978068.565791010856628, 3902597.686755263246596 ], [ 4978090.247257748618722, 3902558.406438316684216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4978067.080878203734756, 3907113.280361639335752 ], [ 4977979.429815639741719, 3907170.263915389310569 ], [ 4977949.86695043835789, 3907125.777391894720495 ], [ 4978010.127120327204466, 3907086.578344382811338 ], [ 4978003.526285400614142, 3907076.368701202794909 ], [ 4978050.524176677688956, 3907045.516775891650468 ], [ 4978076.354667495936155, 3907084.897664124611765 ], [ 4978056.74854257889092, 3907097.600832644384354 ], [ 4978067.080878203734756, 3907113.280361639335752 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4972060.1929623009637, 3903964.255927358288318 ], [ 4972020.713195948861539, 3903979.474825002253056 ], [ 4972006.671125109307468, 3903943.399300473742187 ], [ 4972046.150936394929886, 3903928.180382533930242 ], [ 4972060.1929623009637, 3903964.255927358288318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977753.385228615254164, 3906084.309990977868438 ], [ 4977763.98539558891207, 3906109.82151781860739 ], [ 4977738.335808300413191, 3906120.691542854998261 ], [ 4977740.341433012858033, 3906125.429474322590977 ], [ 4977710.945598881691694, 3906137.748177891597152 ], [ 4977698.051055434159935, 3906107.862268531695008 ], [ 4977753.385228615254164, 3906084.309990977868438 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977752.60789517313242, 3904399.834931739605963 ], [ 4977802.738625121302903, 3904387.559910796582699 ], [ 4977800.169224451296031, 3904376.994688779115677 ], [ 4977817.744636243209243, 3904372.297969604376704 ], [ 4977823.74346365313977, 3904395.250885603483766 ], [ 4977814.524210285395384, 3904397.416267668828368 ], [ 4977818.523427740670741, 3904412.718211244791746 ], [ 4977759.748648243024945, 3904427.52394502889365 ], [ 4977752.60789517313242, 3904399.834931739605963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977659.141979834996164, 3907634.222324640024453 ], [ 4977674.342268929816782, 3907662.65655755251646 ], [ 4977671.171293488703668, 3907664.470560253597796 ], [ 4977686.658710412681103, 3907693.269535942003131 ], [ 4977691.847436646930873, 3907690.367376594804227 ], [ 4977707.622738730162382, 3907719.166969624813646 ], [ 4977677.068559596315026, 3907735.488740066997707 ], [ 4977630.605487598106265, 3907649.455986332148314 ], [ 4977659.141979834996164, 3907634.222324640024453 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977613.694316944107413, 3913651.059840087313205 ], [ 4977632.897549657151103, 3913690.790705408900976 ], [ 4977603.505443277768791, 3913705.294377063401043 ], [ 4977584.302941204980016, 3913665.199400353711098 ], [ 4977613.694316944107413, 3913651.059840087313205 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977515.801616130396724, 3907062.234222235158086 ], [ 4977503.686474828980863, 3907072.768687929026783 ], [ 4977488.462805452756584, 3907055.2584780883044 ], [ 4977500.577948641031981, 3907044.724005639087409 ], [ 4977515.801616130396724, 3907062.234222235158086 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977501.973391165025532, 3904314.830599358305335 ], [ 4977526.749287861399353, 3904309.420500541571528 ], [ 4977532.167884890921414, 3904334.556924112606794 ], [ 4977507.392010245472193, 3904339.967018014285713 ], [ 4977501.973391165025532, 3904314.830599358305335 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977482.152206716127694, 3911308.314225704874843 ], [ 4977463.983522159047425, 3911323.569793545175344 ], [ 4977448.763008694164455, 3911305.69542859820649 ], [ 4977466.931696634739637, 3911290.439850628376007 ], [ 4977482.152206716127694, 3911308.314225704874843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977479.466478791087866, 3902547.654153965879232 ], [ 4977493.90346958860755, 3902529.4778076633811 ], [ 4977500.803508036769927, 3902534.954216132871807 ], [ 4977512.641856467351317, 3902520.049621089361608 ], [ 4977486.766501902602613, 3902499.604119723662734 ], [ 4977503.801427049562335, 3902478.52016670210287 ], [ 4977568.488995150662959, 3902529.99813719978556 ], [ 4977551.742029351182282, 3902551.082653181627393 ], [ 4977532.766766086220741, 3902536.113530461210757 ], [ 4977517.7530347565189, 3902554.652779606170952 ], [ 4977529.540293427184224, 3902564.144871009513736 ], [ 4977518.279434551484883, 3902578.322405809536576 ], [ 4977479.466478791087866, 3902547.654153965879232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977477.266224335879087, 3901947.561550353653729 ], [ 4977480.549853440374136, 3901892.22050905553624 ], [ 4977510.208474201150239, 3901894.103234646841884 ], [ 4977506.63756228517741, 3901949.079540142789483 ], [ 4977477.266224335879087, 3901947.561550353653729 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971871.603928990662098, 3902421.076426035258919 ], [ 4971832.104872525669634, 3902445.398828206583858 ], [ 4971815.738721879199147, 3902419.514731558971107 ], [ 4971855.526466492563486, 3902394.828718325123191 ], [ 4971871.603928990662098, 3902421.076426035258919 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971813.174723142758012, 3905771.702902072574943 ], [ 4971851.497226011939347, 3905757.938035480678082 ], [ 4971858.085633903741837, 3905776.157027905341238 ], [ 4971819.763153586536646, 3905789.921885259449482 ], [ 4971813.174723142758012, 3905771.702902072574943 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977368.293364929035306, 3908207.121713725849986 ], [ 4977379.196181525476277, 3908225.351107268128544 ], [ 4977348.638975689187646, 3908243.493910367134959 ], [ 4977322.816139836795628, 3908200.472385524772108 ], [ 4977363.174734978936613, 3908176.523902790620923 ], [ 4977378.094717144034803, 3908201.316068321466446 ], [ 4977368.293364929035306, 3908207.121713725849986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977314.120385405607522, 3911677.558179889339954 ], [ 4977342.245186537504196, 3911719.492202942725271 ], [ 4977295.543382975272834, 3911750.710189098026603 ], [ 4977267.418541936203837, 3911708.776214107405394 ], [ 4977314.120385405607522, 3911677.558179889339954 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977258.313337432220578, 3908066.701270949561149 ], [ 4977237.843041988089681, 3908080.131505804136395 ], [ 4977223.779791981913149, 3908058.618396338075399 ], [ 4977243.962177873589098, 3908045.187550943810493 ], [ 4977258.313337432220578, 3908066.701270949561149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977184.679253979586065, 3906786.623157902620733 ], [ 4977210.223330585286021, 3906826.002607892733067 ], [ 4977187.1584566636011, 3906840.519865839742124 ], [ 4977161.902292368933558, 3906801.141036545857787 ], [ 4977184.679253979586065, 3906786.623157902620733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977107.547941762022674, 3916877.322236659470946 ], [ 4977051.708533302880824, 3916877.934441762510687 ], [ 4977051.476688401773572, 3916850.988017110154033 ], [ 4977107.027571148239076, 3916850.739345784764737 ], [ 4977107.547941762022674, 3916877.322236659470946 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4977108.038153192959726, 3904317.650188961531967 ], [ 4977065.389243929646909, 3904332.490964455995709 ], [ 4977054.797536166384816, 3904302.24605164444074 ], [ 4977097.446487478911877, 3904287.405259622260928 ], [ 4977108.038153192959726, 3904317.650188961531967 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971448.785088590346277, 3903534.524396839551628 ], [ 4971473.220787552185357, 3903556.782055873423815 ], [ 4971466.872586738318205, 3903563.688685428351164 ], [ 4971484.696583056822419, 3903579.743770826142281 ], [ 4971466.228611093945801, 3903600.100602467078716 ], [ 4971411.607416563667357, 3903550.476748582907021 ], [ 4971430.652675359509885, 3903529.392695593181998 ], [ 4971443.014183247461915, 3903540.7038479084149 ], [ 4971448.785088590346277, 3903534.524396839551628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976967.401213629171252, 3908398.913442791439593 ], [ 4977014.338169008493423, 3908395.733624787535518 ], [ 4977016.572715310379863, 3908428.874313558451831 ], [ 4976969.635817527770996, 3908432.054127729032189 ], [ 4976967.401213629171252, 3908398.913442791439593 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976933.698752244003117, 3902153.620358030777425 ], [ 4976924.157630415633321, 3902171.807142632082105 ], [ 4976898.843131152912974, 3902158.281864697113633 ], [ 4976908.384240595623851, 3902140.095071258489043 ], [ 4976933.698752244003117, 3902153.620358030777425 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976844.554311413317919, 3902786.659784467890859 ], [ 4976829.538182611577213, 3902806.655939380638301 ], [ 4976790.145813081413507, 3902777.444006141275167 ], [ 4976804.585225014947355, 3902757.810768567956984 ], [ 4976795.671531365253031, 3902751.237982768099755 ], [ 4976813.286976256407797, 3902727.605872051324695 ], [ 4976850.95455432869494, 3902755.357745065353811 ], [ 4976833.62782275583595, 3902778.626297483686358 ], [ 4976844.554311413317919, 3902786.659784467890859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976826.970325510017574, 3900566.881298106629401 ], [ 4976798.156881081871688, 3900573.376083537936211 ], [ 4976787.884480021893978, 3900527.110258693341166 ], [ 4976816.40921919606626, 3900520.978996108286083 ], [ 4976826.970325510017574, 3900566.881298106629401 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976740.727793768048286, 3910112.052417774684727 ], [ 4976759.765839928761125, 3910094.249238077085465 ], [ 4976777.001272425055504, 3910112.855626686941832 ], [ 4976757.963227952830493, 3910130.658794377464801 ], [ 4976740.727793768048286, 3910112.052417774684727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976694.797236822545528, 3908094.298989408649504 ], [ 4976738.890850909985602, 3908073.998602360021323 ], [ 4976752.937180359847844, 3908103.886466579977423 ], [ 4976709.13077097479254, 3908124.551556046120822 ], [ 4976694.797236822545528, 3908094.298989408649504 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970990.845771377906203, 3912903.887573849409819 ], [ 4970947.307156686671078, 3912942.040990439709276 ], [ 4970917.718183723278344, 3912908.85013878159225 ], [ 4970960.968942780978978, 3912870.696142355911434 ], [ 4970990.845771377906203, 3912903.887573849409819 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970945.875902936793864, 3893939.488977952394634 ], [ 4970953.03591320104897, 3893962.078218922019005 ], [ 4970960.529766738414764, 3893959.907300418708473 ], [ 4970965.399344054050744, 3893974.845598563551903 ], [ 4970959.058445960283279, 3893976.65451849764213 ], [ 4970965.358267390169203, 3893997.057398073840886 ], [ 4970935.093485073186457, 3894006.468802758958191 ], [ 4970917.052757690660655, 3893948.174809571821243 ], [ 4970945.875902936793864, 3893939.488977952394634 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970873.862271647900343, 3912339.628861136268824 ], [ 4970814.758318710140884, 3912388.313594834413379 ], [ 4970791.493038872256875, 3912359.868294067215174 ], [ 4970822.053897514939308, 3912334.799480954650789 ], [ 4970827.797915278933942, 3912342.092743860557675 ], [ 4970856.340354663319886, 3912318.840910873375833 ], [ 4970873.862271647900343, 3912339.628861136268824 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976629.552511760033667, 3903848.022687003016472 ], [ 4976649.056734250858426, 3903885.568422278854996 ], [ 4976600.627130126580596, 3903910.593695545569062 ], [ 4976575.672541288658977, 3903862.841094136703759 ], [ 4976597.869741875678301, 3903851.234597361646593 ], [ 4976603.320052889175713, 3903861.441502505447716 ], [ 4976629.552511760033667, 3903848.022687003016472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976592.238548030145466, 3912036.553284514229745 ], [ 4976611.750338819809258, 3912067.544811762403697 ], [ 4976576.00650321226567, 3912090.411571549717337 ], [ 4976561.3720837328583, 3912067.441042640246451 ], [ 4976582.702638237737119, 3912054.012037729844451 ], [ 4976577.537370399571955, 3912045.990468225441873 ], [ 4976592.238548030145466, 3912036.553284514229745 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976552.261216399259865, 3901665.62550763739273 ], [ 4976577.884581444784999, 3901669.319554886780679 ], [ 4976573.211574758403003, 3901700.989325042814016 ], [ 4976547.588239292614162, 3901697.295282184146345 ], [ 4976552.261216399259865, 3901665.62550763739273 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976408.935991331934929, 3906390.30043591093272 ], [ 4976475.497236486524343, 3906367.132706970907748 ], [ 4976486.948839097283781, 3906399.199857437051833 ], [ 4976440.269473509863019, 3906415.489879483822733 ], [ 4976438.551578000187874, 3906410.752635580021888 ], [ 4976418.669764761812985, 3906417.630315820220858 ], [ 4976408.935991331934929, 3906390.30043591093272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976362.607569495216012, 3909604.401343003381044 ], [ 4976397.768253213725984, 3909586.630988982506096 ], [ 4976403.79028236400336, 3909598.295596085488796 ], [ 4976395.720799493603408, 3909602.284491682425141 ], [ 4976408.91196951828897, 3909627.800857763271779 ], [ 4976381.820798789151013, 3909641.582295347936451 ], [ 4976362.607569495216012, 3909604.401343003381044 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970639.320324855856597, 3894906.415292459540069 ], [ 4970601.270382248796523, 3894920.546454600058496 ], [ 4970586.078744445927441, 3894879.37195949209854 ], [ 4970623.840677148662508, 3894865.240247127600014 ], [ 4970639.320324855856597, 3894906.415292459540069 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970508.200175076723099, 3904678.340938343666494 ], [ 4970546.683932492509484, 3904734.123617051169276 ], [ 4970520.158753105439246, 3904752.281542255543172 ], [ 4970481.386345004662871, 3904696.862503562588245 ], [ 4970508.200175076723099, 3904678.340938343666494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976198.999719926156104, 3910205.977661674376577 ], [ 4976181.978138033300638, 3910223.421229034662247 ], [ 4976163.013502785935998, 3910205.539952806197107 ], [ 4976179.74644327070564, 3910188.459916315507144 ], [ 4976169.403032913804054, 3910178.243052490521222 ], [ 4976191.04065402969718, 3910156.075190289411694 ], [ 4976226.66974582709372, 3910190.376556681003422 ], [ 4976205.320763202384114, 3910212.18084823852405 ], [ 4976198.999719926156104, 3910205.977661674376577 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976184.735488435253501, 3910423.69992787996307 ], [ 4976179.282637486234307, 3910415.313723118044436 ], [ 4976217.334486607462168, 3910390.994646165054291 ], [ 4976235.987958397716284, 3910420.163444976322353 ], [ 4976180.639466210268438, 3910455.735245055519044 ], [ 4976167.438813301734626, 3910434.952685343567282 ], [ 4976184.735488435253501, 3910423.69992787996307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4976056.127479817718267, 3908549.246544317342341 ], [ 4976088.12303117569536, 3908531.105205913539976 ], [ 4976083.819189098663628, 3908523.813773635774851 ], [ 4976133.398364245891571, 3908495.512672137934715 ], [ 4976151.472959881648421, 3908526.864987224340439 ], [ 4976118.900046380236745, 3908545.733336053323001 ], [ 4976127.793384269811213, 3908561.409193584695458 ], [ 4976112.228221080265939, 3908570.116585454903543 ], [ 4976102.474110376089811, 3908552.982445962261409 ], [ 4976069.03752338513732, 3908571.849092222750187 ], [ 4976056.127479817718267, 3908549.246544317342341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975915.294589098542929, 3911117.187717539723963 ], [ 4975939.594864244572818, 3911059.340025441721082 ], [ 4975950.812801434658468, 3911064.09659247752279 ], [ 4975926.51324743963778, 3911121.580143091734499 ], [ 4975915.294589098542929, 3911117.187717539723963 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970342.117862800136209, 3903537.577806919813156 ], [ 4970363.739356027916074, 3903524.508591415826231 ], [ 4970349.096932854503393, 3903500.44917849637568 ], [ 4970374.754666270688176, 3903484.838428664021194 ], [ 4970383.655701166018844, 3903499.055816312786192 ], [ 4970387.980541010387242, 3903496.150674593169242 ], [ 4970404.632708802819252, 3903523.490965144708753 ], [ 4970352.740711363963783, 3903555.075510741677135 ], [ 4970342.117862800136209, 3903537.577806919813156 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970301.923731840215623, 3892896.533307850826532 ], [ 4970278.576539757661521, 3892903.409167852252722 ], [ 4970280.86724266782403, 3892911.060051561333239 ], [ 4970262.99626190867275, 3892916.489397638011724 ], [ 4970251.545365926809609, 3892876.778478346765041 ], [ 4970292.762924014590681, 3892864.83738458994776 ], [ 4970301.923731840215623, 3892896.533307850826532 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970213.202152960002422, 3892575.938212751410902 ], [ 4970158.162094713188708, 3892584.577118722721934 ], [ 4970147.628137597814202, 3892515.737617872655392 ], [ 4970199.498731492087245, 3892507.457048289943486 ], [ 4970205.194795854389668, 3892543.516168804373592 ], [ 4970208.364393461495638, 3892543.157811864279211 ], [ 4970213.202152960002422, 3892575.938212751410902 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975835.552355574443936, 3907147.98068225895986 ], [ 4975848.466962090693414, 3907168.762451587244868 ], [ 4975850.773347693495452, 3907167.310609685722739 ], [ 4975880.905868474394083, 3907216.529693737160414 ], [ 4975854.671886267140508, 3907232.49818221013993 ], [ 4975811.623978144489229, 3907162.861499696969986 ], [ 4975835.552355574443936, 3907147.98068225895986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975634.899968919344246, 3901297.073721009772271 ], [ 4975560.045814740471542, 3901285.270167249720544 ], [ 4975558.004122856073081, 3901298.010619706474245 ], [ 4975484.877150777727365, 3901286.574896341189742 ], [ 4975498.880070074461401, 3901197.755244166124612 ], [ 4975646.860902125015855, 3901221.358720874413848 ], [ 4975634.899968919344246, 3901297.073721009772271 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975581.030626310966909, 3906289.569820445030928 ], [ 4975489.668392231687903, 3906331.988681254442781 ], [ 4975475.90766207780689, 3906302.102091068867594 ], [ 4975567.269239701330662, 3906260.047314670868218 ], [ 4975581.030626310966909, 3906289.569820445030928 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975490.690934017300606, 3898405.586212284397334 ], [ 4975522.108139310963452, 3898394.361594622023404 ], [ 4975544.163755159825087, 3898454.851747031789273 ], [ 4975512.746611202135682, 3898466.076339316088706 ], [ 4975490.690934017300606, 3898405.586212284397334 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970023.127725376747549, 3913328.149188987910748 ], [ 4969983.895228576846421, 3913373.958792753983289 ], [ 4969948.543022205121815, 3913343.67161322850734 ], [ 4969987.775502666831017, 3913297.861958710476756 ], [ 4970023.127725376747549, 3913328.149188987910748 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969831.097021654248238, 3902354.679840342141688 ], [ 4969844.66565250698477, 3902336.133696159813553 ], [ 4969859.045553829520941, 3902346.719497431069613 ], [ 4969845.477576788514853, 3902364.901504771318287 ], [ 4969831.097021654248238, 3902354.679840342141688 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975469.53364291228354, 3903181.845845930278301 ], [ 4975496.641133933328092, 3903162.965727093629539 ], [ 4975515.88079103268683, 3903189.950280616525561 ], [ 4975488.772578685544431, 3903209.194510102737695 ], [ 4975469.53364291228354, 3903181.845845930278301 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975374.215827085077763, 3904897.076762231998146 ], [ 4975397.857287624850869, 3904882.559125885367393 ], [ 4975430.578178542666137, 3904935.06002939818427 ], [ 4975410.972478010691702, 3904947.400981505867094 ], [ 4975418.14779086317867, 3904959.067655888851732 ], [ 4975402.002671417780221, 3904968.866669350769371 ], [ 4975396.835680586285889, 3904960.845361988525838 ], [ 4975382.997118445113301, 3904969.192508183885366 ], [ 4975360.89595244359225, 3904933.827229164075106 ], [ 4975387.132612491957843, 3904917.494151060469449 ], [ 4975374.215827085077763, 3904897.076762231998146 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975305.370500742457807, 3904193.436096115037799 ], [ 4975270.0289954142645, 3904154.767097256612033 ], [ 4975305.51259698253125, 3904122.794884355273098 ], [ 4975340.566866043023765, 3904161.099219566676766 ], [ 4975305.370500742457807, 3904193.436096115037799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975203.717893465422094, 3898743.285596046131104 ], [ 4975160.478598214685917, 3898761.405347269494087 ], [ 4975147.865665771067142, 3898731.52137262141332 ], [ 4975191.105000467970967, 3898713.401601419784129 ], [ 4975203.717893465422094, 3898743.285596046131104 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975202.319419764913619, 3898579.060058996081352 ], [ 4975218.656151908449829, 3898619.147179063875228 ], [ 4975178.588516319170594, 3898635.452617646660656 ], [ 4975159.100310627371073, 3898586.984205961227417 ], [ 4975182.448942935094237, 3898577.563660193234682 ], [ 4975185.601091299206018, 3898585.580849723890424 ], [ 4975202.319419764913619, 3898579.060058996081352 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975140.479137317277491, 3904281.952992023900151 ], [ 4975177.427789936773479, 3904237.238945569377393 ], [ 4975214.513161703944206, 3904267.900434453971684 ], [ 4975177.853178800083697, 3904312.250878619030118 ], [ 4975140.479137317277491, 3904281.952992023900151 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969643.379382940940559, 3898650.405896133743227 ], [ 4969651.467534822411835, 3898637.311776928603649 ], [ 4969624.423177398741245, 3898620.877237020526081 ], [ 4969644.066219227388501, 3898588.869150695856661 ], [ 4969692.975178685970604, 3898619.180050303693861 ], [ 4969665.244598071090877, 3898663.918085301294923 ], [ 4969643.379382940940559, 3898650.405896133743227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969612.535106076858938, 3911144.793030192609876 ], [ 4969563.303389046341181, 3911146.525115441530943 ], [ 4969561.10899939481169, 3911086.075116433668882 ], [ 4969591.626908521167934, 3911085.037613298743963 ], [ 4969591.893828133121133, 3911096.690344586502761 ], [ 4969621.835954142734408, 3911095.65183974429965 ], [ 4969621.557246523909271, 3911090.553478101268411 ], [ 4969639.695389575324953, 3911089.857875819317997 ], [ 4969641.063986130058765, 3911129.186688615940511 ], [ 4969611.985554069280624, 3911130.226726720109582 ], [ 4969612.535106076858938, 3911144.793030192609876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975124.530502357520163, 3905342.636280915699899 ], [ 4975143.909180358052254, 3905299.70760091021657 ], [ 4975182.459899181500077, 3905316.899134802632034 ], [ 4975172.625823178328574, 3905338.727300550788641 ], [ 4975179.242777423001826, 3905341.653632904402912 ], [ 4975169.69812189321965, 3905362.754117485135794 ], [ 4975124.530502357520163, 3905342.636280915699899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975077.901969322934747, 3898431.337883372791111 ], [ 4975091.078035708516836, 3898467.777290602214634 ], [ 4975054.473068278282881, 3898480.812677774578333 ], [ 4975040.150701489299536, 3898441.457952915225178 ], [ 4975063.497960071079433, 3898432.765562064014375 ], [ 4975064.931507966481149, 3898436.04560371208936 ], [ 4975077.901969322934747, 3898431.337883372791111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975013.625921545550227, 3910113.274520170409232 ], [ 4974994.615999495610595, 3910117.606079153250903 ], [ 4974990.048983919434249, 3910097.933774815872312 ], [ 4975009.058919132687151, 3910093.602212650235742 ], [ 4975013.625921545550227, 3910113.274520170409232 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4975016.000027539208531, 3906336.862848468590528 ], [ 4975040.490721665322781, 3906328.900961376260966 ], [ 4975048.216182028874755, 3906353.313265468459576 ], [ 4975023.725507817231119, 3906361.275145647116005 ], [ 4975016.000027539208531, 3906336.862848468590528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974866.738505934365094, 3904804.298269834369421 ], [ 4974901.328557481989264, 3904786.524861147161573 ], [ 4974915.958932564593852, 3904814.228073897305876 ], [ 4974931.524422693997622, 3904806.248269419185817 ], [ 4974943.859133128076792, 3904829.941464650444686 ], [ 4974892.262430728413165, 3904856.420022792182863 ], [ 4974880.214186936616898, 3904833.455685786902905 ], [ 4974871.854823193512857, 3904837.80858274968341 ], [ 4974863.53687182161957, 3904821.406065529212356 ], [ 4974873.049506277777255, 3904816.32720418041572 ], [ 4974866.738505934365094, 3904804.298269834369421 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974880.945518018677831, 3896962.043739345856011 ], [ 4974920.061196793802083, 3896990.888069102540612 ], [ 4974901.576661414466798, 3897015.976128322072327 ], [ 4974891.510625005699694, 3897008.309311810880899 ], [ 4974875.337687285616994, 3897029.760703762993217 ], [ 4974846.288798335008323, 3897008.2191058001481 ], [ 4974880.945518018677831, 3896962.043739345856011 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969324.52058538980782, 3898983.741004665382206 ], [ 4969343.80201649479568, 3898992.514622051268816 ], [ 4969325.294754159636796, 3899033.992349832784384 ], [ 4969281.263534870930016, 3899014.250601541716605 ], [ 4969296.878214757889509, 3898979.686145809944719 ], [ 4969321.628052258864045, 3898990.654303920455277 ], [ 4969324.52058538980782, 3898983.741004665382206 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974700.055501201190054, 3905072.33119401987642 ], [ 4974710.93822496663779, 3905102.211635581683367 ], [ 4974679.529189434833825, 3905113.437247066758573 ], [ 4974673.800588937476277, 3905098.132329271640629 ], [ 4974661.69726225361228, 3905102.841980648227036 ], [ 4974656.255876180715859, 3905087.901769211050123 ], [ 4974663.171755441464484, 3905085.366593598388135 ], [ 4974655.439786941744387, 3905063.867460541427135 ], [ 4974700.680653964169323, 3905047.571487665176392 ], [ 4974708.699817379936576, 3905069.435336529277265 ], [ 4974700.055501201190054, 3905072.33119401987642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974610.73014507163316, 3900026.389605374075472 ], [ 4974562.900406791828573, 3900036.854473103303462 ], [ 4974556.048236497677863, 3900006.618050569668412 ], [ 4974603.87802585400641, 3899996.153170834761113 ], [ 4974610.73014507163316, 3900026.389605374075472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974464.021494466811419, 3896446.699753383174539 ], [ 4974481.031902751885355, 3896438.722579372581095 ], [ 4974490.499105135910213, 3896458.040204056538641 ], [ 4974473.488706232048571, 3896466.01737216161564 ], [ 4974464.021494466811419, 3896446.699753383174539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968720.241900349967182, 3898994.683271026238799 ], [ 4968709.108939962461591, 3898938.223441756330431 ], [ 4968765.004082471132278, 3898927.03416101494804 ], [ 4968769.856587436981499, 3898951.803587842267007 ], [ 4968751.129093640483916, 3898955.411785859148949 ], [ 4968757.408814024180174, 3898987.466335761360824 ], [ 4968720.241900349967182, 3898994.683271026238799 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968697.849762247875333, 3910695.27871292643249 ], [ 4968740.465915972366929, 3910690.620284186676145 ], [ 4968743.015734069049358, 3910713.929286551661789 ], [ 4968751.941619374789298, 3910713.216801293194294 ], [ 4968753.639344365336001, 3910729.969909091480076 ], [ 4968743.561260603368282, 3910731.044489685911685 ], [ 4968749.229576560668647, 3910781.668962489347905 ], [ 4968713.812089047394693, 3910785.611828523222357 ], [ 4968706.440165417268872, 3910721.511442504823208 ], [ 4968700.681075850501657, 3910722.229535803664476 ], [ 4968697.849762247875333, 3910695.27871292643249 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974301.762188349850476, 3900432.511779854074121 ], [ 4974258.239653028547764, 3900449.904174108989537 ], [ 4974246.489083827473223, 3900420.750554651487619 ], [ 4974290.011658641509712, 3900403.358141667675227 ], [ 4974301.762188349850476, 3900432.511779854074121 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974212.42608954757452, 3900460.737773591652513 ], [ 4974242.941178690642118, 3900467.352273812983185 ], [ 4974233.34888419508934, 3900512.121425385586917 ], [ 4974202.833126174286008, 3900505.871065068524331 ], [ 4974212.42608954757452, 3900460.737773591652513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974123.104137499816716, 3908823.934415854047984 ], [ 4974136.586475661955774, 3908849.086089488584548 ], [ 4974095.948877645656466, 3908870.489945066161454 ], [ 4974082.466512303799391, 3908845.338291490450501 ], [ 4974123.104137499816716, 3908823.934415854047984 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4974087.147522930055857, 3898408.616614224389195 ], [ 4974096.876557323150337, 3898441.043323514517397 ], [ 4974067.481165208853781, 3898449.724667930509895 ], [ 4974057.752098556607962, 3898417.297969109378755 ], [ 4974087.147522930055857, 3898408.616614224389195 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968509.163050862960517, 3898481.980298048816621 ], [ 4968440.303579720668495, 3898494.603864941745996 ], [ 4968434.028477733023465, 3898459.636367455124855 ], [ 4968481.856053076684475, 3898450.617118620779365 ], [ 4968483.280164442025125, 3898459.722871353849769 ], [ 4968504.312780030071735, 3898455.754409683402628 ], [ 4968509.163050862960517, 3898481.980298048816621 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968452.117968161590397, 3892913.9772007628344 ], [ 4968462.16179577074945, 3892936.206695206928998 ], [ 4968429.294391054660082, 3892951.078277500346303 ], [ 4968419.250541885383427, 3892928.848795141559094 ], [ 4968452.117968161590397, 3892913.9772007628344 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968327.208043959923089, 3895643.269954940769821 ], [ 4968291.185646336525679, 3895652.3101283502765 ], [ 4968281.745561147108674, 3895614.788282695692033 ], [ 4968317.768005810678005, 3895605.748096843250096 ], [ 4968327.208043959923089, 3895643.269954940769821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973853.994228973984718, 3899217.256647142581642 ], [ 4973840.737060946412385, 3899221.600267843808979 ], [ 4973845.030898133292794, 3899235.081491179764271 ], [ 4973810.159220835193992, 3899246.301315945573151 ], [ 4973794.126584313809872, 3899197.112377256620675 ], [ 4973842.256214822642505, 3899181.184776714537293 ], [ 4973853.994228973984718, 3899217.256647142581642 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973837.545018203556538, 3896583.836149025242776 ], [ 4973848.141996702179313, 3896614.807910329196602 ], [ 4973817.300923952832818, 3896625.307342563290149 ], [ 4973806.703914131037891, 3896594.335593223571777 ], [ 4973837.545018203556538, 3896583.836149025242776 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973725.436360631138086, 3903400.139530995395035 ], [ 4973716.134634935297072, 3903444.545378973707557 ], [ 4973688.789029735140502, 3903438.665905650705099 ], [ 4973690.824702782556415, 3903428.474203570280224 ], [ 4973659.736196933314204, 3903422.223325116559863 ], [ 4973667.002168437466025, 3903388.00916163623333 ], [ 4973725.436360631138086, 3903400.139530995395035 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968303.062248683534563, 3893804.011090114712715 ], [ 4968303.871014912612736, 3893835.69172929180786 ], [ 4968278.519483342766762, 3893836.375626364722848 ], [ 4968277.4226158214733, 3893804.694484004285187 ], [ 4968303.062248683534563, 3893804.011090114712715 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968184.086685916408896, 3901557.94796024588868 ], [ 4968204.192432734183967, 3901588.570056765340269 ], [ 4968158.06223277002573, 3901618.348218680359423 ], [ 4968137.956455856561661, 3901587.726156112272292 ], [ 4968184.086685916408896, 3901557.94796024588868 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973463.543722522445023, 3897832.800758063793182 ], [ 4973486.027618926949799, 3897823.741193044930696 ], [ 4973495.487966324202716, 3897846.699769389349967 ], [ 4973473.004085892811418, 3897855.759326615836471 ], [ 4973463.543722522445023, 3897832.800758063793182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973371.745964821428061, 3897938.220297112129629 ], [ 4973397.109308110550046, 3897929.530371115542948 ], [ 4973404.556330977007747, 3897951.028490853030235 ], [ 4973416.373212003149092, 3897947.04599195625633 ], [ 4973408.926904055289924, 3897925.183740348555148 ], [ 4973432.272666242904961, 3897917.218192552216351 ], [ 4973452.609460297971964, 3897975.518484636209905 ], [ 4973392.082874002866447, 3897996.520544140134007 ], [ 4973371.745964821428061, 3897938.220297112129629 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973307.049963122233748, 3897583.796454906463623 ], [ 4973284.564517150633037, 3897593.584425492677838 ], [ 4973278.541947653517127, 3897580.099959696643054 ], [ 4973249.714898684993386, 3897592.424594770651311 ], [ 4973230.501331130973995, 3897548.691840042825788 ], [ 4973261.058720529079437, 3897535.278142927214503 ], [ 4973265.073545251972973, 3897544.389159972313792 ], [ 4973285.541395056061447, 3897535.325527255889028 ], [ 4973307.049963122233748, 3897583.796454906463623 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967963.342691452242434, 3902303.667288283351809 ], [ 4967981.424037127755582, 3902339.019414753187448 ], [ 4967939.342267651110888, 3902360.06586251500994 ], [ 4967925.279322325251997, 3902332.36749040754512 ], [ 4967939.402997348457575, 3902325.109406849835068 ], [ 4967935.672539098188281, 3902317.456178549211472 ], [ 4967963.342691452242434, 3902303.667288283351809 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4973165.937550067901611, 3903982.755266405642033 ], [ 4973131.6271444959566, 3904004.90101588703692 ], [ 4973130.479513822123408, 3904002.71401223866269 ], [ 4973120.676149041391909, 3904009.24945201491937 ], [ 4973093.687795088626444, 3903967.686400172300637 ], [ 4973112.140587599948049, 3903955.705671800300479 ], [ 4973117.882270718924701, 3903964.820036458782852 ], [ 4973143.543284460902214, 3903948.119535952806473 ], [ 4973165.937550067901611, 3903982.755266405642033 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967497.541852785274386, 3904557.561297161038965 ], [ 4967519.70633090659976, 3904562.333158543799073 ], [ 4967513.613488770090044, 3904588.904255509842187 ], [ 4967536.013210059143603, 3904624.263567841611803 ], [ 4967507.186946615576744, 3904642.056367776356637 ], [ 4967504.865754603408277, 3904652.248049932532012 ], [ 4967482.381443157792091, 3904666.046348845586181 ], [ 4967467.735190078616142, 3904643.080880033317953 ], [ 4967481.572079360485077, 3904634.365529337432235 ], [ 4967471.807901395484805, 3904619.055216456763446 ], [ 4967476.158553684130311, 3904600.856133299414068 ], [ 4967489.706884993240237, 3904592.5044219288975 ], [ 4967497.541852785274386, 3904557.561297161038965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967355.786024151369929, 3913329.264989221002907 ], [ 4967358.322410129010677, 3913360.948940183036029 ], [ 4967308.227574973367155, 3913364.868471590802073 ], [ 4967305.13101261574775, 3913324.080232470296323 ], [ 4967331.618089945986867, 3913321.940855071879923 ], [ 4967332.178198704496026, 3913331.04514842107892 ], [ 4967355.786024151369929, 3913329.264989221002907 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967364.679480132646859, 3902610.323943302035332 ], [ 4967398.697667472995818, 3902588.898615112993866 ], [ 4967434.31048636790365, 3902645.035950529854745 ], [ 4967400.292341466061771, 3902666.461234358604997 ], [ 4967364.679480132646859, 3902610.323943302035332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967351.310576892457902, 3895628.834061550907791 ], [ 4967400.571201549842954, 3895626.733811708167195 ], [ 4967401.958322401158512, 3895657.687190135009587 ], [ 4967352.410327274352312, 3895659.422815145924687 ], [ 4967351.310576892457902, 3895628.834061550907791 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967331.001505306921899, 3895713.641385120805353 ], [ 4967294.703962570987642, 3895715.399834041018039 ], [ 4967293.604772735387087, 3895684.446953478269279 ], [ 4967329.901732996106148, 3895683.052631424274296 ], [ 4967331.001505306921899, 3895713.641385120805353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967215.279102147556841, 3895670.111862264107913 ], [ 4967145.565055478364229, 3895673.26991106197238 ], [ 4967144.182613638229668, 3895639.403519113082439 ], [ 4967187.681543770246208, 3895637.65717234974727 ], [ 4967187.962128417566419, 3895642.02720428770408 ], [ 4967214.176705744117498, 3895640.979627306107432 ], [ 4967215.279102147556841, 3895670.111862264107913 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967196.75956922210753, 3899931.855816911906004 ], [ 4967200.127861998043954, 3899983.203948330599815 ], [ 4967118.613059130497277, 3899988.526665745303035 ], [ 4967115.244611348025501, 3899937.178544376511127 ], [ 4967196.75956922210753, 3899931.855816911906004 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967024.672490489669144, 3913370.938208382576704 ], [ 4967026.372980079613626, 3913386.598838204517961 ], [ 4967053.436938089318573, 3913383.731902981642634 ], [ 4967056.839742764830589, 3913413.960769998840988 ], [ 4967005.590505255386233, 3913419.699563816189766 ], [ 4967000.77500191424042, 3913373.81056510983035 ], [ 4967024.672490489669144, 3913370.938208382576704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966883.961205329746008, 3895704.1396648674272 ], [ 4966840.749836845323443, 3895706.251120029017329 ], [ 4966839.084519263356924, 3895669.107099673710763 ], [ 4966906.493508940562606, 3895666.308470362797379 ], [ 4966907.599948432296515, 3895693.25592320272699 ], [ 4966883.401792887598276, 3895694.307222043164074 ], [ 4966883.961205329746008, 3895704.1396648674272 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966666.177537629380822, 3895202.364764686208218 ], [ 4966679.077927151694894, 3895239.163618816994131 ], [ 4966647.6613674974069, 3895250.034422843717039 ], [ 4966634.760940262116492, 3895213.235583562869579 ], [ 4966666.177537629380822, 3895202.364764686208218 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971780.458686948753893, 3907550.789811808615923 ], [ 4971793.084882269613445, 3907573.389749598689377 ], [ 4971768.873258927837014, 3907587.181236980017275 ], [ 4971755.959810241125524, 3907564.216638358775526 ], [ 4971780.458686948753893, 3907550.789811808615923 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966425.026668860577047, 3895744.511111968196929 ], [ 4966426.685210059396923, 3895786.02464860258624 ], [ 4966392.692839310504496, 3895787.424060091376305 ], [ 4966391.322296355850995, 3895745.91100922646001 ], [ 4966425.026668860577047, 3895744.511111968196929 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966330.069213416427374, 3897059.223379225470126 ], [ 4966336.056294921785593, 3897096.010516475420445 ], [ 4966305.51652617007494, 3897100.692994821816683 ], [ 4966299.817440462298691, 3897063.906347006559372 ], [ 4966330.069213416427374, 3897059.223379225470126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971439.335711318068206, 3911521.379909234121442 ], [ 4971490.208358740434051, 3911565.535088150762022 ], [ 4971464.243248687125742, 3911595.345450398977846 ], [ 4971413.371295222081244, 3911550.826188107486814 ], [ 4971439.335711318068206, 3911521.379909234121442 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971469.268908850848675, 3892105.980143124237657 ], [ 4971498.965281380340457, 3892093.655253848992288 ], [ 4971514.164600599557161, 3892130.824795796070248 ], [ 4971484.756351308897138, 3892143.150206854566932 ], [ 4971469.268908850848675, 3892105.980143124237657 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971347.438057118095458, 3901516.685583028011024 ], [ 4971399.253719262778759, 3901374.407104077748954 ], [ 4971411.916458481922746, 3901379.164434649981558 ], [ 4971425.522021805867553, 3901341.684368606191128 ], [ 4971470.418628978542984, 3901357.78997690975666 ], [ 4971456.232949507422745, 3901397.453721313271672 ], [ 4971460.550079557113349, 3901398.918309338390827 ], [ 4971409.602182677946985, 3901539.01350776758045 ], [ 4971347.438057118095458, 3901516.685583028011024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971320.41222039423883, 3910918.51802871003747 ], [ 4971280.019063466228545, 3910966.144181949086487 ], [ 4971246.676285891793668, 3910938.043882160913199 ], [ 4971287.069425684399903, 3910890.417679633479565 ], [ 4971320.41222039423883, 3910918.51802871003747 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971310.009146120399237, 3901820.665039411280304 ], [ 4971278.905351598747075, 3901821.335382624529302 ], [ 4971278.151880227960646, 3901761.980658922344446 ], [ 4971308.967078997753561, 3901761.673907981719822 ], [ 4971310.009146120399237, 3901820.665039411280304 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971229.88161304499954, 3908359.225868021603674 ], [ 4971254.542048510164022, 3908413.163327679503709 ], [ 4971228.895947771146894, 3908424.767843579873443 ], [ 4971226.316228730604053, 3908418.572796387597919 ], [ 4971199.22921793255955, 3908430.90292508341372 ], [ 4971196.075693744234741, 3908423.614417229313403 ], [ 4971179.938932235352695, 3908430.86707107629627 ], [ 4971163.880647073499858, 3908395.880536356940866 ], [ 4971175.406722962856293, 3908390.804098983295262 ], [ 4971172.825635184533894, 3908385.337319066748023 ], [ 4971229.88161304499954, 3908359.225868021603674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971174.985402427613735, 3907842.784341456834227 ], [ 4971191.360352797433734, 3907862.477908385917544 ], [ 4971170.597581883892417, 3907879.917668379377574 ], [ 4971153.934029871597886, 3907860.587710039690137 ], [ 4971174.985402427613735, 3907842.784341456834227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971178.634430312551558, 3903709.168233288917691 ], [ 4971192.128873988054693, 3903730.6770507292822 ], [ 4971174.543386602774262, 3903741.204180867411196 ], [ 4971184.017813265323639, 3903756.515295677818358 ], [ 4971162.108141497708857, 3903769.58331820461899 ], [ 4971154.930663545615971, 3903757.917788791935891 ], [ 4971134.750146840699017, 3903770.260782293975353 ], [ 4971115.801236351951957, 3903739.638590625487268 ], [ 4971157.315530188381672, 3903714.226470040157437 ], [ 4971160.760292704217136, 3903720.058967250399292 ], [ 4971178.634430312551558, 3903709.168233288917691 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971149.980583894997835, 3908128.945785021409392 ], [ 4971173.326293990947306, 3908115.880392329767346 ], [ 4971179.06638634763658, 3908125.722627873998135 ], [ 4971217.111512295901775, 3908104.309551540762186 ], [ 4971230.025159723125398, 3908127.273898856248707 ], [ 4971207.832457214593887, 3908139.613121753092855 ], [ 4971212.997373494319618, 3908149.090163075365126 ], [ 4971173.799967532977462, 3908170.865236904472113 ], [ 4971149.980583894997835, 3908128.945785021409392 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971134.083567350171506, 3903353.693462106864899 ], [ 4971155.900923152454197, 3903390.511215335689485 ], [ 4971133.126385718584061, 3903403.941784161608666 ], [ 4971111.596978692337871, 3903367.124583418481052 ], [ 4971134.083567350171506, 3903353.693462106864899 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4971030.172193674370646, 3904417.128190103452653 ], [ 4971055.168501170352101, 3904447.397410778794438 ], [ 4971036.71089362166822, 3904462.656726429238915 ], [ 4971011.715253913775086, 3904432.023392516188323 ], [ 4971030.172193674370646, 3904417.128190103452653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965578.694202895276248, 3893670.843237860128284 ], [ 4965569.508286773227155, 3893651.165131355170161 ], [ 4965603.238069333136082, 3893635.927344638388604 ], [ 4965621.321175401099026, 3893675.647236172109842 ], [ 4965565.681703539565206, 3893700.680355536751449 ], [ 4965556.495788168162107, 3893681.00225313520059 ], [ 4965578.694202895276248, 3893670.843237860128284 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970795.317962050437927, 3911846.811804504599422 ], [ 4970852.656801339238882, 3911819.24349962035194 ], [ 4970866.709042658098042, 3911848.400092162657529 ], [ 4970809.370922740548849, 3911875.604235756210983 ], [ 4970795.317962050437927, 3911846.811804504599422 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970775.771805710159242, 3897925.300906230695546 ], [ 4970780.931470230221748, 3897938.783221730031073 ], [ 4970771.131838846951723, 3897942.406464991625398 ], [ 4970777.150215742178261, 3897958.803401618264616 ], [ 4970734.206048536114395, 3897974.017765687778592 ], [ 4970725.894157306291163, 3897951.79053758457303 ], [ 4970732.234773332253098, 3897949.617429661098868 ], [ 4970725.357647273689508, 3897930.305882974993438 ], [ 4970761.096499253995717, 3897917.627141596283764 ], [ 4970765.396115625277162, 3897928.923090159893036 ], [ 4970775.771805710159242, 3897925.300906230695546 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965308.442721858620644, 3901250.487412236165255 ], [ 4965245.087538114748895, 3901248.562973946332932 ], [ 4965246.003372352570295, 3901216.885116092395037 ], [ 4965283.728536430746317, 3901218.039290567394346 ], [ 4965284.02309100702405, 3901214.034337249118835 ], [ 4965309.365197067148983, 3901214.804131343029439 ], [ 4965308.442721858620644, 3901250.487412236165255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970498.678500389680266, 3913013.677322171628475 ], [ 4970509.347555410116911, 3913003.865284178406 ], [ 4970498.717218101024628, 3912992.557661611586809 ], [ 4970540.240717178210616, 3912954.035687387455255 ], [ 4970576.153794950805604, 3912992.335600863676518 ], [ 4970524.249115001410246, 3913040.670076634734869 ], [ 4970498.678500389680266, 3913013.677322171628475 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970412.784721183590591, 3898594.269632841460407 ], [ 4970403.313351820223033, 3898576.045806548092514 ], [ 4970428.106416604481637, 3898563.346604814752936 ], [ 4970453.074209306389093, 3898612.5498599242419 ], [ 4970419.633257173001766, 3898629.238648698665202 ], [ 4970404.136126826517284, 3898598.623376326169819 ], [ 4970412.784721183590591, 3898594.269632841460407 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970246.586761578917503, 3897651.597774574067444 ], [ 4970200.179414258338511, 3897670.447975620627403 ], [ 4970192.724447549320757, 3897651.863776670303196 ], [ 4970185.518388814292848, 3897654.763695672154427 ], [ 4970168.313448894768953, 3897612.493313659913838 ], [ 4970201.749538857489824, 3897599.081380240619183 ], [ 4970216.66080567240715, 3897635.521526923868805 ], [ 4970236.838196094147861, 3897627.183304875157773 ], [ 4970246.586761578917503, 3897651.597774574067444 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965224.056162877008319, 3900197.284006340429187 ], [ 4965233.486965265125036, 3900242.087467237375677 ], [ 4965204.676595708355308, 3900248.230550513137132 ], [ 4965195.245747502893209, 3900203.427099564112723 ], [ 4965224.056162877008319, 3900197.284006340429187 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965094.876165879890323, 3911586.016179573722184 ], [ 4965214.915947008877993, 3911590.217815818730742 ], [ 4965212.195717580616474, 3911669.230196328368038 ], [ 4965092.15628912858665, 3911665.02857205318287 ], [ 4965094.876165879890323, 3911586.016179573722184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4970028.234193924814463, 3894173.035695047583431 ], [ 4970066.280923129990697, 3894161.088495559059083 ], [ 4970075.446179902181029, 3894190.23547017481178 ], [ 4970037.687554985284805, 3894202.183179686777294 ], [ 4970028.234193924814463, 3894173.035695047583431 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969998.56472684442997, 3898301.847020893823355 ], [ 4970007.458439994603395, 3898321.162043105810881 ], [ 4970016.683105153031647, 3898316.809217837173492 ], [ 4970028.445134630426764, 3898342.683791753370315 ], [ 4969980.593738025054336, 3898364.444796890951693 ], [ 4969959.937277163378894, 3898319.619362764526159 ], [ 4969998.56472684442997, 3898301.847020893823355 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964722.125317039899528, 3899626.239512928761542 ], [ 4964699.363183075562119, 3899632.028789505362511 ], [ 4964687.627197400666773, 3899587.221808603033423 ], [ 4964714.135257269255817, 3899580.346189025789499 ], [ 4964711.558480248786509, 3899570.874637850560248 ], [ 4964732.592021224088967, 3899565.446705311071128 ], [ 4964744.041110852733254, 3899609.524980761576444 ], [ 4964719.262304855510592, 3899615.675107257906348 ], [ 4964722.125317039899528, 3899626.239512928761542 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964685.452869256958365, 3906811.940745959989727 ], [ 4964718.317769030109048, 3906786.86880006082356 ], [ 4964746.188850710168481, 3906822.962946590036154 ], [ 4964713.323968909680843, 3906848.034858961123973 ], [ 4964685.452869256958365, 3906811.940745959989727 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969778.142204693518579, 3898507.909882395062596 ], [ 4969752.241994061507285, 3898495.846841527149081 ], [ 4969764.673568214289844, 3898470.016043935436755 ], [ 4969790.285776904784143, 3898482.078576443716884 ], [ 4969778.142204693518579, 3898507.909882395062596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969548.546424745582044, 3912629.248257702216506 ], [ 4969500.989712932147086, 3912661.570653950795531 ], [ 4969477.73374102730304, 3912627.300373737700284 ], [ 4969504.249806337058544, 3912609.505462786182761 ], [ 4969499.081881235353649, 3912601.849383667577058 ], [ 4969520.121909110806882, 3912587.685985936783254 ], [ 4969548.546424745582044, 3912629.248257702216506 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964630.348087902180851, 3902063.580411594361067 ], [ 4964614.158763711340725, 3902102.152140154503286 ], [ 4964589.984673317521811, 3902091.917484829667956 ], [ 4964594.609426544047892, 3902081.365152615122497 ], [ 4964576.190858032554388, 3902073.688708094879985 ], [ 4964586.307835659012198, 3902050.40065457765013 ], [ 4964605.30179585609585, 3902058.442164842505008 ], [ 4964607.037330613471568, 3902053.711265485733747 ], [ 4964630.348087902180851, 3902063.580411594361067 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969442.711959662847221, 3905188.741935178171843 ], [ 4969449.373984886333346, 3905166.905993297230452 ], [ 4969436.711381171829998, 3905162.877837172243744 ], [ 4969449.456932387314737, 3905120.661441397853196 ], [ 4969458.090865148231387, 3905123.225849695503712 ], [ 4969462.146339486353099, 3905109.760260152164847 ], [ 4969493.227975041605532, 3905119.283461894840002 ], [ 4969485.697477251291275, 3905143.666753923054785 ], [ 4969496.920987035147846, 3905147.328217732720077 ], [ 4969490.257610986940563, 3905169.89240822987631 ], [ 4969477.019115380011499, 3905165.863199258688837 ], [ 4969467.749841122888029, 3905196.433612151537091 ], [ 4969442.711959662847221, 3905188.741935178171843 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969359.609523004852235, 3896919.187142729293555 ], [ 4969340.251039196737111, 3896952.652434618212283 ], [ 4969310.037678624503314, 3896935.48430206393823 ], [ 4969301.080514470115304, 3896951.125865812879056 ], [ 4969278.060918285511434, 3896937.976056509651244 ], [ 4969306.376512542366982, 3896888.869155578315258 ], [ 4969359.609523004852235, 3896919.187142729293555 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964232.336181155405939, 3904235.710233874153346 ], [ 4964243.636516261845827, 3904192.03256956813857 ], [ 4964278.753076465800405, 3904201.192054440267384 ], [ 4964280.201622596941888, 3904195.732406272552907 ], [ 4964295.745634934864938, 3904199.398612360004336 ], [ 4964284.444635034538805, 3904243.44038520148024 ], [ 4964261.704570164903998, 3904237.942010894883424 ], [ 4964260.256612835451961, 3904243.037529957015067 ], [ 4964232.336181155405939, 3904235.710233874153346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964193.948667200282216, 3903930.871091543696821 ], [ 4964151.920030671171844, 3903922.06481496244669 ], [ 4964158.303473872132599, 3903891.852124736178666 ], [ 4964200.332155607640743, 3903900.658411135431379 ], [ 4964193.948667200282216, 3903930.871091543696821 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964016.655268696136773, 3901882.352140348870307 ], [ 4964001.052533420734107, 3901914.734944936819375 ], [ 4963950.404860274866223, 3901890.985933137126267 ], [ 4963962.540152353234589, 3901865.880201713647693 ], [ 4963981.533271137624979, 3901874.649529703892767 ], [ 4963985.288656019605696, 3901867.372887940146029 ], [ 4964016.655268696136773, 3901882.352140348870307 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964010.161103992722929, 3904153.7904081963934 ], [ 4964018.845122893340886, 3904125.401997440960258 ], [ 4964060.579142769798636, 3904138.213040788192302 ], [ 4964051.607123445719481, 3904166.600979620590806 ], [ 4964010.161103992722929, 3904153.7904081963934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4969209.219470906071365, 3897583.819348437711596 ], [ 4969229.392686416395009, 3897577.665142451412976 ], [ 4969231.111122692935169, 3897583.130157422274351 ], [ 4969247.8266711095348, 3897577.698053074069321 ], [ 4969252.69588659144938, 3897593.000201493036002 ], [ 4969264.512306126765907, 3897589.015878188889474 ], [ 4969275.396975343115628, 3897622.899398928508162 ], [ 4969226.691869433969259, 3897638.470005320385098 ], [ 4969209.219470906071365, 3897583.819348437711596 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963824.387415850535035, 3904359.957825285382569 ], [ 4963834.73718199133873, 3904370.534029236529022 ], [ 4963849.157027636654675, 3904356.71989832399413 ], [ 4963866.118853502906859, 3904374.225089611019939 ], [ 4963826.320048009045422, 3904412.395780940074474 ], [ 4963799.009030278772116, 3904383.950289735104889 ], [ 4963824.387415850535035, 3904359.957825285382569 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963603.496347565203905, 3903645.911787297576666 ], [ 4963651.291232280433178, 3903650.720859748311341 ], [ 4963648.071903184056282, 3903683.487574338447303 ], [ 4963600.277076199650764, 3903678.678507509641349 ], [ 4963603.496347565203905, 3903645.911787297576666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963557.486183689907193, 3903787.8504234473221 ], [ 4963602.68283164780587, 3903796.660761662293226 ], [ 4963596.87591914832592, 3903826.874489670153707 ], [ 4963551.391929182223976, 3903817.699577599298209 ], [ 4963557.486183689907193, 3903787.8504234473221 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968590.20856293849647, 3898255.269933121744543 ], [ 4968591.294600360095501, 3898292.777232975699008 ], [ 4968558.746680191718042, 3898293.448186365887523 ], [ 4968559.295808959752321, 3898308.742611899040639 ], [ 4968532.508372385986149, 3898309.423736669123173 ], [ 4968531.160491458140314, 3898256.986649689264596 ], [ 4968590.20856293849647, 3898255.269933121744543 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968379.831284790299833, 3901443.953481137286872 ], [ 4968402.908143976703286, 3901422.510250501334667 ], [ 4968428.491935857571661, 3901449.500817677937448 ], [ 4968405.414440425112844, 3901471.308156240731478 ], [ 4968379.831284790299833, 3901443.953481137286872 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4968143.769228969700634, 3895944.448490604292601 ], [ 4968189.018914296291769, 3895929.598158372566104 ], [ 4968199.621385413222015, 3895961.295937133487314 ], [ 4968154.371747494675219, 3895976.146251792553812 ], [ 4968143.769228969700634, 3895944.448490604292601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967980.605673220939934, 3899662.658435222227126 ], [ 4968007.668352686800063, 3899668.531585718970746 ], [ 4968011.152963872998953, 3899652.151786325499415 ], [ 4968052.323001980781555, 3899660.962571405339986 ], [ 4968049.12700935639441, 3899676.978737861383706 ], [ 4968064.961769555695355, 3899680.283486500848085 ], [ 4968054.800307661294937, 3899726.874463757965714 ], [ 4967970.73299218621105, 3899708.885815351735801 ], [ 4967980.605673220939934, 3899662.658435222227126 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963042.008560944348574, 3893797.866510860156268 ], [ 4962990.129681743681431, 3893814.535840269643813 ], [ 4962979.236100984737277, 3893780.290813447907567 ], [ 4963012.957460201345384, 3893769.419311683159322 ], [ 4963015.823469973169267, 3893778.891115042380989 ], [ 4963033.981043422594666, 3893773.093268621712923 ], [ 4963042.008560944348574, 3893797.866510860156268 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967823.550212606787682, 3900545.766062172595412 ], [ 4967812.342846198938787, 3900531.545556182973087 ], [ 4967819.552925103344023, 3900525.731961152516305 ], [ 4967810.931866995058954, 3900514.793111385777593 ], [ 4967834.868647955358028, 3900495.899807214736938 ], [ 4967863.030733185820282, 3900531.633418317884207 ], [ 4967838.805964970029891, 3900550.52619857667014 ], [ 4967830.760290135629475, 3900539.952470102347434 ], [ 4967823.550212606787682, 3900545.766062172595412 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967750.627026830799878, 3901578.678192895837128 ], [ 4967772.827956777997315, 3901563.787257083225995 ], [ 4967781.732897900044918, 3901576.911377635784447 ], [ 4967816.331855217926204, 3901553.666940881405026 ], [ 4967836.726643063127995, 3901583.925131834577769 ], [ 4967779.92679644934833, 3901622.060454767663032 ], [ 4967750.627026830799878, 3901578.678192895837128 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967690.807481392286718, 3901364.465937149710953 ], [ 4967723.098929384723306, 3901343.402179507538676 ], [ 4967747.80123782530427, 3901380.950360127724707 ], [ 4967715.509815433062613, 3901402.01408856222406 ], [ 4967690.807481392286718, 3901364.465937149710953 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967682.797513388097286, 3904166.8037587297149 ], [ 4967671.555106315761805, 3904173.702829334419221 ], [ 4967651.164623128250241, 3904141.988195675425231 ], [ 4967699.595514161512256, 3904111.120709400158376 ], [ 4967719.411931470967829, 3904141.741992852650583 ], [ 4967707.880914405919611, 3904149.004680360201746 ], [ 4967721.665870965458453, 3904170.512258591596037 ], [ 4967696.009077863767743, 3904186.853808285202831 ], [ 4967682.797513388097286, 3904166.8037587297149 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967687.717429670505226, 3900152.634320849087089 ], [ 4967644.488003332167864, 3900169.309660776518285 ], [ 4967633.017517159692943, 3900140.523564729839563 ], [ 4967639.934630253352225, 3900137.622460022103041 ], [ 4967633.912948282435536, 3900122.318592373281717 ], [ 4967670.225947065278888, 3900108.180201731156558 ], [ 4967687.717429670505226, 3900152.634320849087089 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962468.120661769062281, 3897398.582996551413089 ], [ 4962506.689688798040152, 3897416.484519981313497 ], [ 4962510.157260370440781, 3897409.207249436527491 ], [ 4962524.836310429498553, 3897416.148249085992575 ], [ 4962515.587958136573434, 3897436.525310100056231 ], [ 4962524.510256790556014, 3897440.908564957324415 ], [ 4962517.574556830339134, 3897455.827231904026121 ], [ 4962505.48558262642473, 3897450.346729848068208 ], [ 4962495.66063364315778, 3897471.087042775005102 ], [ 4962504.007418689318001, 3897475.105278180446476 ], [ 4962488.981146329082549, 3897506.76150161260739 ], [ 4962488.405641435645521, 3897506.396489000413567 ], [ 4962478.869874575175345, 3897526.408993021119386 ], [ 4962466.780924291349947, 3897520.928508136887103 ], [ 4962457.245178669691086, 3897540.94102001003921 ], [ 4962467.030987816862762, 3897545.689709587953985 ], [ 4962459.229020057246089, 3897562.063582834322006 ], [ 4962447.140639925375581, 3897556.218977849930525 ], [ 4962441.650189998559654, 3897567.862713254522532 ], [ 4962397.900675700977445, 3897547.40444259531796 ], [ 4962468.120661769062281, 3897398.582996551413089 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4967350.022592711262405, 3905278.652129428926855 ], [ 4967313.985961779020727, 3905303.715403240174055 ], [ 4967294.453525482676923, 3905275.643803329207003 ], [ 4967330.490175707265735, 3905250.580503752920777 ], [ 4967350.022592711262405, 3905278.652129428926855 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962087.411851688288152, 3892990.218349437694997 ], [ 4962123.433498402126133, 3892982.626388492528349 ], [ 4962126.009057830087841, 3892993.918293938506395 ], [ 4962140.129414781928062, 3892991.02673742827028 ], [ 4962150.428838255815208, 3893038.015007075853646 ], [ 4962089.912196869961917, 3893051.031640763394535 ], [ 4962084.189874759875238, 3893025.169810455292463 ], [ 4962094.564066628925502, 3893023.000797600951046 ], [ 4962087.411851688288152, 3892990.218349437694997 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966950.517876669764519, 3905517.932385851163417 ], [ 4966965.15727764647454, 3905544.903020305559039 ], [ 4966927.690301490947604, 3905564.866540202405304 ], [ 4966913.338819598779082, 3905537.896415134891868 ], [ 4966950.517876669764519, 3905517.932385851163417 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962025.375911032781005, 3898752.106394555419683 ], [ 4962010.93523120880127, 3898778.30184668302536 ], [ 4961988.200562071055174, 3898765.886961382813752 ], [ 4962002.929244916886091, 3898739.691933928057551 ], [ 4962025.375911032781005, 3898752.106394555419683 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961955.262910826131701, 3892176.190503538120538 ], [ 4961955.511305133812129, 3892202.408133235294372 ], [ 4961897.892481904476881, 3892203.049213272985071 ], [ 4961897.645132472738624, 3892176.10332872485742 ], [ 4961886.121576777659357, 3892176.085908580105752 ], [ 4961885.864308575168252, 3892155.69432283192873 ], [ 4961893.642714571207762, 3892155.706080814823508 ], [ 4961893.372240526601672, 3892144.053559512831271 ], [ 4961931.11248133983463, 3892143.746511377394199 ], [ 4961931.350981846451759, 3892176.518438686151057 ], [ 4961955.262910826131701, 3892176.190503538120538 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961885.582295863889158, 3899773.643578462302685 ], [ 4961875.179902809672058, 3899796.203922705724835 ], [ 4961819.631880660541356, 3899771.359168598428369 ], [ 4961832.635103223845363, 3899742.976647855713964 ], [ 4961867.17292867321521, 3899758.322285530157387 ], [ 4961864.572056050412357, 3899764.144437570124865 ], [ 4961885.582295863889158, 3899773.643578462302685 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966788.559517798013985, 3901857.411445835139602 ], [ 4966777.904684063978493, 3901857.029263227712363 ], [ 4966777.291703052818775, 3901878.876067685429007 ], [ 4966751.086308212019503, 3901878.103426415007561 ], [ 4966751.403268354944885, 3901860.989819474052638 ], [ 4966741.036420649848878, 3901860.608139051124454 ], [ 4966742.266023610718548, 3901814.729751313105226 ], [ 4966754.072817013598979, 3901815.113870189525187 ], [ 4966754.674682768061757, 3901799.821399817243218 ], [ 4966790.095698157325387, 3901800.609658686444163 ], [ 4966788.559517798013985, 3901857.411445835139602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966739.103758009150624, 3899088.844199444632977 ], [ 4966701.941225836053491, 3899093.879151659086347 ], [ 4966692.55186153203249, 3899025.770947047974914 ], [ 4966729.714486048556864, 3899020.735982055775821 ], [ 4966739.103758009150624, 3899088.844199444632977 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966715.350932756438851, 3895763.207048986107111 ], [ 4966723.66127756331116, 3895788.710163098294288 ], [ 4966675.530438317917287, 3895804.286349684465677 ], [ 4966667.220667947083712, 3895778.419121860526502 ], [ 4966715.350932756438851, 3895763.207048986107111 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966570.856711088679731, 3891256.503758918493986 ], [ 4966554.371883880347013, 3891293.981203862000257 ], [ 4966525.870383094064891, 3891281.916953852865845 ], [ 4966542.067692422308028, 3891244.074878970626742 ], [ 4966570.856711088679731, 3891256.503758918493986 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961536.23869092296809, 3892463.220890562050045 ], [ 4961582.025216409936547, 3892476.034040139522403 ], [ 4961572.178421167656779, 3892510.611484893597662 ], [ 4961526.391949949786067, 3892497.798351839184761 ], [ 4961536.23869092296809, 3892463.220890562050045 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966195.925150729715824, 3897010.569499798119068 ], [ 4966093.063107031397521, 3897030.060702650342137 ], [ 4966082.783055813983083, 3896976.516497822944075 ], [ 4966185.64468805026263, 3896957.389384864363819 ], [ 4966195.925150729715824, 3897010.569499798119068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4966054.911138159222901, 3897108.649087130092084 ], [ 4966093.517686591483653, 3897102.887391622178257 ], [ 4966099.213400817476213, 3897141.858768496662378 ], [ 4966060.606907098554075, 3897147.620455947704613 ], [ 4966054.911138159222901, 3897108.649087130092084 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965941.956645553000271, 3893323.337470524478704 ], [ 4965899.865409686230123, 3893342.566359370481223 ], [ 4965872.309195445850492, 3893282.803476380649954 ], [ 4965914.112427712418139, 3893263.574066462460905 ], [ 4965941.956645553000271, 3893323.337470524478704 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961136.085383390076458, 3907989.501958044245839 ], [ 4961171.802001705393195, 3907979.723438838496804 ], [ 4961178.676357195712626, 3908003.766362788621336 ], [ 4961142.671308489516377, 3908013.908576696645468 ], [ 4961136.085383390076458, 3907989.501958044245839 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960956.526051608845592, 3898759.609411641489714 ], [ 4961013.238192681223154, 3898778.263876251876354 ], [ 4961003.690509327687323, 3898807.380146898329258 ], [ 4960979.796870223246515, 3898799.333959907758981 ], [ 4960978.639416372403502, 3898802.973548271693289 ], [ 4960945.821511064656079, 3898792.001162740401924 ], [ 4960956.526051608845592, 3898759.609411641489714 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960920.334304332733154, 3908446.532347501721233 ], [ 4960911.118351425044239, 3908448.339402419514954 ], [ 4960913.403929140418768, 3908460.359134173486382 ], [ 4960892.668720121495426, 3908463.969853494316339 ], [ 4960890.956813514232635, 3908453.40749807888642 ], [ 4960863.885337242856622, 3908458.465420287102461 ], [ 4960855.889217006973922, 3908414.029522025957704 ], [ 4960912.624038771726191, 3908403.553382793907076 ], [ 4960920.334304332733154, 3908446.532347501721233 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965625.972886171191931, 3896616.36257536103949 ], [ 4965585.649504755623639, 3896614.839519047643989 ], [ 4965586.256817989051342, 3896595.905784530565143 ], [ 4965594.033338631503284, 3896596.282741669099778 ], [ 4965595.237766412086785, 3896564.605458879377693 ], [ 4965627.496652010828257, 3896565.751084847841412 ], [ 4965625.972886171191931, 3896616.36257536103949 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960784.348846201784909, 3909877.007385247852653 ], [ 4960786.636500544846058, 3909887.570590510964394 ], [ 4960760.14121538028121, 3909893.357732287142426 ], [ 4960749.56068608071655, 3909844.548436878249049 ], [ 4960818.96646816842258, 3909829.72113812668249 ], [ 4960826.971339764073491, 3909867.966827468480915 ], [ 4960784.348846201784909, 3909877.007385247852653 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960774.892147215083241, 3897904.000766420271248 ], [ 4960809.408824971877038, 3897935.730830385815352 ], [ 4960786.330230571329594, 3897960.457696171943098 ], [ 4960751.813557454384863, 3897928.72766137169674 ], [ 4960774.892147215083241, 3897904.000766420271248 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960768.868014835752547, 3896320.028359603136778 ], [ 4960803.136200384236872, 3896326.26896045031026 ], [ 4960792.391782315447927, 3896385.242113942746073 ], [ 4960758.123669506050646, 3896379.001526574604213 ], [ 4960768.868014835752547, 3896320.028359603136778 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965338.944116765633225, 3893715.236833648290485 ], [ 4965317.904087611474097, 3893721.756656597368419 ], [ 4965308.158562332391739, 3893691.882112198043615 ], [ 4965328.910539750009775, 3893685.361809413414448 ], [ 4965338.944116765633225, 3893715.236833648290485 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960549.773889531381428, 3898216.094008019194007 ], [ 4960553.841902062296867, 3898191.703260692767799 ], [ 4960585.517129166983068, 3898196.847413626965135 ], [ 4960581.449088647961617, 3898221.2381562278606 ], [ 4960549.773889531381428, 3898216.094008019194007 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960467.631261833943427, 3897069.693861476611346 ], [ 4960478.395422843284905, 3896996.519533141050488 ], [ 4960514.392631127499044, 3897001.669904333539307 ], [ 4960503.628374122083187, 3897074.844218479469419 ], [ 4960467.631261833943427, 3897069.693861476611346 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960430.501699303276837, 3900607.526011581998318 ], [ 4960415.188428717665374, 3900641.367810930591077 ], [ 4960364.533604610711336, 3900618.717963762581348 ], [ 4960379.846824197098613, 3900584.876136024482548 ], [ 4960430.501699303276837, 3900607.526011581998318 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960420.052025880664587, 3900663.586847924161702 ], [ 4960444.51804456859827, 3900673.089904435910285 ], [ 4960430.931185798719525, 3900708.026604817248881 ], [ 4960406.465194164775312, 3900698.523560478817672 ], [ 4960420.052025880664587, 3900663.586847924161702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965224.258225083351135, 3901481.936580038629472 ], [ 4965246.926511587575078, 3901532.587833362165838 ], [ 4965224.735300291329622, 3901542.383040548767895 ], [ 4965216.987607816234231, 3901525.256226109340787 ], [ 4965201.136914591304958, 3901532.148781377356499 ], [ 4965186.216271186247468, 3901498.624369586352259 ], [ 4965224.258225083351135, 3901481.936580038629472 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4965081.903152133338153, 3901182.752844452857971 ], [ 4965101.569217232987285, 3901132.170782559551299 ], [ 4965130.062086694873869, 3901143.505333486013114 ], [ 4965110.396570403128862, 3901193.723245309665799 ], [ 4965081.903152133338153, 3901182.752844452857971 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964971.504207321442664, 3903720.928851136006415 ], [ 4964975.316481283865869, 3903678.695848622824997 ], [ 4965002.669066664762795, 3903681.289285048376769 ], [ 4964998.857342851348221, 3903723.158153627999127 ], [ 4964971.504207321442664, 3903720.928851136006415 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964949.28897834662348, 3898432.989576881285757 ], [ 4964935.051036124117672, 3898509.797848206944764 ], [ 4964901.362629435025156, 3898503.552907466888428 ], [ 4964915.600478610023856, 3898426.744618581607938 ], [ 4964949.28897834662348, 3898432.989576881285757 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959942.624031830579042, 3907612.336838807445019 ], [ 4959925.610339994542301, 3907630.518936628010124 ], [ 4959933.373784143477678, 3907637.812749436125159 ], [ 4959895.309787794016302, 3907678.176612714771181 ], [ 4959867.70583507232368, 3907652.647694973740727 ], [ 4959922.784039942547679, 3907593.737551954109222 ], [ 4959942.624031830579042, 3907612.336838807445019 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959912.156169148162007, 3900570.726467700209469 ], [ 4959924.193440129049122, 3900611.526378770824522 ], [ 4959891.347999346442521, 3900620.946523236576468 ], [ 4959879.310682786628604, 3900580.146626648958772 ], [ 4959912.156169148162007, 3900570.726467700209469 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959831.472021511755884, 3898996.476044528651983 ], [ 4959882.730461202561855, 3899002.375750133767724 ], [ 4959876.606776428408921, 3899054.801661786623299 ], [ 4959822.468805526383221, 3899048.533705044072121 ], [ 4959825.095433986745775, 3899024.504897910170257 ], [ 4959828.263081931509078, 3899024.873574218247086 ], [ 4959831.472021511755884, 3898996.476044528651983 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959822.20615098066628, 3901840.320012653246522 ], [ 4959835.52091627381742, 3901793.366283679381013 ], [ 4959867.762772553600371, 3901802.151726760435849 ], [ 4959854.73541740514338, 3901849.469983492977917 ], [ 4959822.20615098066628, 3901840.320012653246522 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964584.796383230015635, 3895842.34535875916481 ], [ 4964532.945108836516738, 3895843.718337633647025 ], [ 4964531.581077718175948, 3895796.379325804300606 ], [ 4964583.720493457280099, 3895795.006808691192418 ], [ 4964584.796383230015635, 3895842.34535875916481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964447.974094233475626, 3904084.213307918049395 ], [ 4964497.200238587334752, 3904093.759893365669996 ], [ 4964491.68210184853524, 3904122.88150620367378 ], [ 4964479.591845442540944, 3904120.313136188779026 ], [ 4964476.688807442784309, 3904134.873712839558721 ], [ 4964439.265614710748196, 3904127.530918277334422 ], [ 4964447.974094233475626, 3904084.213307918049395 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959657.783075710758567, 3898402.3314642412588 ], [ 4959621.781343552283943, 3898401.551784745417535 ], [ 4959623.060793859884143, 3898312.341810609679669 ], [ 4959659.062645480036736, 3898313.121491782832891 ], [ 4959657.783075710758567, 3898402.3314642412588 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959642.222260881215334, 3900423.959153731353581 ], [ 4959645.148562300950289, 3900391.555742113851011 ], [ 4959671.92951884213835, 3900393.778795290272683 ], [ 4959669.002664854750037, 3900426.546333550941199 ], [ 4959642.222260881215334, 3900423.959153731353581 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959636.711765974760056, 3900450.896921439096332 ], [ 4959633.793801479972899, 3900477.474262827541679 ], [ 4959612.772404744289815, 3900475.623598069883883 ], [ 4959611.895411504432559, 3900484.725602821446955 ], [ 4959552.864261993207037, 3900478.451196028850973 ], [ 4959556.659121613949537, 3900442.771839434746653 ], [ 4959636.711765974760056, 3900450.896921439096332 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964355.834079714491963, 3904258.84831370273605 ], [ 4964312.935711996629834, 3904254.0458306055516 ], [ 4964317.022583034820855, 3904219.459917564876378 ], [ 4964359.633045481517911, 3904224.261945131234825 ], [ 4964355.834079714491963, 3904258.84831370273605 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964249.589914476498961, 3897950.481444131582975 ], [ 4964252.812971721403301, 3897916.258399144746363 ], [ 4964279.596020804718137, 3897918.486040304880589 ], [ 4964278.126739143393934, 3897936.690178221557289 ], [ 4964291.374239446595311, 3897937.803777483757585 ], [ 4964289.907866108231246, 3897954.18727060733363 ], [ 4964249.589914476498961, 3897950.481444131582975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964199.442167210392654, 3908960.994819364044815 ], [ 4964247.54744986910373, 3908945.778206056915224 ], [ 4964277.913041980005801, 3909041.229466716758907 ], [ 4964230.095820765942335, 3909056.44648711476475 ], [ 4964199.442167210392654, 3908960.994819364044815 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4964125.144697769545019, 3903918.744902580976486 ], [ 4964089.158021956682205, 3903913.22554465290159 ], [ 4964090.611188791692257, 3903904.852845767512918 ], [ 4964070.458985928446054, 3903901.543547207023948 ], [ 4964074.529929705895483, 3903876.789119359105825 ], [ 4964130.381487326696515, 3903885.253196481615305 ], [ 4964125.144697769545019, 3903918.744902580976486 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959407.533894561231136, 3900401.048860533628613 ], [ 4959442.955917827785015, 3900402.555694418493658 ], [ 4959441.766660009510815, 3900428.771381996572018 ], [ 4959406.344671233557165, 3900427.264549663756043 ], [ 4959407.533894561231136, 3900401.048860533628613 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963980.391915750689805, 3903860.253368800505996 ], [ 4963979.194321732036769, 3903889.017821160145104 ], [ 4963936.866018304601312, 3903887.494026828091592 ], [ 4963938.063567075878382, 3903858.729572596028447 ], [ 4963980.391915750689805, 3903860.253368800505996 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963831.890129096806049, 3901805.591322295367718 ], [ 4963845.757881519384682, 3901777.575239514000714 ], [ 4963888.922852999530733, 3901798.399134198669344 ], [ 4963875.054488690569997, 3901826.779324795119464 ], [ 4963831.890129096806049, 3901805.591322295367718 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958871.930935608223081, 3905692.571012059692293 ], [ 4958907.925983599387109, 3905691.164906286168844 ], [ 4958907.363873285241425, 3905681.332570802886039 ], [ 4958934.432157697156072, 3905680.278123526833951 ], [ 4958937.210992535576224, 3905752.015907504595816 ], [ 4958904.671345287933946, 3905753.42681580176577 ], [ 4958903.278569908812642, 3905719.924774508457631 ], [ 4958873.330889196135104, 3905720.975221470929682 ], [ 4958871.930935608223081, 3905692.571012059692293 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963610.800571456551552, 3893710.637565132696182 ], [ 4963625.488822547718883, 3893712.845487064681947 ], [ 4963624.323905974626541, 3893720.854486247058958 ], [ 4963644.772448241710663, 3893723.799756668973714 ], [ 4963637.785223921760917, 3893770.397236462682486 ], [ 4963612.440642655827105, 3893766.715997871477157 ], [ 4963613.603832334280014, 3893759.799381906166673 ], [ 4963592.291671740822494, 3893756.48864596709609 ], [ 4963598.114485426805913, 3893717.536027065943927 ], [ 4963609.634511667303741, 3893719.374820900149643 ], [ 4963610.800571456551552, 3893710.637565132696182 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963596.297887092456222, 3900355.615666112862527 ], [ 4963624.008007922209799, 3900316.333266302477568 ], [ 4963660.543423861265182, 3900342.244144947268069 ], [ 4963632.833850376307964, 3900381.16237829066813 ], [ 4963596.297887092456222, 3900355.615666112862527 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963461.571710048243403, 3903801.900705052539706 ], [ 4963414.631241429597139, 3903803.283537951763719 ], [ 4963413.814767646603286, 3903773.059378490317613 ], [ 4963460.755289014428854, 3903771.676544197369367 ], [ 4963461.571710048243403, 3903801.900705052539706 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963370.923448491841555, 3903763.160578285809606 ], [ 4963379.218482697382569, 3903798.85842525633052 ], [ 4963362.222309438511729, 3903802.837227491661906 ], [ 4963365.941877383738756, 3903818.136561464052647 ], [ 4963338.863553052768111, 3903824.284365992527455 ], [ 4963326.848881000652909, 3903773.287202124483883 ], [ 4963370.923448491841555, 3903763.160578285809606 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963368.235630082897842, 3892612.044110752642155 ], [ 4963409.754589945077896, 3892589.897340978030115 ], [ 4963433.022013601846993, 3892632.901018364820629 ], [ 4963391.503100813366473, 3892655.047752765472978 ], [ 4963368.235630082897842, 3892612.044110752642155 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4963301.617625633254647, 3900206.223701750393957 ], [ 4963279.980399673804641, 3900229.858324808068573 ], [ 4963240.00435883179307, 3900193.746942875906825 ], [ 4963261.641578558832407, 3900170.112288143485785 ], [ 4963301.617625633254647, 3900206.223701750393957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958385.737540149129927, 3906004.319465968292207 ], [ 4958422.34379002917558, 3905977.060221345163882 ], [ 4958434.127704313024879, 3905992.734177891165018 ], [ 4958435.568920213729143, 3905991.643777913413942 ], [ 4958473.506998335942626, 3906042.31057875463739 ], [ 4958440.359089152887464, 3906067.389752114191651 ], [ 4958424.264168272726238, 3906045.883724211715162 ], [ 4958419.652087089605629, 3906049.518658798187971 ], [ 4958385.737540149129927, 3906004.319465968292207 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962811.41931489855051, 3897422.780041001737118 ], [ 4962826.106728236190975, 3897424.259273390751332 ], [ 4962828.736759963445365, 3897399.866654445417225 ], [ 4962856.959476666525006, 3897402.823362712748349 ], [ 4962849.071573715656996, 3897474.544697996228933 ], [ 4962857.711409902200103, 3897475.286329800263047 ], [ 4962855.667004248127341, 3897493.48964897589758 ], [ 4962804.405767502263188, 3897487.948407870717347 ], [ 4962811.41931489855051, 3897422.780041001737118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958152.856009894050658, 3905958.482202459126711 ], [ 4958104.442433541640639, 3905987.182142689358443 ], [ 4958088.929068581201136, 3905961.307537417858839 ], [ 4958113.712490759789944, 3905946.41213648673147 ], [ 4958109.115418962202966, 3905939.123201487585902 ], [ 4958132.746106892824173, 3905924.954499959014356 ], [ 4958152.856009894050658, 3905958.482202459126711 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958049.898263365030289, 3897454.073100788984448 ], [ 4957999.498080755583942, 3897449.998721734620631 ], [ 4958004.471805507317185, 3897393.56543945055455 ], [ 4958054.584060271270573, 3897397.639433316420764 ], [ 4958049.898263365030289, 3897454.073100788984448 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962585.243001387454569, 3899528.558522413019091 ], [ 4962603.948531481437385, 3899538.418809396680444 ], [ 4962607.414736851118505, 3899531.869800691492856 ], [ 4962633.314338502474129, 3899545.746610159985721 ], [ 4962628.692165079526603, 3899554.842746750917286 ], [ 4962649.988065798766911, 3899565.799444410949945 ], [ 4962637.85577255114913, 3899589.085087455343455 ], [ 4962613.394581955857575, 3899576.302877174224705 ], [ 4962609.639250637032092, 3899583.579700603149831 ], [ 4962567.622887016274035, 3899562.031400661915541 ], [ 4962585.243001387454569, 3899528.558522413019091 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4962104.253585237078369, 3899725.545765285380185 ], [ 4962119.559535900130868, 3899698.259274380281568 ], [ 4962161.573827324435115, 3899721.263392846565694 ], [ 4962146.267846999689937, 3899748.54986020270735 ], [ 4962104.253585237078369, 3899725.545765285380185 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961770.356218927539885, 3898069.341387105640024 ], [ 4961750.112118768505752, 3898123.930344152729958 ], [ 4961722.189030200242996, 3898113.69265123270452 ], [ 4961742.72110711876303, 3898059.104107386432588 ], [ 4961770.356218927539885, 3898069.341387105640024 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961609.428675003349781, 3896673.754549169912934 ], [ 4961606.504533655010164, 3896702.88051702035591 ], [ 4961574.248380456119776, 3896699.919073203578591 ], [ 4961577.173033442348242, 3896670.428973227739334 ], [ 4961609.428675003349781, 3896673.754549169912934 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961579.45893719419837, 3900329.93758111493662 ], [ 4961551.156709495000541, 3900381.965756444726139 ], [ 4961505.113641592673957, 3900357.135896474588662 ], [ 4961510.600392210297287, 3900347.312597628217191 ], [ 4961500.816526749171317, 3900341.835989427752793 ], [ 4961509.191475413739681, 3900326.555061941500753 ], [ 4961520.414806639775634, 3900332.397960165981203 ], [ 4961527.056302662938833, 3900320.755743698682636 ], [ 4961514.970053995959461, 3900314.183289444539696 ], [ 4961523.056471806950867, 3900299.266064507886767 ], [ 4961579.45893719419837, 3900329.93758111493662 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957069.534407561644912, 3893704.039172210264951 ], [ 4957015.046556044369936, 3893735.645829160697758 ], [ 4956994.065217055380344, 3893699.569177671801299 ], [ 4957048.553116852417588, 3893667.962478870991617 ], [ 4957069.534407561644912, 3893704.039172210264951 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956927.95206147711724, 3899016.861790380440652 ], [ 4956959.441547229886055, 3898944.80589067703113 ], [ 4956984.484447349794209, 3898955.76306991558522 ], [ 4956975.528840401209891, 3898976.142438340932131 ], [ 4956979.846660547889769, 3898977.968827220145613 ], [ 4956957.31320427916944, 3899029.281196822412312 ], [ 4956927.95206147711724, 3899016.861790380440652 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956621.168975305743515, 3899051.776916682720184 ], [ 4956609.900933136232197, 3899078.707702859770507 ], [ 4956541.103135900571942, 3899049.851020788308233 ], [ 4956552.370642858557403, 3899023.284335499163717 ], [ 4956621.168975305743515, 3899051.776916682720184 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961099.288295679725707, 3896492.385238664224744 ], [ 4961132.694758864119649, 3896496.804336140397936 ], [ 4961122.495521801523864, 3896576.169422157574445 ], [ 4961086.208737731911242, 3896571.746068306732923 ], [ 4961089.993756979703903, 3896544.441969993989915 ], [ 4961078.474231763742864, 3896542.968381491489708 ], [ 4961080.806625406257808, 3896524.037106949836016 ], [ 4961094.917999434284866, 3896525.878667627461255 ], [ 4961099.288295679725707, 3896492.385238664224744 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4961072.786236701533198, 3894743.797372665256262 ], [ 4961110.233135939575732, 3894744.581129685975611 ], [ 4961109.911599947139621, 3894767.156654132995754 ], [ 4961072.465271559543908, 3894766.008769304025918 ], [ 4961072.786236701533198, 3894743.797372665256262 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960895.782109406776726, 3898740.584989864844829 ], [ 4960860.617015447467566, 3898758.739639447536319 ], [ 4960830.171789989806712, 3898701.16226485138759 ], [ 4960865.337475222535431, 3898682.643446947913617 ], [ 4960895.782109406776726, 3898740.584989864844829 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960856.751573326066136, 3893562.608131477609277 ], [ 4960884.037545234896243, 3893617.631793572101742 ], [ 4960849.443522736430168, 3893634.694868065416813 ], [ 4960834.507678142748773, 3893604.814309719018638 ], [ 4960814.616131897084415, 3893614.616505470592529 ], [ 4960802.265937190502882, 3893589.473445263225585 ], [ 4960856.751573326066136, 3893562.608131477609277 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960679.633131833747029, 3893137.409527692012489 ], [ 4960706.749928713776171, 3893111.960303785745054 ], [ 4960717.104731027968228, 3893122.899364035576582 ], [ 4960722.009019857272506, 3893118.172891209833324 ], [ 4960735.240321929566562, 3893132.029211611952633 ], [ 4960741.298531752079725, 3893126.212050990667194 ], [ 4960758.555963234975934, 3893144.807970576453954 ], [ 4960719.035213795490563, 3893181.526919194962829 ], [ 4960709.831144472584128, 3893171.681932920124382 ], [ 4960702.619035950861871, 3893178.589793478138745 ], [ 4960691.976705219596624, 3893167.286187893245369 ], [ 4960700.630808760412037, 3893159.288054417818785 ], [ 4960679.633131833747029, 3893137.409527692012489 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956033.177628209814429, 3895829.919687404297292 ], [ 4956025.080203611403704, 3895854.669995873235166 ], [ 4956002.909338478930295, 3895847.722868885844946 ], [ 4956011.006744731217623, 3895822.972553832922131 ], [ 4956033.177628209814429, 3895829.919687404297292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955697.775483257137239, 3893669.1107187140733 ], [ 4955715.573914651758969, 3893717.562651596497744 ], [ 4955683.006811950355768, 3893729.173038374632597 ], [ 4955665.496402393095195, 3893680.721495508681983 ], [ 4955697.775483257137239, 3893669.1107187140733 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960264.588812003843486, 3897251.827297376934439 ], [ 4960256.747943132184446, 3897295.875596678350121 ], [ 4960226.799795942381024, 3897290.734339827671647 ], [ 4960234.352582648396492, 3897246.685614180285484 ], [ 4960264.588812003843486, 3897251.827297376934439 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955619.851543791592121, 3894683.109764634631574 ], [ 4955663.942747530527413, 3894669.329273047391325 ], [ 4955672.550109439529479, 3894696.285834533628076 ], [ 4955628.170883705839515, 3894710.065943851135671 ], [ 4955619.851543791592121, 3894683.109764634631574 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4960024.673977741971612, 3893244.967254633549601 ], [ 4960041.900828146375716, 3893285.046264942269772 ], [ 4959999.815867216326296, 3893302.827878706157207 ], [ 4959982.588440967723727, 3893263.113022904377431 ], [ 4960024.673977741971612, 3893244.967254633549601 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959797.088224805891514, 3899273.893749212380499 ], [ 4959800.008044817484915, 3899246.224056973587722 ], [ 4959809.222897872328758, 3899247.329665108583868 ], [ 4959812.144822870381176, 3899218.203457669354975 ], [ 4959849.293326258659363, 3899221.898080856539309 ], [ 4959843.452016996219754, 3899278.329842326696962 ], [ 4959797.088224805891514, 3899273.893749212380499 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955398.087234789505601, 3905302.681010789703578 ], [ 4955428.908348034135997, 3905294.345176534727216 ], [ 4955432.634074709378183, 3905308.186903143767267 ], [ 4955442.428019255399704, 3905305.286313444841653 ], [ 4955450.16600935626775, 3905334.06252971617505 ], [ 4955439.508230856619775, 3905336.962017540819943 ], [ 4955448.965095238760114, 3905372.658915085718036 ], [ 4955421.312412920407951, 3905380.270493029151112 ], [ 4955411.281470592133701, 3905343.116350239142776 ], [ 4955397.455349003896117, 3905346.740089635364711 ], [ 4955392.010712463408709, 3905325.977689711377025 ], [ 4955403.53233421035111, 3905323.079280980397016 ], [ 4955398.087234789505601, 3905302.681010789703578 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955300.985438908450305, 3905125.225883076433092 ], [ 4955340.48264954611659, 3905087.40631592925638 ], [ 4955370.677693646401167, 3905118.759922696277499 ], [ 4955314.171138362959027, 3905172.579652513377368 ], [ 4955292.028539634309709, 3905149.247194716241211 ], [ 4955308.749939180910587, 3905133.246609654277563 ], [ 4955300.985438908450305, 3905125.225883076433092 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955221.944158993661404, 3898859.167933132965118 ], [ 4955239.007628927007318, 3898803.477642496582121 ], [ 4955283.632879127748311, 3898817.371043657884002 ], [ 4955266.2817691443488, 3898872.696812673471868 ], [ 4955221.944158993661404, 3898859.167933132965118 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955191.5620993450284, 3898970.189151126425713 ], [ 4955226.399157916195691, 3898980.428801703266799 ], [ 4955219.747638395987451, 3899001.90405598282814 ], [ 4955185.198621013201773, 3898991.664777537342161 ], [ 4955191.5620993450284, 3898970.189151126425713 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-10/13/2019" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959768.433918733149767, 3899975.167198339477181 ], [ 4959770.209440709091723, 3899942.033899296075106 ], [ 4959744.578500151634216, 3899940.904786918777972 ], [ 4959746.064424192532897, 3899908.863462645094842 ], [ 4959805.101481688208878, 3899911.861127126030624 ], [ 4959804.212391892448068, 3899929.338098586536944 ], [ 4959810.836003132164478, 3899929.711730861105025 ], [ 4959809.354182144626975, 3899958.840016734786332 ], [ 4959801.002545067109168, 3899958.463906181976199 ], [ 4959800.112414841540158, 3899976.669137079734355 ], [ 4959768.433918733149767, 3899975.167198339477181 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959562.363765692338347, 3897652.816309473942965 ], [ 4959596.346135261468589, 3897656.506063899025321 ], [ 4959591.96906709112227, 3897696.189951829612255 ], [ 4959534.371416878886521, 3897690.281779206357896 ], [ 4959537.876011424697936, 3897656.422713682055473 ], [ 4959561.490852138958871, 3897659.005269265733659 ], [ 4959562.363765692338347, 3897652.816309473942965 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955158.20966740231961, 3895499.629016298800707 ], [ 4955173.991940634325147, 3895547.713970780838281 ], [ 4955138.547220380045474, 3895558.957266098354012 ], [ 4955123.052943574264646, 3895510.872695080935955 ], [ 4955158.20966740231961, 3895499.629016298800707 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955024.386972753331065, 3901361.949259059969336 ], [ 4955032.794079069048166, 3901317.900051007512957 ], [ 4955066.768761947751045, 3901324.497125150635839 ], [ 4955069.957281047478318, 3901308.115271009504795 ], [ 4955095.870054444298148, 3901313.245716695208102 ], [ 4955084.274777685292065, 3901373.312627654056996 ], [ 4955024.386972753331065, 3901361.949259059969336 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954990.534280441701412, 3893915.457190062385052 ], [ 4955036.282077483832836, 3893959.574226839467883 ], [ 4955014.648946272209287, 3893981.758902511093765 ], [ 4954968.90115162357688, 3893937.641901971306652 ], [ 4954990.534280441701412, 3893915.457190062385052 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959427.139716629870236, 3898966.404172806069255 ], [ 4959433.549526331946254, 3898914.706829029601067 ], [ 4959487.111305203288794, 3898921.3373116212897 ], [ 4959480.70191194023937, 3898972.670513641089201 ], [ 4959427.139716629870236, 3898966.404172806069255 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4959284.294432163238525, 3907097.6069555869326 ], [ 4959257.566996285691857, 3907062.248359890654683 ], [ 4959295.614404708147049, 3907033.53579970728606 ], [ 4959298.775443807244301, 3907037.909856126178056 ], [ 4959323.276292558759451, 3907019.009712507948279 ], [ 4959347.417482868768275, 3907050.723388558719307 ], [ 4959315.134817253798246, 3907075.074461086653173 ], [ 4959321.744807404465973, 3907083.822987094055861 ], [ 4959301.568109447136521, 3907099.087938797660172 ], [ 4959294.382773913443089, 3907089.974471338093281 ], [ 4959284.294432163238525, 3907097.6069555869326 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958995.128551561385393, 3901622.488029562402517 ], [ 4959059.067448728717864, 3901618.572468825150281 ], [ 4959061.037256236188114, 3901651.346985413692892 ], [ 4958997.098436730913818, 3901655.262541538104415 ], [ 4958995.128551561385393, 3901622.488029562402517 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954459.861262079328299, 3894652.885529910214245 ], [ 4954499.090434659272432, 3894610.330939307343215 ], [ 4954525.274853336624801, 3894634.031716511584818 ], [ 4954486.045223562046885, 3894676.950397863518447 ], [ 4954459.861262079328299, 3894652.885529910214245 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958700.111145384609699, 3905219.688518200069666 ], [ 4958679.931882869452238, 3905236.0463109575212 ], [ 4958662.395893909037113, 3905215.266407146118581 ], [ 4958682.575668531470001, 3905198.54447084851563 ], [ 4958700.111145384609699, 3905219.688518200069666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4958543.430548312142491, 3900265.107783881947398 ], [ 4958570.211214818060398, 3900267.69386859703809 ], [ 4958566.413596322759986, 3900306.286396742798388 ], [ 4958539.632967918179929, 3900303.700315750669688 ], [ 4958543.430548312142491, 3900265.107783881947398 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954044.021596049889922, 3894788.195114624686539 ], [ 4954063.592403058893979, 3894802.420024795923382 ], [ 4954075.133951949886978, 3894786.776571217924356 ], [ 4954100.460619223304093, 3894805.378084393683821 ], [ 4954072.472047548741102, 3894843.577435258310288 ], [ 4954065.564823099412024, 3894838.471197416540235 ], [ 4954051.137812623754144, 3894858.116553015075624 ], [ 4954031.567039656452835, 3894843.891651449725032 ], [ 4954045.994043424725533, 3894824.246285503730178 ], [ 4954027.286537089385092, 3894810.750698427669704 ], [ 4954044.021596049889922, 3894788.195114624686539 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957947.377340392209589, 3901026.411975862458348 ], [ 4957955.186498916707933, 3901002.02590660052374 ], [ 4957983.110003379173577, 3901010.803185071796179 ], [ 4957972.697930562309921, 3901043.196557476185262 ], [ 4957947.077413783408701, 3901035.150694745592773 ], [ 4957941.292678961530328, 3901053.349314459133893 ], [ 4957925.459978333674371, 3901048.229879272636026 ], [ 4957919.385280061513186, 3901067.884629564825445 ], [ 4957885.704918289557099, 3901056.914786799345165 ], [ 4957900.454668143764138, 3901011.418602958321571 ], [ 4957947.377340392209589, 3901026.411975862458348 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957675.409152334555984, 3905562.748193158302456 ], [ 4957675.69709778111428, 3905562.748583481181413 ], [ 4957648.962069171480834, 3905530.304666522890329 ], [ 4957676.059083419851959, 3905508.12937292503193 ], [ 4957722.054831823334098, 3905563.903857749421149 ], [ 4957694.669396623969078, 3905586.442845877725631 ], [ 4957675.409152334555984, 3905562.748193158302456 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957534.025376015342772, 3901938.725770074408501 ], [ 4957549.609970931895077, 3901913.985938562545925 ], [ 4957567.449758742004633, 3901925.29808693472296 ], [ 4957551.577169761992991, 3901950.037519278470427 ], [ 4957534.025376015342772, 3901938.725770074408501 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957464.034433554857969, 3901732.897623696364462 ], [ 4957422.830311635509133, 3901749.228005869314075 ], [ 4957405.034433252178133, 3901705.144269679673016 ], [ 4957446.238611835055053, 3901688.81386065389961 ], [ 4957464.034433554857969, 3901732.897623696364462 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953387.753174252808094, 3895565.182088398840278 ], [ 4953388.286181174218655, 3895601.231505664531142 ], [ 4953364.377414392307401, 3895601.567061150912195 ], [ 4953363.844375416636467, 3895565.517644359730184 ], [ 4953387.753174252808094, 3895565.182088398840278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957377.523750740103424, 3892602.962167267221957 ], [ 4957391.895658837631345, 3892627.01396685000509 ], [ 4957395.932262652553618, 3892624.470494031440467 ], [ 4957410.303652974776924, 3892648.886431636754423 ], [ 4957365.038784327916801, 3892675.406970323994756 ], [ 4957336.583030390553176, 3892627.30379321007058 ], [ 4957377.523750740103424, 3892602.962167267221957 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953070.670350364409387, 3893564.645002520177513 ], [ 4953079.384998448193073, 3893503.481706101913005 ], [ 4953130.941727741621435, 3893510.825370087753981 ], [ 4953126.585636570118368, 3893540.314625029452145 ], [ 4953154.236445523798466, 3893543.988712114281952 ], [ 4953149.877741641364992, 3893575.662732715252787 ], [ 4953070.670350364409387, 3893564.645002520177513 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4957114.066050373017788, 3897680.025037470273674 ], [ 4957118.688134324736893, 3897669.835575990844518 ], [ 4957105.447010571137071, 3897663.627706650178879 ], [ 4957120.466850963421166, 3897631.968471238389611 ], [ 4957154.721070748753846, 3897648.035907431971282 ], [ 4957134.791078867390752, 3897689.884197399951518 ], [ 4957114.066050373017788, 3897680.025037470273674 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956940.881127878092229, 3899908.269170823972672 ], [ 4956914.623777136206627, 3899945.011455002240837 ], [ 4956883.548615991137922, 3899922.75830218847841 ], [ 4956909.805945874191821, 3899886.015988139435649 ], [ 4956940.881127878092229, 3899908.269170823972672 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4956850.252949591726065, 3905706.930738822091371 ], [ 4956871.872394794598222, 3905689.116952998097986 ], [ 4956895.445651151239872, 3905717.914590904023498 ], [ 4956873.826696141622961, 3905735.364227345678955 ], [ 4956850.252949591726065, 3905706.930738822091371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952347.308956793509424, 3893072.224930156953633 ], [ 4952341.784494705498219, 3893116.278094192035496 ], [ 4952323.061896750703454, 3893114.071676412597299 ], [ 4952321.607614577747881, 3893126.086237661074847 ], [ 4952302.885021819733083, 3893123.879833917599171 ], [ 4952304.62863645516336, 3893110.773220258299261 ], [ 4952292.819084338843822, 3893109.303067043423653 ], [ 4952295.143478432670236, 3893092.191709548700601 ], [ 4952273.828568213619292, 3893089.618204144760966 ], [ 4952277.028116061352193, 3893063.040513267274946 ], [ 4952347.308956793509424, 3893072.224930156953633 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955572.2753911241889, 3905093.527472932357341 ], [ 4955547.487948078662157, 3905112.066516188904643 ], [ 4955520.179574293084443, 3905075.254423833917826 ], [ 4955544.967032354325056, 3905056.715355815831572 ], [ 4955572.2753911241889, 3905093.527472932357341 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951769.058699738234282, 3891361.251422458793968 ], [ 4951817.204535865224898, 3891331.811736452393234 ], [ 4951842.223066287115216, 3891372.258418889716268 ], [ 4951832.420709777623415, 3891378.437445867341012 ], [ 4951844.786109765991569, 3891398.478563911281526 ], [ 4951823.452008468098938, 3891411.562909451778978 ], [ 4951796.708624829538167, 3891367.837130246683955 ], [ 4951779.698878249153495, 3891378.377526613883674 ], [ 4951769.058699738234282, 3891361.251422458793968 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951750.732080203481019, 3892024.672273654956371 ], [ 4951757.6747627845034, 3891999.555297901388258 ], [ 4951792.235315346159041, 3892008.697745062410831 ], [ 4951785.292189243249595, 3892034.178839866071939 ], [ 4951750.732080203481019, 3892024.672273654956371 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951681.616237984038889, 3893019.756900838576257 ], [ 4951758.236800954677165, 3893027.490440143272281 ], [ 4951754.741005886346102, 3893061.714554553851485 ], [ 4951678.120539483614266, 3893053.981025058310479 ], [ 4951681.616237984038889, 3893019.756900838576257 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955428.737191762775183, 3901126.868104140274227 ], [ 4955422.929643834941089, 3901164.366143321152776 ], [ 4955348.35481162648648, 3901152.255123355425894 ], [ 4955356.193458737805486, 3901102.743345253635198 ], [ 4955380.955790493637323, 3901106.780214127618819 ], [ 4955379.212572109885514, 3901118.794301068875939 ], [ 4955428.737191762775183, 3901126.868104140274227 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951551.458970348350704, 3889136.547772396821529 ], [ 4951555.187312354333699, 3889151.845337649807334 ], [ 4951571.61515392549336, 3889147.494325974956155 ], [ 4951578.21360538341105, 3889172.626579307951033 ], [ 4951559.768520413897932, 3889177.3394406712614 ], [ 4951566.653454068116844, 3889203.928525387775153 ], [ 4951541.291444931179285, 3889210.454239947255701 ], [ 4951534.119597289711237, 3889182.772455378901213 ], [ 4951509.334227718412876, 3889188.934721798170358 ], [ 4951499.293828506954014, 3889149.961760127916932 ], [ 4951551.458970348350704, 3889136.547772396821529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955043.407068338245153, 3892416.406147112604231 ], [ 4955071.371138480491936, 3892400.783788861241192 ], [ 4955082.581766907125711, 3892420.460830230731517 ], [ 4955054.61771067045629, 3892436.083177010063082 ], [ 4955043.407068338245153, 3892416.406147112604231 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951132.99282855540514, 3891830.626438512466848 ], [ 4951182.52651172876358, 3891847.067312570288777 ], [ 4951185.127857623621821, 3891839.423515419475734 ], [ 4951203.558880978263915, 3891845.634224023204297 ], [ 4951200.090413920581341, 3891855.825951281934977 ], [ 4951211.321550874039531, 3891859.843875990249217 ], [ 4951196.290865061804652, 3891904.614906834904104 ], [ 4951139.55742584913969, 3891885.981231850106269 ], [ 4951146.494308938272297, 3891865.597761869430542 ], [ 4951124.03161256480962, 3891857.926099088508636 ], [ 4951132.99282855540514, 3891830.626438512466848 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4955017.39327126275748, 3892714.230552665423602 ], [ 4955027.154243594035506, 3892741.188324078917503 ], [ 4954999.486406333744526, 3892750.620918100699782 ], [ 4954990.013492747209966, 3892723.663518126122653 ], [ 4955017.39327126275748, 3892714.230552665423602 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951046.712411927990615, 3894296.773124468978494 ], [ 4951053.876118785701692, 3894331.009171298705041 ], [ 4951010.368105140514672, 3894340.064190532080829 ], [ 4951003.492814406752586, 3894305.464345612563193 ], [ 4951046.712411927990615, 3894296.773124468978494 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950918.937095688655972, 3892877.25841597141698 ], [ 4950922.72555838432163, 3892837.936722183600068 ], [ 4950955.851344290189445, 3892841.250460461247712 ], [ 4950954.977443000301719, 3892849.98857812024653 ], [ 4950964.771414890885353, 3892850.727658418472856 ], [ 4950960.110198258422315, 3892897.69508019881323 ], [ 4950928.712567631155252, 3892894.747372717130929 ], [ 4950930.459144840016961, 3892878.363519398961216 ], [ 4950918.937095688655972, 3892877.25841597141698 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954510.261327908374369, 3904902.115531418472528 ], [ 4954505.697347946465015, 3904867.153293253388256 ], [ 4954574.241426893509924, 3904858.134928901679814 ], [ 4954583.08440912142396, 3904925.510158323682845 ], [ 4954544.492488147690892, 3904930.560151517856866 ], [ 4954540.213352556340396, 3904898.147177753970027 ], [ 4954510.261327908374369, 3904902.115531418472528 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950454.047059277072549, 3892278.850549423601478 ], [ 4950443.933935943059623, 3892306.513319987338036 ], [ 4950404.769436645321548, 3892292.269814666826278 ], [ 4950418.350641881115735, 3892254.415198616683483 ], [ 4950437.645030399784446, 3892261.354577149264514 ], [ 4950433.88881921581924, 3892271.546092958655208 ], [ 4950454.047059277072549, 3892278.850549423601478 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954242.075182490982115, 3893018.407618748955429 ], [ 4954207.776269043795764, 3893032.566562842577696 ], [ 4954194.850610344670713, 3893001.599792808759958 ], [ 4954242.407948467880487, 3892981.995171786285937 ], [ 4954252.174069588072598, 3893005.311385967768729 ], [ 4954238.915687061846256, 3893010.757041922770441 ], [ 4954242.075182490982115, 3893018.407618748955429 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4954148.313561766408384, 3900660.275927281007171 ], [ 4954152.698614522814751, 3900607.118286269716918 ], [ 4954172.568284146487713, 3900608.963269401807338 ], [ 4954171.690461568534374, 3900620.250230143778026 ], [ 4954185.801044878549874, 3900621.359908861573786 ], [ 4954186.677980874665082, 3900610.801207867451012 ], [ 4954212.307615259662271, 3900612.653279760386795 ], [ 4954208.211336445994675, 3900665.083005071617663 ], [ 4954148.313561766408384, 3900660.275927281007171 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950019.297506296075881, 3890686.41346321022138 ], [ 4950027.051004712469876, 3890710.09008095273748 ], [ 4949978.344207759015262, 3890726.059625403489918 ], [ 4949970.59067109785974, 3890702.383021493908018 ], [ 4950019.297506296075881, 3890686.41346321022138 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949735.932654712349176, 3894913.2788395434618 ], [ 4949703.657650507986546, 3894924.896783023606986 ], [ 4949681.541002849116921, 3894864.427987155970186 ], [ 4949713.816070010885596, 3894852.810017544776201 ], [ 4949735.932654712349176, 3894913.2788395434618 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953483.115148548036814, 3898433.907662247307599 ], [ 4953465.482970789074898, 3898486.321202092804015 ], [ 4953436.980201726779342, 3898476.81968240160495 ], [ 4953452.010098990052938, 3898432.777989669702947 ], [ 4953467.845190178602934, 3898437.894781500101089 ], [ 4953470.735011091455817, 3898429.887391947209835 ], [ 4953483.115148548036814, 3898433.907662247307599 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "9/24/2019-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953437.513871922157705, 3894903.983329694718122 ], [ 4953517.309020378626883, 3894901.894217553082854 ], [ 4953518.420609983615577, 3894935.75954427337274 ], [ 4953460.806564222089946, 3894937.511092830915004 ], [ 4953460.812236213125288, 3894932.777423239313066 ], [ 4953438.342734687961638, 3894933.478767062071711 ], [ 4953437.513871922157705, 3894903.983329694718122 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4953428.054263752885163, 3893661.928621790837497 ], [ 4953412.462601535953581, 3893691.768515991047025 ], [ 4953339.624989120289683, 3893654.176219745539129 ], [ 4953354.63957570400089, 3893625.063852209597826 ], [ 4953378.534869220107794, 3893637.472773860674351 ], [ 4953378.823812805116177, 3893636.744861831422895 ], [ 4953428.054263752885163, 3893661.928621790837497 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949090.708078395575285, 3895719.148533439263701 ], [ 4949100.166979653760791, 3895764.310335190035403 ], [ 4949097.286098020151258, 3895764.671479696873575 ], [ 4949103.87767812050879, 3895797.085796182509512 ], [ 4949081.116442982107401, 3895802.16002809163183 ], [ 4949076.243715790100396, 3895778.850723050534725 ], [ 4949066.448122066445649, 3895780.661230247002095 ], [ 4949055.26990492362529, 3895726.758564096875489 ], [ 4949090.708078395575285, 3895719.148533439263701 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4952604.129935935139656, 3891221.294713770970702 ], [ 4952660.640330323018134, 3891184.583732313010842 ], [ 4952669.267996926791966, 3891197.70242658443749 ], [ 4952659.753485761582851, 3891203.881487967912108 ], [ 4952675.858530923724174, 3891228.296893804334104 ], [ 4952628.862687717191875, 3891258.828768301289529 ], [ 4952604.129935935139656, 3891221.294713770970702 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4948746.810815843753517, 3890895.912088610231876 ], [ 4948811.635769456624985, 3890894.157823840621859 ], [ 4948813.8603295693174, 3890972.447631816845387 ], [ 4948749.035564557649195, 3890974.201891308184713 ], [ 4948746.810815843753517, 3890895.912088610231876 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951731.776036118157208, 3891465.34978613210842 ], [ 4951751.667501343414187, 3891454.084371761418879 ], [ 4951763.456733735278249, 3891474.124799599405378 ], [ 4951743.565278369002044, 3891485.390205373521894 ], [ 4951731.776036118157208, 3891465.34978613210842 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951502.514337435364723, 3896784.647758957929909 ], [ 4951537.942376406863332, 3896785.415913540869951 ], [ 4951536.122239721938968, 3896866.978832634631544 ], [ 4951505.879003629088402, 3896866.216515722684562 ], [ 4951506.478853041306138, 3896845.097689417656511 ], [ 4951501.006524476222694, 3896844.727400979492813 ], [ 4951502.514337435364723, 3896784.647758957929909 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951452.625859469175339, 3900168.08470168383792 ], [ 4951438.233058661222458, 3900161.514190830755979 ], [ 4951433.036731202155352, 3900172.432256409432739 ], [ 4951418.068738823756576, 3900165.132850303780288 ], [ 4951435.100600613281131, 3900129.831358368508518 ], [ 4951464.461419054307044, 3900143.701290898025036 ], [ 4951452.625859469175339, 3900168.08470168383792 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951428.186927649192512, 3893973.852324036415666 ], [ 4951470.540121621452272, 3893967.709713663440198 ], [ 4951474.829643869772553, 3893995.752447412814945 ], [ 4951432.476084252819419, 3894002.259179396554828 ], [ 4951428.186927649192512, 3893973.852324036415666 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947644.235270337201655, 3891488.699967693071812 ], [ 4947608.798002582974732, 3891490.121713977307081 ], [ 4947607.392861747182906, 3891454.071651315316558 ], [ 4947596.444476183503866, 3891454.789176529273391 ], [ 4947595.322418521158397, 3891423.83718636399135 ], [ 4947622.116506676189601, 3891422.771070938091725 ], [ 4947623.529844903387129, 3891450.446194812189788 ], [ 4947642.544939892366529, 3891449.7365981801413 ], [ 4947644.235270337201655, 3891488.699967693071812 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4951198.44560862146318, 3897469.234645930118859 ], [ 4951256.943781215697527, 3897444.539083040785044 ], [ 4951279.639357525855303, 3897497.363201191648841 ], [ 4951221.42890446819365, 3897522.423165643587708 ], [ 4951198.44560862146318, 3897469.234645930118859 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950994.324631103314459, 3891135.716095778625458 ], [ 4950994.629650577902794, 3891120.42305274028331 ], [ 4951024.015064937062562, 3891121.183834847062826 ], [ 4951023.709625517018139, 3891136.841005211230367 ], [ 4950994.324631103314459, 3891135.716095778625458 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946769.416630888357759, 3889529.939552217721939 ], [ 4946795.92687723506242, 3889526.323449468705803 ], [ 4946799.074715316295624, 3889548.902358728926629 ], [ 4946772.564490799792111, 3889552.518458434380591 ], [ 4946769.416630888357759, 3889529.939552217721939 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950653.534861190244555, 3894529.746764314360917 ], [ 4950728.152136275544763, 3894521.817648438271135 ], [ 4950734.71010816283524, 3894583.362612664699554 ], [ 4950703.307640024460852, 3894586.605348318815231 ], [ 4950701.30875120870769, 3894570.581489616539329 ], [ 4950681.141534279100597, 3894573.108304688706994 ], [ 4950680.570191569626331, 3894568.738133195787668 ], [ 4950658.098469414748251, 3894571.262442710343748 ], [ 4950653.534861190244555, 3894529.746764314360917 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950545.289549720473588, 3892353.596129856538028 ], [ 4950563.430295610800385, 3892361.626727200578898 ], [ 4950552.45640267804265, 3892386.011364548001438 ], [ 4950534.315669988282025, 3892377.980774498544633 ], [ 4950545.289549720473588, 3892353.596129856538028 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950281.320838958024979, 3893228.674578204285353 ], [ 4950388.176321496255696, 3893248.453123008832335 ], [ 4950370.500655340962112, 3893343.471524257212877 ], [ 4950263.645537693053484, 3893323.693048618733883 ], [ 4950281.320838958024979, 3893228.674578204285353 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950180.813088436610997, 3891860.899980189278722 ], [ 4950188.904756283387542, 3891837.604480913374573 ], [ 4950227.783117501996458, 3891850.754974029492587 ], [ 4950219.691419888287783, 3891874.050461777951568 ], [ 4950180.813088436610997, 3891860.899980189278722 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4950059.570215649902821, 3890206.535948932636529 ], [ 4950071.341741270385683, 3890244.781994666904211 ], [ 4950040.21576826646924, 3890254.21597280073911 ], [ 4950028.444202539511025, 3890215.969940498005599 ], [ 4950059.570215649902821, 3890206.535948932636529 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949852.832651779055595, 3890359.248945415951312 ], [ 4949808.736214868724346, 3890374.13131568254903 ], [ 4949815.629534101113677, 3890394.165674876887351 ], [ 4949789.978646825067699, 3890402.877504913136363 ], [ 4949782.511413019150496, 3890380.657775570172817 ], [ 4949805.280076625756919, 3890373.03526104753837 ], [ 4949796.376557500101626, 3890346.808595666196197 ], [ 4949808.769477243535221, 3890342.816349253524095 ], [ 4949801.589577596634626, 3890321.325176421552896 ], [ 4949835.886909323744476, 3890309.709525911603123 ], [ 4949852.832651779055595, 3890359.248945415951312 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949616.689868037588894, 3893808.02192154712975 ], [ 4949610.846233384683728, 3893885.939290026202798 ], [ 4949574.840097662992775, 3893883.352428212296218 ], [ 4949580.395940787158906, 3893805.07062020059675 ], [ 4949616.689868037588894, 3893808.02192154712975 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4949139.329739977605641, 3894665.409769805148244 ], [ 4949143.669564535841346, 3894647.207831052131951 ], [ 4949168.72532195597887, 3894652.695773432031274 ], [ 4949164.385481307283044, 3894670.897708198055625 ], [ 4949139.329739977605641, 3894665.409769805148244 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4945067.011507419869304, 3891389.799425558187068 ], [ 4945060.044931115582585, 3891448.782005512155592 ], [ 4945014.242063958197832, 3891443.643687966745347 ], [ 4945018.016936723142862, 3891410.147240533027798 ], [ 4945027.811272009275854, 3891411.248285156674683 ], [ 4945030.714788161218166, 3891385.761887279804796 ], [ 4945067.011507419869304, 3891389.799425558187068 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944432.584093629382551, 3890764.037103212438524 ], [ 4944491.633142461068928, 3890778.289072670042515 ], [ 4944481.80300108063966, 3890818.334651567973197 ], [ 4944422.754348878748715, 3890803.718575688544661 ], [ 4944432.584093629382551, 3890764.037103212438524 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944415.221201588399708, 3890518.599921157583594 ], [ 4944405.974505112506449, 3890550.271082761697471 ], [ 4944339.150725923478603, 3890530.550707592628896 ], [ 4944348.397350405342877, 3890498.879523369017988 ], [ 4944415.221201588399708, 3890518.599921157583594 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944064.445099292322993, 3890355.898953469935805 ], [ 4944056.330807481892407, 3890411.603631906211376 ], [ 4944007.070229447446764, 3890404.643462866079062 ], [ 4944011.99611555878073, 3890371.511997369583696 ], [ 4944020.638128912076354, 3890372.975826415233314 ], [ 4944023.826750129461288, 3890350.038472249172628 ], [ 4944064.445099292322993, 3890355.898953469935805 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943924.78751577064395, 3890608.485559090971947 ], [ 4943911.490766085684299, 3890660.544639742001891 ], [ 4943812.115579057484865, 3890635.336238074116409 ], [ 4943825.412148672156036, 3890583.277109025977552 ], [ 4943924.78751577064395, 3890608.485559090971947 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943453.333416767418385, 3889698.500835016835481 ], [ 4943452.734333826228976, 3889726.174046401400119 ], [ 4943462.242133603431284, 3889726.181899325922132 ], [ 4943461.935969866812229, 3889748.029309425037354 ], [ 4943416.990644187666476, 3889747.263961701653898 ], [ 4943417.299773459322751, 3889721.775276449508965 ], [ 4943406.063280970789492, 3889721.766014861408621 ], [ 4943406.659615424461663, 3889697.369949645362794 ], [ 4943453.333416767418385, 3889698.500835016835481 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943396.369991132058203, 3893094.676326683256775 ], [ 4943380.808027242310345, 3893101.581951715052128 ], [ 4943365.567698990926147, 3893067.705466929357499 ], [ 4943419.746432724408805, 3893043.717614964582026 ], [ 4943439.012302197515965, 3893086.700662842486054 ], [ 4943400.395597458817065, 3893103.782853834796697 ], [ 4943396.369991132058203, 3893094.676326683256775 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4947128.759545111097395, 3890365.228068645112216 ], [ 4947169.973774997517467, 3890349.974397927988321 ], [ 4947185.779346640221775, 3890391.864347721915692 ], [ 4947144.56482124235481, 3890407.482122142799199 ], [ 4947128.759545111097395, 3890365.228068645112216 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943190.452193581499159, 3889492.188766092527658 ], [ 4943157.866120002232492, 3889527.482579000294209 ], [ 4943135.121749088168144, 3889506.708779564127326 ], [ 4943167.995935793034732, 3889471.41517437947914 ], [ 4943190.452193581499159, 3889492.188766092527658 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4946893.046728998422623, 3891011.329350591171533 ], [ 4946823.888198656029999, 3891026.192727506160736 ], [ 4946817.289572066627443, 3890997.056209745816886 ], [ 4946855.615051129832864, 3890988.717738138511777 ], [ 4946852.746864597313106, 3890975.242269999813288 ], [ 4946867.443176878616214, 3890971.979116666130722 ], [ 4946869.737928909249604, 3890982.541015765629709 ], [ 4946885.87509505264461, 3890978.915117499418557 ], [ 4946893.046728998422623, 3891011.329350591171533 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944468.457587436772883, 3891592.82345880754292 ], [ 4944469.922592771239579, 3891564.422730979975313 ], [ 4944458.97559446003288, 3891563.685022504068911 ], [ 4944459.854655073024333, 3891546.571760154794902 ], [ 4944473.6826166305691, 3891547.311957386787981 ], [ 4944474.269816818647087, 3891534.567980831023306 ], [ 4944512.296882718801498, 3891536.421496793162078 ], [ 4944510.250599806196988, 3891570.647768809460104 ], [ 4944526.959186085499823, 3891571.754613936878741 ], [ 4944525.49790371209383, 3891595.78580460511148 ], [ 4944468.457587436772883, 3891592.82345880754292 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4944319.293040448799729, 3891512.586869340855628 ], [ 4944351.567301772534847, 3891503.875507388729602 ], [ 4944372.819081851281226, 3891582.181319588795304 ], [ 4944340.256812419742346, 3891590.892408985644579 ], [ 4944319.293040448799729, 3891512.586869340855628 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943910.417905366048217, 3891591.619067857973278 ], [ 4943993.096902499906719, 3891596.78667451441288 ], [ 4943991.052825032733381, 3891629.192347947042435 ], [ 4943908.373927177861333, 3891624.024747480172664 ], [ 4943910.417905366048217, 3891591.619067857973278 ] ] ] } }, +{ "type": "Feature", "properties": { "release": 2, "capture_dates_range": "3/30/2020-4/3/2020" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4943206.141626117751002, 3892506.817120047751814 ], [ 4943172.118457195349038, 3892542.473929050378501 ], [ 4943135.847615329548717, 3892508.216317304875702 ], [ 4943177.655627503991127, 3892464.554989087861031 ], [ 4943203.275639520958066, 3892488.608364772982895 ], [ 4943195.490493499673903, 3892496.976959547493607 ], [ 4943206.141626117751002, 3892506.817120047751814 ] ] ] } } +] +} diff --git a/examples/model_development.py b/examples/model_development.py new file mode 100644 index 000000000..ba7fa1eb4 --- /dev/null +++ b/examples/model_development.py @@ -0,0 +1,204 @@ +import geopandas as gpd +import matplotlib.pylab as plt +import wntr + +plt.close('all') + +crs = "EPSG:3089" # ft + +hidden=True +distance_threshold = 100.0 + +### Create a model from geospatial data ### + +if hidden: + # TODO, hide in the notebook or check in the geojson files + wn0 = wntr.network.WaterNetworkModel("networks/ky4.inp") + wn0.options.time.duration = 24*3600 + sim = wntr.sim.EpanetSimulator(wn0) + results0 = sim.run_sim() + pressure0 = results0.node['pressure'].loc[24*3600, :] + wntr.graphics.plot_network(wn0, node_attribute=pressure0, + node_size=30, title='Pressure') + wntr.network.io.write_geojson(wn0, 'data/ky4', crs=crs) + + # junctions should have base demand (see PR) + aed0 = wntr.metrics.average_expected_demand(wn0) + print(aed0) + for name, control in wn0.controls(): + print(name, control) + for name, pattern in wn0.patterns(): + print(name, pattern.multipliers) + + +# Option 1, direct from GeoJSON files +geojson_files = {'junctions': 'data/ky4_junctions.geojson', + 'tanks': 'data/ky4_tanks.geojson', + 'reservoirs': 'data/ky4_reservoirs.geojson', + 'pipes': 'data/ky4_pipes.geojson', + 'pumps': 'data/ky4_pumps.geojson'} +wn = wntr.network.read_geojson(geojson_files) + +# Option 2, from GeoDataFrames +junctions = gpd.read_file("data/ky4_junctions.geojson", crs=crs) +tanks = gpd.read_file("data/ky4_tanks.geojson", crs=crs) +reservoirs = gpd.read_file("data/ky4_reservoirs.geojson", crs=crs) +pipes = gpd.read_file("data/ky4_pipes.geojson", crs=crs) +pumps = gpd.read_file("data/ky4_pumps.geojson", crs=crs) + +junctions.set_index('name', inplace=True) +tanks.set_index('name', inplace=True) +reservoirs.set_index('name', inplace=True) +pipes.set_index('name', inplace=True) +pumps.set_index('name', inplace=True) + +gis_data = wntr.gis.WaterNetworkGIS({'junctions': junctions, + 'tanks': tanks, + 'reservoirs': reservoirs, + 'pipes': pipes, + 'pumps': pumps}) +wn = wntr.network.from_gis(gis_data) + +# Add initial status +pump = wn.get_link('~@Pump-1') +pump.initial_status = 'Closed' + +# Add controls +if hidden: + inpfile_units = wn.options.hydraulic.inpfile_units + flow_units = wntr.epanet.util.FlowUnits[inpfile_units] + line = 'LINK ~@Pump-1 OPEN IF NODE T-3 BELOW 90.75' + control = wntr.epanet.io._read_control_line(line, wn, flow_units, 'Pump1_open') + print(control) + line = 'LINK ~@Pump-1 CLOSED IF NODE T-3 ABOVE 105.75' + control = wntr.epanet.io._read_control_line(line, wn, flow_units, 'Pump1_open') + print(control) + +line = 'LINK ~@Pump-1 OPEN IF NODE T-3 BELOW 27.6606' +wn.add_control('Pump1_open', line) +line = 'LINK ~@Pump-1 CLOSED IF NODE T-3 ABOVE 32.2326' +wn.add_control('Pump1_closed', line) + +# Add patterns +multipliers = [0.33, 0.25, 0.209, 0.209, 0.259, 0.36, + 0.529, 0.91, 1.2, 1.299, 1.34, 1.34, + 1.32, 1.269, 1.25, 1.25, 1.279, 1.37, + 1.519, 1.7, 1.75, 1.669, 0.899, 0.479] +default_pattern_name = wn.options.hydraulic.pattern +wn.add_pattern(default_pattern_name, multipliers) + +aed = wntr.metrics.average_expected_demand(wn) +print(aed) + +# Run simulation, plot_results +# TODO, this shoudl be 24, but the simulation doesn't run to completion, due to demands? +wn.options.time.duration = 0 #24*3600 +sim = wntr.sim.EpanetSimulator(wn) +results = sim.run_sim() +pressure = results.node['pressure'].loc[0, :] +wntr.graphics.plot_network(wn, node_attribute=pressure, + node_size=30, title='Pressure') + + + +### Create a model from imperfect geospatial data ### + +# Load pipe data +# Missing junctions (no start and end node names or locations) +# Pipe endpoints are not aligned +if hidden: + diconnected_pipes = gpd.read_file("data/ky4_pipes_broken.geojson") + #pipes.set_index('index', inplace=True) + #del pipes['start_node'] + #del pipes['end_node_n'] + pipesA, junctionsA = wntr.gis.geospatial.reconnect_network(diconnected_pipes, distance_threshold) + + fig, ax = plt.subplots() + diconnected_pipes.plot(color='b', linewidth=4, ax=ax) + pipesA.plot(color='r', linewidth=2, ax=ax) + junctionsA.plot(color='k', ax=ax) + +# TODO, recreate this file using complete column names and no start or end node names +# TODO rename the file 'ky4_diconnected_pipes.geojson' +# TODO rename 'index' to 'name' +# TODO same crs as above +diconnected_pipes = gpd.read_file("data/ky4_pipes_broken.geojson", crs=crs) +if hidden: + diconnected_pipes.set_index('index', inplace=True) + del diconnected_pipes['start_node'] + del diconnected_pipes['end_node_n'] +pipes, junctions = wntr.gis.geospatial.connect_lines(diconnected_pipes, distance_threshold) + +fig, ax = plt.subplots() +diconnected_pipes.plot(color='b', linewidth=4, ax=ax) +pipes.plot(color='r', linewidth=2, ax=ax) +junctions.plot(color='k', ax=ax) + +# The following lines should not be needed, see PR +junctions['node_type'] = 'Junction' +pipes['link_type'] = 'Pipe' + +# Assign elevation to junctions - using raster +# TODO +junctions['elevation'] = 100 + +# Load reservoir - complete dataset, location and head +reservoirs = gpd.read_file("data/ky4_reservoirs.geojson", crs=crs) +reservoirs.set_index('name', inplace=True) +# TODO snap reservoirs to nearest junction +#snap_reservoirs = wntr.gis.snap(reservoirs, junctions, distance_threshold) + +# Load tank data - complete dataset, location, min/max level, diameter +tanks = gpd.read_file("data/ky4_tanks.geojson", crs=crs) +tanks.set_index('name', inplace=True) +# TODO snap tanks to nearest junction + +# Load pump data - location, settings, start, end node) +pumps = gpd.read_file("data/ky4_pumps.geojson", crs=crs) +pumps.set_index('name', inplace=True) +# TODO snap end points to nearest junction, add pump and close bipass? + + + +# build the wn_gis object +# TODO, add back in tanks, reservoirs, and pumps +gis_data = wntr.gis.WaterNetworkGIS({'junctions': junctions, + #'tanks': tanks, + #'reservoirs': reservoirs, + 'pipes': pipes, + #'pumps': pumps + }) +wn = wntr.network.from_gis(gis_data) # TODO this won't work until PR 452 is merged + +# Add controls, initial status, and pattern (same code as above) + +# Add demands, estimated from building size +buildings = gpd.read_file("data/ky4_buildings.geojson", crs=crs) +buildings['area'] = buildings.area +buildings['base_demand'] = buildings['area']/0.00001 + +buildings.geometry = buildings.geometry.centroid +snap_buildings = wntr.gis.snap(buildings, junctions, distance_threshold) +buildings['junction'] = snap_buildings['node'] + +category = None +pattern_name = '1' +for i, row in buildings.iterrows(): + junction_name = buildings.loc[i, 'junction'] + if junction_name is None: + continue + base_demand = buildings.loc[i, 'base_demand'] + junction = wn.get_node(junction_name) + junction.demand_timeseries_list.append((base_demand, pattern_name, category)) + +# Run simulation, plot_results +wn.options.time.duration = 24*3600 +sim = wntr.sim.EpanetSimulator(wn) +results = sim.run_sim() +pressure = results.node['pressure'].loc[24*3600, :] +wntr.graphics.plot_network(wn, node_attribute=pressure, + node_size=30, title='Pressure') + + + + diff --git a/examples/networks/ky4.inp b/examples/networks/ky4.inp new file mode 100644 index 000000000..16276261d --- /dev/null +++ b/examples/networks/ky4.inp @@ -0,0 +1,6035 @@ +[TITLE] + + +[JUNCTIONS] +;ID Elev Demand Pattern + J-1 611.3897 2.49 1 ; + J-10 545.9175 1.64 1 ; + J-100 705.7985 1.18 1 ; + J-101 640.0722 0.25 1 ; + J-102 702.97 0.12 1 ; + J-103 705.2352 0.71 1 ; + J-104 646.3833 0.75 1 ; + J-105 668.9732 0.14 1 ; + J-106 699.173 0.96 1 ; + J-107 647.2618 0.35 1 ; + J-108 690.9811 0.95 1 ; + J-109 701 1.16 1 ; + J-11 637.2947 5.99 1 ; + J-110 670.4779 0.53 1 ; + J-111 573.2955 2.36 1 ; + J-112 689.9996 1.67 1 ; + J-113 703.3193 0.76 1 ; + J-114 582.1908 0.47 1 ; + J-115 627.2476 0.1 1 ; + J-116 661.1915 0.78 1 ; + J-117 651.1648 0.31 1 ; + J-118 624.8696 0.78 1 ; + J-119 612.3486 0.31 1 ; + J-12 593.7883 0.29 1 ; + J-120 653.7983 0.7 1 ; + J-121 648.329 0.09 1 ; + J-122 648.2589 0.66 1 ; + J-123 662.4215 1.12 1 ; + J-124 661.3864 0.48 1 ; + J-125 688.9498 1.36 1 ; + J-126 654.0396 0.63 1 ; + J-127 588.2053 1.23 1 ; + J-128 667.5834 0.47 1 ; + J-129 642.8438 0.27 1 ; + J-13 670.2325 0.43 1 ; + J-130 673.0019 0.57 1 ; + J-131 672.274 0.48 1 ; + J-132 671.2997 0.37 1 ; + J-133 703.3038 0.36 1 ; + J-134 670.3339 0.69 1 ; + J-135 561.1207 5.37 1 ; + J-136 680.8624 0.8 1 ; + J-137 681.1472 1.11 1 ; + J-138 671.3608 0.93 1 ; + J-14 673.0455 0.24 1 ; + J-140 669.1882 0.94 1 ; + J-141 681.6787 0.76 1 ; + J-142 679.1291 0.8 1 ; + J-143 683 0.5 1 ; + J-144 667.4946 0.47 1 ; + J-145 655.6299 1.3 1 ; + J-146 664.2756 0.88 1 ; + J-147 653.7028 1.08 1 ; + J-148 599.9139 1.43 1 ; + J-149 586.0212 0.55 1 ; + J-15 661.9545 2.3 1 ; + J-150 663.2162 0.06 1 ; + J-151 670.0553 0.69 1 ; + J-152 658.956 1.26 1 ; + J-153 675.3078 1.03 1 ; + J-154 661.5909 0.38 1 ; + J-155 598.4144 2.45 1 ; + J-156 622.5045 1.39 1 ; + J-157 613.1131 1.48 1 ; + J-158 599.1604 1.12 1 ; + J-159 651.9081 0.58 1 ; + J-16 669.4413 1.96 1 ; + J-160 659.7002 0.53 1 ; + J-161 672.8035 0.76 1 ; + J-162 671.9999 0.91 1 ; + J-163 677.1188 0.8 1 ; + J-164 660.3669 0.75 1 ; + J-165 670.9658 0.47 1 ; + J-166 651.364 2.77 1 ; + J-167 651.1495 1.62 1 ; + J-168 683.8399 1.6 1 ; + J-169 582.1436 0.95 1 ; + J-17 676.3677 2.24 1 ; + J-170 662.4749 1.38 1 ; + J-171 531.3535 1.43 1 ; + J-172 528.0164 1 1 ; + J-173 547.9309 1.99 1 ; + J-174 550.2088 0.41 1 ; + J-175 652.9064 0.11 1 ; + J-176 668.0862 0.71 1 ; + J-177 687.1208 0.47 1 ; + J-178 656.4954 0.62 1 ; + J-179 653.8172 0.39 1 ; + J-18 661.5563 0.7 1 ; + J-180 678.9312 0.09 1 ; + J-181 660.5959 0.73 1 ; + J-182 665.0781 0.44 1 ; + J-183 672.2737 1.16 1 ; + J-184 706.1798 0.24 1 ; + J-185 698.86 1.48 1 ; + J-186 604.281 1.19 1 ; + J-187 619.6113 2.12 1 ; + J-188 593.2393 1.67 1 ; + J-189 620.5963 0.79 1 ; + J-19 669.8918 1.12 1 ; + J-190 535.014 0.86 1 ; + J-191 672.9089 0.57 1 ; + J-192 698.6069 1.38 1 ; + J-194 684.614 1.16 1 ; + J-195 603.9262 0.17 1 ; + J-196 664.9097 1 1 ; + J-197 702.527 1.5 1 ; + J-198 654.2453 0.07 1 ; + J-199 561.3089 0.26 1 ; + J-2 644.8513 0.83 1 ; + J-20 641.9392 0.2 1 ; + J-200 586.3203 0.73 1 ; + J-201 560.7526 3.07 1 ; + J-202 540.9995 0.4 1 ; + J-203 529.6254 2.05 1 ; + J-204 623.8754 0.23 1 ; + J-205 608.3518 0.79 1 ; + J-206 701.861 2 1 ; + J-207 704.9999 1.68 1 ; + J-208 705.9305 1.03 1 ; + J-209 702.2105 0.61 1 ; + J-21 621.1598 0.91 1 ; + J-210 698.0419 0.54 1 ; + J-211 652.7701 0.54 1 ; + J-212 706.6829 0 ; + J-213 567.4011 0.28 1 ; + J-214 585.9201 0.94 1 ; + J-215 660.2689 0.81 1 ; + J-215a 593.4382 1.04 1 ; + J-216 687.7719 0 ; + J-217 720.2726 0 ; + J-218 580.5884 0.97 1 ; + J-219 659.6726 0.13 1 ; + J-22 567.7947 0.23 1 ; + J-220 589.2892 0.11 1 ; + J-221 659.2394 1.58 1 ; + J-222 652.6212 0.94 1 ; + J-223 635.125 2.55 1 ; + J-224 634.5322 2.9 1 ; + J-225 631.4617 0.13 1 ; + J-226 640.8549 0.82 1 ; + J-227 618.5958 0 ; + J-228 553.4232 0 ; + J-229 551.276 0 ; + J-23 640.7189 0.99 1 ; + J-230 553.4232 0 ; + J-231 638.4586 0.45 1 ; + J-232 643.9478 0 ; + J-233 666.3503 0 ; + J-234 681.5925 0.22 1 ; + J-235 711.9325 1.49 1 ; + J-236 620.9119 0.28 1 ; + J-237 655.5486 0 ; + J-238 587.78 0.34 1 ; + J-239 662.4548 0 ; + J-24 647.9995 0.52 1 ; + J-240 704.1571 0.23 1 ; + J-242 638.6282 0.14 1 ; + J-243 659.9285 0 ; + J-244 653.8528 0 ; + J-245 672.8326 0.17 1 ; + J-246 661.8329 0 ; + J-247 681.319 0.22 1 ; + J-248 653.826 0 ; + J-249 616.2586 4.45 1 ; + J-25 591.6583 1.39 1 ; + J-250 580.0739 1.02 1 ; + J-251 609.9346 2.32 1 ; + J-252 593.6077 1.35 1 ; + J-253 528.5584 0.31 1 ; + J-254 535.5576 4.09 1 ; + J-255 665.9338 2.69 1 ; + J-256 636.6573 1.92 1 ; + J-257 584.5164 3.1 1 ; + J-258 715.106 0.44 1 ; + J-259 708.9807 1.08 1 ; + J-26 652.4172 1.14 1 ; + J-260 651.6981 0.88 1 ; + J-261 639.2839 0.84 1 ; + J-262 693.4462 4.69 1 ; + J-263 596.951 0.83 1 ; + J-264 590.3044 1.42 1 ; + J-265 574.914 0.53 1 ; + J-266 601.3432 1.5 1 ; + J-267 589.557 1.27 1 ; + J-268 568.9 4.17 1 ; + J-269 670.6152 1.23 1 ; + J-27 635.7896 4.51 1 ; + J-270 684.4353 1.32 1 ; + J-271 567.2652 6.11 1 ; + J-272 605.6317 4.86 1 ; + J-273 675.95 0 ; + J-274 545.5644 0 ; + J-275 674.1492 0.81 1 ; + J-276 645.7823 1.98 1 ; + J-277 643.9767 2.59 1 ; + J-278 542.6953 0.95 1 ; + J-279 533.7531 0.22 1 ; + J-28 652.7073 1.78 1 ; + J-280 542.9407 0.28 1 ; + J-281 667.1216 0.95 1 ; + J-282 621.3289 1.1 1 ; + J-283 608.9711 0.88 1 ; + J-284 561.0002 2.2 1 ; + J-285 552.4173 0.62 1 ; + J-286 616.629 1.35 1 ; + J-287 615.5096 0.28 1 ; + J-288 631.3071 2.99 1 ; + J-289 630.3802 2.35 1 ; + J-29 651.8645 1.13 1 ; + J-290 642 4.44 1 ; + J-291 670.9255 0.5 1 ; + J-292 671.0214 0.85 1 ; + J-293 679.0461 1 1 ; + J-294 665.231 0.83 1 ; + J-295 603.6039 0.2 1 ; + J-296 618.0672 3.16 1 ; + J-297 683.1727 3.13 1 ; + J-298 673.8575 1.38 1 ; + J-299 683.208 0.41 1 ; + J-3 704.5603 0.98 1 ; + J-30 660.874 0.47 1 ; + J-300 674.1644 0.85 1 ; + J-301 652.5364 1.25 1 ; + J-302 667.8233 4.01 1 ; + J-303 643.1302 2.97 1 ; + J-304 561.838 1.17 1 ; + J-305 579.0892 0.45 1 ; + J-306 636.644 0.56 1 ; + J-307 594.6923 1.82 1 ; + J-308 662.5485 0.56 1 ; + J-309 667.735 0.63 1 ; + J-31 671.4662 1.42 1 ; + J-310 536.7413 2.62 1 ; + J-311 491.0113 1.32 1 ; + J-312 585.4805 0.34 1 ; + J-313 629.2569 1.82 1 ; + J-314 608.2317 1.18 1 ; + J-315 514.5867 3.33 1 ; + J-316 678.0001 1.02 1 ; + J-317 692.4381 1.53 1 ; + J-318 601.8991 1.54 1 ; + J-319 540.4709 1.21 1 ; + J-32 625.6386 0.34 1 ; + J-320 537.6797 0.24 1 ; + J-321 614.7097 2.94 1 ; + J-322 648.081 3.25 1 ; + J-323 635.24 1.86 1 ; + J-324 627.232 0.21 1 ; + J-325 585.8162 1.13 1 ; + J-326 639.5627 2.59 1 ; + J-327 638.1283 0.5 1 ; + J-328 640.6234 1.03 1 ; + J-329 668.1897 0.76 1 ; + J-33 585.1734 1.5 1 ; + J-330 583.6055 0.12 1 ; + J-331 627.3813 2.03 1 ; + J-332 605.5622 0.96 1 ; + J-333 548.2193 2.38 1 ; + J-334 552.8684 0.6 1 ; + J-335 584.4908 0.88 1 ; + J-336 581.1183 0.57 1 ; + J-337 559.8429 1.94 1 ; + J-338 551.3201 1.14 1 ; + J-339 670.7141 3.58 1 ; + J-34 639.8541 2.33 1 ; + J-340 701.0293 0.5 1 ; + J-341 703.9989 0.47 1 ; + J-342 588.3627 1.1 1 ; + J-343 564.8101 1.57 1 ; + J-344 698.4418 1.94 1 ; + J-345 697.1221 1.18 1 ; + J-346 667.8207 2.16 1 ; + J-347 685.0993 1.8 1 ; + J-348 611.2399 0.54 1 ; + J-349 640.983 0.6 1 ; + J-35 666.8081 0.39 1 ; + J-350 618.4811 3.26 1 ; + J-351 549.4897 2.4 1 ; + J-352 605.8963 1.27 1 ; + J-353 629.8826 1.2 1 ; + J-354 624.1177 0.54 1 ; + J-355 689.4954 0.25 1 ; + J-356 690.2985 0.08 1 ; + J-357 702.8609 0.56 1 ; + J-358 702.9841 0.16 1 ; + J-359 684.9272 1.88 1 ; + J-36 638.7365 0.67 1 ; + J-360 682.2211 0.04 1 ; + J-361 654.6603 1.75 1 ; + J-362 668.9615 0.94 1 ; + J-363 709.1883 0.09 1 ; + J-364 708.9263 0.86 1 ; + J-365 689.5886 0.94 1 ; + J-366 689.83 1.14 1 ; + J-367 612.7321 0.51 1 ; + J-368 604.8912 0.12 1 ; + J-369 583.7908 0.87 1 ; + J-37 689.8104 1.44 1 ; + J-370 599.817 0.76 1 ; + J-371 642.1349 0.68 1 ; + J-372 601.9686 0.38 1 ; + J-373 639.5333 0.37 1 ; + J-374 554.2187 2.13 1 ; + J-375 711.4459 0.72 1 ; + J-376 701.3586 1.94 1 ; + J-377 700.9207 0.4 1 ; + J-378 699.9644 1.84 1 ; + J-379 707.0911 1.31 1 ; + J-38 649.4333 0.52 1 ; + J-380 675.1678 0.68 1 ; + J-381 682.5584 7.52 1 ; + J-382 600.0197 2.36 1 ; + J-383 634.2656 1.38 1 ; + J-384 638.9119 0.27 1 ; + J-385 683.3463 0.92 1 ; + J-386 690.6075 0.9 1 ; + J-387 647.4901 3.77 1 ; + J-388 654.2389 2.58 1 ; + J-389 699 0.25 1 ; + J-39 659.2862 0.63 1 ; + J-390 639.7813 1.63 1 ; + J-391 688.5449 1.39 1 ; + J-392 691.7328 1.33 1 ; + J-393 685.8435 0.63 1 ; + J-394 608.2966 0.34 1 ; + J-395 622.4385 1.2 1 ; + J-396 635.9316 4.43 1 ; + J-397 636.1953 1.36 1 ; + J-398 638.8102 0.61 1 ; + J-399 632.8221 0.46 1 ; + J-4 703.7249 0.62 1 ; + J-40 640.0374 0.38 1 ; + J-400 706.5521 2.59 1 ; + J-401 669.3935 0.72 1 ; + J-402 688.6606 0.99 1 ; + J-403 637.0497 2.81 1 ; + J-404 663.7161 1.34 1 ; + J-405 641 2.95 1 ; + J-406 542.1808 2.73 1 ; + J-407 528.7239 1.14 1 ; + J-408 588.5675 2.47 1 ; + J-409 639.7154 0.68 1 ; + J-41 663.6583 0.57 1 ; + J-410 629.2969 3.46 1 ; + J-411 693.8269 0.43 1 ; + J-412 644.2049 0.81 1 ; + J-413 650.1973 0.36 1 ; + J-414 697.355 0.79 1 ; + J-415 696.2896 0.5 1 ; + J-416 700.0205 0.87 1 ; + J-417 696.9081 1.37 1 ; + J-418 482.5705 2.42 1 ; + J-419 491.5032 3.83 1 ; + J-42 660.9106 0.12 1 ; + J-420 695.9309 1.04 1 ; + J-421 695.6784 1.85 1 ; + J-422 706.0865 1.72 1 ; + J-423 672.0674 1.42 1 ; + J-424 708.4379 1.28 1 ; + J-425 681.9316 0.89 1 ; + J-426 705.5588 0.8 1 ; + J-427 699.3408 1.31 1 ; + J-428 671.9526 0.24 1 ; + J-429 700 0.35 1 ; + J-43 669.0306 1.06 1 ; + J-430 700 0.17 1 ; + J-431 679.7358 0.28 1 ; + J-432 687.142 0.45 1 ; + J-433 640.9989 1.5 1 ; + J-434 691.5986 1.69 1 ; + J-435 683.0226 5.47 1 ; + J-436 630.6306 3.53 1 ; + J-437 699.9874 0.7 1 ; + J-438 677.8897 0.58 1 ; + J-439 626.6277 2.77 1 ; + J-44 648.0365 0.48 1 ; + J-440 697.1505 0.5 1 ; + J-441 693.9142 0.63 1 ; + J-442 585.9361 1.97 1 ; + J-443 585.0862 1.62 1 ; + J-444 689.5768 0.62 1 ; + J-445 689.0112 0.31 1 ; + J-446 518.3365 3.84 1 ; + J-447 519.3922 4.28 1 ; + J-448 657.9747 8.39 1 ; + J-449 597.2289 2.52 1 ; + J-45 633.7269 0.7 1 ; + J-450 588.1766 1.23 1 ; + J-451 650.2797 1.6 1 ; + J-452 579.8326 2.11 1 ; + J-453 583.6439 1.1 1 ; + J-454 706.7075 1.2 1 ; + J-455 697.2281 1.93 1 ; + J-456 670.4377 1.37 1 ; + J-457 573.9099 3.64 1 ; + J-458 565.428 3.81 1 ; + J-459 685.329 1.12 1 ; + J-46 649.8894 0.55 1 ; + J-460 568.3317 1.74 1 ; + J-461 575.2455 0.81 1 ; + J-462 585.9603 0.64 1 ; + J-463 579.0305 1.25 1 ; + J-464 628.951 3.93 1 ; + J-465 605.4763 1.73 1 ; + J-466 684.5135 0.08 1 ; + J-467 690.7563 0.78 1 ; + J-468 576.2653 0.18 1 ; + J-469 598.9883 1.54 1 ; + J-47 660.3748 0.56 1 ; + J-470 596.3301 0.16 1 ; + J-471 671.9576 0.56 1 ; + J-472 586.7481 0.42 1 ; + J-473 570.2524 0.47 1 ; + J-474 496.4749 3.2 1 ; + J-475 633.6655 1.25 1 ; + J-476 617.3707 3.6 1 ; + J-477 601.4479 0.96 1 ; + J-478 688.011 0.54 1 ; + J-479 685.7339 0.56 1 ; + J-48 639.6245 0.79 1 ; + J-480 675.912 2.04 1 ; + J-481 674.0844 0.64 1 ; + J-482 685.719 0.82 1 ; + J-483 570.0308 2.11 1 ; + J-484 600.0169 1.45 1 ; + J-485 575.4335 0.75 1 ; + J-486 673.1379 0.81 1 ; + J-487 680.9321 0.28 1 ; + J-488 627.3683 1.54 1 ; + J-489 640.5385 0.22 1 ; + J-49 660.6948 2.47 1 ; + J-490 651.3229 0.84 1 ; + J-491 480.2473 2.33 1 ; + J-492 582.8739 3.29 1 ; + J-493 621.8464 0.14 1 ; + J-494 594.7097 4.78 1 ; + J-495 678.4036 1.62 1 ; + J-496 585.0176 0.68 1 ; + J-497 622.257 1.08 1 ; + J-498 571.6581 0.79 1 ; + J-499 565.4865 1.83 1 ; + J-5 698 1.27 1 ; + J-50 660.411 0.1 1 ; + J-500 670.7586 1.63 1 ; + J-501 654.7303 1.51 1 ; + J-502 682.3743 0.27 1 ; + J-503 555.3581 1.11 1 ; + J-504 653.1062 3.69 1 ; + J-505 582.1851 2.57 1 ; + J-506 600.2261 2.83 1 ; + J-507 507.8988 1.46 1 ; + J-508 616.1289 0.38 1 ; + J-509 612.0599 0.17 1 ; + J-51 660.0041 0.7 1 ; + J-510 534.7653 9.77 1 ; + J-511 672.8113 0.34 1 ; + J-512 670.7065 2.51 1 ; + J-513 544.9556 2.96 1 ; + J-514 597.4137 0.54 1 ; + J-515 648.685 0 ; + J-516 551.2546 0.49 1 ; + J-517 635.8926 1 1 ; + J-518 668.9998 0.33 1 ; + J-519 570.6694 0.48 1 ; + J-52 695.4556 0 ; + J-520 697.035 1.54 1 ; + J-521 534.9074 3.79 1 ; + J-522 666.9985 1.26 1 ; + J-523 641.5439 1.93 1 ; + J-524 680.0353 0.91 1 ; + J-525 681.4127 1.96 1 ; + J-526 676.0822 0.28 1 ; + J-527 691.9692 1.27 1 ; + J-528 688.2119 0.75 1 ; + J-529 698.0931 0.62 1 ; + J-53 614.1567 0.85 1 ; + J-530 702.8127 0.85 1 ; + J-531 668.9998 0.14 1 ; + J-532 598.979 2.84 1 ; + J-533 674.5611 1.86 1 ; + J-534 672.9713 2.11 1 ; + J-535 653.5962 0.81 1 ; + J-536 647.0877 0.26 1 ; + J-537 704 0.33 1 ; + J-538 704.188 1.02 1 ; + J-539 678.6726 1 1 ; + J-54 673.7596 0.56 1 ; + J-540 660.8057 1.05 1 ; + J-541 661.3532 0.87 1 ; + J-542 698.4534 0.59 1 ; + J-543 662.4149 1.31 1 ; + J-544 655.9254 0.18 1 ; + J-545 615.0056 4.32 1 ; + J-546 577.2596 1.08 1 ; + J-547 680.0256 1.67 1 ; + J-548 687.1564 4.68 1 ; + J-549 681 0.46 1 ; + J-55 676.8953 1.22 1 ; + J-550 687.5785 0.28 1 ; + J-551 652.1187 0.51 1 ; + J-552 679.5529 1.07 1 ; + J-553 699.9662 0.86 1 ; + J-554 556.7899 0.7 1 ; + J-555 666.5219 0.56 1 ; + J-556 555.0311 0.41 1 ; + J-557 702.6028 0.2 1 ; + J-558 683.8066 0.62 1 ; + J-559 570.2227 2.31 1 ; + J-56 660.7728 0.51 1 ; + J-560 681.5895 1.33 1 ; + J-561 669.8033 0.57 1 ; + J-562 562.4125 4.64 1 ; + J-563 521.6953 4.47 1 ; + J-564 673.8878 0.34 1 ; + J-565 698.6036 0.4 1 ; + J-566 677.2563 0.56 1 ; + J-567 693.5529 1.08 1 ; + J-568 474.3107 5.78 1 ; + J-569 545.5497 2.58 1 ; + J-57 642.6108 1.97 1 ; + J-570 527.1198 2.2 1 ; + J-571 542.483 0.31 1 ; + J-572 622.2068 4.01 1 ; + J-573 544.1841 1.95 1 ; + J-574 606.2624 0.91 1 ; + J-575 702.0071 0.8 1 ; + J-576 661.6914 0.81 1 ; + J-577 648.1893 2.77 1 ; + J-578 672.0189 1.41 1 ; + J-579 655.6446 2.17 1 ; + J-58 667.1088 1.24 1 ; + J-580 680.183 0.28 1 ; + J-581 554.7155 0.59 1 ; + J-582 714.1804 0.16 1 ; + J-583 713.0403 0.26 1 ; + J-584 642.0287 1.62 1 ; + J-585 694.0375 1.38 1 ; + J-586 542.2399 0.72 1 ; + J-587 691.5846 0.68 1 ; + J-588 679.681 0.22 1 ; + J-589 547.903 0.68 1 ; + J-59 670.3834 1.36 1 ; + J-590 708.2179 1.16 1 ; + J-591 709.8061 0.45 1 ; + J-592 588.5468 0.23 1 ; + J-593 640.4412 4.08 1 ; + J-594 655.0116 1.12 1 ; + J-595 689.8454 1.23 1 ; + J-596 687.4936 1.91 1 ; + J-597 700.8195 0.6 1 ; + J-598 623.3526 0.38 1 ; + J-599 600.9366 0.24 1 ; + J-59b 622.2461 1.52 1 ; + J-59c 641.1888 1.59 1 ; + J-59d 636.4119 0.47 1 ; + J-59e 632.4886 2.52 1 ; + J-59f 667.4578 0.94 1 ; + J-59g 667.1296 0.61 1 ; + J-59h 664.955 0.5 1 ; + J-59i 652.7273 0.52 1 ; + J-59j 650.5671 0.62 1 ; + J-59k 646.3458 0.83 1 ; + J-59l 622.967 0.96 1 ; + J-59m 658.4265 1.05 1 ; + J-59n 671.0769 1.42 1 ; + J-59o 671.1816 1.53 1 ; + J-59p 658.5814 0.45 1 ; + J-59q 660.2684 1.07 1 ; + J-59r 669.9472 0.85 1 ; + J-59s 669.115 0.76 1 ; + J-59t 677.0762 0.95 1 ; + J-59u 665.4516 0.87 1 ; + J-59v 670.9307 1.17 1 ; + J-59w 679.829 0.96 1 ; + J-59x 676.787 1.29 1 ; + J-59y 674.3915 1.38 1 ; + J-59z 651.2915 1.12 1 ; + J-6 690.8769 1.16 1 ; + J-60 652.9246 0 ; + J-600 632.2844 1.12 1 ; + J-601 575.3785 0.45 1 ; + J-602 652.7529 0.12 1 ; + J-603 671.7257 1.81 1 ; + J-604 714.326 0.89 1 ; + J-605 588.8813 0.58 1 ; + J-606 655.9384 0.96 1 ; + J-607 675.2903 0.5 1 ; + J-608 659.0002 0.96 1 ; + J-609 663.6735 1.12 1 ; + J-61 669.2538 0.75 1 ; + J-610 666.9916 0.74 1 ; + J-611 557.2267 0.81 1 ; + J-612 662.9355 3.3 1 ; + J-614 595.5059 0.43 1 ; + J-615 563.2401 0.28 1 ; + J-616 662.862 2.84 1 ; + J-617 667.1932 2.22 1 ; + J-618 671.9494 0.27 1 ; + J-619 662.4925 2.4 1 ; + J-62 661.012 0.16 1 ; + J-620 655.3686 2.73 1 ; + J-621 671.9998 1.4 1 ; + J-622 671.0068 0.84 1 ; + J-623 667.5444 0.9 1 ; + J-624 697.3519 0.62 1 ; + J-625 643.6611 2.17 1 ; + J-626 660 0.64 1 ; + J-627 659.002 0.75 1 ; + J-628 678.9778 0.89 1 ; + J-629 605.4483 0.26 1 ; + J-63 668.2524 0.96 1 ; + J-630 532.0062 1.69 1 ; + J-631 628.7423 3.32 1 ; + J-632 648.886 0.57 1 ; + J-633 627.935 1.59 1 ; + J-634 688.9977 0 ; + J-637 666.35 1.03 1 ; + J-638 701.9976 0.26 1 ; + J-639 547.6257 0.75 1 ; + J-64 687.2356 3.11 1 ; + J-640 517.6242 0.38 1 ; + J-641 667 0.51 1 ; + J-642 678.8983 1.95 1 ; + J-643 659.5828 0.38 1 ; + J-644 662.9032 1.11 1 ; + J-645 663.1931 1.84 1 ; + J-646 660.5909 4.22 1 ; + J-647 634.3173 1.11 1 ; + J-648 672.0178 2.11 1 ; + J-649 641.9887 2.89 1 ; + J-65 532.0147 0.87 1 ; + J-650 648.2892 0.31 1 ; + J-651 664.2609 1.95 1 ; + J-652 680.5966 1.47 1 ; + J-653 534.1228 1 1 ; + J-654 635.4238 0.5 1 ; + J-655 674.58 0.14 1 ; + J-656 684.5317 1 1 ; + J-657 708.5668 0.62 1 ; + J-658 702.8437 1.99 1 ; + J-659 705.6571 0.57 1 ; + J-66 663.7766 0.65 1 ; + J-660 706.9919 1.43 1 ; + J-661 625.7186 1.71 1 ; + J-662 660.8082 0.6 1 ; + J-663 703.3207 0.68 1 ; + J-664 712.7319 0.91 1 ; + J-665 705.3658 0.5 1 ; + J-666 707.3978 0.42 1 ; + J-667 708.1321 0.14 1 ; + J-668 704.3309 0.16 1 ; + J-669 708.4155 0.23 1 ; + J-67 634.5978 0.7 1 ; + J-671 710.0372 0.23 1 ; + J-672 637.2489 0.32 1 ; + J-673 648.8381 0.5 1 ; + J-674 654.0896 0.77 1 ; + J-675 661.3247 0.57 1 ; + J-676 667.9005 0.67 1 ; + J-677 680.0259 0.47 1 ; + J-678 653.8851 0.59 1 ; + J-679 652.1177 0.18 1 ; + J-68 702.4494 0.86 1 ; + J-680 481.3771 3.25 1 ; + J-681 492.5712 3.76 1 ; + J-682 698.6843 0.67 1 ; + J-683 690.0485 0.6 1 ; + J-684 688.2468 1.21 1 ; + J-685 652.0361 0.26 1 ; + J-686 656.6259 0.52 1 ; + J-687 651.0851 0.3 1 ; + J-688 659.8523 0.74 1 ; + J-689 659.6626 0.06 1 ; + J-69 635.1948 0.5 1 ; + J-690 675.5448 0.87 1 ; + J-691 700.9556 1.13 1 ; + J-692 696.3026 0.15 1 ; + J-693 602.0384 0.54 1 ; + J-694 705.2141 1.2 1 ; + J-695 698.3181 1.31 1 ; + J-696 665.9032 0.83 1 ; + J-697 676.884 0.74 1 ; + J-698 677.4431 0.09 1 ; + J-699 672.7332 0.51 1 ; + J-7 650.6264 0.14 1 ; + J-70 657.0359 0.69 1 ; + J-700 676.0592 0.31 1 ; + J-701 659.6946 0.26 1 ; + J-702 644.7712 0.14 1 ; + J-703 644.7459 0.22 1 ; + J-704 661.5923 0.93 1 ; + J-705 681.0715 1.26 1 ; + J-706 673.3882 2.09 1 ; + J-707 678.0931 0.61 1 ; + J-708 680.6379 0.12 1 ; + J-709 668.1602 0.69 1 ; + J-71 630.862 0.09 1 ; + J-710 660.1121 0.62 1 ; + J-711 657.9397 1.37 1 ; + J-712 672.0782 0.63 1 ; + J-713 588.5858 0.41 1 ; + J-714 601.7097 0.44 1 ; + J-715 660.2292 0.7 1 ; + J-716 647.9485 0.14 1 ; + J-717 671 0.36 1 ; + J-718 670.6492 0.68 1 ; + J-719 650.6826 0.75 1 ; + J-72 640.0176 0.56 1 ; + J-720 646.8729 0.27 1 ; + J-721 642.1752 0.2 1 ; + J-722 641.0002 0.17 1 ; + J-723 650.012 0.85 1 ; + J-724 662.2479 1.64 1 ; + J-725 640.5485 0.15 1 ; + J-726 699.476 0.04 1 ; + J-727 651.0615 0.16 1 ; + J-728 675.8026 0.62 1 ; + J-729 637.9493 0.38 1 ; + J-73 667.9927 0.66 1 ; + J-730 610.6949 0.59 1 ; + J-731 596.6821 0.14 1 ; + J-732 688.1761 0.62 1 ; + J-733 695.3373 0.76 1 ; + J-734 702.1148 1.88 1 ; + J-735 680.0844 1.03 1 ; + J-736 688.0575 0.12 1 ; + J-737 657.1362 0.64 1 ; + J-738 653.7159 0.61 1 ; + J-739 671.496 0.14 1 ; + J-74 713.0034 2.19 1 ; + J-740 689.2097 0.5 1 ; + J-741 690.7243 0.25 1 ; + J-742 645.3214 0.32 1 ; + J-743 650.4761 1.57 1 ; + J-744 700.9997 2.83 1 ; + J-745 702.4577 0.67 1 ; + J-746 712.3982 0.23 1 ; + J-747 709.0784 0.95 1 ; + J-748 651.6144 0.8 1 ; + J-749 575.7369 1.27 1 ; + J-75 611.962 0.25 1 ; + J-750 577.7075 0.28 1 ; + J-751 684.8938 0.11 1 ; + J-752 674.0959 0.47 1 ; + J-753 676.3605 0.1 1 ; + J-754 709.0013 1 1 ; + J-755 613.4041 0.12 1 ; + J-756 657.0266 2.02 1 ; + J-757 634.1104 1.15 1 ; + J-758 633.6743 1.48 1 ; + J-759 645.8521 0.43 1 ; + J-76 701.9979 0.57 1 ; + J-760 674.1519 0.17 1 ; + J-761 681 1.08 1 ; + J-762 686.2455 0.54 1 ; + J-763 694.671 0.19 1 ; + J-764 693.506 0.2 1 ; + J-765 640.4249 0.04 1 ; + J-766 679.6664 0.64 1 ; + J-767 677.7401 1.26 1 ; + J-768 670.9882 0.08 1 ; + J-769 519.9999 2.38 1 ; + J-77 704.6916 0.54 1 ; + J-770 514.6759 0.31 1 ; + J-771 686.6956 0.14 1 ; + J-772 684.765 0.35 1 ; + J-773 611.9255 1.49 1 ; + J-774 622.432 1.79 1 ; + J-775 632.1623 1.3 1 ; + J-776 659.907 0.54 1 ; + J-777 668.6858 0.41 1 ; + J-778 671 0.8 1 ; + J-779 641.632 1.5 1 ; + J-78 708.6556 0.75 1 ; + J-780 648.6361 0.46 1 ; + J-781 679.2037 0.37 1 ; + J-782 681.8725 0.25 1 ; + J-783 699.9874 0.62 1 ; + J-784 636.3716 3.98 1 ; + J-785 650.3804 0.62 1 ; + J-786 679.4107 1.77 1 ; + J-787 685.03 0.51 1 ; + J-788 683.09 0.66 1 ; + J-789 672.3386 0.39 1 ; + J-79 585.6165 0.29 1 ; + J-790 666.5302 1.24 1 ; + J-791 675.7809 1 1 ; + J-792 677.2099 0.18 1 ; + J-793 679.7675 0.32 1 ; + J-794 692.9447 0.14 1 ; + J-795 639.2601 0.35 1 ; + J-796 629.9709 0.09 1 ; + J-797 636.4082 0.2 1 ; + J-798 691.4937 0.13 1 ; + J-799 692.4052 0.46 1 ; + J-8 648.5071 0.49 1 ; + J-80 594.9082 1.49 1 ; + J-800 679.2139 0.67 1 ; + J-801 506.3325 2.51 1 ; + J-802 518.1417 0.41 1 ; + J-803 652.2009 0.53 1 ; + J-804 660.9465 1.56 1 ; + J-805 638.5314 0.47 1 ; + J-806 679.4078 1 1 ; + J-807 678.5839 0.15 1 ; + J-808 652.0849 0.86 1 ; + J-809 653.1773 0.31 1 ; + J-81 627.5603 0.38 1 ; + J-810 682.5803 0.24 1 ; + J-811 689.8367 0.34 1 ; + J-812 677.8157 0.12 1 ; + J-813 689.8989 0.67 1 ; + J-814 691.1378 0.92 1 ; + J-815 691.7253 0.06 1 ; + J-816 682.9997 0.57 1 ; + J-817 672.4503 0.46 1 ; + J-818 672.1669 0.12 1 ; + J-819 645.2253 0.66 1 ; + J-82 613.1941 2.96 1 ; + J-820 649.0115 0.7 1 ; + J-821 630.7921 1.93 1 ; + J-822 683.8374 0.82 1 ; + J-823 593.8329 3.12 1 ; + J-824 666.7915 0.76 1 ; + J-825 641.508 0.56 1 ; + J-826 651.9827 0.26 1 ; + J-827 612.5362 1.96 1 ; + J-828 661.2578 1.12 1 ; + J-829 674.6057 0.29 1 ; + J-83 703.9911 0.38 1 ; + J-830 671.0139 0.06 1 ; + J-831 641.0499 1.97 1 ; + J-832 647.3734 0.87 1 ; + J-833 646.0166 0.5 1 ; + J-834 602.3145 0.91 1 ; + J-835 689.4713 0.06 1 ; + J-836 676 0.16 1 ; + J-837 699.8388 0.39 1 ; + J-838 591.154 0.57 1 ; + J-839 607.756 3.74 1 ; + J-84 700.8594 0.16 1 ; + J-840 697.1929 0.3 1 ; + J-841 634.1534 2 1 ; + J-842 661.7769 0.2 1 ; + J-843 700.0592 0.06 1 ; + J-844 664.2062 0.14 1 ; + J-845 637.0157 1.06 1 ; + J-846 603.7425 0.97 1 ; + J-847 679.9082 0.33 1 ; + J-848 692.106 0.69 1 ; + J-849 529.0094 1.02 1 ; + J-85 703.8174 0.8 1 ; + J-850 509.4716 0.62 1 ; + J-851 611.8793 0.25 1 ; + J-852 607.3966 1.14 1 ; + J-853 583.6096 1.58 1 ; + J-854 628.5164 0.67 1 ; + J-855 648.9713 0.62 1 ; + J-856 643.2919 0.68 1 ; + J-857 671.3093 0.14 1 ; + J-858 668.7681 0.14 1 ; + J-859 643.9454 0.81 1 ; + J-86 602.4818 0.89 1 ; + J-860 698.6812 0.8 1 ; + J-861 587.9638 1.53 1 ; + J-862 674.5722 0.43 1 ; + J-863 682.1527 0.54 1 ; + J-864 681.7842 0.12 1 ; + J-865 659.2015 0.62 1 ; + J-866 691.8972 0.11 1 ; + J-867 683.2653 1.24 1 ; + J-868 708.8441 0.69 1 ; + J-869 682.9994 0.06 1 ; + J-87 588.1383 5.89 1 ; + J-870 560.2759 2.28 1 ; + J-871 626.5398 0.23 1 ; + J-872 633.9348 0.06 1 ; + J-873 606.1901 1.44 1 ; + J-874 611.8049 0.5 1 ; + J-875 671.7136 0.05 1 ; + J-876 671.6539 0.24 1 ; + J-877 588.4205 0.34 1 ; + J-878 641.3392 0.4 1 ; + J-879 667.1655 0.05 1 ; + J-88 623.1074 0.1 1 ; + J-880 693.9342 0.16 1 ; + J-881 685.5441 2.19 1 ; + J-882 700.1472 0.33 1 ; + J-883 696.0026 0.31 1 ; + J-884 695.0817 0.09 1 ; + J-885 667.5366 0.67 1 ; + J-886 629.3152 0.14 1 ; + J-887 671.9976 0.16 1 ; + J-888 615.5894 0.1 1 ; + J-889 529.0132 2.84 1 ; + J-89 642.4193 0.54 1 ; + J-890 534.1238 2.2 1 ; + J-891 621.7877 0.2 1 ; + J-892 531.3936 0.93 1 ; + J-893 689.9117 1.2 1 ; + J-894 505.852 0.94 1 ; + J-895 648.2454 1.61 1 ; + J-897 528.1815 0.43 1 ; + J-898 550.9995 2.39 1 ; + J-899 680.8007 0.04 1 ; + J-9 563.6218 3.18 1 ; + J-90 652.0901 0.61 1 ; + J-900 665.8166 0.09 1 ; + J-901 648.1877 0.76 1 ; + J-902 658.5269 0.28 1 ; + J-903 683 0.61 1 ; + J-904 682.9952 0.26 1 ; + J-905 610.4655 2 1 ; + J-906 571.0575 0.9 1 ; + J-907 680.3827 0.09 1 ; + J-908 665.0795 0.12 1 ; + J-909 679.6921 1.46 1 ; + J-91 688.9593 1.12 1 ; + J-910 663.7163 3.46 1 ; + J-911 671.4034 0.75 1 ; + J-912 670.9547 0.97 1 ; + J-913 670.5793 0.15 1 ; + J-914 671.0002 0.63 1 ; + J-915 654.1107 2.38 1 ; + J-916 639.2642 1.88 1 ; + J-917 620.6334 2.09 1 ; + J-918 657.7786 1.5 1 ; + J-919 664.535 0.06 1 ; + J-92 595.097 0.46 1 ; + J-920 639.3238 0.1 1 ; + J-921 674.8867 1.08 1 ; + J-922 623.7805 0.8 1 ; + J-923 571.4358 0.37 1 ; + J-924 573.283 1.46 1 ; + J-925 500.951 0.26 1 ; + J-926 604.6838 0.12 1 ; + J-927 643.193 1.06 1 ; + J-928 659.8448 1.49 1 ; + J-929 650.7732 1.2 1 ; + J-93 629.9158 0.12 1 ; + J-930 650.7543 1.02 1 ; + J-931 672.7773 0.1 1 ; + J-932 671.7883 1 1 ; + J-933 658.6239 0.75 1 ; + J-934 681.5993 0.06 1 ; + J-936 589.2963 0.11 1 ; + J-938 705.0005 0.41 1 ; + J-94 671.6267 0.47 1 ; + J-941 704.7491 0.17 1 ; + J-95 642.0171 1.24 1 ; + J-96 648.5701 0.49 1 ; + J-97 692.0242 0.4 1 ; + J-98 600.0933 0.2 1 ; + J-99 639.2693 0.87 1 ; + I-Pump-1 474.9686 0 ; + O-Pump-2 474.5687 0 ; + O-Pump-1 474.9686 0 ; + I-Pump-2 474.5687 0 ; + +[RESERVOIRS] +;ID Head Pattern + R-1 489.8655 ; + +[TANKS] +;ID Elevation InitLevel MinLevel MaxLevel Diameter MinVol VolCurve + T-1 646.13 83.87 78.87 103.87 58 0 ; + T-2 680.5749 84.42511 84.42511 104.4251 46 0 ; + T-3 714.249 100.751 88.75098 110.751 44 0 ; + T-4 723.6888 96.31122 71.31122 106.3112 70 0 ; + +[PIPES] +;ID Node1 Node2 Length Diameter Roughness MinorLoss Status + P-1 J-1 J-34 1760.131 6 150 0 Open ; + P-10 J-14 J-94 124.144 8 150 0 Open ; + P-100 J-174 J-230 181.215 6 150 0 Open ; + P-1000 J-157 J-231 749.28 6 150 0 Open ; + P-1001 J-158 J-157 473.519 6 150 0 Open ; + P-1002 J-149 J-220 179.11 6 150 0 Open ; + P-1003 J-196 J-910 40.432 6 150 0 Open ; + P-1004 J-58 J-196 151.296 8 150 0 Open ; + P-1005 J-61 J-58 282.266 8 150 0 Open ; + P-1006 J-43 J-61 1102.503 8 150 0 Open ; + P-1007 J-63 J-43 860.28 8 150 0 Open ; + P-1008 J-41 J-63 413.171 8 150 0 Open ; + P-1009 J-215 J-41 336.912 8 150 0 Open ; + P-101 J-175 J-67 239.339 8 150 0 Open ; + P-1010 J-226 J-215 472.012 8 150 0 Open ; + P-1011 J-15 J-27 2937.008 6 150 0 Open ; + P-1012 J-59b J-25 425.057 8 150 0 Open ; + P-1013 J-59c J-59d 207.315 8 150 0 Open ; + P-1014 J-59d J-59b 248.623 8 150 0 Open ; + P-1015 J-59e J-59c 2854.28 8 150 0 Open ; + P-1016 J-59f J-59g 742.846 8 150 0 Open ; + P-1017 J-59g J-59h 135.372 8 150 0 Open ; + P-1018 J-59h J-35 165.522 8 150 0 Open ; + P-1019 J-59i J-219 288.119 8 150 0 Open ; + P-102 J-53 J-514 496.019 8 150 0 Open ; + P-1020 J-59j J-59i 306.094 8 150 0 Open ; + P-1021 J-45 J-59j 467.576 8 150 0 Open ; + P-1022 J-59k J-59l 1086.235 8 150 0 Open ; + P-1023 J-59l J-45 546.718 8 150 0 Open ; + P-1024 J-59m J-35 686.754 8 150 0 Open ; + P-1025 J-29 J-59m 139.73 8 150 0 Open ; + P-1026 J-28 J-57 1972.321 6 150 0 Open ; + P-1027 J-34 J-2 1363.668 6 150 0 Open ; + P-1028 J-59n J-55 1960.086 8 150 0 Open ; + P-1029 J-59o J-59p 272.581 8 150 0 Open ; + P-103 J-177 J-128 408.309 8 150 0 Open ; + P-1030 J-59p J-59q 199.61 8 150 0 Open ; + P-1031 J-59q J-534 367.185 6 150 0 Open ; + P-1032 J-59r J-243 651.219 6 150 0 Open ; + P-1033 J-59s J-59u 774.7 8 150 0 Open ; + P-1034 J-59t J-59v 734.599 8 150 0 Open ; + P-1035 J-59u J-59v 321.831 8 150 0 Open ; + P-1036 J-59v J-59w 1495.518 8 150 0 Open ; + P-1037 J-59w J-59x 189.133 8 150 0 Open ; + P-1038 J-59x J-59y 1552.164 8 150 0 Open ; + P-1039 J-59y J-140 376.786 8 150 0 Open ; + P-104 J-205 J-178 680.27 8 150 0 Open ; + P-1040 J-59z J-147 1101.515 8 150 0 Open ; + P-1041 J-59 J-59p 512.573 8 150 0 Open ; + P-1042 J-64 J-216 384.485 12 150 0 Open ; + P-1043 J-67 J-69 615.502 8 150 0 Open ; + P-1044 J-69 J-70 256.781 8 150 0 Open ; + P-1045 J-70 J-64 947.604 8 150 0 Open ; + P-1046 J-74 J-217 875.716 12 150 0 Open ; + P-1047 J-76 J-74 288.096 8 150 0 Open ; + P-1048 J-77 J-76 348.295 8 150 0 Open ; + P-1049 J-78 J-76 616.771 8 150 0 Open ; + P-105 J-180 J-168 187.8 8 150 0 Open ; + P-1050 J-100 J-78 341.296 8 150 0 Open ; + P-1051 J-109 J-259 756.42 12 150 0 Open ; + P-1052 J-110 J-14 233.568 8 150 0 Open ; + P-1053 J-94 J-19 206.655 8 150 0 Open ; + P-1054 J-116 J-110 809.429 8 150 0 Open ; + P-1055 J-51 J-123 453.642 8 150 0 Open ; + P-1056 J-123 J-116 206.638 8 150 0 Open ; + P-1057 J-120 J-51 273.671 8 150 0 Open ; + P-1058 J-96 J-120 712.333 8 150 0 Open ; + P-1059 J-89 J-104 763.185 8 150 0 Open ; + P-106 J-59x J-59y 1072.449 8 150 0 Open ; + P-1060 J-104 J-95 340.72 8 150 0 Open ; + P-1061 J-95 J-123 1542.859 8 150 0 Open ; + P-1062 J-124 J-198 165.759 8 150 0 Open ; + P-1063 J-131 J-132 52.642 8 150 0 Open ; + P-1064 J-132 J-134 137.682 8 150 0 Open ; + P-1065 J-134 J-142 429.89 8 150 0 Open ; + P-1066 J-142 J-144 391.503 8 150 0 Open ; + P-1067 J-144 J-146 192.848 8 150 0 Open ; + P-1068 J-146 J-147 966.59 8 150 0 Open ; + P-1069 J-147 J-159 270.815 8 150 0 Open ; + P-107 J-131 J-165 415.709 8 150 0 Open ; + P-1070 J-159 J-160 241.492 8 150 0 Open ; + P-1071 J-160 J-165 313.805 8 150 0 Open ; + P-1072 J-165 J-239 226.309 8 150 0 Open ; + P-1073 J-166 J-18 1285.164 12 150 0 Open ; + P-1074 J-31 J-194 1472.26 8 150 0 Open ; + P-1075 J-31 J-168 1129.089 8 150 0 Open ; + P-1076 J-168 J-194 630.806 8 150 0 Open ; + P-1077 J-170 J-167 770.553 8 150 0 Open ; + P-1078 J-151 J-170 813.308 8 150 0 Open ; + P-1079 J-176 J-182 289.7 8 150 0 Open ; + P-108 J-186 J-187 1945.819 6 150 0 Open ; + P-1080 J-152 J-154 1052.382 8 150 0 Open ; + P-1081 J-181 J-152 877.488 8 150 0 Open ; + P-1082 J-182 J-181 249.985 8 150 0 Open ; + P-1083 J-164 J-183 654.26 8 150 0 Open ; + P-1084 J-183 J-912 145.753 6 150 0 Open ; + P-1085 J-130 J-245 372.69 8 150 0 Open ; + P-1086 J-161 J-130 653.982 8 150 0 Open ; + P-1087 J-162 J-138 1110.725 8 150 0 Open ; + P-1088 J-138 J-161 265.557 8 150 0 Open ; + P-1089 J-137 J-161 747.593 8 150 0 Open ; + P-109 J-188 J-189 565.105 6 150 0 Open ; + P-1090 J-136 J-270 404.259 6 150 0 Open ; + P-1091 J-153 J-136 362.4 6 150 0 Open ; + P-1092 J-135 J-255 2254.229 4 150 0 Open ; + P-1093 J-111 J-135 781.953 8 150 0 Open ; + P-1094 J-122 J-111 963.513 8 150 0 Open ; + P-1095 J-106 J-6 1093.5 6 150 0 Open ; + P-1096 J-113 J-4 382.984 12 150 0 Open ; + P-1097 J-91 J-113 662.293 8 150 0 Open ; + P-1098 J-184 J-235 236.724 8 150 0 Open ; + P-1099 J-103 J-184 127.195 8 150 0 Open ; + P-11 J-20 J-72 447.579 8 150 0 Open ; + P-110 J-190 J-171 1413.109 6 150 0 Open ; + P-1100 J-83 J-103 238.339 8 150 0 Open ; + P-1101 J-85 J-538 336.164 4 150 0 Open ; + P-1102 J-185 J-207 908.049 4 150 0 Open ; + P-1103 J-192 J-185 26.069 4 150 0 Open ; + P-1104 J-197 J-192 468.779 4 150 0 Open ; + P-1105 J-52 J-206 373.399 4 150 0 Open ; + P-1106 J-207 J-208 280.45 4 150 0 Open ; + P-1107 J-208 J-185 669.309 4 150 0 Open ; + P-1108 J-209 J-659 445.155 8 150 0 Open ; + P-1109 J-210 J-880 345.12 8 150 0 Open ; + P-111 J-191 J-151 265.13 8 150 0 Open ; + P-1110 J-177 J-210 184.247 8 150 0 Open ; + P-1111 J-125 J-177 430.679 8 150 0 Open ; + P-1112 J-127 J-714 324.748 8 150 0 Open ; + P-1113 J-126 J-125 414.303 8 150 0 Open ; + P-1114 J-205 J-118 566.427 8 150 0 Open ; + P-1115 J-128 J-118 466.49 8 150 0 Open ; + P-1116 J-178 J-716 304.98 8 150 0 Open ; + P-1117 J-179 J-39 225.172 8 150 0 Open ; + P-1118 J-99 J-179 415.435 8 150 0 Open ; + P-1119 J-107 J-8 36.739 8 150 0 Open ; + P-112 J-245 J-269 971.599 6 150 0 Open ; + P-1120 J-211 J-7 147.484 8 150 0 Open ; + P-1121 J-216 J-262 1897.198 12 150 0 Open ; + P-1122 J-217 J-64 1208.193 12 150 0 Open ; + P-1123 J-230 J-173 487.003 6 150 0 Open ; + P-1124 J-228 J-10 160.889 4 150 0 Open ; + P-1125 J-230 J-228 10.25 4 150 0 Open ; + P-1126 J-227 J-87 1163.91 8 150 0 Open ; + P-1127 J-231 J-224 380.14 12 150 0 Open ; + P-1128 J-219 J-59h 272.859 8 150 0 Open ; + P-1129 J-233 J-914 668.109 12 150 0 Open ; + P-113 J-195 J-149 275.029 6 150 0 Open ; + P-1130 J-56 J-233 357.64 6 150 0 Open ; + P-1131 J-60 J-232 290.503 12 150 0 Open ; + P-1132 J-232 J-57 17.36 6 150 0 Open ; + P-1133 J-239 J-131 528.309 8 150 0 Open ; + P-1134 J-124 J-239 62.31 8 150 0 Open ; + P-1135 J-237 J-60 115.819 12 150 0 Open ; + P-1136 J-237 J-579 17.62 6 150 0 Open ; + P-1137 J-232 J-60 236.009 6 150 0 Open ; + P-1138 J-60 J-579 108.94 6 150 0 Open ; + P-1139 J-243 J-237 910.449 12 150 0 Open ; + P-114 J-59z J-59 706.239 8 150 0 Open ; + P-1140 J-243 J-221 28.909 6 150 0 Open ; + P-1141 J-59u J-244 761.14 8 150 0 Open ; + P-1144 J-168 J-247 1252.55 8 150 0 Open ; + P-1145 J-154 J-170 368.363 8 150 0 Open ; + P-1146 J-246 J-248 952.202 12 150 0 Open ; + P-1147 J-246 J-541 70.489 6 150 0 Open ; + P-1148 J-273 J-836 68.25 6 150 0 Open ; + P-1149 J-246 J-273 782.179 12 150 0 Open ; + P-115 J-199 J-173 431.549 6 150 0 Open ; + P-1150 J-248 J-244 921.814 12 150 0 Open ; + P-1151 J-248 J-222 26.02 6 150 0 Open ; + P-1152 J-163 J-385 258.809 6 150 0 Open ; + P-1153 J-515 J-107 52.377 8 150 0 Open ; + P-1154 J-515 J-8 67.41 8 150 0 Open ; + P-1155 J-514 J-92 169.3 8 150 0 Open ; + P-1156 J-197 J-52 811.84 4 150 0 Open ; + P-1157 J-52 J-206 352.01 4 150 0 Open ; + P-1158 J-634 J-786 1334.339 8 150 0 Open ; + P-1159 J-813 J-634 649.15 8 150 0 Open ; + P-116 J-171 J-172 639.479 6 150 0 Open ; + P-117 J-202 J-65 642.39 6 150 0 Open ; + P-118 J-204 J-126 499.85 8 150 0 Open ; + P-119 J-182 J-164 399.63 8 150 0 Open ; + P-12 J-22 J-80 485.652 8 150 0 Open ; + P-120 J-152 J-181 449.429 8 150 0 Open ; + P-121 J-194 J-144 424.67 8 150 0 Open ; + P-122 J-132 J-160 598.539 8 150 0 Open ; + P-123 J-213 J-214 464.561 6 150 0 Open ; + P-124 J-156 J-155 1369.069 6 150 0 Open ; + P-125 J-146 J-159 748.219 8 150 0 Open ; + P-126 J-218 J-148 916.706 6 150 0 Open ; + P-127 J-188 J-155 2175.6 6 150 0 Open ; + P-129 J-223 J-231 3711.939 12 150 0 Open ; + P-13 J-24 J-59c 406.653 8 150 0 Open ; + P-130 J-225 J-226 281.954 8 150 0 Open ; + P-131 J-16 J-215 964.13 8 150 0 Open ; + P-132 J-66 J-73 290.82 8 150 0 Open ; + P-133 J-44 J-59k 251.015 8 150 0 Open ; + P-134 J-94 J-116 688.77 8 150 0 Open ; + P-135 J-51 J-95 808.19 8 150 0 Open ; + P-136 J-234 J-91 470.6 8 150 0 Open ; + P-137 J-68 J-184 149.625 8 150 0 Open ; + P-138 J-236 J-107 603.739 8 150 0 Open ; + P-139 J-238 J-211 739.39 8 150 0 Open ; + P-14 J-26 J-15 450.181 6 150 0 Open ; + P-140 J-240 J-100 512.58 8 150 0 Open ; + P-141 J-242 J-70 293.299 8 150 0 Open ; + P-142 J-143 J-59t 880.512 8 150 0 Open ; + P-143 J-59r J-59s 425.089 8 150 0 Open ; + P-144 J-247 J-31 476.429 8 150 0 Open ; + P-145 J-167 J-222 194.112 6 150 0 Open ; + P-146 J-250 J-264 1078.239 6 150 0 Open ; + P-147 J-249 J-252 1378.29 6 150 0 Open ; + P-148 J-253 J-172 497.445 6 150 0 Open ; + P-149 J-254 J-135 3195.37 4 150 0 Open ; + P-15 J-59m J-29 1456.15 8 150 0 Open ; + P-150 J-256 J-251 1541.808 4 150 0 Open ; + P-151 J-258 J-109 475.479 12 150 0 Open ; + P-152 J-260 J-261 1381.469 6 150 0 Open ; + P-153 J-259 J-74 1293.297 12 150 0 Open ; + P-154 J-200 J-263 520.309 8 150 0 Open ; + P-155 J-250 J-263 792.185 8 150 0 Open ; + P-156 J-266 J-267 2239.939 8 150 0 Open ; + P-157 J-267 J-200 523.238 8 150 0 Open ; + P-158 J-269 J-153 600.29 6 150 0 Open ; + P-159 J-268 J-271 1939.63 4 150 0 Open ; + P-16 J-30 J-166 1009.64 8 150 0 Open ; + P-160 J-272 J-268 2335.26 4 150 0 Open ; + P-161 J-452 J-229 1929.579 12 150 0 Open ; + P-162 J-275 J-270 1020.479 6 150 0 Open ; + P-163 J-276 J-277 24.639 8 150 0 Open ; + P-164 J-278 J-279 234.279 4 150 0 Open ; + P-165 J-278 J-280 301.92 4 150 0 Open ; + P-166 J-276 J-281 1633.079 8 150 0 Open ; + P-167 J-282 J-283 219.479 4 150 0 Open ; + P-168 J-284 J-285 678.909 4 150 0 Open ; + P-169 J-286 J-287 107.18 6 150 0 Open ; + P-17 J-32 J-21 753.95 8 150 0 Open ; + P-170 J-11 J-288 2442.149 3 150 0 Open ; + P-171 J-289 J-290 1991.31 4 150 0 Open ; + P-172 J-291 J-292 111.29 6 150 0 Open ; + P-173 J-293 J-294 926.299 6 150 0 Open ; + P-174 J-187 J-295 318.54 6 150 0 Open ; + P-175 J-296 J-289 335.809 4 150 0 Open ; + P-176 J-270 J-297 727.78 6 150 0 Open ; + P-177 J-298 J-299 667.84 6 150 0 Open ; + P-178 J-300 J-301 967.21 6 150 0 Open ; + P-179 J-302 J-303 1173.67 4 150 0 Open ; + P-18 J-29 J-28 854.9 8 150 0 Open ; + P-180 J-304 J-305 733.539 6 150 0 Open ; + P-181 J-57 J-306 883.21 6 150 0 Open ; + P-182 J-307 J-304 502.57 6 150 0 Open ; + P-183 J-308 J-309 159.99 6 150 0 Open ; + P-184 J-304 J-218 668.84 6 150 0 Open ; + P-185 J-310 J-311 1438.439 4 150 0 Open ; + P-186 J-283 J-312 374.059 4 150 0 Open ; + P-187 J-313 J-314 1915.329 8 150 0 Open ; + P-188 J-271 J-315 3620.199 4 150 0 Open ; + P-189 J-316 J-317 978.789 6 150 0 Open ; + P-19 J-36 J-37 1118.619 8 150 0 Open ; + P-190 J-283 J-318 362.89 4 150 0 Open ; + P-191 J-319 J-320 262.72 4 150 0 Open ; + P-192 J-224 J-321 1583.25 12 150 0 Open ; + P-193 J-322 J-323 1870.689 6 150 0 Open ; + P-194 J-289 J-324 226.429 4 150 0 Open ; + P-195 J-325 J-224 1228.729 4 150 0 Open ; + P-196 J-303 J-326 1580.42 4 150 0 Open ; + P-197 J-327 J-328 1015.909 8 150 0 Open ; + P-198 J-323 J-286 1116.55 6 150 0 Open ; + P-199 J-329 J-291 485.41 6 150 0 Open ; + P-2 J-3 J-113 357.225 12 150 0 Open ; + P-20 J-38 J-179 217.257 8 150 0 Open ; + P-200 J-316 J-292 655.979 6 150 0 Open ; + P-201 J-314 J-330 266.98 8 150 0 Open ; + P-202 J-329 J-309 326.72 6 150 0 Open ; + P-203 J-331 J-332 1578 6 150 0 Open ; + P-204 J-333 J-334 646.039 4 150 0 Open ; + P-205 J-224 J-323 33.439 4 150 0 Open ; + P-206 J-335 J-336 627.429 4 150 0 Open ; + P-207 J-337 J-338 481.25 4 150 0 Open ; + P-208 J-339 J-302 2541.04 4 150 0 Open ; + P-209 J-340 J-341 195.1 12 150 0 Open ; + P-21 J-40 J-63 812.469 8 150 0 Open ; + P-210 J-335 J-342 447.269 12 150 0 Open ; + P-211 J-343 J-337 1599.29 6 150 0 Open ; + P-212 J-344 J-345 748.53 4 150 0 Open ; + P-213 J-346 J-347 1947.81 6 150 0 Open ; + P-214 J-328 J-348 1021.119 8 150 0 Open ; + P-215 J-300 J-275 155.669 6 150 0 Open ; + P-216 J-302 J-349 1311.949 8 150 0 Open ; + P-217 J-296 J-350 2037.81 4 150 0 Open ; + P-218 J-284 J-351 538.049 4 150 0 Open ; + P-219 J-348 J-352 155.429 8 150 0 Open ; + P-22 J-42 J-61 254.789 8 150 0 Open ; + P-220 J-353 J-354 1170.719 8 150 0 Open ; + P-221 J-355 J-356 177.99 8 150 0 Open ; + P-222 J-357 J-358 255.479 6 150 0 Open ; + P-223 J-359 J-360 73.4 6 150 0 Open ; + P-224 J-361 J-362 397.13 6 150 0 Open ; + P-225 J-363 J-364 119.949 12 150 0 Open ; + P-226 J-341 J-3 277.23 12 150 0 Open ; + P-227 J-365 J-366 816.179 6 150 0 Open ; + P-228 J-367 J-368 251.919 8 150 0 Open ; + P-229 J-369 J-335 33.779 4 150 0 Open ; + P-23 J-44 J-45 526.473 8 150 0 Open ; + P-230 J-254 J-370 826.309 4 150 0 Open ; + P-231 J-277 J-371 1478.209 8 150 0 Open ; + P-232 J-298 J-300 259.66 6 150 0 Open ; + P-233 J-307 J-372 421.619 4 150 0 Open ; + P-234 J-373 J-328 218.11 8 150 0 Open ; + P-235 J-374 J-284 1178.849 4 150 0 Open ; + P-236 J-375 J-376 668.08 8 150 0 Open ; + P-237 J-377 J-378 78.18 6 150 0 Open ; + P-238 J-379 J-259 86.529 12 150 0 Open ; + P-239 J-380 J-346 398.019 6 150 0 Open ; + P-24 J-46 J-47 350.89 8 150 0 Open ; + P-240 J-381 J-382 2564.56 4 150 0 Open ; + P-241 J-383 J-384 590.19 8 150 0 Open ; + P-242 J-385 J-386 393.19 6 150 0 Open ; + P-243 J-9 J-337 565.78 4 150 0 Open ; + P-244 J-387 J-388 746.929 6 150 0 Open ; + P-245 J-340 J-389 404.23 6 150 0 Open ; + P-246 J-380 J-362 501.45 6 150 0 Open ; + P-247 J-390 J-373 485.94 8 150 0 Open ; + P-248 J-365 J-391 306.64 6 150 0 Open ; + P-249 J-392 J-393 266.589 6 150 0 Open ; + P-25 J-48 J-49 1726.81 8 150 0 Open ; + P-250 J-373 J-327 90.37 8 150 0 Open ; + P-251 J-394 J-395 460.049 6 150 0 Open ; + P-252 J-396 J-397 1588.719 6 150 0 Open ; + P-253 J-387 J-398 989.559 6 150 0 Open ; + P-254 J-212 J-400 658.83 6 150 0 Open ; + P-255 J-396 J-256 34.04 4 150 0 Open ; + P-256 J-401 J-402 1187.4 6 150 0 Open ; + P-257 J-403 J-404 1093.739 3 150 0 Open ; + P-258 J-403 J-405 1452.969 6 150 0 Open ; + P-259 J-406 J-407 1239.29 4 150 0 Open ; + P-26 J-50 J-123 231.61 8 150 0 Open ; + P-260 J-87 J-408 40.77 4 150 0 Open ; + P-261 J-256 J-409 638.969 12 150 0 Open ; + P-262 J-405 J-410 1515.089 6 150 0 Open ; + P-263 J-353 J-1 673.21 8 150 0 Open ; + P-264 J-355 J-411 223.389 6 150 0 Open ; + P-265 J-412 J-413 793.469 8 150 0 Open ; + P-266 J-378 J-400 3644.12 12 150 0 Open ; + P-267 J-414 J-415 914.809 12 150 0 Open ; + P-268 J-416 J-417 393.049 12 150 0 Open ; + P-269 J-418 J-419 785.58 3 150 0 Open ; + P-27 J-53 J-514 1179.43 8 150 0 Open ; + P-270 J-317 J-420 363.279 6 150 0 Open ; + P-271 J-421 J-422 1010.65 12 150 0 Open ; + P-272 J-339 J-423 1123.67 8 150 0 Open ; + P-273 J-424 J-344 908.94 4 150 0 Open ; + P-274 J-425 J-380 212.74 6 150 0 Open ; + P-275 J-424 J-426 356.989 6 150 0 Open ; + P-276 J-378 J-427 196.22 12 150 0 Open ; + P-277 J-293 J-428 395.35 6 150 0 Open ; + P-278 J-429 J-430 70.75 12 150 0 Open ; + P-279 J-431 J-432 456.549 6 150 0 Open ; + P-28 J-54 J-59n 536.853 8 150 0 Open ; + P-280 J-290 J-433 1628.28 4 150 0 Open ; + P-281 J-420 J-402 386.309 6 150 0 Open ; + P-282 J-376 J-359 2298.899 6 150 0 Open ; + P-283 J-421 J-434 1694.26 6 150 0 Open ; + P-284 J-435 J-436 2254.78 4 150 0 Open ; + P-285 J-437 J-375 642.63 12 150 0 Open ; + P-286 J-438 J-420 958.809 6 150 0 Open ; + P-287 J-27 J-403 943.33 6 150 0 Open ; + P-288 J-27 J-439 3473.04 6 150 0 Open ; + P-289 J-416 J-440 268.329 8 150 0 Open ; + P-29 J-56 J-28 279.888 6 150 0 Open ; + P-290 J-441 J-417 271.459 6 150 0 Open ; + P-291 J-442 J-443 744.469 4 150 0 Open ; + P-292 J-378 J-444 1002.38 6 150 0 Open ; + P-293 J-432 J-445 135.32 6 150 0 Open ; + P-294 J-446 J-447 988.58 4 150 0 Open ; + P-295 J-448 J-449 2738.07 4 150 0 Open ; + P-296 J-369 J-450 448.14 4 150 0 Open ; + P-297 J-388 J-451 1301 3 150 0 Open ; + P-298 J-452 J-453 1507.689 12 150 0 Open ; + P-299 J-317 J-454 1162.219 6 150 0 Open ; + P-3 J-5 J-106 284.539 6 150 0 Open ; + P-30 J-41 J-15 495.2 8 150 0 Open ; + P-300 J-377 J-427 141.169 12 150 0 Open ; + P-301 J-455 J-456 1492.089 4 150 0 Open ; + P-302 J-457 J-458 2275.27 4 150 0 Open ; + P-303 J-391 J-459 811.679 4 150 0 Open ; + P-304 J-437 J-424 364.48 6 150 0 Open ; + P-305 J-460 J-461 877.33 4 150 0 Open ; + P-306 J-462 J-453 37.319 4 150 0 Open ; + P-307 J-463 J-452 27.92 4 150 0 Open ; + P-308 J-430 J-340 204.669 12 150 0 Open ; + P-309 J-464 J-465 1408.3 3 150 0 Open ; + P-31 J-47 J-59i 554.027 8 150 0 Open ; + P-310 J-381 J-435 2217.709 6 150 0 Open ; + P-311 J-432 J-466 172.979 8 150 0 Open ; + P-312 J-467 J-366 396.04 6 150 0 Open ; + P-313 J-314 J-468 392.35 8 150 0 Open ; + P-314 J-469 J-470 176.85 4 150 0 Open ; + P-315 J-471 J-269 218.919 6 150 0 Open ; + P-316 J-282 J-472 454.75 4 150 0 Open ; + P-317 J-453 J-473 505.19 4 150 0 Open ; + P-318 J-463 J-442 578.45 4 150 0 Open ; + P-319 J-419 J-474 218.729 4 150 0 Open ; + P-32 J-16 J-58 2253.639 8 150 0 Open ; + P-320 J-212 J-416 704.469 12 150 0 Open ; + P-321 J-475 J-256 925.549 12 150 0 Open ; + P-322 J-453 J-335 460.22 12 150 0 Open ; + P-323 J-386 J-414 611.57 6 150 0 Open ; + P-324 J-366 J-441 358.92 6 150 0 Open ; + P-325 J-476 J-477 1044.88 4 150 0 Open ; + P-326 J-478 J-479 324.769 6 150 0 Open ; + P-327 J-452 J-9 956.07 4 150 0 Open ; + P-328 J-435 J-480 3325.979 6 150 0 Open ; + P-329 J-481 J-482 460.01 6 150 0 Open ; + P-33 J-62 J-43 351.369 8 150 0 Open ; + P-330 J-450 J-342 37.13 4 150 0 Open ; + P-331 J-483 J-463 758.429 4 150 0 Open ; + P-332 J-405 J-464 923.7 3 150 0 Open ; + P-333 J-443 J-457 823.75 4 150 0 Open ; + P-334 J-342 J-484 829.469 12 150 0 Open ; + P-335 J-442 J-485 816.119 4 150 0 Open ; + P-336 J-297 J-298 1313.209 6 150 0 Open ; + P-337 J-486 J-487 462.07 6 150 0 Open ; + P-338 J-488 J-489 348.269 6 150 0 Open ; + P-339 J-301 J-490 460.519 6 150 0 Open ; + P-34 J-46 J-59j 574.495 8 150 0 Open ; + P-340 J-491 J-492 2477.219 4 150 0 Open ; + P-341 J-488 J-493 238.24 6 150 0 Open ; + P-342 J-448 J-494 3907.1 3 150 0 Open ; + P-343 J-495 J-479 276.429 6 150 0 Open ; + P-344 J-319 J-278 506.2 4 150 0 Open ; + P-345 J-342 J-496 732.789 4 150 0 Open ; + P-346 J-464 J-497 882.63 3 150 0 Open ; + P-347 J-409 J-488 313.23 6 150 0 Open ; + P-348 J-457 J-498 861.77 4 150 0 Open ; + P-349 J-409 J-223 944.479 12 150 0 Open ; + P-35 J-44 J-46 274.859 8 150 0 Open ; + P-350 J-460 J-499 678.179 4 150 0 Open ; + P-351 J-339 J-500 594.78 8 150 0 Open ; + P-352 J-501 J-331 1101.109 6 150 0 Open ; + P-353 J-482 J-502 437.45 6 150 0 Open ; + P-354 J-503 J-374 516.94 4 150 0 Open ; + P-355 J-504 J-505 2102.149 3 150 0 Open ; + P-356 J-506 J-507 3170.53 8 150 0 Open ; + P-357 J-508 J-509 248.41 6 150 0 Open ; + P-358 J-310 J-510 1245.41 4 150 0 Open ; + P-359 J-500 J-511 738.369 8 150 0 Open ; + P-36 T-2 J-59f 302.908 8 150 0 Open ; + P-360 J-512 J-383 1935.25 8 150 0 Open ; + P-361 J-345 J-421 310.72 12 150 0 Open ; + P-362 J-275 J-471 145.88 6 150 0 Open ; + P-363 J-510 J-513 3099.239 4 150 0 Open ; + P-364 J-443 J-462 198.729 4 150 0 Open ; + P-365 O-Pump-2 J-596 3694.81 12 150 0 Open ; + P-366 J-406 J-516 531.869 4 150 0 Open ; + P-367 J-488 J-517 2170.52 8 150 0 Open ; + P-368 J-274 O-Pump-1 1146.469 12 150 0 Open ; + P-369 J-309 J-518 538.429 6 150 0 Open ; + P-37 J-66 J-219 538.099 8 150 0 Open ; + P-370 J-499 J-519 526.549 4 150 0 Open ; + P-371 J-520 J-357 392.649 6 150 0 Open ; + P-372 J-521 J-446 2371.989 4 150 0 Open ; + P-373 J-9 J-343 158.899 4 150 0 Open ; + P-374 J-397 J-223 26.92 4 150 0 Open ; + P-375 J-522 J-392 1394.599 6 150 0 Open ; + P-376 J-381 J-523 2102.07 4 150 0 Open ; + P-377 J-434 J-344 694.409 6 150 0 Open ; + P-378 J-524 J-525 453.69 6 150 0 Open ; + P-379 J-434 J-376 364.279 6 150 0 Open ; + P-38 J-37 J-68 842.89 8 150 0 Open ; + P-380 J-408 J-475 2287.979 12 150 0 Open ; + P-381 J-526 J-486 388.359 6 150 0 Open ; + P-382 J-527 J-528 288.51 6 150 0 Open ; + P-383 J-529 J-530 891.979 12 150 0 Open ; + P-384 J-426 J-345 506.299 12 150 0 Open ; + P-385 J-531 J-291 226.809 6 150 0 Open ; + P-386 J-450 J-532 849.469 4 150 0 Open ; + P-387 J-294 J-522 338.429 6 150 0 Open ; + P-388 J-462 J-369 460.17 4 150 0 Open ; + P-389 J-533 J-59q 1238.364 6 150 0 Open ; + P-39 J-47 J-66 328.25 8 150 0 Open ; + P-390 J-535 J-536 283.519 4 150 0 Open ; + P-391 J-422 J-520 673.34 6 150 0 Open ; + P-392 J-537 J-85 361.115 4 150 0 Open ; + P-393 J-539 J-540 835.609 6 150 0 Open ; + P-394 J-540 J-294 100.529 6 150 0 Open ; + P-395 J-486 J-246 399.72 6 150 0 Open ; + P-396 J-357 J-542 266.679 6 150 0 Open ; + P-397 J-543 J-544 294.019 6 150 0 Open ; + P-398 J-545 J-546 1169.619 4 150 0 Open ; + P-399 J-525 J-547 405.179 6 150 0 Open ; + P-4 J-7 J-515 90.162 8 150 0 Open ; + P-40 J-59k J-59l 469.26 8 150 0 Open ; + P-400 J-548 J-549 502.42 4 150 0 Open ; + P-401 J-542 J-550 447.899 6 150 0 Open ; + P-402 J-512 J-551 1121.27 8 150 0 Open ; + P-403 J-410 J-545 1030.55 4 150 0 Open ; + P-404 J-255 J-552 642.69 6 150 0 Open ; + P-405 J-414 J-553 294.589 12 150 0 Open ; + P-406 J-338 J-554 1127.449 6 150 0 Open ; + P-407 J-393 J-539 431.579 6 150 0 Open ; + P-408 J-1 J-512 2397.899 8 150 0 Open ; + P-409 J-423 J-555 1213.43 8 150 0 Open ; + P-41 J-71 J-399 188.699 8 150 0 Open ; + P-410 J-223 J-296 1074.8 4 150 0 Open ; + P-411 J-503 J-556 445.799 4 150 0 Open ; + P-412 J-532 J-87 2193.51 4 150 0 Open ; + P-413 J-532 J-484 42.47 4 150 0 Open ; + P-414 J-440 J-557 438 8 150 0 Open ; + P-415 J-558 J-459 295.29 6 150 0 Open ; + P-416 J-545 J-559 2508.32 4 150 0 Open ; + P-417 J-5 J-529 125.489 12 150 0 Open ; + P-418 J-439 J-535 503.39 6 150 0 Open ; + P-419 J-560 J-561 370.45 8 150 0 Open ; + P-42 J-73 J-59g 446.179 8 150 0 Open ; + P-420 J-562 J-563 3642.199 4 150 0 Open ; + P-421 J-541 J-564 531.94 6 150 0 Open ; + P-422 J-440 J-467 374.19 8 150 0 Open ; + P-423 J-255 J-558 377.679 6 150 0 Open ; + P-424 J-565 J-454 359.01 12 150 0 Open ; + P-425 J-566 J-527 907.469 6 150 0 Open ; + P-426 J-87 J-396 3219.54 4 150 0 Open ; + P-427 J-567 J-528 591.14 6 150 0 Open ; + P-428 J-510 J-568 4725.709 3 150 0 Open ; + P-429 J-569 J-570 1739.869 3 150 0 Open ; + P-43 J-75 J-59d 560.69 8 150 0 Open ; + P-430 J-437 J-553 78.709 6 150 0 Open ; + P-431 J-460 J-571 337.19 4 150 0 Open ; + P-432 J-414 J-565 75.93 6 150 0 Open ; + P-433 J-454 J-426 431.14 12 150 0 Open ; + P-434 J-553 J-467 602.059 6 150 0 Open ; + P-435 J-408 J-572 1146.25 4 150 0 Open ; + P-436 J-393 J-293 326.85 6 150 0 Open ; + P-437 J-553 J-212 374.299 12 150 0 Open ; + P-438 J-361 J-495 2316.889 6 150 0 Open ; + P-439 J-565 J-437 293.1 12 150 0 Open ; + P-44 J-59b J-59e 2649.379 8 150 0 Open ; + P-440 J-441 J-365 398.25 6 150 0 Open ; + P-441 J-573 J-229 497.98 12 150 0 Open ; + P-442 J-391 J-552 754.63 6 150 0 Open ; + P-443 J-469 J-574 992.89 4 150 0 Open ; + P-444 J-385 J-366 299.269 6 150 0 Open ; + P-445 J-423 J-353 760.5 8 150 0 Open ; + P-446 J-542 J-478 250.639 6 150 0 Open ; + P-447 J-520 J-478 312.769 6 150 0 Open ; + P-448 J-538 J-575 776.94 4 150 0 Open ; + P-449 J-576 J-577 723.049 6 150 0 Open ; + P-45 J-79 J-33 647.78 8 150 0 Open ; + P-450 J-578 J-237 1845.52 6 150 0 Open ; + P-451 J-567 J-527 877.869 6 150 0 Open ; + P-452 J-386 J-580 307.98 4 150 0 Open ; + P-453 J-318 J-581 642.83 4 150 0 Open ; + P-454 J-582 J-583 340.98 6 150 0 Open ; + P-455 J-548 J-584 1761.02 4 150 0 Open ; + P-456 J-528 J-539 356.42 6 150 0 Open ; + P-457 J-297 J-381 3070.25 6 150 0 Open ; + P-458 J-318 J-492 671.5 4 150 0 Open ; + P-459 J-573 J-333 927.25 3 150 0 Open ; + P-46 J-81 J-80 828.179 8 150 0 Open ; + P-460 J-560 J-585 1487.369 8 150 0 Open ; + P-461 J-351 J-586 791.39 4 150 0 Open ; + P-462 J-587 J-588 363.059 6 150 0 Open ; + P-463 J-351 J-589 734.44 4 150 0 Open ; + P-464 J-590 J-591 740.82 6 150 0 Open ; + P-465 J-439 J-313 719.729 8 150 0 Open ; + P-466 J-367 J-592 488.089 8 150 0 Open ; + P-467 J-593 J-594 1214.17 4 150 0 Open ; + P-468 J-595 J-596 117.269 12 150 0 Open ; + P-469 J-597 J-364 982.229 6 150 0 Open ; + P-47 J-37 J-103 1180.17 8 150 0 Open ; + P-470 J-417 J-5 1666.119 12 150 0 Open ; + P-471 J-331 J-598 630.809 6 150 0 Open ; + P-472 J-351 J-319 549.14 4 150 0 Open ; + P-473 J-427 J-429 507.309 12 150 0 Open ; + P-474 J-506 J-599 399.75 6 150 0 Open ; + P-475 J-392 J-567 283.459 6 150 0 Open ; + P-476 J-552 J-558 349.589 6 150 0 Open ; + P-477 J-484 J-469 518.19 4 150 0 Open ; + P-478 J-290 J-600 1215.079 4 150 0 Open ; + P-479 J-484 J-408 2241.09 12 150 0 Open ; + P-48 J-84 J-83 335.029 8 150 0 Open ; + P-480 J-495 J-316 43.5 6 150 0 Open ; + P-481 J-601 J-343 738.859 6 150 0 Open ; + P-482 J-458 J-506 1231.3 4 150 0 Open ; + P-483 J-388 J-504 861.299 6 150 0 Open ; + P-484 J-513 J-573 51.2 3 150 0 Open ; + P-485 J-490 J-602 206.57 6 150 0 Open ; + P-486 J-501 J-504 965.059 6 150 0 Open ; + P-487 J-603 J-547 1480.25 4 150 0 Open ; + P-488 J-604 J-582 6.679 6 150 0 Open ; + P-489 J-458 J-605 637.32 4 150 0 Open ; + P-49 J-86 J-227 771.969 8 150 0 Open ; + P-490 J-482 J-425 441.329 6 150 0 Open ; + P-491 J-606 J-361 135.639 6 150 0 Open ; + P-492 J-590 J-422 471.7 6 150 0 Open ; + P-493 J-425 J-607 540.71 4 150 0 Open ; + P-494 J-608 J-471 559.049 6 150 0 Open ; + P-495 J-476 J-282 514.489 4 150 0 Open ; + P-496 J-609 J-610 270.679 8 150 0 Open ; + P-497 J-359 J-590 690.039 6 150 0 Open ; + P-498 J-483 J-611 508.209 6 150 0 Open ; + P-499 J-499 J-562 785.409 4 150 0 Open ; + P-5 J-9 J-230 1614.02 4 150 0 Open ; + P-50 J-88 J-96 221.369 8 150 0 Open ; + P-500 J-262 J-612 5383.589 12 150 0 Open ; + P-501 J-614 J-313 950.489 8 150 0 Open ; + P-502 J-611 J-615 303.779 4 150 0 Open ; + P-503 J-313 J-367 372.929 8 150 0 Open ; + P-504 J-612 J-616 6.389 12 150 0 Open ; + P-505 J-400 J-617 3991.58 16 140 0 Open ; + P-506 J-481 J-618 436.959 6 150 0 Open ; + P-507 J-619 J-609 1055.38 8 150 0 Open ; + P-508 J-500 J-619 2218.6 8 150 0 Open ; + P-509 J-490 J-620 708.69 6 150 0 Open ; + P-51 J-90 J-91 1318.396 8 150 0 Open ; + P-510 J-621 J-622 490.79 6 150 0 Open ; + P-511 J-619 J-623 1954.819 8 150 0 Open ; + P-512 J-411 J-624 405.16 6 150 0 Open ; + P-513 J-625 J-626 1406.609 8 150 0 Open ; + P-514 J-513 J-569 57.849 4 150 0 Open ; + P-515 J-535 J-501 397.429 6 150 0 Open ; + P-516 J-379 J-604 1223.18 6 150 0 Open ; + P-517 J-374 J-562 618.77 4 150 0 Open ; + P-518 J-287 J-508 339.529 6 150 0 Open ; + P-519 J-627 J-541 414.64 6 150 0 Open ; + P-52 J-36 J-92 342.269 8 150 0 Open ; + P-520 J-578 J-533 336.739 6 150 0 Open ; + P-521 J-540 J-248 765.549 6 150 0 Open ; + P-522 J-222 J-627 542.88 6 150 0 Open ; + P-523 J-628 J-191 490.549 4 150 0 Open ; + P-524 J-350 J-629 280.67 4 150 0 Open ; + P-525 J-321 J-277 4237.2 12 150 0 Open ; + P-526 J-455 J-347 467.239 12 150 0 Open ; + P-527 J-447 J-630 1836.959 4 150 0 Open ; + P-528 J-508 J-321 29.139 6 150 0 Open ; + P-529 J-617 J-274 4556.22 16 140 0 Open ; + P-53 J-93 J-89 248.076 8 150 0 Open ; + P-530 J-631 J-593 1815.709 4 150 0 Open ; + P-531 J-350 J-307 1223.02 4 150 0 Open ; + P-532 J-530 J-377 436.67 12 150 0 Open ; + P-533 J-631 J-632 927.559 6 150 0 Open ; + P-534 J-582 J-258 115.669 4 150 0 Open ; + P-535 J-611 J-503 243.009 4 150 0 Open ; + P-536 R-1 I-Pump-2 314.94 16 150 0 Open ; + P-537 J-410 J-633 1725.8 4 150 0 Open ; + P-538 J-258 T-4 417.67 16 140 0 Open ; + P-539 J-475 T-1 609.58 16 140 0 Open ; + P-54 J-120 J-104 541.869 8 150 0 Open ; + P-540 J-375 T-3 219.139 12 150 0 Open ; + P-541 J-637 T-2 509.739 10 150 0 Open ; + P-542 J-583 J-638 216.089 6 150 0 Open ; + P-543 J-333 J-201 700.34 4 150 0 Open ; + P-544 J-563 J-639 809.09 4 150 0 Open ; + P-545 J-563 J-640 412.47 4 150 0 Open ; + P-546 J-521 J-203 1180.4 3 150 0 Open ; + P-547 J-620 J-608 392.67 6 150 0 Open ; + P-548 J-281 J-641 345.72 8 150 0 Open ; + P-549 J-521 J-310 176.839 4 150 0 Open ; + P-55 J-97 J-68 869.58 8 150 0 Open ; + P-550 J-534 J-642 1917.77 6 150 0 Open ; + P-551 J-610 J-641 20.5 8 150 0 Open ; + P-552 J-643 J-221 31.709 6 150 0 Open ; + P-553 J-579 J-644 389.72 6 150 0 Open ; + P-554 J-577 J-620 2239.82 4 150 0 Open ; + P-555 J-543 J-59r 395.674 6 150 0 Open ; + P-556 J-232 J-166 1002.225 12 150 0 Open ; + P-557 J-645 J-525 1557.03 4 150 0 Open ; + P-558 J-609 J-621 823.549 6 150 0 Open ; + P-559 J-352 J-394 90.099 6 150 0 Open ; + P-56 J-98 J-99 451.344 8 150 0 Open ; + P-560 J-383 J-412 468.059 8 150 0 Open ; + P-561 J-646 J-647 880.619 6 150 0 Open ; + P-562 J-637 J-648 627.75 6 150 0 Open ; + P-563 J-643 J-576 88.61 6 150 0 Open ; + P-564 J-622 J-55 516.33 6 150 0 Open ; + P-565 J-627 J-645 276.029 6 150 0 Open ; + P-566 J-646 J-476 2359.31 4 150 0 Open ; + P-567 J-644 J-643 507.769 6 150 0 Open ; + P-568 J-649 J-276 2649.409 8 150 0 Open ; + P-569 J-492 J-254 433.97 4 150 0 Open ; + P-57 J-73 J-59f 686.01 8 150 0 Open ; + P-570 J-576 J-650 514.789 6 150 0 Open ; + P-571 J-651 J-652 2021.199 6 150 0 Open ; + P-572 J-271 J-653 1087.54 4 150 0 Open ; + P-573 J-651 J-654 806.219 6 150 0 Open ; + P-574 J-561 J-617 572.25 8 150 0 Open ; + P-575 J-645 J-603 390.429 6 150 0 Open ; + P-576 J-561 J-655 301.75 8 150 0 Open ; + P-577 J-642 J-578 117.08 6 150 0 Open ; + P-578 J-603 J-628 331.22 6 150 0 Open ; + P-579 J-277 J-610 1981.989 12 150 0 Open ; + P-58 J-23 J-399 443.582 8 150 0 Open ; + P-580 J-534 J-642 1147.579 6 150 0 Open ; + P-581 J-479 J-656 305.19 6 150 0 Open ; + P-582 J-657 J-658 503.809 6 150 0 Open ; + P-583 J-390 J-395 1357.859 8 150 0 Open ; + P-584 J-659 J-660 321.04 8 150 0 Open ; + P-585 J-658 J-646 2478.37 6 150 0 Open ; + P-586 J-395 J-661 488.16 6 150 0 Open ; + P-587 J-656 J-520 1145.839 6 150 0 Open ; + P-588 J-621 J-662 969.28 6 150 0 Open ; + P-589 J-533 J-543 1451.369 6 150 0 Open ; + P-59 J-102 J-83 258.344 8 150 0 Open ; + P-590 J-663 J-664 435.85 8 150 0 Open ; + P-591 J-665 J-666 490.279 12 150 0 Open ; + P-592 J-666 J-667 317.459 8 150 0 Open ; + P-593 J-658 J-668 345.679 8 150 0 Open ; + P-594 J-659 J-669 494.47 8 150 0 Open ; + P-595 J-671 J-209 515.979 8 150 0 Open ; + P-596 J-672 J-673 369.89 8 150 0 Open ; + P-597 J-674 J-675 428.089 6 150 0 Open ; + P-598 J-676 J-677 482.119 8 150 0 Open ; + P-599 J-678 J-679 59.659 6 150 0 Open ; + P-6 J-11 J-82 2616.084 4 150 0 Open ; + P-60 J-96 J-89 155.32 8 150 0 Open ; + P-600 J-680 J-681 635.409 4 150 0 Open ; + P-601 J-682 J-683 292.359 12 150 0 Open ; + P-602 J-683 J-684 265.959 12 150 0 Open ; + P-603 J-681 J-491 59.45 4 150 0 Open ; + P-604 J-685 J-679 17.75 6 150 0 Open ; + P-605 J-4 J-235 629.669 12 150 0 Open ; + P-606 J-686 J-687 489.32 6 150 0 Open ; + P-607 J-688 J-689 79.16 8 150 0 Open ; + P-608 J-596 J-690 748.599 8 150 0 Open ; + P-609 J-326 J-11 652.57 4 150 0 Open ; + P-61 J-105 J-122 295.859 8 150 0 Open ; + P-610 J-321 J-352 1871.449 6 150 0 Open ; + P-611 J-661 J-390 1713.14 8 150 0 Open ; + P-612 J-664 J-691 1171.3 8 150 0 Open ; + P-613 J-660 J-379 813.88 12 150 0 Open ; + P-614 J-608 J-301 618.07 6 150 0 Open ; + P-615 J-665 J-692 329.29 8 150 0 Open ; + P-616 J-326 J-693 1179.369 8 150 0 Open ; + P-617 J-666 J-604 430.88 12 150 0 Open ; + P-618 J-427 J-694 2780.02 12 150 0 Open ; + P-619 J-663 J-694 299.489 8 150 0 Open ; + P-62 J-108 J-99 1028.319 8 150 0 Open ; + P-620 J-695 J-696 1803.3 8 150 0 Open ; + P-621 J-697 J-698 134.869 6 150 0 Open ; + P-622 J-699 J-700 159.08 8 150 0 Open ; + P-623 J-689 J-701 47.419 8 150 0 Open ; + P-624 J-38 J-211 272.425 8 150 0 Open ; + P-625 J-702 J-703 312.66 8 150 0 Open ; + P-626 J-673 J-704 513.599 8 150 0 Open ; + P-627 J-705 J-706 834.77 8 150 0 Open ; + P-628 J-707 J-708 246.69 8 150 0 Open ; + P-629 J-694 J-665 676.01 12 150 0 Open ; + P-63 J-77 J-78 681.599 8 150 0 Open ; + P-630 J-709 J-710 647.719 8 150 0 Open ; + P-631 J-710 J-711 359.57 8 150 0 Open ; + P-632 J-711 J-712 751.57 8 150 0 Open ; + P-633 J-713 J-127 237.231 8 150 0 Open ; + P-634 J-715 J-178 354.849 8 150 0 Open ; + P-635 J-717 J-718 525.21 6 150 0 Open ; + P-636 J-719 J-720 438.109 6 150 0 Open ; + P-637 J-721 J-722 229.22 8 150 0 Open ; + P-638 J-723 J-724 1211.829 6 150 0 Open ; + P-639 J-725 J-672 328.809 8 150 0 Open ; + P-64 J-112 J-111 3382.416 8 150 0 Open ; + P-640 J-691 J-726 100.91 8 150 0 Open ; + P-641 J-686 J-727 364.47 8 150 0 Open ; + P-642 J-728 J-729 617.44 6 150 0 Open ; + P-643 J-730 J-731 313.799 8 150 0 Open ; + P-644 J-732 J-733 365.089 8 150 0 Open ; + P-645 J-734 J-530 43.299 4 150 0 Open ; + P-646 J-735 J-652 277.2 6 150 0 Open ; + P-647 J-736 J-732 197.279 8 150 0 Open ; + P-648 J-575 J-734 85.43 4 150 0 Open ; + P-649 J-737 J-738 86.47 8 150 0 Open ; + P-65 J-112 J-106 255.679 8 150 0 Open ; + P-650 J-728 J-739 230.52 6 150 0 Open ; + P-651 J-625 J-448 889.489 3 150 0 Open ; + P-652 J-740 J-741 291.91 6 150 0 Open ; + P-653 J-742 J-743 201.779 8 150 0 Open ; + P-654 J-740 J-108 620.09 8 150 0 Open ; + P-655 J-6 J-744 989.02 8 150 0 Open ; + P-656 J-235 J-660 1279.959 12 150 0 Open ; + P-657 J-638 J-745 70.48 6 150 0 Open ; + P-658 J-664 J-209 361.864 8 150 0 Open ; + P-659 J-657 J-746 491.29 8 150 0 Open ; + P-66 J-114 J-515 971.729 8 150 0 Open ; + P-660 J-747 J-363 23 12 150 0 Open ; + P-661 J-235 J-691 453.329 8 150 0 Open ; + P-662 J-579 J-748 933.25 6 150 0 Open ; + P-663 J-734 J-744 1438.359 3 150 0 Open ; + P-664 J-749 J-750 623.669 8 150 0 Open ; + P-665 J-751 J-752 212.44 8 150 0 Open ; + P-666 J-738 J-688 594.15 8 150 0 Open ; + P-667 J-292 J-697 621.159 6 150 0 Open ; + P-668 J-700 J-753 17.75 8 150 0 Open ; + P-669 J-745 J-754 1019.45 6 150 0 Open ; + P-67 J-115 J-69 212.85 8 150 0 Open ; + P-670 J-272 J-755 276.529 8 150 0 Open ; + P-671 J-756 J-757 1879.38 6 150 0 Open ; + P-672 J-422 J-747 643.26 12 150 0 Open ; + P-673 J-758 J-759 270.589 8 150 0 Open ; + P-674 J-572 J-272 2813.37 4 150 0 Open ; + P-675 J-564 J-760 32.189 6 150 0 Open ; + P-676 J-691 J-663 742.809 8 150 0 Open ; + P-677 J-397 J-758 586.57 6 150 0 Open ; + P-678 J-730 J-713 349.01 8 150 0 Open ; + P-679 J-697 J-329 440.85 6 150 0 Open ; + P-68 J-117 J-118 664.76 8 150 0 Open ; + P-680 J-652 J-761 95.94 6 150 0 Open ; + P-681 J-402 J-736 112.129 12 150 0 Open ; + P-682 J-747 J-762 886.799 6 150 0 Open ; + P-683 J-673 J-721 220.22 8 150 0 Open ; + P-684 J-763 J-764 143.61 8 150 0 Open ; + P-685 J-759 J-765 87.22 8 150 0 Open ; + P-686 J-766 J-767 156.399 6 150 0 Open ; + P-687 J-14 J-768 175.889 8 150 0 Open ; + P-688 J-769 J-770 674.96 8 150 0 Open ; + P-689 J-771 J-772 92.019 8 150 0 Open ; + P-69 J-119 J-67 662.871 8 150 0 Open ; + P-690 J-572 J-773 603.539 6 150 0 Open ; + P-691 J-774 J-775 1846.099 8 150 0 Open ; + P-692 J-732 J-682 769.489 8 150 0 Open ; + P-693 J-776 J-777 309.39 8 150 0 Open ; + P-694 J-547 J-735 88.819 6 150 0 Open ; + P-695 J-719 J-776 732.53 8 150 0 Open ; + P-696 J-703 J-702 2.019 8 150 0 Open ; + P-697 J-778 J-717 63.7 6 150 0 Open ; + P-698 J-779 J-780 176.449 8 150 0 Open ; + P-699 J-776 J-686 129.059 8 150 0 Open ; + P-7 J-13 J-110 116.681 8 150 0 Open ; + P-70 J-121 J-122 182.656 8 150 0 Open ; + P-700 J-718 J-712 326.25 6 150 0 Open ; + P-701 J-777 J-709 68.239 8 150 0 Open ; + P-702 J-303 J-625 361.1 3 150 0 Open ; + P-703 J-781 J-782 241.8 6 150 0 Open ; + P-704 J-744 J-783 503.95 3 150 0 Open ; + P-705 J-6 J-740 61.97 6 150 0 Open ; + P-706 J-593 J-784 1407.68 4 150 0 Open ; + P-707 J-724 J-777 510.41 8 150 0 Open ; + P-708 J-784 J-548 2832.04 4 150 0 Open ; + P-709 J-784 J-703 169.61 8 150 0 Open ; + P-71 J-59s J-59t 454.76 8 150 0 Open ; + P-710 J-780 J-719 329.019 8 150 0 Open ; + P-711 J-712 J-481 147.97 6 150 0 Open ; + P-712 J-743 J-785 1009.049 6 150 0 Open ; + P-713 J-786 J-787 960.03 8 150 0 Open ; + P-714 J-587 J-788 624.77 6 150 0 Open ; + P-715 J-789 J-790 245.339 8 150 0 Open ; + P-716 J-791 J-792 392.51 8 150 0 Open ; + P-717 J-793 J-690 436.989 8 150 0 Open ; + P-718 J-706 J-634 950.219 8 150 0 Open ; + P-719 J-764 J-794 101.83 8 150 0 Open ; + P-72 J-125 J-127 2099.31 8 150 0 Open ; + P-720 J-774 J-773 840.26 8 150 0 Open ; + P-721 J-795 J-796 136.779 6 150 0 Open ; + P-722 J-771 J-751 26.209 8 150 0 Open ; + P-723 J-795 J-797 323.6 6 150 0 Open ; + P-724 J-798 J-799 46.229 8 150 0 Open ; + P-725 J-789 J-800 277.88 8 150 0 Open ; + P-726 J-801 J-802 451.329 4 150 0 Open ; + P-727 J-446 J-801 814.039 4 150 0 Open ; + P-728 J-743 J-711 1858.5 8 150 0 Open ; + P-729 J-758 J-322 1626.52 6 150 0 Open ; + P-73 J-126 J-205 469.269 8 150 0 Open ; + P-730 J-710 J-718 337.579 8 150 0 Open ; + P-731 J-362 J-778 648.539 6 150 0 Open ; + P-732 J-701 J-803 520.78 8 150 0 Open ; + P-733 J-778 J-709 589.14 6 150 0 Open ; + P-734 J-804 J-339 740.21 6 150 0 Open ; + P-735 J-801 J-769 2916 8 150 0 Open ; + P-736 J-780 J-742 503.13 8 150 0 Open ; + P-737 J-661 J-804 1032.55 6 150 0 Open ; + P-738 J-286 J-737 1309.969 8 150 0 Open ; + P-739 J-804 J-805 1032.449 8 150 0 Open ; + P-74 J-129 J-164 584.915 8 150 0 Open ; + P-740 J-790 J-274 2855.1 12 150 0 Open ; + P-741 J-806 J-807 246.639 6 150 0 Open ; + P-742 J-418 J-436 3182.85 8 150 0 Open ; + P-743 J-808 J-809 61.7 6 150 0 Open ; + P-744 J-788 J-810 265.239 6 150 0 Open ; + P-745 J-811 J-786 601.09 8 150 0 Open ; + P-746 J-788 J-812 189.69 6 150 0 Open ; + P-747 J-706 J-634 775.539 8 150 0 Open ; + P-748 J-814 J-815 136.919 8 150 0 Open ; + P-749 J-782 J-728 172.179 6 150 0 Open ; + P-75 J-100 J-109 1708.589 8 150 0 Open ; + P-750 J-816 J-793 267.829 8 150 0 Open ; + P-751 J-817 J-818 207.61 6 150 0 Open ; + P-752 J-773 J-187 1203.42 6 150 0 Open ; + P-753 J-819 J-795 102.11 6 150 0 Open ; + P-754 J-722 J-820 142.47 8 150 0 Open ; + P-755 J-396 J-821 504.73 4 150 0 Open ; + P-756 J-799 J-822 701.02 8 150 0 Open ; + P-757 J-681 J-823 3398.32 4 150 0 Open ; + P-758 J-419 J-680 2909.31 4 150 0 Open ; + P-759 J-676 J-824 233.71 8 150 0 Open ; + P-76 J-133 J-77 142.164 8 150 0 Open ; + P-760 J-825 J-23 533.03 8 150 0 Open ; + P-761 J-748 J-826 20.25 6 150 0 Open ; + P-762 J-827 J-828 917.809 3 150 0 Open ; + P-763 J-829 J-830 127.12 8 150 0 Open ; + P-764 J-831 J-832 1422.3 8 150 0 Open ; + P-765 J-824 J-699 951.099 8 150 0 Open ; + P-766 J-704 J-738 637.239 8 150 0 Open ; + P-767 J-820 J-833 451.79 8 150 0 Open ; + P-768 J-266 J-834 611.719 8 150 0 Open ; + P-769 J-813 J-811 33.069 8 150 0 Open ; + P-77 J-137 J-153 956.94 8 150 0 Open ; + P-770 J-811 J-835 115.809 8 150 0 Open ; + P-771 J-509 J-827 42.549 6 150 0 Open ; + P-772 J-679 J-808 221.449 6 150 0 Open ; + P-773 J-760 J-273 175.77 6 150 0 Open ; + P-774 J-644 J-678 902.609 6 150 0 Open ; + P-775 J-624 J-837 312.529 6 150 0 Open ; + P-776 J-820 J-688 934.64 8 150 0 Open ; + P-777 J-810 J-781 141.119 6 150 0 Open ; + P-778 J-647 J-838 1240.8 8 150 0 Open ; + P-779 J-821 J-839 1346.65 4 150 0 Open ; + P-78 J-162 J-138 652.58 8 150 0 Open ; + P-780 J-825 J-101 135.789 8 150 0 Open ; + P-781 J-754 J-657 130.889 6 150 0 Open ; + P-782 J-837 J-840 242.36 6 150 0 Open ; + P-783 J-753 J-677 210.539 8 150 0 Open ; + P-784 J-821 J-841 504.309 8 150 0 Open ; + P-785 J-677 J-822 349.399 8 150 0 Open ; + P-786 J-833 J-803 628.179 8 150 0 Open ; + P-787 J-817 J-842 327.369 6 150 0 Open ; + P-788 J-837 J-843 124.449 8 150 0 Open ; + P-789 J-705 J-816 836.38 8 150 0 Open ; + P-79 J-244 J-243 1146.85 12 150 0 Open ; + P-790 J-781 J-844 217.009 6 150 0 Open ; + P-791 J-845 J-748 362.6 6 150 0 Open ; + P-792 J-846 J-266 419.38 8 150 0 Open ; + P-793 J-824 J-700 490.64 8 150 0 Open ; + P-794 J-346 J-806 1174.06 6 150 0 Open ; + P-795 J-822 J-676 736.39 8 150 0 Open ; + P-796 J-847 J-848 540.39 6 150 0 Open ; + P-797 J-756 J-674 761.94 6 150 0 Open ; + P-798 J-849 J-850 1353.13 8 150 0 Open ; + P-799 J-851 J-852 518.429 8 150 0 Open ; + P-8 J-16 J-226 1043.16 8 150 0 Open ; + P-80 J-141 J-59w 428.47 8 150 0 Open ; + P-800 J-853 J-854 510.54 8 150 0 Open ; + P-801 J-832 J-855 27.87 8 150 0 Open ; + P-802 J-814 J-3 961.84 6 150 0 Open ; + P-803 J-808 J-856 1116.16 6 150 0 Open ; + P-804 J-857 J-858 210.229 8 150 0 Open ; + P-805 J-826 J-685 408.82 6 150 0 Open ; + P-806 J-690 J-791 706.02 8 150 0 Open ; + P-807 J-445 J-355 67.18 6 150 0 Open ; + P-808 J-741 J-587 125.12 6 150 0 Open ; + P-809 J-806 J-817 214.839 6 150 0 Open ; + P-81 J-143 J-141 205.869 8 150 0 Open ; + P-810 J-809 J-577 435.75 6 150 0 Open ; + P-811 J-845 J-859 1328.579 6 150 0 Open ; + P-812 J-684 J-707 1273.119 12 150 0 Open ; + P-813 J-831 J-832 437.769 8 150 0 Open ; + P-814 J-322 J-831 1810.099 6 150 0 Open ; + P-815 J-860 J-392 297.67 8 150 0 Open ; + P-816 J-853 J-861 1019.099 8 150 0 Open ; + P-817 J-848 J-445 399.6 8 150 0 Open ; + P-818 J-848 J-624 285.22 6 150 0 Open ; + P-819 J-827 J-649 1323.479 6 150 0 Open ; + P-82 J-145 J-59n 597.349 8 150 0 Open ; + P-820 J-522 J-862 323.39 6 150 0 Open ; + P-821 J-860 J-684 1095.17 8 150 0 Open ; + P-822 J-863 J-864 195.94 6 150 0 Open ; + P-823 J-772 J-800 585.909 8 150 0 Open ; + P-824 J-684 J-863 377.679 6 150 0 Open ; + P-825 J-585 J-560 1032.089 8 150 0 Open ; + P-826 J-862 J-526 72.54 6 150 0 Open ; + P-827 J-759 J-825 571.159 8 150 0 Open ; + P-828 J-735 J-761 1752.06 8 150 0 Open ; + P-829 J-675 J-865 249.32 6 150 0 Open ; + P-83 J-145 J-34 902.669 8 150 0 Open ; + P-830 J-656 J-866 180.199 6 150 0 Open ; + P-831 J-459 J-867 326.119 6 150 0 Open ; + P-832 J-868 J-585 491.209 8 150 0 Open ; + P-833 J-733 J-860 349.869 8 150 0 Open ; + P-834 J-752 J-13 618.169 8 150 0 Open ; + P-835 J-816 J-869 137.789 8 150 0 Open ; + P-836 J-724 J-606 1095.709 6 150 0 Open ; + P-837 J-839 J-870 2484.8 4 150 0 Open ; + P-838 J-23 J-871 504.7 8 150 0 Open ; + P-839 J-23 J-872 142.509 8 150 0 Open ; + P-84 J-140 J-59z 633.78 8 150 0 Open ; + P-840 J-854 J-873 512.51 8 150 0 Open ; + P-841 J-874 J-851 22.239 8 150 0 Open ; + P-842 J-875 J-876 18.809 8 150 0 Open ; + P-843 J-775 J-877 737.789 8 150 0 Open ; + P-844 J-704 J-878 873.979 8 150 0 Open ; + P-845 J-858 J-879 105.48 8 150 0 Open ; + P-846 J-754 J-210 645.509 8 150 0 Open ; + P-847 J-306 J-845 43.319 6 150 0 Open ; + P-848 J-874 J-834 439.429 8 150 0 Open ; + P-849 J-868 J-455 458.019 12 150 0 Open ; + P-85 J-140 J-141 1025.589 8 150 0 Open ; + P-850 J-881 J-787 47.459 12 150 0 Open ; + P-851 J-840 J-882 242.889 6 150 0 Open ; + P-852 J-883 J-814 430.88 6 150 0 Open ; + P-853 J-884 J-883 77.309 6 150 0 Open ; + P-854 J-411 J-884 71.54 6 150 0 Open ; + P-855 J-882 J-341 293.29 6 150 0 Open ; + P-856 J-674 J-260 63.15 6 150 0 Open ; + P-857 J-761 J-651 355.19 6 150 0 Open ; + P-858 J-524 J-885 661.2 6 150 0 Open ; + P-859 J-863 J-862 300.279 6 150 0 Open ; + P-86 J-169 J-158 495.63 6 150 0 Open ; + P-860 J-39 J-715 545.65 8 150 0 Open ; + P-861 J-39 J-695 609.9 8 150 0 Open ; + P-862 J-867 J-385 386.519 6 150 0 Open ; + P-863 J-415 J-682 725.89 12 150 0 Open ; + P-864 J-713 J-886 295.119 8 150 0 Open ; + P-865 J-364 J-868 301.559 12 150 0 Open ; + P-866 J-885 J-163 164.029 6 150 0 Open ; + P-867 J-695 J-108 435.04 8 150 0 Open ; + P-868 J-675 J-887 348.98 8 150 0 Open ; + P-869 J-733 J-683 947.5 8 150 0 Open ; + P-87 J-150 J-128 139.349 8 150 0 Open ; + P-870 J-775 J-888 225.059 8 150 0 Open ; + P-871 J-769 J-889 1581.03 8 150 0 Open ; + P-872 J-852 J-873 714.5 8 150 0 Open ; + P-873 J-855 J-819 979.429 6 150 0 Open ; + P-874 J-749 J-774 1211.68 8 150 0 Open ; + P-875 J-849 J-890 727.099 8 150 0 Open ; + P-876 J-875 J-19 89.25 8 150 0 Open ; + P-877 J-854 J-891 431.48 8 150 0 Open ; + P-878 J-890 J-892 2012.869 8 150 0 Open ; + P-879 J-787 J-893 67.33 12 150 0 Open ; + P-88 J-151 J-176 414.19 8 150 0 Open ; + P-880 J-893 J-595 1891.29 12 150 0 Open ; + P-881 J-834 J-749 939.19 8 150 0 Open ; + P-882 J-890 J-894 2052.32 8 150 0 Open ; + P-883 J-616 J-881 4073.429 12 150 0 Open ; + P-884 J-723 J-895 115.529 4 150 0 Open ; + P-885 J-873 J-853 1906.449 8 150 0 Open ; + P-886 J-861 J-852 1250.609 8 150 0 Open ; + P-887 J-861 J-846 1068.77 8 150 0 Open ; + P-888 J-867 J-163 1746.359 8 150 0 Open ; + P-889 J-715 J-730 629.88 8 150 0 Open ; + P-89 J-137 J-136 707.19 8 150 0 Open ; + P-890 J-889 J-897 462.73 4 150 0 Open ; + P-891 J-570 J-849 150.08 8 150 0 Open ; + P-892 J-19 J-767 2149.26 8 150 0 Open ; + P-893 J-569 J-898 422.519 4 150 0 Open ; + P-894 J-772 J-899 91.05 8 150 0 Open ; + P-895 J-447 J-889 1833.839 4 150 0 Open ; + P-896 J-829 J-789 318.23 8 150 0 Open ; + P-897 J-767 J-876 299.029 6 150 0 Open ; + P-898 J-898 J-483 1197.56 4 150 0 Open ; + P-899 J-752 J-829 197.85 8 150 0 Open ; + P-9 J-17 J-273 95.489 12 150 0 Open ; + P-90 J-156 J-189 282.57 6 150 0 Open ; + P-900 J-865 J-308 756.53 6 150 0 Open ; + P-901 J-791 J-705 1075.53 8 150 0 Open ; + P-902 J-13 J-900 183.24 8 150 0 Open ; + P-903 J-714 J-38 637.52 8 150 0 Open ; + P-904 J-901 J-902 342.7 8 150 0 Open ; + P-905 J-895 J-631 1173.199 4 150 0 Open ; + P-906 J-903 J-904 36.13 12 150 0 Open ; + P-907 J-895 J-779 409.14 8 150 0 Open ; + P-908 J-901 J-756 662.489 6 150 0 Open ; + P-909 J-876 J-857 101.51 8 150 0 Open ; + P-91 J-214 J-158 855.34 6 150 0 Open ; + P-910 J-412 J-895 514.239 8 150 0 Open ; + P-911 J-846 J-874 629.46 8 150 0 Open ; + P-912 J-841 J-905 2491.639 8 150 0 Open ; + P-913 J-898 J-229 50.29 8 150 0 Open ; + P-914 J-905 J-839 500.45 8 150 0 Open ; + P-915 J-904 J-790 792.789 12 150 0 Open ; + P-916 J-766 J-798 239.57 8 150 0 Open ; + P-917 J-764 J-907 193.49 8 150 0 Open ; + P-918 J-347 J-903 514.19 12 150 0 Open ; + P-919 J-49 J-766 953.44 8 150 0 Open ; + P-92 J-59o J-59 1737.206 8 150 0 Open ; + P-920 J-800 J-903 588.46 8 150 0 Open ; + P-921 J-841 J-905 1345.67 8 150 0 Open ; + P-922 J-902 J-908 257.57 8 150 0 Open ; + P-923 J-779 J-49 2686.219 8 150 0 Open ; + P-924 J-606 J-901 333.799 6 150 0 Open ; + P-925 J-799 J-763 265.64 8 150 0 Open ; + P-926 J-794 J-771 207.839 8 150 0 Open ; + P-927 J-628 J-909 385.579 6 150 0 Open ; + P-928 J-910 J-387 4417.689 6 150 0 Open ; + P-929 J-17 J-524 360.029 6 150 0 Open ; + P-93 J-130 J-162 228.806 8 150 0 Open ; + P-930 J-707 J-17 322.47 12 150 0 Open ; + P-931 J-909 J-911 969.869 8 150 0 Open ; + P-932 J-912 J-245 206.08 6 150 0 Open ; + P-933 J-911 J-913 328.119 8 150 0 Open ; + P-934 J-911 J-912 348.2 8 150 0 Open ; + P-935 J-641 J-233 200.889 6 150 0 Open ; + P-936 J-914 J-637 744.219 10 150 0 Open ; + P-937 J-281 J-914 122.029 10 150 0 Open ; + P-938 J-915 J-916 692.71 8 150 0 Open ; + P-939 J-917 J-918 2010.75 8 150 0 Open ; + P-94 J-176 J-154 841.27 8 150 0 Open ; + P-940 J-910 J-919 116.8 8 150 0 Open ; + P-941 J-916 J-920 15.859 8 150 0 Open ; + P-942 J-18 J-233 351.239 12 150 0 Open ; + P-943 J-920 J-916 17.54 8 150 0 Open ; + P-944 J-622 J-921 364.869 6 150 0 Open ; + P-945 J-922 J-923 804.299 8 150 0 Open ; + P-946 J-836 J-17 26.319 6 150 0 Open ; + P-947 J-924 J-925 581.15 8 150 0 Open ; + P-948 J-922 J-926 255.009 8 150 0 Open ; + P-949 J-927 J-922 671.5 8 150 0 Open ; + P-95 J-134 J-142 925.28 8 150 0 Open ; + P-950 J-648 J-928 1781.939 8 150 0 Open ; + P-951 J-24 J-929 331.089 8 150 0 Open ; + P-952 J-930 J-929 2225.11 8 150 0 Open ; + P-953 J-924 J-25 2382.719 8 150 0 Open ; + P-954 J-921 J-931 223.339 8 150 0 Open ; + P-955 J-932 J-54 547.2 8 150 0 Open ; + P-956 J-915 J-933 1131.64 8 150 0 Open ; + P-957 J-54 J-934 129.71 8 150 0 Open ; + P-958 J-916 J-915 3356.959 8 150 0 Open ; + P-959 J-649 J-26 1420.14 6 150 0 Open ; + P-96 J-124 J-239 56.939 8 150 0 Open ; + P-960 J-918 J-933 155.13 8 150 0 Open ; + P-961 J-909 J-183 1261.876 6 150 0 Open ; + P-962 J-927 J-920 182.71 8 150 0 Open ; + P-963 J-917 J-918 1086.209 8 150 0 Open ; + P-964 J-921 J-932 1231.099 6 150 0 Open ; + P-965 J-25 J-924 212.97 8 150 0 Open ; + P-966 J-933 J-24 351.07 8 150 0 Open ; + P-967 J-928 J-927 1447.27 8 150 0 Open ; + P-968 J-910 J-917 1449.25 8 150 0 Open ; + P-969 J-929 J-930 83.129 8 150 0 Open ; + P-97 J-156 J-215a 622.549 6 150 0 Open ; + P-970 J-648 J-196 1480.547 6 150 0 Open ; + P-971 J-252 J-251 855.51 8 150 0 Open ; + P-972 J-938 J-207 454.013 4 150 0 Open ; + P-973 J-192 J-52 635.539 4 150 0 Open ; + P-974 J-941 J-207 187.41 4 150 0 Open ; + P-975 J-85 J-208 170.729 4 150 0 Open ; + P-976 J-229 J-906 1924.42 8 150 0 Open ; + P-977 R-1 I-Pump-1 239.839 12 150 0 Open ; + P-978 J-65 J-203 479.329 6 150 0 Open ; + P-979 J-172 J-203 500.554 6 150 0 Open ; + P-98 J-145 J-59o 1329.778 8 150 0 Open ; + P-980 J-201 J-406 1203.77 4 150 0 Open ; + P-981 J-173 J-201 2147.62 6 150 0 Open ; + P-982 J-200 J-268 535.651 8 150 0 Open ; + P-983 J-263 J-264 503.225 8 150 0 Open ; + P-984 J-264 J-265 1159.309 8 150 0 Open ; + P-985 J-249 J-257 3376.849 4 150 0 Open ; + P-986 J-252 J-936 242.642 8 150 0 Open ; + P-987 J-251 J-249 554.171 4 150 0 Open ; + P-988 J-399 J-72 357.455 8 150 0 Open ; + P-989 J-72 J-101 416.291 8 150 0 Open ; + P-99 J-171 J-65 292.489 6 150 0 Open ; + P-990 J-21 J-23 535.314 8 150 0 Open ; + P-991 J-33 J-21 697.371 8 150 0 Open ; + P-992 J-80 J-33 1914.141 8 150 0 Open ; + P-993 J-82 J-12 316.195 4 150 0 Open ; + P-994 J-189 J-82 440.734 6 150 0 Open ; + P-995 J-155 J-215a 457.922 6 150 0 Open ; + P-996 J-215a J-169 618.068 6 150 0 Open ; + P-997 J-169 J-149 436.207 6 150 0 Open ; + P-998 J-148 J-157 1198.66 6 150 0 Open ; + P-999 J-214 J-148 213.868 6 150 0 Open ; + +[PUMPS] +;ID Node1 Node2 Parameters + ~@Pump-1 I-Pump-1 O-Pump-1 POWER 150 ; + ~@Pump-2 I-Pump-2 O-Pump-2 POWER 50 ; + +[VALVES] +;ID Node1 Node2 Diameter Type Setting MinorLoss + +[TAGS] + +[DEMANDS] +;Junction Demand Pattern Category + +[STATUS] +;ID Status/Setting + ~@Pump-1 Closed + +[PATTERNS] +;ID Multipliers +; + 1 0.33 0.25 0.209 0.209 0.259 0.36 + 1 0.529 0.91 1.2 1.299 1.34 1.34 + 1 1.32 1.269 1.25 1.25 1.279 1.37 + 1 1.519 1.7 1.75 1.669 0.899 0.479 +; + 11 1 +; + ENRG1 1 1 1 1 1 1 + ENRG1 1 1 1 1 1 1 + ENRG1 1 1 1 1 1 1 + ENRG1 1 1 1 1 1 + +[CURVES] +;ID X-Value Y-Value + +[CONTROLS] +LINK ~@Pump-1 OPEN IF NODE T-3 BELOW 90.75 +LINK ~@Pump-1 CLOSED IF NODE T-3 ABOVE 105.75 + + +[RULES] + + +[ENERGY] + Global Efficiency 75 + Global Price 0 + Global Pattern ENRG1 + Demand Charge 0 + +[EMITTERS] +;Junction Coefficient + +[QUALITY] +;Node InitQual + +[SOURCES] +;Node Type Quality Pattern + +[REACTIONS] +;Type Pipe/Tank Coefficient + + +[REACTIONS] + Order Bulk 1 + Order Tank 1 + Order Wall 1 + Global Bulk 0 + Global Wall 0 + Limiting Potential 0 + Roughness Correlation 0 + +[MIXING] +;Tank Model + +[TIMES] + Duration 0 + Hydraulic Timestep 1:00 + Quality Timestep 1:00 + Pattern Timestep 1:00 + Pattern Start 0:00 + Report Timestep 1:00 + Report Start 0:00 + Start ClockTime 12 am + Statistic NONE + +[REPORT] + Status Full + Summary No + Page 0 + +[OPTIONS] + Units GPM + Headloss H-W + Specific Gravity 1 + Viscosity 1 + Trials 100 + Accuracy 0.0001 + CHECKFREQ 2 + MAXCHECK 10 + DAMPLIMIT 0 + Unbalanced Continue 10 + Pattern 1 + Demand Multiplier 1.0 + Emitter Exponent 0.5 + Quality Trace R-1 + Diffusivity 0.05 + Tolerance 0.01 + +[COORDINATES] +;Node X-Coord Y-Coord + J-1 4971350.00 3905604.00 + J-10 4951637.00 3894754.00 + J-100 4990101.75 3908356.00 + J-101 4962702.50 3897121.00 + J-102 4987081.62 3909239.00 + J-103 4986599.95 3909360.00 + J-104 4976883.51 3913768.00 + J-105 4984081.56 3903570.00 + J-106 4983297.03 3906772.00 + J-107 4985413.22 3904571.00 + J-108 4984461.00 3905603.00 + J-109 4988474.65 3908076.00 + J-11 4965574.50 3903939.00 + J-110 4977302.39 3911933.00 + J-111 4982997.93 3903369.00 + J-112 4983108.30 3906600.00 + J-113 4985449.01 3909066.00 + J-114 4985707.01 3903651.00 + J-115 4992198.78 3909390.00 + J-116 4977520.07 3912596.00 + J-117 4986319.06 3906781.00 + J-118 4986419.40 3906159.00 + J-119 4993232.24 3909199.00 + J-12 4965391.50 3901233.00 + J-120 4977338.84 3913504.00 + J-121 4984101.63 3903259.00 + J-122 4983930.05 3903317.00 + J-123 4977429.25 3912782.00 + J-124 4975449.33 3906572.00 + J-125 4987203.78 3905793.00 + J-126 4986808.51 3905665.00 + J-127 4986103.00 3904948.00 + J-128 4986849.47 3906329.00 + J-129 4979736.99 3900731.00 + J-13 4977394.49 3911861.00 + J-130 4980910.93 3901343.00 + J-131 4975763.61 3906219.00 + J-132 4975809.45 3906192.00 + J-133 4990382.69 3909269.00 + J-134 4975927.10 3906120.00 + J-135 4982919.88 3902749.00 + J-136 4981092.68 3899913.00 + J-137 4981202.37 3900538.00 + J-138 4981633.16 3901353.00 + J-14 4977118.00 3912076.00 + J-140 4974880.71 3904303.00 + J-141 4975763.67 3903781.00 + J-142 4976295.45 3905898.00 + J-143 4975914.17 3903640.00 + J-144 4976144.86 3905537.00 + J-145 4972974.31 3904222.00 + J-146 4976024.54 3905386.00 + J-147 4975231.88 3905657.00 + J-148 4964032.03 3900444.00 + J-149 4965245.20 3901059.00 + J-15 4968348.41 3898405.00 + J-150 4986830.78 3906470.00 + J-151 4979586.49 3902005.00 + J-152 4978904.35 3901323.00 + J-153 4980767.94 3900073.00 + J-154 4978841.92 3902187.00 + J-155 4964054.24 3901393.00 + J-156 4964816.96 3901754.00 + J-157 4964997.56 3900082.00 + J-158 4964666.45 3900420.00 + J-159 4975442.59 3905818.00 + J-16 4969760.80 3898940.00 + J-160 4975372.35 3906049.00 + J-161 4981522.70 3901112.00 + J-162 4981010.99 3901548.00 + J-163 4981112.43 3905092.00 + J-164 4979777.13 3901202.00 + J-165 4975372.35 3906360.00 + J-166 4974979.01 3901600.00 + J-167 4978709.71 3903141.00 + J-168 4976888.69 3906068.00 + J-169 4964847.06 3900881.00 + J-17 4980377.51 3904177.00 + J-170 4978964.40 3902526.00 + J-171 4945642.66 3892887.00 + J-172 4946085.25 3893142.00 + J-173 4951181.23 3894694.00 + J-174 4951833.42 3894543.00 + J-175 4992680.39 3909410.00 + J-176 4979417.81 3901627.00 + J-177 4987232.83 3906189.00 + J-178 4985748.18 3905943.00 + J-179 4985329.41 3905142.00 + J-18 4973722.49 3901325.00 + J-180 4976777.07 3906219.00 + J-181 4979315.58 3901142.00 + J-182 4979415.91 3901373.00 + J-183 4980267.99 3901450.00 + J-184 4986478.57 3909321.00 + J-185 4985577.26 3907658.00 + J-186 4956990.72 3899239.00 + J-187 4957133.50 3898970.00 + J-188 4965027.67 3902396.00 + J-189 4965087.87 3901834.00 + J-19 4976857.01 3912280.00 + J-190 4945572.43 3893219.00 + J-191 4979699.99 3902244.00 + J-192 4985602.58 3907652.00 + J-194 4976536.26 3905597.00 + J-195 4965117.97 3901303.00 + J-196 4971535.66 3898605.00 + J-197 4985457.50 3907206.00 + J-198 4975295.50 3906634.00 + J-199 4950749.79 3894704.00 + J-2 4974172.00 3905510.00 + J-20 4962266.55 3897259.00 + J-200 4954894.72 3900327.00 + J-201 4950581.00 3894315.00 + J-202 4945050.68 3892546.00 + J-203 4946167.99 3892646.00 + J-204 4986790.64 3905166.00 + J-205 4986349.16 3905627.00 + J-206 4986541.00 3907630.00 + J-207 4984862.58 3907544.00 + J-208 4984930.99 3907819.00 + J-209 4987559.50 3908175.00 + J-21 4963012.93 3896117.00 + J-210 4987398.50 3906276.00 + J-211 4985534.00 3904755.00 + J-212 4980748.60 3906297.00 + J-213 4963673.12 3900791.00 + J-214 4963976.00 3900650.00 + J-215 4968832.76 3898679.00 + J-215a 4964495.88 3901273.00 + J-216 4991952.49 3910496.00 + J-217 4990568.00 3909709.00 + J-218 4963458.50 3900493.00 + J-219 4973979.55 3900061.00 + J-22 4962540.73 3893664.00 + J-220 4965408.94 3901132.00 + J-221 4977179.51 3902074.00 + J-222 4978885.49 3903217.00 + J-223 4962054.99 3897690.00 + J-224 4965660.01 3899615.00 + J-225 4968942.75 3899422.00 + J-226 4968935.87 3899140.00 + J-227 4958001.56 3895766.00 + J-228 4951656.52 3894594.00 + J-229 4951205.57 3892823.00 + J-23 4962893.01 3896638.00 + J-230 4951656.52 3894584.00 + J-231 4965310.95 3899465.00 + J-232 4975956.10 3901774.00 + J-233 4973384.39 3901239.00 + J-234 4985436.10 3910002.00 + J-235 4986461.00 3909085.00 + J-236 4985215.36 3904102.00 + J-237 4976293.17 3901850.00 + J-238 4986078.25 3904283.00 + J-239 4975500.27 3906546.00 + J-24 4974212.00 3897228.00 + J-240 4989670.30 3908617.00 + J-242 4991817.50 3909420.00 + J-243 4977161.63 3902096.00 + J-244 4978055.69 3902809.00 + J-245 4980551.44 3901244.00 + J-246 4979685.65 3903706.00 + J-247 4978031.27 3905838.00 + J-248 4978868.96 3903237.00 + J-249 4960169.88 3899345.00 + J-25 4975386.51 3896700.00 + J-250 4954404.25 3901228.00 + J-251 4960251.10 3898796.00 + J-252 4959399.00 3898721.00 + J-253 4946003.87 3893630.00 + J-254 4984723.00 3900725.00 + J-255 4982530.98 3904809.00 + J-256 4960532.01 3897277.00 + J-257 4960089.99 3902072.00 + J-258 4988381.50 3907610.00 + J-259 4988623.01 3908818.00 + J-26 4968445.00 3898845.00 + J-260 4975374.01 3906837.00 + J-261 4974690.99 3905699.00 + J-262 4992685.49 3912206.00 + J-263 4954746.43 3900826.00 + J-264 4955197.86 3901048.00 + J-265 4956318.46 3901225.00 + J-266 4957363.00 3900926.00 + J-267 4955239.40 3900646.00 + J-268 4954413.27 3900092.00 + J-269 4980229.00 3900338.00 + J-27 4967717.99 3895536.00 + J-270 4980992.50 3899543.00 + J-271 4952626.01 3900283.00 + J-272 4955334.01 3897983.00 + J-273 4980304.04 3904117.00 + J-274 4978604.99 3914016.00 + J-275 4980097.01 3899998.00 + J-276 4971230.49 3901133.00 + J-277 4971220.50 3901156.00 + J-278 4950691.49 3890444.00 + J-279 4950702.99 3890210.00 + J-28 4974008.28 3901368.00 + J-280 4950402.01 3890358.00 + J-281 4972837.99 3901251.00 + J-282 4985666.50 3901502.00 + J-283 4985539.00 3901323.00 + J-284 4951847.00 3890934.00 + J-285 4951771.99 3890259.00 + J-286 4966755.50 3899793.00 + J-287 4966862.51 3899800.00 + J-288 4963171.49 3903503.00 + J-289 4961454.01 3898959.00 + J-29 4974270.31 3900590.00 + J-290 4962088.99 3899839.00 + J-291 4977510.50 3906581.00 + J-292 4977578.00 3906669.00 + J-293 4978021.01 3904445.00 + J-294 4978365.01 3903767.00 + J-295 4956848.99 3898827.00 + J-296 4961632.01 3898675.00 + J-297 4980709.48 3898872.00 + J-298 4979953.49 3899608.00 + J-299 4980554.48 3899317.00 + J-3 4985103.99 3908982.00 + J-30 4975119.47 3902307.00 + J-300 4980043.00 3899852.00 + J-301 4979116.01 3899854.00 + J-302 4967787.50 3905129.00 + J-303 4966817.49 3905790.00 + J-304 4963025.49 3901003.00 + J-305 4962548.01 3901559.00 + J-306 4976081.01 3900900.00 + J-307 4962638.98 3900682.00 + J-308 4976716.00 3906508.00 + J-309 4976865.01 3906450.00 + J-31 4977770.40 3905507.00 + J-310 4946543.49 3891508.00 + J-311 4946068.50 3890150.00 + J-312 4985721.51 3901007.00 + J-313 4968620.52 3892760.00 + J-314 4968336.02 3891147.00 + J-315 4949220.99 3900398.00 + J-316 4978077.00 3906950.00 + J-317 4978917.01 3906461.00 + J-318 4985363.50 3901007.00 + J-319 4950774.01 3890942.00 + J-32 4962479.80 3895584.00 + J-320 4950527.51 3890852.00 + J-321 4967217.99 3899843.00 + J-322 4963990.00 3898757.00 + J-323 4965665.50 3899583.00 + J-324 4961334.00 3899152.00 + J-325 4965458.00 3900828.00 + J-326 4965937.00 3904479.00 + J-327 4967159.50 3902152.00 + J-328 4967384.01 3902105.00 + J-329 4977047.50 3906721.00 + J-33 4963150.02 3895462.00 + J-330 4968086.51 3891242.00 + J-331 4970227.50 3891909.00 + J-332 4969551.00 3890640.00 + J-333 4950644.01 3893618.00 + J-334 4951283.01 3893563.00 + J-335 4954587.51 3894421.00 + J-336 4954169.01 3894888.00 + J-337 4952825.01 3894638.00 + J-338 4952770.00 3895109.00 + J-339 4969883.01 3903692.00 + J-34 4972893.69 3905044.00 + J-340 4984744.50 3908690.00 + J-341 4984873.01 3908837.00 + J-342 4954900.50 3894740.00 + J-343 4953064.99 3894129.00 + J-344 4980332.49 3907032.00 + J-345 4979612.99 3906826.00 + J-346 4977116.01 3908588.00 + J-347 4978474.00 3909959.00 + J-348 4968226.99 3901528.00 + J-349 4968503.48 3906124.00 + J-35 4973621.03 3900311.00 + J-350 4963380.00 3899710.00 + J-351 4951311.00 3890981.00 + J-352 4968281.01 3901383.00 + J-353 4970909.50 3905272.00 + J-354 4969896.00 3905858.00 + J-355 4983814.00 3909721.00 + J-356 4983765.51 3909857.00 + J-357 4978344.00 3907812.00 + J-358 4978128.51 3907949.00 + J-359 4980057.49 3908764.00 + J-36 4986389.30 3911366.00 + J-360 4980106.01 3908818.00 + J-361 4976216.99 3908398.00 + J-362 4976440.50 3908726.00 + J-363 4978919.00 3908688.00 + J-364 4978879.50 3908801.00 + J-365 4981998.00 3905768.00 + J-366 4981415.50 3905561.00 + J-367 4968335.51 3893000.00 + J-368 4968143.01 3893163.00 + J-369 4954610.50 3894396.00 + J-37 4986479.60 3910313.00 + J-370 4985332.49 3901029.00 + J-371 4970620.51 3902270.00 + J-372 4962369.49 3901006.00 + J-373 4967211.01 3902226.00 + J-374 4952351.50 3891983.00 + J-375 4980808.00 3906569.00 + J-376 4981181.00 3907123.00 + J-377 4984199.50 3907946.00 + J-378 4984129.00 3907980.00 + J-379 4988536.50 3908816.00 + J-38 4985504.00 3905014.00 + J-380 4976805.50 3908837.00 + J-381 4979495.01 3896052.00 + J-382 4977285.00 3897110.00 + J-383 4973520.50 3909152.00 + J-384 4974004.50 3908815.00 + J-385 4981250.99 3905311.00 + J-386 4980899.01 3905486.00 + J-387 4971127.49 3894481.00 + J-388 4971022.01 3893749.00 + J-389 4984407.01 3908913.00 + J-39 4985152.98 3905283.00 + J-390 4967488.01 3902626.00 + J-391 4982296.01 3905696.00 + J-392 4977790.51 3904781.00 + J-393 4977705.00 3904528.00 + J-394 4968332.01 3901457.00 + J-395 4968592.71 3901836.00 + J-396 4960537.99 3897244.00 + J-397 4962065.01 3897665.00 + J-398 4970219.01 3894873.00 + J-399 4962479.80 3896483.00 + J-4 4985831.50 3909082.00 + J-40 4968990.87 3897779.00 + J-400 4981094.50 3906856.00 + J-401 4977456.00 3906343.00 + J-402 4978523.49 3905823.00 + J-403 4966777.99 3895615.00 + J-404 4966847.99 3896707.00 + J-405 4966074.01 3894425.00 + J-406 4949911.01 3894951.00 + J-407 4949291.50 3895911.00 + J-408 4957426.99 3896457.00 + J-409 4961153.48 3897426.00 + J-41 4968839.63 3898342.00 + J-410 4965432.99 3893053.00 + J-411 4984033.51 3909679.00 + J-412 4973784.51 3909539.00 + J-413 4974445.00 3909101.00 + J-414 4980351.51 3905759.00 + J-415 4979740.00 3905117.00 + J-416 4981411.00 3906271.00 + J-417 4981759.50 3906089.00 + J-418 4986296.01 3894315.00 + J-419 4986946.00 3894754.00 + J-42 4971101.29 3898480.00 + J-420 4978725.99 3906152.00 + J-421 4979499.51 3907115.00 + J-422 4979138.00 3908059.00 + J-423 4970496.01 3904634.00 + J-424 4980122.50 3906198.00 + J-425 4976914.00 3909020.00 + J-426 4979802.50 3906356.00 + J-427 4984279.50 3908062.00 + J-428 4978064.01 3904108.00 + J-429 4984570.50 3908477.00 + J-43 4970040.58 3898731.00 + J-430 4984615.01 3908532.00 + J-431 4983179.00 3909689.00 + J-432 4983615.01 3909758.00 + J-433 4960894.50 3899854.00 + J-434 4980908.50 3907365.00 + J-435 4981508.99 3895156.00 + J-436 4983164.99 3894304.00 + J-437 4980448.99 3906036.00 + J-438 4977852.00 3906546.00 + J-439 4969202.50 3893122.00 + J-44 4974658.08 3899093.00 + J-440 4981262.50 3906048.00 + J-441 4981611.00 3905862.00 + J-442 4953599.50 3893423.00 + J-443 4954139.98 3893934.00 + J-444 4984012.50 3908559.00 + J-445 4983748.00 3909733.00 + J-446 4944191.51 3890591.00 + J-447 4944091.52 3891575.00 + J-448 4965832.50 3906505.00 + J-449 4963362.51 3907297.00 + J-45 4974780.95 3899600.00 + J-450 4954926.50 3894714.00 + J-451 4970065.01 3893726.00 + J-452 4953106.50 3893144.00 + J-453 4954256.51 3894101.00 + J-454 4979964.00 3905956.00 + J-455 4978629.50 3909518.00 + J-456 4977539.49 3908520.00 + J-457 4954738.50 3893868.00 + J-458 4956863.51 3893675.00 + J-459 4981888.99 3904993.00 + J-46 4974450.67 3899274.00 + J-460 4954008.49 3892726.00 + J-461 4953182.51 3893021.00 + J-462 4954282.01 3894073.00 + J-463 4953114.51 3893117.00 + J-464 4965164.00 3894293.00 + J-465 4963787.50 3893997.00 + J-466 4983520.50 3909649.00 + J-467 4981059.00 3905733.00 + J-468 4968122.99 3890818.00 + J-469 4955014.50 3895461.00 + J-47 4974135.04 3899427.00 + J-470 4954848.50 3895522.00 + J-471 4980153.51 3900132.00 + J-472 4985252.01 3901562.00 + J-473 4953912.01 3894470.00 + J-474 4987030.49 3894552.00 + J-475 4959630.02 3897070.00 + J-476 4985930.50 3901939.00 + J-477 4986218.50 3901087.00 + J-478 4978408.50 3907455.00 + J-479 4978212.49 3907196.00 + J-48 4974288.72 3913243.00 + J-480 4979602.51 3892544.00 + J-481 4976767.50 3909608.00 + J-482 4977167.50 3909382.00 + J-483 4952371.02 3892972.00 + J-484 4955508.49 3895304.00 + J-485 4954347.99 3893121.00 + J-486 4979385.49 3903960.00 + J-487 4979729.49 3904268.00 + J-488 4961057.01 3897724.00 + J-489 4960725.51 3897617.00 + J-49 4975779.01 3912444.00 + J-490 4978735.50 3900075.00 + J-491 4985756.00 3898069.00 + J-492 4985038.00 3900427.00 + J-493 4961278.50 3897811.00 + J-494 4964159.50 3909368.00 + J-495 4978043.50 3906977.00 + J-496 4954389.51 3895265.00 + J-497 4965001.99 3895161.00 + J-498 4955370.00 3894454.00 + J-499 4953484.51 3892323.00 + J-5 4983130.99 3907004.00 + J-50 4977660.03 3912801.00 + J-500 4970375.50 3903359.00 + J-501 4969905.51 3892908.00 + J-502 4977410.49 3909746.00 + J-503 4952218.99 3892474.00 + J-504 4970803.99 3892916.00 + J-505 4972674.97 3892287.00 + J-506 4956658.50 3892613.00 + J-507 4954623.50 3892519.00 + J-508 4967201.50 3899819.00 + J-509 4967449.50 3899833.00 + J-51 4977379.15 3913233.00 + J-510 4947763.50 3891751.00 + J-511 4970805.50 3903959.00 + J-512 4972443.52 3907545.00 + J-513 4950728.99 3892643.00 + J-514 4986431.20 3911876.00 + J-515 4985460.25 3904552.00 + J-516 4949997.50 3894428.00 + J-517 4960637.49 3899738.00 + J-518 4977353.00 3906375.00 + J-519 4953044.51 3892612.00 + J-52 4986217.48 3907492.00 + J-520 4978664.50 3907603.00 + J-521 4946368.50 3891482.00 + J-522 4978657.50 3903938.00 + J-523 4977915.99 3895796.00 + J-524 4980655.50 3904405.00 + J-525 4980866.00 3904004.00 + J-526 4979020.01 3904089.00 + J-527 4977001.50 3904420.00 + J-528 4977272.49 3904321.00 + J-529 4983241.49 3907063.00 + J-53 4986479.60 3912370.00 + J-530 4983943.50 3907592.00 + J-531 4977372.50 3906401.00 + J-532 4955549.01 3895292.00 + J-533 4975374.50 3903432.00 + J-534 4974130.50 3903672.00 + J-535 4969538.50 3892755.00 + J-536 4969513.01 3892484.00 + J-537 4984539.49 3907737.00 + J-538 4984676.00 3907536.00 + J-539 4977566.49 3904120.00 + J-54 4972177.50 3903743.00 + J-540 4978277.50 3903718.00 + J-541 4979729.49 3903651.00 + J-542 4978197.00 3907589.00 + J-543 4976465.00 3902531.00 + J-544 4976223.00 3902364.00 + J-545 4965497.50 3892024.00 + J-546 4964790.50 3891414.00 + J-547 4981046.50 3903641.00 + J-548 4968062.50 3913351.00 + J-549 4967566.49 3913431.00 + J-55 4974081.50 3902843.00 + J-550 4977956.00 3907212.00 + J-551 4971462.49 3908088.00 + J-552 4982323.00 3905186.00 + J-553 4980519.50 3906001.00 + J-554 4953650.50 3895499.00 + J-555 4971466.99 3903906.00 + J-556 4951775.49 3892429.00 + J-557 4980843.51 3906174.00 + J-558 4982160.00 3904876.00 + J-559 4967053.00 3890318.00 + J-56 4973734.50 3901310.00 + J-560 4979523.00 3909480.00 + J-561 4979793.01 3909732.00 + J-562 4952932.00 3891775.00 + J-563 4951732.49 3888855.00 + J-564 4980142.50 3903986.00 + J-565 4980284.00 3905793.00 + J-566 4976487.01 3904922.00 + J-567 4977517.99 3904859.00 + J-568 4947544.00 3889223.00 + J-569 4950785.00 3892657.00 + J-57 4975939.00 3901771.00 + J-570 4950314.99 3891020.00 + J-571 4954328.00 3892618.00 + J-572 4957362.51 3897599.00 + J-573 4950724.49 3892694.00 + J-574 4954712.01 3896027.00 + J-575 4984048.49 3907526.00 + J-576 4977179.51 3901969.00 + J-577 4977310.99 3901258.00 + J-578 4975174.99 3903161.00 + J-579 4976296.01 3901833.00 + J-58 4971393.00 3898656.00 + J-580 4980735.48 3905225.00 + J-581 4985581.50 3900413.00 + J-582 4988266.01 3907616.00 + J-583 4988364.88 3907290.00 + J-584 4966574.01 3913209.00 + J-585 4979217.50 3909286.00 + J-586 4951215.00 3890204.00 + J-587 4983988.00 3905429.00 + J-588 4983634.49 3905511.00 + J-589 4951510.51 3891459.00 + J-59 4974127.62 3904465.00 + J-590 4979526.00 3908327.00 + J-591 4979216.99 3908999.00 + J-592 4967880.99 3892863.00 + J-593 4971555.01 3911327.00 + J-594 4972490.51 3912101.00 + J-595 4982353.99 3915412.00 + J-596 4982245.50 3915457.00 + J-597 4978368.49 3909006.00 + J-598 4969599.50 3891850.00 + J-599 4956683.00 3893012.00 + J-59b 4974998.72 3896875.00 + J-59c 4974581.99 3897060.00 + J-59d 4974771.34 3896975.00 + J-59e 4974291.66 3894451.00 + J-59f 4973161.40 3900067.00 + J-59g 4973684.15 3900121.00 + J-59h 4973765.31 3900230.00 + J-59i 4974252.28 3899968.00 + J-59j 4974531.83 3899842.00 + J-59k 4974892.54 3899003.00 + J-59l 4975226.20 3899328.00 + J-59m 4974136.72 3900549.00 + J-59n 4972487.82 3903973.00 + J-59o 4973957.61 3903771.00 + J-59p 4974088.05 3904012.00 + J-59q 4974287.50 3904004.00 + J-59r 4976759.00 3902608.00 + J-59s 4977007.84 3902928.00 + J-59t 4976706.83 3903269.00 + J-59u 4977584.77 3903405.00 + J-59v 4977349.64 3903625.00 + J-59w 4975990.56 3904144.00 + J-59x 4975910.31 3904316.00 + J-59y 4975061.31 3904634.00 + J-59z 4974609.80 3904804.00 + J-6 4983932.50 3905893.00 + J-60 4976188.66 3901814.00 + J-600 4961482.49 3900892.00 + J-601 4953433.00 3893874.00 + J-602 4978585.51 3899933.00 + J-603 4979776.99 3902880.00 + J-604 4988267.50 3907623.00 + J-605 4956992.00 3894208.00 + J-606 4976104.99 3908474.00 + J-607 4976466.00 3909323.00 + J-608 4979613.50 3900175.00 + J-609 4973074.00 3901506.00 + J-61 4971122.18 3898734.00 + J-610 4973178.00 3901259.00 + J-611 4952461.99 3892472.00 + J-612 4987549.00 3913618.00 + J-614 4968093.49 3892034.00 + J-615 4952727.00 3892323.00 + J-616 4987545.01 3913623.00 + J-617 4980282.00 3910030.00 + J-618 4977009.99 3909972.00 + J-619 4972212.00 3902114.00 + J-62 4969967.03 3898487.00 + J-620 4979354.99 3900408.00 + J-621 4973672.00 3902072.00 + J-622 4973806.50 3902405.00 + J-623 4971501.50 3903441.00 + J-624 4983944.49 3909284.00 + J-625 4966570.50 3906040.00 + J-626 4967231.49 3907130.00 + J-627 4979386.00 3903419.00 + J-628 4979998.51 3902633.00 + J-629 4963613.00 3899866.00 + J-63 4969217.72 3898480.00 + J-630 4944086.49 3893250.00 + J-631 4973094.00 3910408.00 + J-632 4973558.00 3911054.00 + J-633 4964303.50 3892193.00 + J-634 4983843.21 3916540.00 + J-637 4972507.00 3900454.00 + J-638 4988171.00 3907195.00 + J-639 4951883.50 3889648.00 + J-64 4991617.48 3910307.00 + J-640 4951339.00 3888731.00 + J-641 4973183.50 3901239.00 + J-642 4975105.50 3903067.00 + J-643 4977154.51 3902054.00 + J-644 4976680.02 3901899.00 + J-645 4979539.00 3903189.00 + J-646 4987481.51 3903490.00 + J-647 4987592.00 3902671.00 + J-648 4972176.01 3899940.00 + J-649 4968750.00 3900232.00 + J-65 4945693.99 3892599.00 + J-650 4977542.00 3902240.00 + J-651 4981439.00 3902927.00 + J-652 4981198.99 3903308.00 + J-653 4951876.01 3899835.00 + J-654 4982230.00 3902859.00 + J-655 4979950.50 3909475.00 + J-656 4978474.50 3907040.00 + J-657 4988034.99 3906003.00 + J-658 4988058.98 3905500.00 + J-659 4987658.48 3908609.00 + J-66 4973828.44 3899544.00 + J-660 4987730.00 3908920.00 + J-661 4968869.00 3902239.00 + J-662 4973023.49 3901914.00 + J-663 4986769.01 3908256.00 + J-664 4987201.50 3908219.00 + J-665 4987367.49 3907819.00 + J-666 4987846.50 3907715.00 + J-667 4987783.99 3907403.00 + J-668 4988403.51 3905528.00 + J-669 4988140.50 3908499.00 + J-67 4992810.83 3909611.00 + J-671 4988058.51 3908044.00 + J-672 4965513.50 3898793.00 + J-673 4965573.50 3898429.00 + J-674 4975396.51 3906896.00 + J-675 4975791.51 3906904.00 + J-676 4975676.50 3911046.00 + J-677 4975943.01 3911448.00 + J-678 4976882.50 3901046.00 + J-679 4976887.00 3900987.00 + J-68 4986489.63 3909470.00 + J-680 4985994.50 3897498.00 + J-681 4985811.99 3898083.00 + J-682 4979066.00 3905290.00 + J-683 4978983.50 3905009.00 + J-684 4978908.01 3904754.00 + J-685 4976869.51 3900984.00 + J-686 4975438.00 3909772.00 + J-687 4975202.50 3910024.00 + J-688 4966605.50 3897869.00 + J-689 4966591.99 3897791.00 + J-69 4992228.88 3909600.00 + J-690 4982486.50 3916165.00 + J-691 4986384.00 3908638.00 + J-692 4987306.00 3907496.00 + J-693 4965000.00 3904873.00 + J-694 4986706.99 3907963.00 + J-695 4984856.50 3905784.00 + J-696 4985662.00 3906716.00 + J-697 4977293.99 3907086.00 + J-698 4977187.49 3907169.00 + J-699 4975617.00 3911657.00 + J-7 4985485.50 3904615.00 + J-70 4991978.04 3909651.00 + J-700 4975750.99 3911571.00 + J-701 4966584.00 3897744.00 + J-702 4970439.51 3912131.00 + J-703 4970440.50 3912129.00 + J-704 4966079.99 3898512.00 + J-705 4983280.00 3917193.00 + J-706 4983976.50 3917215.00 + J-707 4980114.50 3904352.00 + J-708 4980052.00 3904534.00 + J-709 4975605.99 3909503.00 + J-71 4962525.50 3896300.00 + J-710 4976063.50 3909962.00 + J-711 4976317.51 3910216.00 + J-712 4976638.50 3909680.00 + J-713 4986269.50 3905104.00 + J-714 4986016.50 3904641.00 + J-715 4985511.50 3905691.00 + J-716 4985869.51 3906078.00 + J-717 4976091.49 3909282.00 + J-718 4976323.01 3909746.00 + J-719 4974739.49 3909895.00 + J-72 4962403.64 3896833.00 + J-720 4974838.50 3910172.00 + J-721 4965609.50 3898211.00 + J-722 4965657.00 3897987.00 + J-723 4974199.50 3909776.00 + J-724 4975199.50 3909091.00 + J-725 4965456.00 3899117.00 + J-726 4986284.99 3908657.00 + J-727 4975570.50 3909994.00 + J-728 4984301.00 3904034.00 + J-729 4984767.00 3903631.00 + J-73 4973575.94 3899688.00 + J-730 4986061.50 3905385.00 + J-731 4986188.00 3905641.00 + J-732 4978353.00 3905566.00 + J-733 4978092.00 3905315.00 + J-734 4983986.01 3907584.00 + J-735 4981083.49 3903560.00 + J-736 4978466.99 3905727.00 + J-737 4966719.50 3898540.00 + J-738 4966705.00 3898455.00 + J-739 4984123.01 3903887.00 + J-74 4989810.59 3909270.00 + J-740 4983958.50 3905837.00 + J-741 4983962.49 3905551.00 + J-742 4974745.50 3910505.00 + J-743 4974856.50 3910673.00 + J-744 4984371.99 3906708.00 + J-745 4988155.50 3907126.00 + J-746 4988525.50 3906031.00 + J-747 4978926.50 3908666.00 + J-748 4976446.47 3900912.00 + J-749 4957877.01 3899463.00 + J-75 4975101.86 3897428.00 + J-750 4957347.99 3899678.00 + J-751 4977328.00 3911247.00 + J-752 4977457.99 3911415.00 + J-753 4975766.00 3911562.00 + J-754 4988029.01 3906134.00 + J-755 4955583.50 3898103.00 + J-756 4975569.99 3907635.00 + J-757 4974012.50 3908360.00 + J-758 4962571.99 3897960.00 + J-759 4962690.00 3897716.00 + J-76 4989958.62 3909023.00 + J-760 4980167.51 3904007.00 + J-761 4981247.49 3903225.00 + J-762 4978147.00 3908318.00 + J-763 4976955.00 3911506.00 + J-764 4977067.49 3911416.00 + J-765 4962617.01 3897669.00 + J-766 4976524.00 3911850.00 + J-767 4976617.00 3911975.00 + J-768 4977228.01 3912214.00 + J-769 4942969.50 3892528.00 + J-77 4990259.73 3909198.00 + J-770 4942452.99 3892764.00 + J-771 4977311.98 3911226.00 + J-772 4977384.00 3911169.00 + J-773 4957530.50 3898111.00 + J-774 4958329.00 3898340.00 + J-775 4958776.98 3899792.00 + J-776 4975355.50 3909673.00 + J-777 4975557.49 3909455.00 + J-778 4976086.50 3909218.00 + J-779 4974325.49 3910185.00 + J-78 4990362.62 3908577.00 + J-780 4974470.01 3910084.00 + J-781 4984141.01 3904415.00 + J-782 4984222.51 3904187.00 + J-783 4984862.99 3906595.00 + J-784 4970329.50 3912001.00 + J-785 4975716.99 3910146.00 + J-786 4984317.51 3915724.00 + J-787 4984041.51 3914804.00 + J-788 4984042.99 3904808.00 + J-789 4977850.49 3911082.00 + J-79 4962662.59 3895035.00 + J-790 4978044.99 3911232.00 + J-791 4982685.98 3916843.00 + J-792 4983020.01 3916919.00 + J-793 4982887.00 3916177.00 + J-794 4977147.50 3911353.00 + J-795 4965016.49 3898718.00 + J-796 4964996.01 3898853.00 + J-797 4964695.50 3898677.00 + J-798 4976711.01 3911700.00 + J-799 4976747.00 3911671.00 + J-8 4985417.01 3904604.00 + J-80 4962845.38 3894045.00 + J-800 4977842.53 3910804.00 + J-801 4943407.51 3890372.00 + J-802 4942975.00 3890243.00 + J-803 4966378.00 3897287.00 + J-804 4969468.50 3903079.00 + J-805 4970050.00 3902443.00 + J-806 4977366.50 3908094.00 + J-807 4977229.00 3907889.00 + J-808 4977105.50 3901023.00 + J-809 4977065.49 3901062.00 + J-81 4963287.11 3894517.00 + J-810 4984099.00 3904549.00 + J-811 4984482.50 3916302.00 + J-812 4983854.99 3904783.00 + J-813 4984451.50 3916313.00 + J-814 4984596.50 3909541.00 + J-815 4984583.00 3909405.00 + J-816 4982982.50 3916427.00 + J-817 4977197.00 3908226.00 + J-818 4977081.50 3908053.00 + J-819 4965031.50 3898617.00 + J-82 4965340.23 3901545.00 + J-820 4965682.00 3897847.00 + J-821 4960631.50 3896748.00 + J-822 4976214.00 3911235.00 + J-823 4986396.00 3899113.00 + J-824 4975475.50 3911165.00 + J-825 4962827.51 3897167.00 + J-826 4976466.50 3900915.00 + J-827 4967492.00 3899835.00 + J-828 4967303.50 3898937.00 + J-829 4977609.48 3911288.00 + J-83 4986830.85 3909299.00 + J-830 4977686.00 3911381.00 + J-831 4964750.51 3897556.00 + J-832 4965183.50 3897621.00 + J-833 4965761.50 3897402.00 + J-834 4957563.99 3900348.00 + J-835 4984591.00 3916261.00 + J-836 4980357.01 3904161.00 + J-837 4984249.52 3909216.00 + J-838 4987147.50 3901521.00 + J-839 4960881.50 3895425.00 + J-84 4986880.95 3909631.00 + J-840 4984485.01 3909159.00 + J-841 4961125.50 3896849.00 + J-842 4976898.50 3908305.00 + J-843 4984276.50 3909337.00 + J-844 4983933.50 3904351.00 + J-845 4976087.99 3900857.00 + J-846 4957758.49 3901066.00 + J-847 4983137.00 3909456.00 + J-848 4983665.50 3909343.00 + J-849 4950259.00 3890881.00 + J-85 4984765.75 3907860.00 + J-850 4948958.00 3890965.00 + J-851 4957988.50 3900456.00 + J-852 4958505.50 3900494.00 + J-853 4959052.00 3901557.00 + J-854 4959135.01 3901053.00 + J-855 4965179.00 3897648.00 + J-856 4976733.00 3900048.00 + J-857 4976714.00 3912281.00 + J-858 4976543.50 3912404.00 + J-859 4976944.01 3900414.00 + J-86 4957605.52 3896025.00 + J-860 4977859.49 3905070.00 + J-861 4958037.50 3901654.00 + J-862 4978948.50 3904077.00 + J-863 4978930.51 3904377.00 + J-864 4979119.00 3904324.00 + J-865 4976021.50 3906808.00 + J-866 4978581.50 3907185.00 + J-867 4981597.01 3905139.00 + J-868 4978779.50 3909085.00 + J-869 4982854.01 3916476.00 + J-87 4957429.00 3896417.00 + J-870 4962166.99 3894078.00 + J-871 4962737.50 3896179.00 + J-872 4963030.01 3896599.00 + J-873 4959218.00 3900548.00 + J-874 4957980.50 3900476.00 + J-875 4976807.49 3912205.00 + J-876 4976793.00 3912217.00 + J-877 4958442.99 3899422.00 + J-878 4966410.50 3899121.00 + J-879 4976457.99 3912466.00 + J-88 4977740.29 3914096.00 + J-880 4987101.00 3906449.00 + J-881 4984085.00 3914785.00 + J-882 4984711.00 3909070.00 + J-883 4984178.00 3909644.00 + J-884 4984103.00 3909662.00 + J-885 4981022.49 3904955.00 + J-886 4986535.52 3905115.00 + J-887 4975954.49 3907212.00 + J-888 4958994.50 3899849.00 + J-889 4943715.00 3893173.00 + J-89 4977450.53 3914276.00 + J-890 4949987.50 3890207.00 + J-891 4958824.50 3901023.00 + J-892 4951225.00 3889028.00 + J-893 4983983.53 3914838.00 + J-894 4948987.99 3888820.00 + J-895 4974104.00 3909841.00 + J-897 4943665.49 3893633.00 + J-898 4951191.00 3892775.00 + J-899 4977442.50 3911239.00 + J-9 4952914.00 3894079.00 + J-90 4985596.64 3910895.00 + J-900 4977509.99 3912004.00 + J-901 4975922.51 3908195.00 + J-902 4976204.49 3908000.00 + J-903 4978309.00 3910446.00 + J-904 4978297.50 3910480.00 + J-905 4961371.51 3895526.00 + J-906 4952708.00 3893512.00 + J-907 4977198.99 3911515.00 + J-908 4976416.50 3907854.00 + J-909 4980257.00 3902349.00 + J-91 4985653.11 3909662.00 + J-910 4971518.50 3898569.00 + J-911 4980550.00 3901678.00 + J-912 4980389.50 3901369.00 + J-913 4980275.51 3901858.00 + J-914 4972794.50 3901137.00 + J-915 4974332.50 3898420.00 + J-916 4974926.50 3898399.00 + J-917 4972769.50 3897903.00 + J-918 4973753.50 3897443.00 + J-919 4971410.27 3898612.00 + J-92 4986411.65 3911708.00 + J-920 4974941.50 3898401.00 + J-921 4973587.00 3902689.00 + J-922 4975540.49 3898150.00 + J-923 4975883.01 3897435.00 + J-924 4975581.01 3896614.00 + J-925 4975845.99 3897054.00 + J-926 4975795.50 3898149.00 + J-927 4975008.00 3898549.00 + J-928 4973690.99 3899146.00 + J-929 4974122.85 3896909.00 + J-93 4977639.96 3914437.00 + J-930 4974088.74 3896834.00 + J-931 4973716.00 3902856.00 + J-932 4972591.01 3903413.00 + J-933 4973894.00 3897377.00 + J-934 4972071.50 3903818.00 + J-936 4959157.00 3898702.00 + J-938 4985142.00 3907256.00 + J-94 4977020.40 3912152.00 + J-941 4984852.00 3907359.00 + J-95 4976656.66 3913514.00 + J-96 4977559.69 3914166.00 + J-97 4985807.35 3909621.00 + J-98 4985064.86 3904363.00 + J-99 4985074.89 3904814.00 + I-Pump-1 4978752.04 3915150.00 + O-Pump-2 4979020.22 3915339.00 + O-Pump-1 4978752.04 3915150.00 + I-Pump-2 4979020.22 3915339.00 + R-1 4978709.00 3915386.00 + T-1 4959474.00 3897659.00 + T-2 4972993.00 3900300.00 + T-3 4980614.00 3906672.00 + T-4 4988798.00 3907639.00 + +[VERTICES] +;Link X-Coord Y-Coord + P-1 4971363.50 3905596.24 + P-1 4972270.50 3905035.02 + P-1 4972427.50 3904924.75 + P-1 4972501.00 3904913.49 + P-1 4972595.99 3904935.50 + P-1000 4965077.83 3899891.41 + P-1000 4965117.97 3899791.07 + P-1000 4965198.24 3899680.70 + P-1000 4965298.57 3899660.64 + P-1000 4965310.95 3899467.92 + P-1001 4964736.69 3900329.88 + P-1001 4964997.56 3900082.05 + P-1005 4971307.52 3898686.58 + P-1006 4970276.37 3898817.20 + P-1006 4970895.06 3898782.83 + P-1006 4971066.92 3898748.45 + P-1007 4969953.28 3898700.33 + P-1008 4968963.37 3898342.87 + P-1008 4969100.86 3898411.61 + P-101 4992810.83 3909611.00 + P-1015 4974080.30 3894540.01 + P-1015 4974009.85 3895508.73 + P-1015 4974326.88 3896424.60 + P-1015 4974581.99 3897060.16 + P-1016 4973278.35 3900058.72 + P-1016 4973386.56 3899986.58 + P-1016 4973458.71 3900049.70 + P-1016 4973458.71 3900184.97 + P-1016 4973521.83 3900221.04 + P-1019 4974051.19 3900033.86 + P-1021 4974811.38 3899779.17 + P-1022 4975244.24 3898850.33 + P-1022 4975433.61 3898859.35 + P-1023 4975027.81 3899544.70 + P-1024 4974008.79 3900509.61 + P-1024 4973756.30 3900419.43 + P-1024 4973639.06 3900437.47 + P-1024 4973584.96 3900410.41 + P-1026 4974736.01 3901522.25 + P-1026 4975510.50 3901685.75 + P-1026 4975686.54 3901722.98 + P-1026 4975819.00 3901751.00 + P-1028 4974073.50 3902837.75 + P-103 4986849.93 3906330.00 + P-1032 4977150.08 3902109.49 + P-1033 4977308.85 3903049.00 + P-1034 4976917.54 3903380.11 + P-1035 4977539.62 3903450.34 + P-1036 4977288.78 3903681.12 + P-1036 4976917.54 3903871.76 + P-1036 4976024.54 3904072.43 + P-1038 4975723.53 3904714.58 + P-1038 4975633.23 3904855.05 + P-1038 4975452.62 3904945.36 + P-1038 4975432.56 3905045.69 + P-1038 4975372.35 3905075.79 + P-1038 4975342.25 3904995.52 + P-1038 4975342.25 3904935.32 + P-1038 4975201.78 3904865.09 + P-104 4986228.76 3905707.91 + P-104 4985748.00 3905943.50 + P-1040 4974659.97 3904804.89 + P-1040 4974740.23 3904824.95 + P-1040 4974860.64 3905075.79 + P-1041 4974178.35 3904443.67 + P-1041 4974208.45 3904343.34 + P-1043 4992499.79 3909701.30 + P-1045 4991687.06 3909801.64 + P-1045 4991626.86 3910042.45 + P-1045 4991747.27 3910142.78 + P-1049 4990141.88 3908718.01 + P-1054 4977639.96 3912350.19 + P-1054 4977302.39 3911933.37 + P-1058 4977559.69 3913975.64 + P-1059 4976987.77 3913885.33 + P-106 4975763.67 3904263.07 + P-106 4975623.20 3904273.10 + P-106 4975482.72 3904443.67 + P-106 4975482.72 3904554.04 + P-106 4975402.46 3904584.14 + P-106 4975312.15 3904554.04 + P-1061 4976526.22 3913313.42 + P-1061 4976466.02 3913223.11 + P-1061 4977068.04 3912811.73 + P-1061 4977148.31 3912791.67 + P-1068 4975954.31 3905266.43 + P-1068 4975573.03 3905527.31 + P-1068 4975231.88 3905657.75 + P-1069 4975292.09 3905738.01 + P-107 4975372.35 3906360.10 + P-1071 4975352.29 3906169.46 + P-1072 4975498.80 3906544.91 + P-1073 4974725.50 3901546.75 + P-1073 4974453.00 3901485.99 + P-1073 4974405.32 3901475.50 + P-1074 4977619.89 3905236.33 + P-1074 4977348.98 3905306.57 + P-1074 4977037.94 3905396.87 + P-1074 4976897.47 3905437.01 + P-1074 4976626.56 3905497.21 + P-1075 4977429.25 3905557.41 + P-1075 4977238.61 3905627.64 + P-1075 4977068.04 3905818.28 + P-1075 4977037.94 3905948.72 + P-1076 4976817.20 3905958.75 + P-1076 4976616.53 3905848.38 + P-1076 4976546.29 3905738.01 + P-1077 4978773.76 3902778.09 + P-1077 4978884.13 3902928.59 + P-1077 4978709.71 3903141.36 + P-1078 4978964.40 3902527.25 + P-1079 4979486.15 3901513.85 + P-1079 4979415.91 3901373.38 + P-108 4956860.28 3899309.46 + P-108 4956619.47 3899259.29 + P-108 4956378.66 3899118.82 + P-108 4956248.23 3899008.45 + P-108 4956348.56 3898867.98 + P-108 4956599.40 3898687.37 + P-108 4956769.98 3898707.44 + P-1080 4978964.40 3901403.48 + P-1080 4978673.42 3901814.86 + P-1080 4978663.39 3901955.33 + P-1080 4978713.56 3902085.77 + P-1081 4979205.21 3900931.90 + P-1081 4979134.97 3900921.86 + P-1081 4978874.10 3901062.34 + P-1081 4978854.03 3901142.60 + P-1083 4980068.10 3901152.64 + P-1083 4980267.99 3901450.51 + P-1085 4980556.49 3901246.50 + P-1087 4981091.53 3901714.52 + P-1087 4981302.24 3901664.35 + P-1087 4981693.55 3901654.32 + P-1087 4981713.62 3901543.95 + P-1088 4981522.98 3901112.50 + P-1089 4981171.80 3900590.75 + P-1089 4981161.77 3900761.33 + P-1089 4981412.61 3900931.90 + P-1090 4981117.49 3899882.00 + P-1090 4981119.51 3899844.00 + P-1092 4982766.51 3903239.01 + P-1092 4982714.51 3903405.49 + P-1092 4982672.50 3903617.74 + P-1092 4982624.01 3904059.49 + P-1092 4982615.50 3904295.75 + P-1092 4982627.51 3904403.25 + P-1092 4982699.52 3904787.75 + P-1093 4983138.40 3902848.32 + P-1093 4982919.88 3902749.29 + P-1094 4983860.82 3903339.97 + P-1094 4983630.05 3903309.87 + P-1094 4983479.54 3903269.74 + P-1094 4983208.63 3903380.11 + P-1094 4982997.93 3903370.07 + P-1095 4983649.01 3906282.01 + P-1095 4983783.00 3906023.74 + P-1096 4985743.01 3909081.75 + P-1097 4985476.24 3909460.50 + P-1097 4985448.69 3909067.29 + P-1099 4986478.57 3909321.59 + P-110 4945050.68 3893209.00 + P-110 4945120.91 3892847.79 + P-1101 4984700.01 3907635.25 + P-1102 4984861.83 3907541.17 + P-1102 4984862.58 3907544.42 + P-1104 4985459.01 3907210.75 + P-1104 4985462.47 3907219.50 + P-1104 4985466.99 3907231.76 + P-1104 4985472.00 3907247.01 + P-1104 4985478.00 3907264.50 + P-1104 4985483.99 3907283.76 + P-1104 4985490.50 3907304.99 + P-1104 4985498.00 3907328.00 + P-1104 4985505.00 3907352.25 + P-1104 4985513.00 3907378.00 + P-1104 4985521.00 3907404.76 + P-1104 4985529.50 3907432.00 + P-1104 4985538.00 3907458.24 + P-1104 4985546.01 3907483.75 + P-1104 4985554.02 3907509.24 + P-1104 4985562.01 3907534.75 + P-1104 4985569.99 3907559.25 + P-1104 4985577.50 3907581.75 + P-1104 4985584.00 3907601.49 + P-1104 4985589.50 3907618.78 + P-1104 4985595.50 3907634.25 + P-1104 4985602.00 3907649.99 + P-1105 4986262.00 3907480.25 + P-1105 4986288.49 3907476.75 + P-1105 4986314.49 3907478.50 + P-1105 4986339.50 3907485.99 + P-1105 4986362.99 3907498.25 + P-1105 4986386.00 3907513.25 + P-1105 4986409.00 3907529.99 + P-1105 4986432.50 3907547.50 + P-1105 4986455.51 3907564.75 + P-1105 4986477.01 3907581.26 + P-1105 4986496.51 3907596.51 + P-1105 4986514.00 3907610.00 + P-1105 4986529.01 3907621.51 + P-1106 4984869.02 3907569.51 + P-1106 4984876.00 3907598.26 + P-1106 4984883.49 3907627.25 + P-1106 4984890.50 3907656.00 + P-1106 4984897.50 3907685.25 + P-1106 4984904.50 3907713.25 + P-1106 4984910.49 3907738.74 + P-1106 4984915.50 3907760.99 + P-1106 4984920.00 3907778.99 + P-1106 4984923.50 3907792.25 + P-1107 4984936.49 3907818.25 + P-1107 4984978.49 3907807.50 + P-1107 4985021.49 3907797.25 + P-1107 4985065.00 3907786.52 + P-1107 4985109.51 3907776.00 + P-1107 4985154.50 3907765.00 + P-1107 4985200.50 3907753.99 + P-1107 4985247.00 3907742.51 + P-1107 4985292.50 3907731.00 + P-1107 4985338.50 3907719.50 + P-1107 4985383.49 3907708.00 + P-1107 4985427.49 3907696.49 + P-1107 4985468.50 3907685.74 + P-1107 4985507.00 3907675.75 + P-1107 4985542.50 3907666.50 + P-1107 4985577.00 3907657.99 + P-111 4979586.49 3902005.50 + P-1110 4987398.50 3906275.75 + P-1111 4987141.82 3906049.06 + P-1111 4987232.12 3906189.53 + P-1112 4986058.51 3904865.50 + P-1112 4986019.50 3904741.00 + P-1113 4987203.78 3905793.47 + P-1114 4986459.53 3905798.22 + P-1116 4985791.51 3906077.25 + P-1116 4985823.00 3906137.25 + P-1116 4985841.00 3906137.49 + P-1116 4985873.50 3906119.76 + P-1116 4985874.01 3906092.25 + P-1118 4985329.06 3905142.74 + P-1119 4985410.49 3904601.76 + P-112 4980541.51 3901185.26 + P-112 4980382.50 3900843.50 + P-112 4980377.51 3900760.75 + P-112 4980240.51 3900436.25 + P-112 4980230.49 3900385.74 + P-1121 4991950.01 3910606.50 + P-1121 4991976.01 3910807.76 + P-1121 4992035.50 3910997.50 + P-1121 4992056.49 3911063.75 + P-1121 4992097.01 3911200.75 + P-1121 4992146.50 3911368.25 + P-1121 4992320.01 3911660.99 + P-1121 4992500.50 3911896.51 + P-1121 4992562.50 3912000.24 + P-1121 4992602.99 3912068.00 + P-1121 4992645.01 3912138.24 + P-1122 4990834.00 3909864.00 + P-1122 4991007.50 3909964.49 + P-1122 4991403.00 3910187.00 + P-1126 4957651.22 3895660.37 + P-1126 4957605.52 3896025.94 + P-1129 4973355.99 3901217.00 + P-1129 4973170.00 3901222.25 + P-1129 4972886.49 3901226.75 + P-1129 4972861.00 3901141.75 + P-1129 4972797.22 3901144.62 + P-1129 4972794.50 3901144.74 + P-1130 4973726.71 3901309.35 + P-1130 4973394.00 3901239.01 + P-1131 4976136.51 3901743.00 + P-1131 4976015.49 3901722.76 + P-1133 4975813.83 3906390.20 + P-1134 4975502.79 3906550.74 + P-1135 4976202.50 3901834.01 + P-1139 4977002.48 3902005.25 + P-1139 4976883.01 3901967.24 + P-1139 4976349.01 3901861.25 + P-114 4974419.16 3904875.12 + P-1141 4977710.19 3903279.77 + P-1141 4978041.25 3902829.48 + P-1144 4977017.87 3906139.36 + P-1144 4977248.65 3906099.23 + P-1144 4977489.45 3905878.49 + P-1144 4977680.09 3905848.38 + P-1144 4977870.04 3905840.87 + P-1145 4978864.06 3902346.64 + P-1146 4979220.49 3903362.25 + P-1148 4980317.00 3904128.49 + P-1148 4980345.99 3904152.01 + P-1149 4980283.51 3904149.99 + P-1149 4980302.59 3904120.22 + P-1150 4978723.00 3903185.50 + P-1150 4978538.01 3903095.75 + P-1150 4978212.49 3902909.26 + P-1152 4981138.00 3905133.26 + P-1152 4981180.51 3905200.50 + P-1153 4985440.99 3904554.26 + P-1158 4983632.01 3916025.75 + P-1158 4983633.00 3915979.25 + P-1158 4983679.51 3915950.99 + P-116 4945632.63 3893068.53 + P-116 4946085.25 3893142.30 + P-118 4986808.51 3905665.39 + P-119 4979777.13 3901202.81 + P-120 4978904.20 3901323.21 + P-120 4979315.58 3901142.60 + P-121 4976315.52 3905487.17 + P-121 4976144.95 3905537.34 + P-122 4975783.73 3906008.92 + P-122 4975372.35 3906049.06 + P-123 4963723.29 3900660.99 + P-123 4963853.73 3900701.12 + P-123 4963954.07 3900731.23 + P-124 4964766.79 3901895.13 + P-124 4964666.45 3901995.46 + P-124 4964475.82 3901985.43 + P-124 4964014.27 3901684.42 + P-124 4964114.60 3901553.98 + P-125 4975633.23 3905778.15 + P-126 4963522.62 3900563.66 + P-126 4963803.56 3900202.45 + P-126 4963893.86 3900403.13 + P-127 4964495.88 3902326.57 + P-127 4963653.06 3901764.69 + P-127 4963632.99 3901704.49 + P-127 4963863.76 3901413.51 + P-129 4963755.50 3898678.74 + P-129 4964802.51 3899252.24 + P-13 4974374.01 3897153.01 + P-134 4977379.08 3912560.89 + P-135 4977148.31 3913213.08 + P-136 4985446.14 3909761.51 + P-136 4985652.76 3909662.24 + P-138 4985275.56 3904232.97 + P-138 4985395.97 3904232.97 + P-138 4985413.00 3904571.99 + P-139 4985797.31 3904634.31 + P-139 4985534.00 3904755.01 + P-140 4989941.21 3908507.30 + P-141 4991937.90 3909520.70 + P-141 4991978.04 3909651.14 + P-142 4976506.16 3903410.21 + P-143 4976759.00 3902608.74 + P-143 4976947.64 3902747.99 + P-144 4978041.30 3905687.85 + P-146 4954672.94 3901215.85 + P-146 4954682.98 3901296.12 + P-146 4954763.25 3901346.29 + P-146 4954853.55 3901346.29 + P-146 4954913.75 3901406.49 + P-146 4955024.12 3901296.12 + P-146 4955197.86 3901048.88 + P-147 4959810.17 3899339.56 + P-147 4959589.43 3899339.56 + P-147 4959458.99 3899279.36 + P-147 4959458.99 3899158.95 + P-147 4959448.96 3899098.75 + P-147 4959479.06 3899018.48 + P-147 4959408.82 3898938.21 + P-147 4959328.55 3898898.08 + P-147 4959399.00 3898721.01 + P-149 4984408.50 3901023.50 + P-149 4984179.00 3900744.99 + P-149 4983951.01 3901025.25 + P-149 4983349.49 3901764.25 + P-149 4983296.01 3901829.75 + P-149 4983214.00 3901930.25 + P-149 4983180.50 3901989.50 + P-149 4983136.51 3902065.74 + P-149 4983099.00 3902176.99 + P-149 4983080.01 3902237.50 + P-149 4983037.50 3902373.73 + P-15 4974252.28 3900347.29 + P-15 4974414.60 3900329.25 + P-15 4974576.92 3900284.16 + P-15 4974694.15 3900302.20 + P-15 4974784.33 3900419.43 + P-15 4974622.01 3900635.86 + P-150 4960332.50 3898370.49 + P-150 4960299.50 3898552.25 + P-150 4960287.98 3898612.00 + P-150 4960275.00 3898678.74 + P-150 4960258.49 3898761.00 + P-152 4975295.50 3906634.29 + P-152 4975213.49 3906421.49 + P-152 4975149.50 3906282.76 + P-152 4975025.00 3906013.50 + P-152 4974988.02 3905933.24 + P-152 4974957.99 3905880.00 + P-152 4974935.50 3905839.75 + P-152 4974910.49 3905806.74 + P-152 4974890.50 3905781.25 + P-152 4974853.51 3905758.77 + P-153 4988826.50 3908822.26 + P-153 4988987.49 3908851.25 + P-153 4989252.01 3908945.74 + P-153 4989469.00 3909071.75 + P-153 4989665.50 3909186.01 + P-154 4954894.72 3900327.90 + P-154 4954855.78 3900458.84 + P-154 4954816.89 3900589.65 + P-155 4954383.52 3900995.43 + P-155 4954381.97 3900804.47 + P-155 4954572.61 3900794.44 + P-156 4956599.40 3900593.76 + P-156 4956338.53 3900734.24 + P-156 4955987.35 3900734.24 + P-156 4955626.14 3900714.17 + P-156 4955385.33 3900704.13 + P-157 4955134.49 3900393.09 + P-159 4954144.50 3900207.75 + P-159 4953985.99 3900322.99 + P-159 4953747.01 3900465.49 + P-159 4953667.50 3900498.25 + P-159 4953570.00 3900521.26 + P-159 4953435.99 3900519.75 + P-159 4953312.51 3900511.50 + P-159 4953110.01 3900461.26 + P-159 4952751.00 3900300.50 + P-159 4952675.99 3900282.74 + P-159 4952674.00 3900282.25 + P-159 4952628.98 3900282.50 + P-16 4974996.18 3902342.56 + P-16 4974749.60 3901955.07 + P-16 4974979.01 3901600.73 + P-160 4955179.01 3898309.49 + P-160 4955172.49 3898322.75 + P-160 4955166.50 3898335.25 + P-160 4955081.99 3898517.76 + P-160 4955043.00 3898601.72 + P-160 4955028.50 3898633.26 + P-160 4955011.00 3898675.99 + P-160 4955008.00 3898685.50 + P-160 4954983.51 3898758.00 + P-160 4954824.99 3899494.24 + P-160 4954770.00 3899590.26 + P-160 4954707.49 3899675.99 + P-160 4954520.99 3899878.76 + P-161 4952831.50 3893080.24 + P-161 4952367.50 3893009.77 + P-161 4952133.50 3892980.74 + P-161 4951439.49 3892881.51 + P-161 4951213.79 3892825.39 + P-162 4980139.50 3899922.25 + P-166 4971423.01 3901224.77 + P-166 4971678.00 3901272.25 + P-166 4971952.52 3901282.74 + P-166 4972271.50 3901271.50 + P-167 4985546.50 3901337.51 + P-17 4963012.93 3896117.34 + P-171 4962553.99 3899645.76 + P-171 4962558.00 3899680.25 + P-171 4962393.01 3899956.25 + P-171 4962346.00 3899971.74 + P-171 4962171.00 3899887.25 + P-171 4962164.00 3899884.25 + P-173 4978344.00 3904359.50 + P-176 4980977.01 3899506.51 + P-178 4979840.01 3899903.50 + P-178 4979745.50 3899891.75 + P-178 4979561.99 3899803.23 + P-178 4979514.49 3899790.76 + P-178 4979462.49 3899777.00 + P-178 4979349.00 3899789.25 + P-179 4967592.49 3905262.75 + P-179 4967573.01 3905276.00 + P-179 4967547.48 3905293.49 + P-18 4974216.20 3900870.32 + P-18 4974225.22 3900951.48 + P-18 4974117.01 3901032.64 + P-18 4974008.28 3901368.75 + P-180 4962561.51 3901550.25 + P-181 4976078.99 3900902.25 + P-183 4976786.50 3906481.00 + P-183 4976839.01 3906460.50 + P-185 4946443.00 3891220.75 + P-185 4946412.01 3891133.00 + P-185 4946260.98 3890700.75 + P-185 4946249.01 3890665.75 + P-185 4946234.98 3890626.50 + P-185 4946218.51 3890579.51 + P-186 4985588.50 3901286.24 + P-186 4985632.01 3901230.25 + P-186 4985678.00 3901144.50 + P-187 4968841.50 3892570.49 + P-187 4968806.01 3892521.75 + P-187 4968820.00 3892401.26 + P-187 4968871.51 3892184.50 + P-187 4968864.50 3891870.25 + P-187 4968736.01 3891602.50 + P-187 4968546.50 3891394.01 + P-187 4968415.50 3891271.26 + P-188 4952577.00 3900292.49 + P-188 4952064.50 3900625.50 + P-188 4951834.01 3900750.00 + P-188 4951730.01 3900791.25 + P-188 4951603.49 3900814.26 + P-188 4951495.50 3900811.26 + P-188 4951369.01 3900778.00 + P-188 4951148.00 3900691.51 + P-188 4950750.49 3900694.99 + P-188 4950107.99 3900701.00 + P-188 4949989.01 3900687.25 + P-188 4949223.00 3900398.75 + P-189 4978330.50 3906739.76 + P-189 4978502.50 3906655.25 + P-189 4978576.51 3906620.75 + P-19 4986389.30 3910343.46 + P-190 4985521.00 3901291.25 + P-190 4985424.01 3901092.01 + P-191 4950558.50 3890861.50 + P-192 4966258.51 3899785.51 + P-193 4964818.49 3899222.01 + P-195 4965535.00 3900361.76 + P-195 4965540.01 3900330.00 + P-195 4965549.49 3900275.00 + P-195 4965657.00 3899635.01 + P-196 4966591.99 3905411.74 + P-196 4966360.02 3905070.75 + P-196 4965962.50 3904515.01 + P-197 4967037.50 3901976.50 + P-197 4966969.50 3901852.25 + P-197 4966974.51 3901790.74 + P-197 4966991.51 3901766.48 + P-197 4967049.49 3901742.75 + P-197 4967090.01 3901751.51 + P-197 4967122.99 3901764.50 + P-197 4967381.92 3902102.53 + P-198 4965743.99 3899606.00 + P-198 4966265.00 3899759.00 + P-198 4966746.99 3899793.75 + P-199 4977305.50 3906622.24 + P-2 4985192.50 3909011.75 + P-2 4985229.49 3909023.01 + P-2 4985361.00 3909062.99 + P-2 4985397.54 3909064.78 + P-20 4985431.99 3905060.74 + P-200 4977938.00 3906796.99 + P-200 4977725.50 3906603.51 + P-203 4970233.51 3891899.51 + P-203 4970255.01 3891854.76 + P-203 4970314.50 3891732.00 + P-203 4970303.99 3891587.00 + P-203 4970168.01 3891363.49 + P-203 4970100.50 3891226.51 + P-203 4970050.49 3891099.26 + P-203 4970027.00 3891061.00 + P-203 4969998.49 3891012.00 + P-203 4969777.00 3890817.50 + P-203 4969684.50 3890745.00 + P-203 4969601.00 3890679.50 + P-204 4950723.00 3893624.75 + P-204 4950805.00 3893630.75 + P-204 4950854.49 3893634.50 + P-204 4950921.01 3893631.00 + P-204 4950962.48 3893625.75 + P-204 4951146.00 3893593.25 + P-206 4954353.00 3894672.00 + P-206 4954317.50 3894713.50 + P-207 4952818.49 3894680.00 + P-207 4952801.49 3894785.49 + P-207 4952753.99 3895082.50 + P-208 4968513.01 3904636.00 + P-209 4984752.48 3908701.50 + P-209 4984816.00 3908779.26 + P-21 4969272.72 3898095.39 + P-21 4969217.72 3898480.35 + P-211 4953071.51 3894131.51 + P-211 4953077.00 3894133.24 + P-211 4953089.50 3894137.25 + P-211 4953092.01 3894138.25 + P-211 4953205.50 3894181.49 + P-211 4953238.50 3894194.26 + P-211 4953240.49 3894194.99 + P-211 4953259.51 3894201.50 + P-211 4953291.50 3894212.50 + P-211 4953534.49 3894296.00 + P-211 4953573.50 3894316.50 + P-211 4953598.00 3894346.25 + P-211 4953618.50 3894408.00 + P-211 4953621.51 3894475.25 + P-211 4953620.00 3894501.25 + P-211 4953618.01 3894533.23 + P-211 4953611.49 3894561.49 + P-211 4953588.51 3894578.49 + P-211 4953466.00 3894618.74 + P-211 4953408.00 3894623.24 + P-211 4953324.50 3894625.50 + P-211 4953101.50 3894631.24 + P-212 4980132.01 3906973.00 + P-212 4979879.00 3906898.24 + P-212 4979865.01 3906894.01 + P-212 4979828.50 3906884.25 + P-213 4977172.00 3908677.01 + P-213 4977374.01 3908967.99 + P-213 4977535.00 3909173.51 + P-213 4977600.49 3909257.49 + P-213 4977653.00 3909316.76 + P-213 4977892.01 3909503.73 + P-213 4978170.51 3909721.76 + P-216 4968461.01 3906123.99 + P-216 4968460.50 3906143.01 + P-216 4968476.97 3906162.00 + P-216 4968502.97 3906157.75 + P-216 4968515.00 3906141.50 + P-217 4961692.00 3898703.75 + P-217 4961732.00 3898722.74 + P-217 4961832.50 3898770.75 + P-217 4961888.00 3898796.99 + P-217 4962046.99 3898872.51 + P-217 4962149.50 3898921.25 + P-217 4962268.51 3898977.75 + P-217 4962432.51 3899089.99 + P-217 4962623.99 3899221.01 + P-217 4962868.00 3899351.23 + P-217 4962916.00 3899377.01 + P-221 4983830.01 3909814.24 + P-221 4983819.99 3909836.24 + P-221 4983797.49 3909850.74 + P-223 4980066.49 3908772.74 + P-223 4980077.01 3908783.76 + P-223 4980097.50 3908808.76 + P-226 4984920.00 3908884.27 + P-226 4984934.50 3908896.74 + P-226 4985011.50 3908950.26 + P-227 4981746.00 3905398.51 + P-23 4974712.19 3899193.01 + P-230 4984742.99 3900765.50 + P-230 4984785.50 3900914.49 + P-230 4984827.50 3900979.74 + P-230 4984939.99 3901052.75 + P-230 4985082.49 3901090.26 + P-230 4985149.50 3901097.75 + P-230 4985215.00 3901093.00 + P-230 4985257.51 3901078.75 + P-230 4985302.50 3901050.76 + P-231 4970932.01 3901804.75 + P-231 4970923.00 3901885.50 + P-231 4970944.01 3902247.74 + P-233 4962636.00 3900686.25 + P-233 4962634.50 3900687.74 + P-233 4962632.50 3900690.51 + P-233 4962628.49 3900695.27 + P-233 4962623.99 3900700.75 + P-233 4962603.00 3900726.00 + P-233 4962370.49 3901005.74 + P-234 4967381.92 3902102.53 + P-234 4967384.01 3902101.01 + P-235 4952266.00 3891851.25 + P-235 4952183.00 3891712.75 + P-235 4952146.49 3891653.01 + P-235 4952062.51 3891526.49 + P-235 4951986.99 3891413.76 + P-235 4951925.00 3891284.00 + P-235 4951889.51 3891177.99 + P-240 4979443.01 3896096.23 + P-240 4979397.99 3896129.25 + P-240 4979294.99 3896189.00 + P-240 4979047.01 3896311.51 + P-240 4978881.50 3896381.24 + P-240 4978689.51 3896462.25 + P-240 4978670.51 3896471.74 + P-240 4978549.00 3896532.25 + P-240 4978356.50 3896628.00 + P-240 4978244.50 3896695.74 + P-240 4978184.01 3896737.99 + P-240 4978139.48 3896781.24 + P-240 4978060.99 3896906.00 + P-240 4977997.49 3896982.00 + P-240 4977929.51 3897056.75 + P-240 4977881.52 3897095.49 + P-240 4977850.00 3897114.75 + P-240 4977815.00 3897123.75 + P-240 4977781.00 3897121.25 + P-240 4977697.51 3897099.50 + P-240 4977593.00 3897081.50 + P-240 4977537.50 3897082.75 + P-240 4977437.49 3897085.25 + P-243 4952831.99 3894595.49 + P-244 4971118.00 3894063.75 + P-246 4976711.50 3908684.75 + P-246 4976678.00 3908641.99 + P-246 4976644.49 3908625.76 + P-246 4976594.00 3908634.74 + P-25 4974559.63 3913072.61 + P-25 4975021.18 3912982.31 + P-25 4975181.72 3912922.11 + P-251 4968539.01 3901757.49 + P-252 4960905.00 3897333.01 + P-252 4961573.50 3897494.50 + P-252 4961752.99 3897537.75 + P-252 4961907.00 3897583.01 + P-253 4970899.50 3894568.76 + P-253 4970684.50 3894666.00 + P-253 4970433.99 3894777.51 + P-254 4980845.54 3906486.73 + P-257 4966840.50 3896597.00 + P-258 4966648.00 3895614.00 + P-258 4966617.99 3895588.00 + P-259 4949886.01 3895212.75 + P-259 4949865.01 3895348.00 + P-259 4949844.00 3895410.50 + P-259 4949817.01 3895438.27 + P-259 4949799.50 3895456.49 + P-259 4949757.01 3895477.75 + P-259 4949716.00 3895486.99 + P-259 4949684.52 3895507.01 + P-259 4949662.50 3895550.74 + P-259 4949642.50 3895626.74 + P-259 4949572.50 3895710.75 + P-259 4949434.50 3895825.01 + P-259 4949382.00 3895857.00 + P-262 4965699.51 3893634.75 + P-262 4965637.51 3893503.99 + P-262 4965632.50 3893493.51 + P-262 4965597.52 3893415.51 + P-263 4971182.50 3905678.74 + P-263 4971308.00 3905630.75 + P-265 4974411.49 3909113.51 + P-266 4983793.99 3907487.50 + P-266 4983655.99 3907345.00 + P-266 4982674.50 3906830.24 + P-266 4982072.01 3906485.26 + P-266 4981758.00 3906620.25 + P-266 4981459.50 3906748.00 + P-267 4980177.00 3905508.00 + P-267 4980086.50 3905362.51 + P-267 4980008.00 3905250.00 + P-267 4979879.50 3905179.76 + P-267 4979753.26 3905129.35 + P-267 4979750.50 3905128.25 + P-269 4986355.03 3894345.00 + P-269 4986402.51 3894368.50 + P-269 4986491.50 3894431.76 + P-269 4986673.50 3894560.76 + P-27 4986118.39 3912390.32 + P-27 4986058.19 3911958.87 + P-27 4986428.91 3911876.60 + P-271 4979319.50 3907573.74 + P-273 4980405.99 3906796.99 + P-275 4979847.50 3906334.25 + P-276 4984176.00 3908043.98 + P-276 4984213.51 3908076.49 + P-277 4977975.99 3904354.51 + P-277 4977958.48 3904288.50 + P-277 4977958.48 3904211.50 + P-277 4977986.50 3904171.25 + P-279 4983451.50 3909789.50 + P-28 4972327.02 3904007.76 + P-28 4972338.50 3904044.75 + P-28 4972371.00 3904061.75 + P-28 4972416.50 3904050.25 + P-28 4972421.00 3904021.50 + P-280 4961225.00 3899326.25 + P-282 4981418.49 3907472.76 + P-282 4980858.49 3907975.75 + P-283 4979719.50 3907258.75 + P-283 4979900.50 3907376.74 + P-283 4979939.50 3907400.75 + P-283 4980047.01 3907468.26 + P-283 4980218.50 3907575.50 + P-283 4980348.50 3907649.50 + P-283 4980422.99 3907691.75 + P-283 4980477.51 3907698.75 + P-283 4980530.49 3907686.25 + P-284 4981810.50 3895298.50 + P-284 4981874.01 3895305.50 + P-284 4981943.50 3895283.76 + P-284 4982570.50 3894910.75 + P-284 4982601.00 3894860.74 + P-284 4982630.50 3894571.24 + P-284 4982658.50 3894437.50 + P-284 4982721.49 3894334.50 + P-284 4982870.00 3894296.50 + P-288 4968153.00 3895496.75 + P-288 4968793.51 3895437.76 + P-288 4968811.00 3895405.76 + P-288 4968826.00 3895321.26 + P-288 4968826.00 3895315.50 + P-288 4968820.50 3895015.50 + P-288 4968813.48 3894653.01 + P-288 4968810.00 3894480.74 + P-288 4968825.00 3894309.01 + P-288 4968880.99 3894040.74 + P-288 4968940.00 3893676.50 + P-288 4969011.99 3893484.00 + P-290 4981676.50 3905963.01 + P-291 4954003.50 3893805.75 + P-292 4984035.99 3908043.98 + P-292 4984324.00 3908456.75 + P-292 4984140.50 3908566.76 + P-292 4984092.00 3908507.00 + P-293 4983747.90 3909733.77 + P-294 4944191.25 3890594.07 + P-295 4965811.00 3906516.49 + P-295 4965200.50 3906830.75 + P-295 4964850.01 3906986.26 + P-295 4964654.00 3907072.99 + P-295 4964105.50 3907338.00 + P-295 4963872.50 3907450.75 + P-295 4963836.00 3907468.50 + P-295 4963759.51 3907485.75 + P-295 4963700.00 3907477.26 + P-297 4970953.50 3893819.00 + P-297 4970659.01 3893965.27 + P-297 4970624.01 3893982.76 + P-297 4970597.99 3893995.50 + P-297 4970588.99 3894000.00 + P-297 4970579.50 3894004.24 + P-297 4970526.00 3894029.50 + P-297 4970322.50 3894124.26 + P-297 4970289.01 3894133.99 + P-297 4970271.01 3894122.51 + P-298 4953364.98 3893269.00 + P-298 4953580.00 3893444.26 + P-298 4954116.50 3893955.74 + P-299 4979103.00 3906373.75 + P-299 4979170.51 3906342.25 + P-299 4979203.00 3906326.23 + P-299 4979335.51 3906261.73 + P-300 4984244.01 3908007.76 + P-301 4978439.51 3909406.51 + P-301 4978209.50 3909257.25 + P-301 4978168.01 3909230.50 + P-302 4954750.49 3893856.51 + P-302 4955078.00 3893524.25 + P-309 4965151.50 3894291.25 + P-309 4964780.01 3894225.00 + P-309 4964296.99 3894114.24 + P-310 4979974.00 3895739.25 + P-310 4980211.50 3895622.51 + P-310 4980638.00 3895462.25 + P-310 4980914.00 3895369.74 + P-310 4981013.49 3895330.75 + P-310 4981107.50 3895294.25 + P-310 4981294.50 3895221.25 + P-310 4981427.49 3895168.99 + P-311 4983601.51 3909678.01 + P-311 4983575.00 3909653.00 + P-311 4983548.00 3909649.99 + P-311 4983528.01 3909649.75 + P-316 4985623.50 3901550.76 + P-316 4985591.00 3901577.25 + P-316 4985543.99 3901599.24 + P-316 4985497.51 3901605.51 + P-318 4953191.51 3893141.75 + P-318 4953375.50 3893241.25 + P-32 4970338.24 3899133.42 + P-32 4971128.79 3899126.54 + P-32 4971568.75 3899016.55 + P-320 4981166.50 3906397.00 + P-325 4986155.99 3901747.25 + P-325 4986230.00 3901658.00 + P-325 4986306.49 3901540.25 + P-325 4986345.50 3901401.74 + P-325 4986331.00 3901263.24 + P-326 4978352.00 3907365.75 + P-327 4953086.00 3893209.24 + P-327 4953084.01 3893219.75 + P-327 4953003.99 3893688.01 + P-328 4981214.00 3894970.75 + P-328 4981120.00 3894677.99 + P-328 4980839.50 3894385.74 + P-328 4980692.01 3893946.50 + P-328 4980425.01 3893760.75 + P-328 4980251.50 3893601.50 + P-329 4977064.50 3909430.25 + P-33 4970056.39 3898487.23 + P-33 4970090.76 3898535.35 + P-331 4952809.98 3893038.99 + P-331 4952987.50 3893081.99 + P-332 4965804.99 3894426.50 + P-332 4965242.00 3894307.50 + P-333 4954380.51 3893686.50 + P-333 4954425.99 3893639.75 + P-333 4954457.00 3893624.24 + P-333 4954475.98 3893625.26 + P-333 4954502.52 3893638.49 + P-335 4953656.51 3893370.48 + P-335 4953708.00 3893335.01 + P-335 4953769.00 3893303.25 + P-335 4953844.00 3893273.50 + P-335 4953951.50 3893241.25 + P-335 4954131.00 3893183.51 + P-336 4979850.00 3899261.99 + P-336 4979839.50 3899279.50 + P-336 4979839.50 3899298.25 + P-339 4979047.01 3899866.50 + P-339 4978989.51 3899877.01 + P-339 4978858.49 3899930.25 + P-339 4978816.49 3899971.25 + P-339 4978779.50 3900018.75 + P-339 4978742.50 3900066.25 + P-340 4985542.99 3898593.50 + P-340 4985497.51 3898766.49 + P-340 4985487.49 3898819.75 + P-340 4985417.50 3899198.25 + P-340 4985327.50 3899663.49 + P-340 4985222.00 3900020.50 + P-340 4985042.99 3900422.76 + P-342 4965796.50 3906558.76 + P-342 4965833.50 3906803.98 + P-342 4965861.51 3906990.25 + P-342 4965923.51 3907404.25 + P-342 4965945.99 3907553.49 + P-342 4965953.01 3907600.01 + P-342 4965956.51 3907783.76 + P-342 4965941.99 3908030.25 + P-342 4965869.02 3908282.49 + P-342 4965762.50 3908499.49 + P-342 4965608.50 3908691.24 + P-342 4965477.50 3908795.50 + P-342 4965187.00 3908951.99 + P-342 4964904.00 3909074.25 + P-342 4964625.50 3909194.27 + P-342 4964402.50 3909290.25 + P-342 4964255.50 3909353.51 + P-342 4964199.00 3909362.24 + P-342 4964179.49 3909365.26 + P-344 4950715.49 3890695.26 + P-344 4950702.50 3890562.25 + P-344 4950695.50 3890489.01 + P-346 4965087.51 3894734.51 + P-346 4965068.53 3894842.25 + P-346 4965013.01 3895108.75 + P-348 4954809.49 3893937.01 + P-348 4954824.01 3893951.24 + P-348 4955051.49 3894164.25 + P-348 4955058.02 3894170.25 + P-348 4955137.00 3894245.26 + P-348 4955270.50 3894372.00 + P-349 4961896.51 3897604.25 + P-350 4953937.50 3892596.49 + P-350 4953915.00 3892572.75 + P-351 4970372.99 3903360.76 + P-352 4969967.99 3892810.49 + P-352 4969997.49 3892753.24 + P-352 4970035.50 3892624.00 + P-352 4970046.50 3892585.01 + P-352 4970052.51 3892517.25 + P-352 4970045.99 3892422.00 + P-352 4970016.00 3892310.49 + P-352 4970014.48 3892288.75 + P-352 4970012.01 3892253.00 + P-352 4970027.99 3892201.24 + P-352 4970048.01 3892164.25 + P-352 4970067.02 3892128.74 + P-352 4970178.00 3891996.99 + P-354 4952253.00 3892276.49 + P-354 4952279.50 3892160.75 + P-354 4952284.00 3892142.26 + P-354 4952295.00 3892095.49 + P-354 4952307.03 3892043.76 + P-354 4952328.49 3892001.74 + P-355 4972206.51 3892230.25 + P-355 4972362.51 3892167.99 + P-355 4972462.00 3892148.25 + P-355 4972530.01 3892151.99 + P-355 4972594.51 3892182.74 + P-356 4956553.00 3891651.99 + P-356 4956036.00 3891678.99 + P-356 4955871.49 3891698.25 + P-356 4955791.01 3891719.75 + P-356 4955746.50 3891745.50 + P-356 4955402.01 3891992.00 + P-356 4955282.50 3892085.25 + P-356 4955111.49 3892273.24 + P-356 4955027.00 3892354.75 + P-356 4954979.99 3892389.00 + P-356 4954926.50 3892414.48 + P-356 4954863.51 3892438.50 + P-356 4954807.50 3892457.25 + P-356 4954709.50 3892490.25 + P-358 4946806.50 3891549.76 + P-358 4946944.97 3891571.51 + P-358 4947272.50 3891623.51 + P-358 4947599.50 3891708.49 + P-36 4973125.05 3900203.00 + P-360 4972750.51 3908032.49 + P-360 4972867.00 3908208.00 + P-360 4972941.99 3908308.25 + P-360 4973034.51 3908447.49 + P-360 4973259.00 3908784.75 + P-360 4973309.02 3908843.25 + P-360 4973516.00 3909146.51 + P-363 4947780.50 3891757.50 + P-363 4947782.01 3891758.00 + P-363 4948435.99 3891999.01 + P-363 4948599.52 3892059.01 + P-363 4948804.51 3892120.25 + P-363 4949023.01 3892185.50 + P-363 4949251.00 3892246.50 + P-363 4949897.00 3892419.75 + P-363 4950278.49 3892522.26 + P-365 4979949.13 3915963.06 + P-365 4980367.72 3916144.92 + P-365 4980640.77 3916200.44 + P-365 4980759.30 3916190.34 + P-365 4980864.48 3916129.75 + P-365 4980935.50 3915973.25 + P-365 4980984.50 3915918.74 + P-365 4981026.00 3915899.75 + P-365 4981105.50 3915881.99 + P-365 4981433.01 3915835.51 + P-365 4981516.00 3915803.00 + P-365 4981551.99 3915785.99 + P-365 4981615.01 3915756.49 + P-365 4981763.00 3915668.74 + P-365 4981819.00 3915644.00 + P-365 4981901.00 3915608.01 + P-365 4982002.50 3915563.26 + P-365 4982159.00 3915494.50 + P-365 4982222.51 3915466.50 + P-366 4949914.00 3894918.75 + P-366 4949922.49 3894830.51 + P-366 4949931.49 3894737.75 + P-366 4949982.00 3894467.24 + P-367 4960492.00 3899467.00 + P-367 4960490.49 3899580.50 + P-367 4960554.00 3899695.01 + P-368 4978694.99 3914403.00 + P-369 4977189.00 3906325.76 + P-369 4977265.00 3906310.51 + P-369 4977302.00 3906320.51 + P-369 4977333.00 3906348.99 + P-371 4978437.02 3907772.73 + P-371 4978374.50 3907819.24 + P-372 4946207.49 3891459.49 + P-372 4946095.00 3891443.00 + P-372 4945952.50 3891407.74 + P-372 4945649.51 3891264.75 + P-372 4945517.00 3891201.52 + P-372 4945486.01 3891184.24 + P-372 4945252.51 3891054.24 + P-372 4945038.99 3890934.51 + P-372 4944892.01 3890851.50 + P-372 4944788.49 3890793.25 + P-372 4944765.50 3890780.50 + P-372 4944638.00 3890721.26 + P-373 4953049.50 3894124.00 + P-375 4978624.01 3904256.01 + P-375 4978612.50 3904396.75 + P-375 4978587.50 3904455.00 + P-375 4978537.01 3904513.25 + P-376 4979459.50 3895989.25 + P-376 4979401.49 3895850.50 + P-376 4979085.00 3895360.23 + P-376 4979052.50 3895320.25 + P-376 4979014.00 3895309.02 + P-376 4978583.00 3895461.99 + P-377 4980749.51 3907164.00 + P-377 4980706.00 3907142.74 + P-378 4980711.00 3904316.25 + P-380 4957712.01 3896559.50 + P-380 4958981.00 3896920.74 + P-381 4979155.99 3904052.98 + P-383 4983351.51 3907122.75 + P-383 4983677.49 3907298.50 + P-383 4983734.50 3907359.25 + P-383 4983817.51 3907447.49 + P-383 4983853.99 3907486.26 + P-389 4974410.49 3903966.24 + P-389 4974326.00 3904012.75 + P-389 4974304.50 3904012.26 + P-390 4969509.50 3892721.50 + P-390 4969501.99 3892689.00 + P-391 4978724.99 3907747.74 + P-392 4984583.75 3907905.79 + P-393 4978111.00 3903735.75 + P-393 4978197.00 3903714.49 + P-395 4979537.50 3903879.49 + P-395 4979664.10 3903734.66 + P-398 4965500.00 3891850.75 + P-398 4965464.49 3891616.26 + P-398 4965448.00 3891533.01 + P-398 4965421.00 3891511.52 + P-398 4965198.00 3891482.76 + P-398 4964888.51 3891418.26 + P-4 4985493.01 3904591.74 + P-4 4985495.49 3904568.76 + P-4 4985477.50 3904552.51 + P-40 4975063.88 3899211.04 + P-40 4975226.20 3899328.27 + P-401 4978101.02 3907443.50 + P-401 4978020.50 3907315.50 + P-401 4977995.50 3907274.76 + P-401 4977970.49 3907235.50 + P-401 4977956.51 3907213.00 + P-403 4965453.50 3892537.00 + P-403 4965476.00 3892273.01 + P-404 4982648.50 3905088.75 + P-406 4952827.00 3895112.25 + P-406 4952925.50 3895108.75 + P-406 4953008.57 3895153.01 + P-406 4953261.50 3895152.25 + P-406 4953475.00 3895155.76 + P-406 4953537.00 3895183.51 + P-406 4953578.00 3895231.74 + P-406 4953626.50 3895342.25 + P-408 4971447.51 3905756.50 + P-408 4971301.00 3905854.24 + P-410 4961753.99 3898475.75 + P-410 4961638.00 3898665.24 + P-412 4955689.48 3895385.01 + P-412 4955744.50 3895421.50 + P-412 4955786.51 3895447.50 + P-412 4955886.00 3895509.49 + P-412 4956798.01 3896080.24 + P-412 4957094.00 3896254.75 + P-412 4957229.50 3896331.75 + P-414 4981162.52 3906084.00 + P-416 4965630.51 3892021.75 + P-416 4965756.00 3891994.24 + P-416 4965880.98 3891948.76 + P-416 4966062.49 3891840.26 + P-416 4966155.00 3891754.26 + P-416 4966303.00 3891523.73 + P-416 4966371.51 3891393.26 + P-416 4966413.51 3891313.75 + P-416 4966452.01 3891239.99 + P-416 4966527.49 3891084.48 + P-416 4966669.51 3890790.50 + P-416 4966784.51 3890485.51 + P-416 4966835.00 3890385.50 + P-416 4966898.99 3890327.50 + P-416 4967010.00 3890305.75 + P-418 4969221.00 3893087.25 + P-418 4969324.50 3892931.00 + P-418 4969501.50 3892786.00 + P-419 4979655.99 3909587.24 + P-419 4979789.00 3909730.50 + P-420 4952567.50 3891343.01 + P-420 4952523.01 3891282.01 + P-420 4952464.00 3891171.74 + P-420 4952374.99 3890929.01 + P-420 4952369.50 3890845.25 + P-420 4952365.99 3890557.26 + P-420 4952356.50 3890412.25 + P-420 4952349.50 3890305.99 + P-420 4952317.01 3890183.75 + P-420 4952307.50 3889963.74 + P-420 4952325.01 3889689.76 + P-420 4952332.50 3889286.51 + P-420 4952349.99 3888972.50 + P-420 4952341.50 3888939.25 + P-420 4952318.00 3888920.74 + P-420 4952259.49 3888906.49 + P-420 4951962.50 3888885.75 + P-420 4951886.50 3888880.49 + P-420 4951820.51 3888871.25 + P-421 4980059.00 3903919.25 + P-422 4981253.02 3906033.76 + P-423 4982312.50 3904838.00 + P-425 4976868.49 3904800.49 + P-425 4976885.49 3904774.76 + P-425 4976879.50 3904745.26 + P-425 4976805.50 3904587.75 + P-425 4976807.49 3904553.00 + P-425 4976829.99 3904523.50 + P-426 4957717.51 3896525.76 + P-426 4958209.99 3896664.51 + P-426 4958967.00 3896878.00 + P-428 4947762.00 3891747.50 + P-428 4947739.50 3891682.25 + P-428 4947702.99 3891590.75 + P-428 4947673.00 3891514.75 + P-428 4947637.00 3891424.25 + P-428 4947602.01 3891269.75 + P-428 4947583.50 3891147.00 + P-428 4947581.00 3891129.49 + P-428 4947576.01 3891040.50 + P-428 4947538.99 3890882.51 + P-428 4947503.00 3890775.50 + P-428 4947457.49 3890639.75 + P-428 4947441.00 3890530.00 + P-428 4947430.50 3890327.76 + P-428 4947452.50 3890078.76 + P-428 4947504.50 3889817.01 + P-428 4947503.50 3889746.50 + P-428 4947467.51 3889669.26 + P-428 4947412.01 3889591.99 + P-428 4947394.50 3889531.75 + P-428 4947378.50 3889438.25 + P-428 4947361.50 3889351.74 + P-428 4947340.99 3889279.51 + P-428 4947320.49 3889254.99 + P-428 4947242.51 3889225.25 + P-428 4947171.50 3889225.49 + P-428 4947001.49 3889226.00 + P-428 4946970.50 3889226.00 + P-428 4946920.50 3889227.51 + P-428 4946799.01 3889230.74 + P-428 4946703.50 3889248.50 + P-428 4946589.51 3889269.51 + P-428 4946544.00 3889260.25 + P-428 4946521.99 3889233.25 + P-428 4946532.52 3889194.26 + P-428 4946549.01 3889164.25 + P-428 4947175.51 3888966.74 + P-428 4947410.48 3888955.74 + P-428 4947518.49 3888998.01 + P-428 4947545.00 3889097.00 + P-429 4950831.00 3892541.50 + P-429 4950842.50 3892466.76 + P-429 4950805.50 3892365.50 + P-429 4950316.01 3891023.25 + P-43 4974771.34 3896975.63 + P-430 4980515.37 3906003.29 + P-432 4980349.39 3905760.33 + P-433 4979827.99 3906293.75 + P-434 4980850.49 3905837.51 + P-435 4957374.99 3897580.50 + P-438 4976920.00 3907921.25 + P-438 4976962.49 3907892.74 + P-438 4977295.50 3907618.78 + P-438 4977891.01 3907108.50 + P-44 4974996.18 3896565.50 + P-44 4974643.92 3896125.18 + P-44 4974503.01 3895860.99 + P-44 4974467.79 3895244.53 + P-44 4974397.34 3895033.18 + P-44 4974432.56 3894610.47 + P-441 4951196.20 3892820.95 + P-442 4982546.50 3905627.50 + P-442 4982418.49 3905367.74 + P-442 4982418.00 3905366.75 + P-442 4982342.00 3905222.76 + P-443 4955103.49 3895715.76 + P-443 4955132.99 3895810.76 + P-443 4955145.49 3895876.25 + P-443 4955144.50 3895935.26 + P-443 4955121.51 3895982.00 + P-443 4955093.50 3896012.99 + P-443 4955054.99 3896044.00 + P-443 4955011.00 3896065.50 + P-443 4954952.99 3896075.01 + P-443 4954862.00 3896070.00 + P-443 4954780.50 3896048.75 + P-444 4981297.00 3905381.75 + P-447 4978624.50 3907602.00 + P-447 4978539.00 3907582.74 + P-447 4978476.50 3907542.25 + P-448 4984645.00 3907377.76 + P-448 4984542.50 3907403.25 + P-449 4977287.50 3901387.25 + P-450 4975948.00 3902734.75 + P-450 4976232.00 3902224.49 + P-450 4976291.67 3901860.66 + P-451 4977228.01 3904942.50 + P-451 4977205.51 3904933.24 + P-453 4985381.50 3900994.50 + P-453 4985390.50 3900982.25 + P-453 4985440.50 3900912.76 + P-453 4985493.01 3900771.50 + P-455 4968056.50 3913331.50 + P-455 4968038.01 3913269.75 + P-455 4967989.00 3913050.49 + P-455 4967970.50 3913018.00 + P-455 4967918.50 3913006.25 + P-455 4967328.52 3913108.74 + P-457 4979602.00 3896285.75 + P-457 4979593.51 3896267.00 + P-457 4979552.99 3896178.50 + P-457 4979523.49 3896114.75 + P-457 4979512.01 3896090.26 + P-458 4985219.00 3900815.74 + P-458 4985151.00 3900609.50 + P-46 4963317.57 3894182.85 + P-46 4962845.38 3894045.76 + P-460 4979820.50 3909171.76 + P-460 4979869.00 3909086.51 + P-460 4979875.49 3909034.00 + P-460 4979845.50 3908994.75 + P-460 4979810.00 3908950.00 + P-460 4979733.50 3908882.26 + P-460 4979687.00 3908859.25 + P-460 4979634.49 3908864.00 + P-460 4979589.50 3908899.26 + P-461 4951305.50 3890888.00 + P-461 4951303.51 3890851.01 + P-461 4951294.00 3890814.75 + P-461 4951278.51 3890786.75 + P-461 4951253.50 3890750.49 + P-461 4951250.00 3890720.26 + P-461 4951232.49 3890464.01 + P-463 4951307.50 3891128.50 + P-463 4951306.50 3891177.75 + P-463 4951288.50 3891252.73 + P-463 4951251.00 3891320.25 + P-463 4951233.98 3891351.74 + P-463 4951219.99 3891376.50 + P-463 4951218.00 3891391.00 + P-463 4951228.50 3891404.50 + P-463 4951301.49 3891415.25 + P-463 4951395.50 3891429.01 + P-464 4979354.50 3908647.51 + P-464 4979323.01 3908718.50 + P-465 4969038.01 3893081.26 + P-465 4968858.01 3893029.99 + P-465 4968715.00 3892906.77 + P-466 4968141.99 3892892.73 + P-466 4967981.00 3892852.74 + P-469 4978478.50 3909128.00 + P-469 4978585.51 3909246.50 + P-469 4978614.50 3909267.51 + P-469 4978664.00 3909282.49 + P-469 4978693.50 3909276.24 + P-469 4978850.49 3908790.76 + P-47 4986559.87 3910293.29 + P-47 4986600.00 3910122.72 + P-47 4986670.24 3910032.42 + P-47 4986750.51 3910022.38 + P-47 4986750.51 3909962.18 + P-47 4986620.07 3909861.84 + P-47 4986600.00 3909360.16 + P-470 4981806.49 3906159.27 + P-470 4981860.51 3906232.00 + P-470 4981982.99 3906342.25 + P-470 4982105.50 3906436.74 + P-470 4982152.49 3906463.01 + P-470 4982568.50 3906697.49 + P-470 4982714.00 3906779.50 + P-472 4950954.01 3891005.75 + P-472 4950894.50 3890992.49 + P-473 4984419.00 3908277.52 + P-473 4984464.00 3908346.75 + P-473 4984548.49 3908450.75 + P-478 4961897.00 3900183.75 + P-478 4961826.02 3900311.00 + P-478 4961824.01 3900313.99 + P-478 4961822.50 3900316.25 + P-478 4961820.00 3900321.24 + P-478 4961717.00 3900495.50 + P-478 4961686.01 3900547.99 + P-478 4961615.99 3900666.50 + P-478 4961560.51 3900759.77 + P-479 4956775.49 3896111.00 + P-479 4957211.50 3896365.24 + P-48 4986830.78 3909299.89 + P-481 4953224.49 3893754.75 + P-481 4953155.49 3893718.51 + P-482 4956812.51 3892600.50 + P-483 4970900.01 3893282.01 + P-486 4969957.00 3892931.48 + P-486 4970023.00 3892960.99 + P-486 4970216.00 3893047.73 + P-486 4970324.48 3893076.25 + P-486 4970427.50 3893074.01 + P-486 4970563.50 3893033.50 + P-486 4970738.49 3892948.25 + P-489 4956879.49 3894200.24 + P-49 4958016.79 3896117.34 + P-494 4979773.49 3900211.50 + P-494 4979830.50 3900216.25 + P-494 4979883.01 3900220.75 + P-494 4979981.00 3900198.49 + P-495 4985883.49 3901811.51 + P-495 4985805.01 3901692.24 + P-495 4985776.50 3901653.50 + P-496 4973106.50 3901463.74 + P-496 4973144.00 3901382.99 + P-497 4979989.51 3908692.75 + P-497 4979719.50 3908455.76 + P-499 4953478.50 3892319.49 + P-499 4953334.50 3892232.00 + P-499 4953300.01 3892204.50 + P-499 4953270.99 3892181.25 + P-499 4953231.50 3892134.99 + P-499 4953185.99 3892081.00 + P-499 4953083.01 3891957.25 + P-499 4953046.00 3891912.74 + P-499 4952994.00 3891850.26 + P-5 4952761.00 3894059.76 + P-5 4952616.01 3894045.00 + P-5 4952599.50 3894045.24 + P-5 4952502.00 3894046.50 + P-5 4952197.00 3894085.76 + P-5 4951986.00 3894086.25 + P-5 4951882.99 3894099.99 + P-5 4951794.00 3894130.75 + P-5 4951730.50 3894219.00 + P-5 4951681.00 3894369.01 + P-5 4951677.50 3894401.50 + P-50 4977700.16 3914166.28 + P-500 4992454.51 3912297.74 + P-500 4992326.99 3912318.75 + P-500 4992127.51 3912317.25 + P-500 4992019.50 3912316.25 + P-500 4991675.01 3912313.50 + P-500 4991508.52 3912312.26 + P-500 4991452.00 3912321.99 + P-500 4991380.50 3912334.25 + P-500 4991238.51 3912387.75 + P-500 4991116.00 3912449.52 + P-500 4990986.49 3912515.00 + P-500 4990879.99 3912566.76 + P-500 4990652.51 3912672.51 + P-500 4990142.00 3912864.26 + P-500 4989348.00 3913106.97 + P-500 4988233.50 3913448.24 + P-500 4988036.50 3913493.99 + P-500 4987995.49 3913499.51 + P-500 4987829.01 3913522.01 + P-500 4987782.51 3913528.26 + P-500 4987650.00 3913560.24 + P-500 4987559.00 3913605.75 + P-501 4968291.00 3892136.74 + P-501 4968438.00 3892275.76 + P-501 4968523.00 3892389.23 + P-501 4968616.50 3892751.26 + P-505 4981239.00 3907071.99 + P-505 4981476.50 3907420.76 + P-505 4981739.00 3907806.74 + P-505 4981800.00 3907934.26 + P-505 4981862.99 3908227.50 + P-505 4981625.38 3908483.87 + P-505 4981127.59 3909020.97 + P-505 4980685.00 3909498.49 + P-505 4980526.99 3909663.00 + P-507 4972214.00 3902113.24 + P-507 4972922.00 3901626.50 + P-508 4971140.99 3902840.75 + P-508 4971933.99 3902303.00 + P-509 4978921.00 3900206.49 + P-509 4979094.51 3900303.24 + P-509 4979127.00 3900321.24 + P-509 4979258.50 3900386.01 + P-51 4985676.91 3910835.11 + P-51 4985767.21 3910082.58 + P-51 4985757.18 3909781.57 + P-510 4973816.49 3902209.99 + P-510 4973874.50 3902265.50 + P-510 4973912.00 3902301.25 + P-510 4973919.00 3902309.74 + P-511 4972290.00 3902261.75 + P-511 4972546.48 3902627.50 + P-511 4972551.51 3902645.00 + P-511 4972531.49 3902664.00 + P-511 4972308.00 3902809.76 + P-511 4972237.50 3902858.50 + P-511 4972121.50 3902939.00 + P-511 4972087.00 3902963.01 + P-511 4972062.99 3902979.50 + P-511 4972040.49 3902995.26 + P-511 4971928.00 3903106.75 + P-511 4971901.50 3903132.75 + P-511 4971884.50 3903149.99 + P-511 4971854.50 3903179.76 + P-511 4971808.00 3903213.74 + P-511 4971771.01 3903241.49 + P-511 4971752.50 3903254.75 + P-511 4971743.50 3903261.75 + P-511 4971719.01 3903279.26 + P-511 4971651.01 3903327.49 + P-511 4971571.99 3903403.01 + P-513 4966696.49 3906096.24 + P-513 4966763.01 3906146.02 + P-513 4966825.49 3906210.24 + P-513 4966883.50 3906304.50 + P-513 4966959.50 3906440.00 + P-513 4967021.01 3906567.76 + P-513 4967096.50 3906721.74 + P-513 4967182.99 3906924.50 + P-513 4967251.00 3907082.25 + P-513 4967261.99 3907089.99 + P-513 4967284.00 3907109.01 + P-513 4967276.49 3907135.01 + P-513 4967261.50 3907141.99 + P-513 4967234.99 3907141.75 + P-517 4952509.49 3891911.25 + P-517 4952620.49 3891889.25 + P-517 4952676.99 3891862.25 + P-517 4952731.01 3891839.51 + P-517 4952819.00 3891811.49 + P-519 4979446.51 3903460.50 + P-519 4979527.99 3903515.76 + P-519 4979580.50 3903551.25 + P-519 4979647.99 3903596.75 + P-521 4978358.98 3903668.25 + P-521 4978543.99 3903543.00 + P-521 4978748.00 3903360.76 + P-521 4978848.50 3903262.26 + P-521 4978862.67 3903245.43 + P-522 4979042.51 3903261.00 + P-522 4979258.50 3903342.01 + P-525 4967634.01 3899872.00 + P-525 4968252.50 3900067.50 + P-525 4968751.00 3900261.00 + P-525 4968935.01 3900329.51 + P-525 4970026.51 3900614.24 + P-525 4970226.99 3900683.00 + P-526 4978555.01 3909743.50 + P-526 4978501.01 3909887.25 + P-527 4944267.00 3891600.75 + P-529 4980249.00 3910079.24 + P-529 4980127.51 3910276.00 + P-529 4980023.00 3910444.74 + P-529 4979831.01 3910835.49 + P-529 4979804.50 3910889.75 + P-529 4979776.50 3910963.74 + P-529 4979690.00 3911193.50 + P-529 4979353.47 3912516.65 + P-529 4979106.59 3913487.31 + P-529 4979001.50 3913900.50 + P-529 4978903.51 3914020.75 + P-529 4978764.00 3914018.50 + P-530 4972970.50 3910485.99 + P-530 4972943.50 3910502.99 + P-530 4972774.49 3910610.00 + P-530 4972674.50 3910682.75 + P-530 4972516.00 3910819.24 + P-530 4972315.50 3911015.27 + P-530 4972251.00 3911060.00 + P-530 4972127.49 3911122.50 + P-530 4971989.00 3911172.75 + P-530 4971860.00 3911219.50 + P-530 4971707.52 3911273.51 + P-531 4963013.01 3900221.74 + P-531 4962940.51 3900311.75 + P-531 4962855.00 3900418.75 + P-531 4962781.01 3900511.00 + P-531 4962775.00 3900518.75 + P-531 4962773.01 3900521.26 + P-531 4962749.49 3900549.74 + P-531 4962731.00 3900572.00 + P-531 4962718.99 3900586.49 + P-533 4973395.51 3910716.00 + P-533 4973295.99 3910784.25 + P-537 4965183.50 3892949.25 + P-537 4965034.00 3892903.74 + P-537 4964688.49 3892798.50 + P-537 4964576.48 3892764.24 + P-537 4964355.00 3892696.50 + P-537 4964257.49 3892682.75 + P-54 4977168.38 3913534.16 + P-543 4950606.00 3894027.00 + P-543 4950581.07 3894314.00 + P-544 4951787.99 3889070.49 + P-544 4951791.01 3889083.75 + P-544 4951815.01 3889181.49 + P-544 4951861.00 3889436.26 + P-544 4951873.51 3889551.76 + P-545 4951497.01 3888777.75 + P-545 4951432.00 3888758.76 + P-546 4946363.49 3891510.75 + P-546 4946358.99 3891538.24 + P-546 4946314.00 3891800.01 + P-547 4979360.51 3900409.75 + P-547 4979371.99 3900408.75 + P-547 4979387.00 3900407.51 + P-547 4979447.00 3900402.25 + P-547 4979518.50 3900368.50 + P-547 4979563.50 3900327.49 + P-55 4985817.38 3909470.53 + P-55 4985957.85 3909370.19 + P-55 4986138.46 3909400.30 + P-55 4986288.96 3909460.50 + P-550 4973979.00 3903356.99 + P-550 4973973.00 3903328.75 + P-550 4973990.00 3903294.75 + P-550 4974838.50 3902708.24 + P-550 4974862.99 3902697.49 + P-550 4974879.51 3902714.25 + P-554 4979336.50 3900473.25 + P-555 4976527.50 3902441.00 + P-556 4975937.49 3901791.01 + P-556 4975480.49 3901707.51 + P-558 4973104.00 3901534.51 + P-558 4973127.00 3901556.50 + P-558 4973146.51 3901575.01 + P-558 4973212.49 3901637.51 + P-558 4973669.00 3902069.51 + P-561 4987623.01 3903232.49 + P-561 4987658.99 3903128.76 + P-561 4987674.50 3903062.51 + P-561 4987684.99 3903008.00 + P-561 4987687.51 3902994.75 + P-561 4987683.01 3902932.75 + P-561 4987671.00 3902873.24 + P-561 4987626.51 3902758.75 + P-562 4972407.50 3900397.74 + P-562 4972372.50 3900349.26 + P-563 4977155.00 3902053.51 + P-563 4977176.01 3901981.00 + P-563 4977177.49 3901975.75 + P-566 4987301.99 3903364.24 + P-566 4987240.50 3903321.00 + P-566 4987091.02 3903228.50 + P-566 4986967.50 3903169.01 + P-566 4986664.48 3903040.50 + P-566 4986441.50 3902976.75 + P-566 4986368.00 3902940.00 + P-566 4986312.50 3902903.01 + P-566 4986256.51 3902817.76 + P-566 4986170.51 3902507.49 + P-566 4985993.50 3902141.77 + P-566 4985966.99 3902068.49 + P-567 4976790.49 3901919.01 + P-567 4976994.50 3901956.76 + P-567 4977113.99 3902022.25 + P-568 4968940.00 3900302.51 + P-568 4969806.50 3900529.26 + P-568 4970016.00 3900592.50 + P-568 4970197.00 3900647.25 + P-568 4970488.00 3900776.25 + P-568 4970689.51 3900865.75 + P-568 4970886.49 3900953.01 + P-568 4970981.49 3900995.50 + P-568 4971225.00 3901131.24 + P-57 4973125.05 3899905.41 + P-57 4973097.99 3899950.50 + P-570 4977349.01 3901993.24 + P-570 4977443.01 3902033.76 + P-570 4977515.51 3902131.24 + P-570 4977553.50 3902219.75 + P-571 4981386.00 3902913.76 + P-571 4981331.01 3902893.50 + P-571 4981236.01 3902843.25 + P-571 4980883.01 3902660.25 + P-571 4980772.49 3902610.76 + P-571 4980729.00 3902602.00 + P-571 4980681.00 3902611.00 + P-571 4980538.01 3902735.22 + P-571 4980475.99 3902810.75 + P-571 4980478.02 3902857.50 + P-571 4980506.00 3902896.75 + P-571 4980683.50 3903004.75 + P-571 4980861.51 3903105.51 + P-571 4981007.52 3903187.99 + P-572 4952643.50 3899980.74 + P-572 4952193.00 3899933.52 + P-573 4981524.51 3902926.99 + P-573 4981595.50 3902918.75 + P-573 4981749.03 3902894.92 + P-573 4982072.50 3902838.73 + P-573 4982168.49 3902828.25 + P-576 4979931.00 3909513.01 + P-579 4971411.49 3901244.50 + P-579 4971669.00 3901289.24 + P-579 4971885.49 3901303.24 + P-579 4972017.02 3901300.76 + P-579 4972843.51 3901270.99 + P-58 4962571.20 3896498.14 + P-583 4968553.02 3901867.63 + P-583 4968584.73 3901843.81 + P-584 4987706.26 3908782.39 + P-584 4987729.49 3908921.49 + P-585 4988062.01 3905436.03 + P-585 4988079.01 3905337.24 + P-585 4988185.49 3905117.50 + P-585 4988200.50 3905069.25 + P-585 4988206.50 3904985.99 + P-585 4988288.49 3904741.49 + P-585 4988308.00 3904639.24 + P-585 4988311.50 3904591.25 + P-585 4988313.01 3904570.24 + P-585 4988322.50 3904444.74 + P-585 4988336.99 3904313.99 + P-585 4988326.00 3904206.00 + P-585 4988302.50 3904122.24 + P-585 4988272.00 3904045.75 + P-585 4988199.50 3903965.75 + P-585 4988011.01 3903838.99 + P-585 4987739.51 3903671.49 + P-586 4968611.00 3901864.39 + P-586 4968671.51 3901950.75 + P-587 4978697.51 3906906.75 + P-587 4978724.50 3906906.75 + P-587 4978742.99 3906917.26 + P-587 4978865.50 3907085.00 + P-587 4978917.01 3907174.99 + P-587 4978919.00 3907206.49 + P-587 4978920.51 3907229.74 + P-587 4978913.51 3907281.25 + P-587 4978873.50 3907381.99 + P-587 4978822.50 3907470.50 + P-587 4978802.99 3907493.00 + P-587 4978757.51 3907545.00 + P-588 4973492.50 3902236.26 + P-588 4973392.01 3902328.51 + P-588 4973354.00 3902344.25 + P-588 4973325.00 3902336.00 + P-589 4976129.50 3903015.01 + P-590 4986797.49 3908250.75 + P-590 4986899.50 3908231.00 + P-590 4986990.99 3908218.26 + P-590 4987092.51 3908219.75 + P-597 4975561.50 3906822.50 + P-597 4975741.00 3906902.25 + P-597 4975791.00 3906905.00 + P-6 4965574.01 3903873.00 + P-6 4965612.51 3903583.50 + P-6 4965635.00 3903415.00 + P-6 4965690.51 3903267.75 + P-6 4965778.99 3902893.01 + P-6 4965798.01 3902790.25 + P-6 4965795.50 3902719.50 + P-6 4965766.49 3902645.49 + P-6 4965732.51 3902602.25 + P-6 4965674.99 3902529.52 + P-6 4965334.00 3902170.01 + P-6 4965287.52 3902104.51 + P-6 4965268.51 3902040.01 + P-6 4965274.51 3901945.01 + P-600 4986026.50 3897557.50 + P-601 4978983.73 3905010.30 + P-603 4985810.99 3898085.51 + P-605 4986077.50 3909085.00 + P-605 4986420.00 3909088.50 + P-606 4975302.00 3909901.01 + P-606 4975224.50 3909950.26 + P-606 4975200.50 3909967.50 + P-606 4975179.51 3909973.25 + P-606 4975150.01 3909978.50 + P-606 4975143.49 3910008.25 + P-606 4975148.99 3910037.75 + P-606 4975172.51 3910047.25 + P-606 4975193.01 3910044.51 + P-608 4982290.46 3915589.45 + P-609 4965646.00 3904072.99 + P-609 4965621.00 3904037.99 + P-609 4965613.00 3904008.00 + P-61 4983930.05 3903316.90 + P-611 4967929.49 3902893.74 + P-611 4967846.99 3902908.75 + P-611 4967760.99 3902903.23 + P-611 4967671.49 3902860.76 + P-611 4967598.50 3902785.75 + P-612 4987220.02 3908416.75 + P-612 4987249.50 3908447.49 + P-612 4987256.51 3908468.99 + P-612 4987250.99 3908490.49 + P-612 4987222.00 3908498.76 + P-612 4987202.49 3908496.74 + P-612 4987188.51 3908489.25 + P-612 4987170.51 3908483.77 + P-613 4987918.07 3908883.89 + P-613 4988069.50 3908872.99 + P-614 4979269.50 3900040.50 + P-614 4979212.49 3899999.00 + P-614 4979178.00 3899973.49 + P-614 4979130.99 3899895.76 + P-616 4965851.00 3904511.00 + P-616 4965746.50 3904540.25 + P-616 4965518.51 3904584.25 + P-616 4965335.49 3904620.49 + P-616 4965301.51 3904636.76 + P-616 4965047.50 3904885.25 + P-616 4965044.50 3904913.49 + P-616 4965035.51 3904927.25 + P-616 4965013.01 3904941.00 + P-616 4964999.00 3904940.75 + P-616 4964982.51 3904929.25 + P-616 4964980.00 3904904.00 + P-616 4964988.50 3904890.00 + P-618 4984412.00 3908035.00 + P-618 4984758.00 3907945.01 + P-618 4985276.99 3907825.76 + P-618 4985617.98 3907746.25 + P-618 4985640.01 3907807.25 + P-618 4985697.50 3907982.49 + P-618 4985733.50 3908112.00 + P-618 4985778.01 3908166.00 + P-62 4984753.81 3905035.66 + P-62 4985074.89 3904814.92 + P-620 4985000.99 3906270.50 + P-620 4985064.49 3906285.24 + P-620 4985299.00 3906247.74 + P-620 4985400.00 3906231.00 + P-620 4985675.50 3906450.75 + P-620 4985724.99 3906529.50 + P-620 4985730.51 3906731.00 + P-620 4985724.99 3906799.76 + P-620 4985697.00 3906817.51 + P-620 4985646.99 3906798.50 + P-620 4985638.50 3906766.25 + P-621 4977189.11 3907168.17 + P-624 4985551.50 3904922.49 + P-624 4985552.97 3904851.50 + P-625 4970425.50 3912157.99 + P-625 4970416.50 3912178.25 + P-625 4970424.50 3912202.25 + P-625 4970438.49 3912207.51 + P-625 4970456.00 3912206.00 + P-625 4970472.49 3912199.51 + P-625 4970516.00 3912151.01 + P-625 4970517.98 3912135.49 + P-625 4970517.00 3912123.26 + P-625 4970509.50 3912111.51 + P-625 4970498.00 3912108.50 + P-625 4970486.01 3912107.74 + P-625 4970472.49 3912107.25 + P-625 4970458.50 3912110.76 + P-626 4965911.49 3898491.76 + P-627 4983733.50 3917292.00 + P-627 4983739.70 3917290.04 + P-627 4983908.50 3917236.74 + P-627 4983936.49 3917289.50 + P-627 4983965.52 3917289.74 + P-627 4983982.99 3917290.25 + P-627 4983995.00 3917261.26 + P-628 4980146.50 3904461.25 + P-628 4980142.50 3904485.50 + P-628 4980132.01 3904506.25 + P-628 4980086.50 3904519.50 + P-63 4990442.89 3908888.58 + P-63 4990412.79 3908738.07 + P-630 4975733.50 3909631.00 + P-632 4976542.51 3910071.00 + P-632 4976683.50 3909972.76 + P-632 4976703.00 3909941.99 + P-632 4976712.00 3909888.00 + P-632 4976693.50 3909833.50 + P-633 4986275.00 3905097.99 + P-633 4986197.99 3905046.26 + P-634 4985545.50 3905720.50 + P-634 4985617.98 3905762.75 + P-634 4985695.00 3905837.51 + P-635 4976183.50 3909539.74 + P-635 4976243.50 3909646.26 + P-635 4976317.51 3909746.01 + P-636 4974854.00 3910107.25 + P-636 4974886.51 3910113.75 + P-636 4974915.99 3910134.74 + P-636 4974918.50 3910164.51 + P-636 4974897.49 3910185.01 + P-636 4974873.50 3910190.51 + P-636 4974846.99 3910187.00 + P-638 4974327.00 3909689.00 + P-638 4974701.50 3909432.00 + P-638 4975177.50 3909106.75 + P-64 4983007.96 3906500.57 + P-64 4983198.60 3906199.56 + P-64 4983218.67 3905005.56 + P-64 4982937.72 3904082.46 + P-64 4982947.76 3903450.34 + P-641 4975440.52 3909775.77 + P-641 4975577.51 3909932.24 + P-641 4975609.49 3909941.75 + P-641 4975633.01 3909965.75 + P-641 4975626.49 3909992.24 + P-641 4975603.00 3910000.75 + P-642 4984348.50 3903983.75 + P-642 4984472.51 3903859.74 + P-643 4986172.00 3905517.75 + P-643 4986203.00 3905559.49 + P-643 4986206.99 3905619.00 + P-644 4978277.50 3905462.50 + P-644 4978199.50 3905394.01 + P-647 4978368.49 3905587.24 + P-65 4983297.56 3906772.02 + P-651 4966533.00 3906116.25 + P-651 4966504.01 3906150.75 + P-651 4966483.00 3906161.76 + P-652 4983976.01 3905798.25 + P-652 4983985.01 3905657.75 + P-653 4974816.49 3910613.24 + P-654 4984030.02 3905861.74 + P-654 4984102.51 3905869.49 + P-654 4984192.50 3905857.75 + P-654 4984312.50 3905793.25 + P-654 4984416.99 3905692.26 + P-655 4984131.50 3905972.25 + P-656 4986708.50 3909064.99 + P-656 4987146.99 3909003.26 + P-656 4987729.33 3908920.84 + P-658 4987355.50 3908215.25 + P-66 4985676.91 3904102.53 + P-66 4985656.84 3904303.20 + P-66 4985475.14 3904532.07 + P-662 4976436.00 3900964.76 + P-663 4983699.99 3906903.25 + P-664 4957788.50 3899545.26 + P-664 4957734.00 3899640.75 + P-664 4957690.00 3899666.24 + P-667 4977662.00 3906783.00 + P-667 4977295.50 3907088.99 + P-669 4988127.51 3907001.00 + P-669 4988102.99 3906892.25 + P-669 4988017.99 3906511.99 + P-669 4988013.49 3906491.51 + P-669 4988010.50 3906427.25 + P-669 4987994.01 3906389.24 + P-669 4988017.99 3906355.99 + P-67 4992228.88 3909600.97 + P-671 4975452.48 3907648.75 + P-671 4975264.49 3907707.00 + P-671 4975227.50 3907696.02 + P-671 4975191.99 3907646.75 + P-671 4975156.50 3907601.76 + P-671 4975102.51 3907578.51 + P-671 4975027.99 3907594.25 + P-671 4974914.99 3907665.51 + P-671 4974883.50 3907685.50 + P-671 4974589.01 3907922.00 + P-674 4957361.00 3897601.50 + P-674 4957339.00 3897604.51 + P-674 4955969.50 3896967.00 + P-674 4955890.99 3896950.51 + P-674 4955834.50 3896960.99 + P-674 4955804.99 3896997.01 + P-676 4986333.00 3908345.00 + P-677 4962067.00 3897666.51 + P-677 4962122.00 3897698.49 + P-68 4986389.30 3906701.24 + P-68 4986339.13 3906550.74 + P-681 4978466.99 3905732.26 + P-682 4978413.51 3908560.98 + P-682 4978344.51 3908522.24 + P-688 4942748.50 3892519.24 + P-688 4942638.00 3892514.50 + P-688 4942604.00 3892542.25 + P-688 4942588.51 3892601.50 + P-688 4942573.50 3892680.25 + P-688 4942550.01 3892728.00 + P-688 4942490.02 3892758.00 + P-69 4993101.81 3909550.80 + P-690 4957391.99 3897639.51 + P-690 4957420.01 3897666.00 + P-690 4957481.00 3897694.75 + P-690 4957502.50 3897708.75 + P-690 4957515.01 3897717.00 + P-690 4957518.00 3897718.75 + P-690 4957540.50 3897746.50 + P-690 4957548.50 3897762.99 + P-690 4957552.51 3897804.75 + P-690 4957546.99 3897880.51 + P-691 4958855.01 3898601.25 + P-691 4958755.01 3898822.99 + P-691 4958736.50 3898892.75 + P-691 4958722.00 3898958.24 + P-691 4958730.01 3899015.25 + P-691 4958755.50 3899068.25 + P-691 4958827.00 3899236.00 + P-691 4958852.00 3899332.75 + P-691 4958863.00 3899455.50 + P-691 4958856.50 3899595.49 + P-691 4958810.00 3899748.01 + P-692 4979066.26 3905290.86 + P-692 4979068.51 3905290.01 + P-693 4975560.73 3909458.70 + P-693 4975564.50 3909454.76 + P-695 4975053.99 3909674.75 + P-695 4975173.50 3909605.50 + P-695 4975227.01 3909597.50 + P-695 4975280.50 3909604.24 + P-695 4975335.98 3909649.75 + P-700 4976380.00 3909753.26 + P-700 4976551.02 3909709.98 + P-701 4975560.73 3909458.70 + P-702 4966639.00 3905912.25 + P-702 4966597.99 3905984.00 + P-703 4984171.49 3904340.75 + P-706 4971360.49 3911396.25 + P-706 4971295.99 3911430.75 + P-706 4971212.50 3911475.75 + P-706 4970765.00 3911723.25 + P-706 4970475.50 3911868.49 + P-706 4970418.50 3911912.00 + P-707 4975293.00 3909191.00 + P-708 4970220.50 3912112.00 + P-708 4970141.50 3912183.99 + P-708 4969995.01 3912261.75 + P-708 4969902.00 3912306.76 + P-708 4969476.99 3912512.74 + P-708 4969389.50 3912573.25 + P-708 4969326.49 3912632.75 + P-708 4969267.51 3912710.25 + P-708 4969199.00 3912820.00 + P-708 4969137.51 3912929.00 + P-708 4969026.00 3913219.50 + P-711 4976661.00 3909672.53 + P-713 4984195.84 3915318.91 + P-714 4984026.50 3905212.74 + P-714 4984043.50 3904978.50 + P-715 4978043.00 3911231.49 + P-716 4982745.50 3916835.25 + P-716 4982885.00 3916812.26 + P-716 4982972.51 3916829.75 + P-716 4983013.49 3916897.99 + P-717 4982828.52 3916113.75 + P-717 4982757.51 3916101.00 + P-718 4984007.51 3917203.50 + P-718 4984059.00 3917256.49 + P-718 4984087.50 3917274.49 + P-718 4984104.99 3917263.25 + P-718 4984128.51 3917240.25 + P-718 4984106.48 3917182.00 + P-718 4983935.84 3916766.18 + P-72 4987222.09 3905717.95 + P-72 4987282.29 3905537.34 + P-72 4987252.19 3905186.16 + P-72 4987191.99 3904975.46 + P-72 4987081.62 3904845.02 + P-72 4986790.64 3904704.55 + P-72 4986529.77 3904704.55 + P-72 4986349.16 3904744.68 + P-72 4986103.00 3904948.51 + P-720 4958329.00 3898338.75 + P-720 4957981.49 3898184.00 + P-720 4957916.00 3898165.51 + P-720 4957697.49 3898122.51 + P-726 4943363.49 3890359.50 + P-727 4944157.51 3890583.26 + P-727 4944104.74 3890568.44 + P-727 4943788.00 3890479.48 + P-727 4943408.00 3890372.75 + P-728 4975074.49 3910997.50 + P-729 4962636.00 3897997.74 + P-729 4962948.51 3898173.00 + P-729 4963138.00 3898279.49 + P-729 4963293.51 3898366.50 + P-729 4963509.51 3898487.50 + P-729 4963717.50 3898604.25 + P-729 4963775.00 3898636.76 + P-729 4963852.00 3898679.76 + P-729 4963898.50 3898706.02 + P-729 4963958.00 3898739.50 + P-73 4986630.11 3905607.58 + P-73 4986349.16 3905627.64 + P-730 4976162.00 3909890.75 + P-731 4976182.50 3908914.24 + P-731 4976113.50 3909010.00 + P-731 4976091.00 3909116.74 + P-731 4976088.50 3909170.76 + P-731 4976086.50 3909217.24 + P-732 4966484.00 3897645.01 + P-732 4966427.50 3897548.74 + P-732 4966399.99 3897473.76 + P-732 4966384.50 3897395.01 + P-733 4975992.00 3909211.25 + P-733 4975909.01 3909227.75 + P-734 4969561.99 3903217.00 + P-735 4943328.48 3890393.75 + P-735 4943103.00 3890358.99 + P-735 4943071.53 3890383.75 + P-735 4943042.01 3890439.78 + P-735 4942984.00 3890526.49 + P-735 4942890.54 3890674.26 + P-735 4942888.49 3890677.50 + P-735 4942867.99 3890722.50 + P-735 4942870.01 3890759.25 + P-735 4942866.00 3891004.99 + P-735 4942845.49 3891219.50 + P-735 4942814.99 3891371.49 + P-735 4942789.99 3891504.00 + P-735 4942801.50 3891676.50 + P-735 4942848.00 3891765.01 + P-735 4942968.51 3891848.75 + P-735 4943158.51 3891970.50 + P-735 4943217.00 3892019.51 + P-735 4943246.99 3892080.75 + P-735 4943254.50 3892140.24 + P-735 4943221.50 3892261.24 + P-735 4943180.01 3892399.00 + P-735 4943136.50 3892460.50 + P-735 4943056.50 3892521.50 + P-735 4942974.00 3892528.51 + P-737 4968872.00 3902243.75 + P-737 4968984.00 3902407.00 + P-737 4969033.49 3902479.01 + P-737 4969055.50 3902511.50 + P-737 4969077.51 3902543.00 + P-737 4969325.00 3902867.01 + P-737 4969365.50 3902926.99 + P-738 4966781.50 3899475.00 + P-738 4966869.49 3899381.24 + P-738 4966887.51 3899294.75 + P-739 4969793.00 3902854.24 + P-739 4969897.00 3902786.24 + P-739 4969947.00 3902737.75 + P-739 4969984.50 3902684.99 + P-739 4969998.00 3902615.50 + P-739 4969996.50 3902467.75 + P-739 4969997.00 3902426.75 + P-739 4970005.50 3902406.24 + P-739 4970022.01 3902390.24 + P-739 4970038.50 3902390.50 + P-739 4970046.50 3902403.01 + P-739 4970054.50 3902427.74 + P-74 4979596.52 3900831.56 + P-740 4978042.51 3911239.49 + P-740 4978024.00 3911416.50 + P-740 4978028.50 3911629.51 + P-740 4978037.03 3911678.01 + P-740 4978082.00 3911928.00 + P-740 4978091.00 3911978.01 + P-740 4978231.51 3912527.99 + P-740 4978501.52 3913581.74 + P-740 4978525.00 3913673.24 + P-740 4978552.00 3913790.76 + P-740 4978567.51 3913855.26 + P-742 4986209.01 3894310.25 + P-742 4986069.50 3894331.00 + P-742 4985875.00 3894389.75 + P-742 4985758.99 3894411.01 + P-742 4985604.50 3894400.75 + P-742 4985392.00 3894382.00 + P-742 4985222.51 3894344.25 + P-742 4985011.50 3894263.75 + P-742 4984884.49 3894230.74 + P-742 4984769.01 3894209.51 + P-742 4984676.00 3894208.00 + P-742 4984478.49 3894224.02 + P-742 4984254.00 3894251.25 + P-742 4983587.50 3894354.49 + P-742 4983267.49 3894318.49 + P-743 4977074.49 3901035.25 + P-744 4984050.51 3904740.25 + P-745 4984321.18 3915737.11 + P-747 4983868.44 3916946.23 + P-747 4983744.01 3916636.49 + P-747 4983744.50 3916607.50 + P-747 4983785.99 3916561.75 + P-75 4989921.14 3908246.43 + P-75 4989289.02 3908095.92 + P-75 4988757.24 3908055.79 + P-75 4988707.07 3908005.62 + P-752 4957526.00 3898171.00 + P-752 4957455.49 3898963.25 + P-752 4957447.49 3898985.00 + P-752 4957434.52 3898999.00 + P-752 4957401.50 3899009.51 + P-752 4957294.00 3899002.73 + P-756 4976610.00 3911539.01 + P-756 4976445.00 3911359.50 + P-756 4976376.00 3911295.99 + P-757 4986097.50 3898177.50 + P-757 4986170.00 3898203.75 + P-757 4986299.00 3898233.75 + P-757 4986338.50 3898262.00 + P-757 4986348.50 3898333.01 + P-757 4986344.50 3898391.00 + P-757 4986341.00 3898446.72 + P-757 4986361.00 3898491.76 + P-757 4986583.51 3898747.01 + P-757 4986804.01 3898950.00 + P-757 4986843.00 3899006.74 + P-757 4986898.50 3899116.75 + P-757 4986925.50 3899149.99 + P-757 4987018.50 3899190.00 + P-757 4987180.00 3899284.25 + P-757 4987309.50 3899395.25 + P-757 4987351.00 3899444.75 + P-757 4987348.99 3899499.25 + P-757 4987314.49 3899546.75 + P-757 4987253.50 3899570.51 + P-757 4987183.01 3899582.75 + P-757 4987002.50 3899583.25 + P-757 4986924.01 3899554.99 + P-757 4986804.01 3899451.00 + P-757 4986706.50 3899387.25 + P-757 4986633.00 3899309.49 + P-757 4986532.51 3899193.50 + P-758 4986826.51 3895042.50 + P-758 4986677.00 3895584.01 + P-758 4986562.50 3896015.25 + P-758 4986367.49 3896611.25 + P-758 4986292.99 3896788.75 + P-760 4962895.00 3896643.50 + P-763 4977688.51 3911383.74 + P-764 4964863.00 3897080.00 + P-764 4965274.00 3897109.25 + P-765 4975223.00 3911332.50 + P-765 4975480.49 3911745.25 + P-766 4966138.51 3898524.99 + P-766 4966308.02 3898544.25 + P-766 4966606.99 3898478.75 + P-77 4981202.37 3900538.35 + P-77 4980981.16 3900450.28 + P-77 4980951.06 3900530.55 + P-77 4980830.66 3900540.59 + P-77 4980840.69 3900430.22 + P-77 4980890.86 3900380.05 + P-77 4980767.94 3900073.23 + P-773 4980238.00 3904064.50 + P-773 4980254.50 3904077.75 + P-773 4980295.50 3904111.00 + P-774 4976680.03 3901899.90 + P-774 4976731.49 3901610.01 + P-774 4976755.00 3901591.74 + P-774 4976785.50 3901580.24 + P-774 4976807.49 3901437.74 + P-774 4976873.48 3901232.00 + P-775 4984175.01 3909234.24 + P-775 4984180.99 3909233.02 + P-775 4984207.50 3909226.50 + P-775 4984220.00 3909223.49 + P-775 4984226.01 3909222.25 + P-776 4965890.50 3897875.50 + P-776 4966033.00 3897902.50 + P-776 4966190.00 3897925.75 + P-776 4966310.00 3897923.51 + P-776 4966442.50 3897900.75 + P-778 4987520.01 3902442.99 + P-778 4987471.51 3902289.50 + P-778 4987418.00 3902110.25 + P-778 4987388.99 3901968.50 + P-778 4987243.01 3901728.52 + P-778 4987180.00 3901598.73 + P-78 4981010.99 3901548.96 + P-78 4981633.35 3901353.31 + P-780 4962702.50 3897124.75 + P-782 4984479.49 3909161.01 + P-783 4975883.50 3911487.25 + P-785 4976208.50 3911257.25 + P-786 4966373.99 3897291.25 + P-787 4977136.51 3908259.00 + P-787 4977080.52 3908291.00 + P-787 4977016.02 3908319.51 + P-787 4976946.51 3908328.77 + P-789 4983298.49 3917161.76 + P-789 4983120.99 3916739.25 + P-79 4977796.50 3902644.01 + P-79 4977507.00 3902383.75 + P-79 4977301.51 3902194.25 + P-79 4977172.50 3902103.25 + P-794 4977685.50 3908217.50 + P-794 4977687.49 3908190.75 + P-794 4977535.00 3907977.50 + P-794 4977426.01 3908057.23 + P-795 4976095.50 3911118.51 + P-795 4976003.50 3911011.26 + P-795 4975980.49 3910965.25 + P-795 4975943.01 3910916.50 + P-795 4975906.99 3910904.00 + P-795 4975880.99 3910902.50 + P-795 4975811.00 3910944.25 + P-795 4975755.49 3910977.27 + P-797 4975546.01 3907540.25 + P-797 4975531.49 3907482.49 + P-797 4975520.01 3907398.49 + P-797 4975501.50 3907257.02 + P-797 4975495.01 3907208.24 + P-797 4975484.50 3907162.25 + P-797 4975463.00 3907069.75 + P-798 4949702.50 3891087.00 + P-798 4949674.00 3891081.99 + P-798 4949447.01 3891002.00 + P-8 4969643.93 3899195.29 + P-8 4969499.57 3899270.90 + P-8 4969258.97 3899133.42 + P-8 4968935.87 3899140.29 + P-80 4975990.56 3904144.92 + P-802 4984878.00 3909475.75 + P-802 4985110.00 3909387.51 + P-802 4985120.00 3909374.99 + P-802 4985122.50 3909360.49 + P-802 4985121.50 3909341.25 + P-802 4985062.99 3909132.26 + P-802 4985063.50 3909086.51 + P-802 4985071.50 3909054.26 + P-803 4977117.49 3901019.75 + P-803 4977138.00 3900985.50 + P-803 4977140.50 3900890.24 + P-803 4976986.50 3900420.50 + P-803 4976911.49 3900191.52 + P-803 4976871.50 3900132.50 + P-809 4977316.00 3908133.50 + P-810 4977030.01 3901208.24 + P-811 4976177.49 3900310.25 + P-811 4976553.50 3900361.25 + P-811 4976880.50 3900405.75 + P-812 4979603.50 3904552.00 + P-812 4979814.01 3904469.99 + P-814 4964031.01 3898525.49 + P-814 4964121.51 3898040.50 + P-814 4964177.50 3897802.02 + P-814 4964203.02 3897615.50 + P-814 4964250.00 3897481.50 + P-815 4977849.50 3905037.26 + P-817 4983747.90 3909733.77 + P-817 4983748.00 3909734.24 + P-819 4967596.50 3899841.50 + P-819 4967735.50 3899874.75 + P-819 4968148.50 3900011.24 + P-819 4968357.50 3900080.24 + P-82 4972673.30 3904202.87 + P-82 4972613.10 3904142.66 + P-820 4978935.01 3904075.50 + P-823 4977475.50 3911096.99 + P-823 4977742.50 3910884.25 + P-825 4979220.49 3909289.25 + P-825 4979155.50 3909357.50 + P-825 4979063.50 3909563.75 + P-825 4979063.01 3909602.49 + P-825 4979070.50 3909641.26 + P-825 4979135.49 3909736.48 + P-825 4979179.51 3909770.50 + P-825 4979218.01 3909765.49 + P-825 4979251.50 3909752.26 + P-825 4979516.00 3909488.01 + P-827 4962705.00 3897685.99 + P-827 4962785.51 3897479.75 + P-827 4962793.98 3897425.99 + P-828 4981365.50 3903723.00 + P-828 4981407.52 3903776.00 + P-828 4981461.49 3903869.00 + P-828 4981500.50 3903928.01 + P-828 4981554.66 3903959.92 + P-828 4981619.00 3903954.01 + P-828 4981677.49 3903926.26 + P-828 4981730.49 3903875.50 + P-828 4981768.50 3903809.00 + P-828 4981776.50 3903745.06 + P-828 4981763.84 3903675.45 + P-828 4981740.51 3903622.00 + P-828 4981701.50 3903553.51 + P-828 4981656.99 3903489.76 + P-828 4981579.45 3903422.12 + P-828 4981268.99 3903236.75 + P-83 4973014.45 3904343.34 + P-83 4973114.78 3904594.18 + P-83 4973074.65 3904744.68 + P-83 4972893.69 3905044.07 + P-832 4979121.99 3909196.25 + P-833 4978068.51 3905298.74 + P-833 4977967.50 3905225.24 + P-833 4977896.50 3905165.75 + P-833 4977880.50 3905144.76 + P-834 4977623.50 3911616.25 + P-834 4977630.50 3911660.01 + P-834 4977618.49 3911687.77 + P-837 4960897.00 3895343.25 + P-837 4960913.49 3895256.76 + P-837 4960930.00 3895168.75 + P-837 4961093.00 3894306.99 + P-837 4961135.50 3894082.27 + P-837 4961151.50 3893996.99 + P-837 4961183.99 3893970.75 + P-837 4961243.00 3893968.00 + P-838 4962876.50 3896597.24 + P-838 4962870.00 3896539.50 + P-838 4962839.50 3896496.50 + P-838 4962825.00 3896461.75 + P-838 4962783.00 3896426.50 + P-838 4962764.50 3896407.00 + P-838 4962753.50 3896364.51 + P-838 4962750.51 3896322.24 + P-838 4962740.00 3896249.00 + P-838 4962737.01 3896183.51 + P-84 4974670.00 3904413.57 + P-84 4974609.80 3904804.89 + P-843 4958774.00 3899795.75 + P-843 4958407.99 3899697.76 + P-843 4958364.99 3899640.00 + P-843 4958366.50 3899543.75 + P-843 4958372.51 3899443.26 + P-843 4958421.49 3899408.99 + P-844 4966004.50 3898895.25 + P-844 4966077.00 3899004.26 + P-848 4957904.49 3900475.77 + P-849 4978734.99 3909212.25 + P-849 4978667.50 3909404.25 + P-851 4984585.01 3909124.75 + P-851 4984709.01 3909071.99 + P-852 4984515.00 3909560.51 + P-852 4984582.00 3909545.00 + P-855 4984771.00 3909033.76 + P-855 4984801.99 3908996.74 + P-855 4984812.50 3908977.50 + P-855 4984822.01 3908959.99 + P-857 4981348.50 3903083.01 + P-858 4980707.99 3904484.00 + P-858 4980755.49 3904555.75 + P-858 4980794.99 3904614.50 + P-858 4980887.51 3904752.99 + P-858 4980935.50 3904824.74 + P-86 4964666.45 3900420.18 + P-860 4985346.99 3905538.48 + P-860 4985446.00 3905636.49 + P-861 4985106.01 3905320.51 + P-861 4985072.01 3905376.25 + P-861 4985029.50 3905544.75 + P-861 4984997.98 3905650.26 + P-861 4984954.00 3905709.26 + P-861 4984890.01 3905761.26 + P-861 4984862.99 3905787.26 + P-862 4981586.00 3905144.76 + P-863 4979675.50 3905125.74 + P-863 4979469.48 3905169.50 + P-863 4979074.00 3905317.00 + P-863 4979066.26 3905290.86 + P-864 4986328.99 3905140.00 + P-864 4986420.51 3905159.75 + P-864 4986485.01 3905142.50 + P-864 4986540.00 3905120.49 + P-866 4981039.49 3904981.00 + P-866 4981083.00 3905045.75 + P-867 4984790.51 3905754.74 + P-868 4975856.50 3907054.50 + P-868 4975933.50 3907170.50 + P-869 4978983.50 3905010.37 + P-869 4978983.73 3905010.30 + P-869 4978986.01 3905009.52 + P-871 4943052.00 3892870.00 + P-871 4943091.50 3892900.75 + P-871 4943147.98 3892915.00 + P-871 4943241.00 3892916.51 + P-871 4943261.51 3892890.24 + P-871 4943248.50 3892873.24 + P-871 4943215.50 3892852.74 + P-871 4943216.00 3892813.00 + P-871 4943249.50 3892793.49 + P-871 4943283.01 3892787.51 + P-871 4943316.01 3892804.51 + P-871 4943331.99 3892831.50 + P-871 4943331.50 3892861.25 + P-871 4943331.50 3892868.03 + P-871 4943301.50 3892887.50 + P-871 4943301.01 3892897.49 + P-871 4943334.50 3892894.74 + P-871 4943351.50 3892888.25 + P-871 4943407.51 3892899.24 + P-871 4943414.00 3892922.49 + P-871 4943493.51 3892927.26 + P-871 4943486.51 3893156.49 + P-872 4958580.00 3900500.25 + P-873 4965170.00 3897708.75 + P-874 4957914.00 3899359.01 + P-874 4958324.01 3898378.00 + P-877 4958850.01 3901071.50 + P-877 4958819.00 3901075.50 + P-877 4958792.49 3901079.24 + P-877 4958784.49 3901057.25 + P-877 4958784.49 3901035.51 + P-877 4958798.01 3901027.00 + P-878 4950756.01 3890062.75 + P-878 4950986.50 3889923.76 + P-878 4951113.00 3889754.49 + P-878 4951210.99 3889570.75 + P-878 4951213.01 3889466.00 + P-88 4979417.81 3901627.54 + P-880 4983871.50 3914935.25 + P-880 4983771.49 3915025.00 + P-880 4983644.00 3915139.75 + P-880 4983533.51 3915238.99 + P-880 4983509.50 3915260.26 + P-880 4983429.51 3915318.25 + P-880 4983401.00 3915338.75 + P-880 4983290.00 3915385.49 + P-880 4983085.00 3915405.00 + P-880 4983004.49 3915367.25 + P-880 4982923.50 3915306.25 + P-880 4982825.51 3915262.01 + P-880 4982753.50 3915264.25 + P-880 4982646.98 3915292.25 + P-880 4982490.51 3915356.50 + P-882 4949375.50 3888684.75 + P-882 4949328.00 3888693.50 + P-883 4987394.00 3913817.48 + P-883 4987368.00 3913850.76 + P-883 4987272.02 3913942.50 + P-883 4987201.01 3914000.75 + P-883 4987042.99 3914131.26 + P-883 4987017.99 3914151.74 + P-883 4986795.01 3914307.01 + P-883 4986754.00 3914335.25 + P-883 4986675.01 3914387.51 + P-883 4986592.00 3914442.26 + P-883 4986471.53 3914522.01 + P-883 4985825.52 3914892.25 + P-883 4985703.49 3914987.09 + P-883 4985485.27 3915156.71 + P-883 4985446.00 3915187.23 + P-883 4985400.50 3915187.49 + P-883 4985387.68 3915187.49 + P-883 4985352.51 3915187.49 + P-883 4985210.50 3915154.25 + P-883 4985021.00 3915053.26 + P-883 4984870.50 3914992.24 + P-883 4984711.00 3914956.75 + P-883 4984496.49 3914924.75 + P-883 4984282.30 3914832.85 + P-883 4984158.51 3914779.74 + P-885 4959669.50 3900582.26 + P-885 4959699.00 3900604.26 + P-885 4959702.50 3900638.75 + P-885 4959706.49 3900668.73 + P-885 4959573.50 3901469.50 + P-885 4959555.50 3901494.98 + P-885 4959525.49 3901507.25 + P-885 4959494.99 3901515.50 + P-887 4957689.00 3901687.74 + P-887 4957633.50 3901674.00 + P-887 4957591.50 3901639.00 + P-887 4957579.00 3901591.50 + P-887 4957580.00 3901544.51 + P-887 4957620.49 3901433.50 + P-888 4981472.02 3904963.50 + P-888 4981440.50 3904902.74 + P-888 4981451.50 3904872.75 + P-888 4981482.50 3904854.75 + P-888 4981678.61 3904758.81 + P-888 4981744.02 3904726.24 + P-888 4981776.99 3904702.26 + P-888 4981784.50 3904670.76 + P-888 4981758.99 3904620.49 + P-888 4981679.02 3904495.75 + P-888 4981602.00 3904558.25 + P-888 4981533.51 3904645.00 + P-888 4981447.51 3904745.26 + P-888 4981324.00 3904855.50 + P-888 4981209.01 3904983.26 + P-888 4981115.49 3905089.84 + P-889 4985851.52 3905503.26 + P-889 4986059.50 3905387.49 + P-89 4981312.27 3900349.95 + P-89 4981092.49 3899913.25 + P-890 4943712.99 3893214.74 + P-892 4976956.51 3912430.51 + P-892 4976332.01 3912835.49 + P-892 4976046.48 3912432.75 + P-893 4951190.00 3892774.74 + P-895 4943890.51 3891552.00 + P-895 4943715.50 3893172.76 + P-896 4977850.49 3911086.51 + P-898 4951396.00 3892826.50 + P-898 4951434.00 3892836.00 + P-898 4951451.50 3892839.00 + P-898 4951554.51 3892857.99 + P-898 4951576.01 3892860.74 + P-898 4952135.50 3892936.75 + P-9 4980304.50 3904117.25 + P-901 4982810.00 3917305.48 + P-901 4983033.00 3917411.25 + P-901 4983150.99 3917381.75 + P-901 4983237.00 3917266.25 + P-903 4986001.50 3904664.00 + P-903 4985907.50 3904755.25 + P-905 4974044.00 3909882.50 + P-905 4973394.00 3910330.48 + P-905 4973358.01 3910342.25 + P-905 4973201.50 3910371.24 + P-908 4975679.51 3907823.50 + P-908 4975611.51 3907727.75 + P-91 4963976.00 3900650.58 + P-91 4964245.04 3900781.39 + P-91 4964415.61 3900620.86 + P-910 4973919.49 3909717.75 + P-910 4973987.01 3909669.74 + P-912 4961664.00 3896960.50 + P-912 4961700.99 3896952.75 + P-912 4961706.49 3896941.51 + P-912 4961940.00 3895682.75 + P-912 4961940.00 3895660.26 + P-912 4961926.50 3895643.25 + P-912 4961904.00 3895637.25 + P-917 4977166.50 3911536.00 + P-918 4978396.00 3910189.25 + P-918 4978335.00 3910367.50 + P-919 4975889.50 3912358.51 + P-919 4976111.00 3912164.73 + P-919 4976303.99 3912026.24 + P-919 4976427.00 3911928.00 + P-92 4973957.61 3903771.42 + P-92 4973827.17 3903781.45 + P-92 4973435.86 3904082.46 + P-92 4973385.69 3904192.83 + P-92 4973435.86 3904313.24 + P-92 4973586.37 3904554.04 + P-92 4973676.67 3904604.21 + P-92 4973917.48 3904554.04 + P-924 4976086.01 3908445.74 + P-925 4976832.00 3911603.75 + P-926 4977254.01 3911269.26 + P-927 4980258.01 3902351.01 + P-928 4971501.99 3898533.00 + P-928 4971050.00 3897544.25 + P-928 4970965.51 3897360.01 + P-928 4970880.52 3897173.51 + P-928 4970852.00 3897110.50 + P-928 4970819.00 3897038.98 + P-928 4970777.01 3896947.25 + P-928 4970744.50 3896875.99 + P-928 4970684.50 3896744.00 + P-928 4970662.49 3896681.00 + P-928 4970664.51 3896603.00 + P-928 4970712.00 3896491.25 + P-928 4971131.50 3895896.25 + P-928 4971145.51 3895838.26 + P-928 4971156.00 3895760.73 + P-929 4980402.00 3904197.25 + P-929 4980418.00 3904210.50 + P-929 4980534.99 3904305.26 + P-929 4980586.99 3904347.50 + P-929 4980652.00 3904400.26 + P-93 4980910.93 3901343.28 + P-930 4980134.49 3904344.00 + P-930 4980282.00 3904279.99 + P-930 4980335.49 3904225.00 + P-931 4980733.00 3902030.50 + P-932 4980526.99 3901277.24 + P-935 4973371.20 3901239.04 + P-936 4972566.00 3900536.24 + P-937 4972797.22 3901144.62 + P-938 4974758.00 3898241.49 + P-939 4972944.50 3898328.75 + P-939 4973917.01 3897905.02 + P-94 4979275.44 3901714.52 + P-94 4979114.90 3901814.86 + P-94 4979054.70 3901965.36 + P-94 4979014.57 3902075.73 + P-94 4978844.00 3902186.10 + P-941 4974929.00 3898401.75 + P-942 4973602.00 3901298.74 + P-942 4973405.00 3901255.01 + P-943 4974934.50 3898396.25 + P-944 4973694.50 3902502.24 + P-944 4973638.50 3902576.76 + P-944 4973587.99 3902688.25 + P-945 4975612.00 3898076.50 + P-945 4975888.50 3897440.75 + P-946 4980359.00 3904162.76 + P-946 4980364.50 3904166.99 + P-946 4980375.49 3904175.99 + P-947 4975721.49 3897025.76 + P-947 4975780.50 3897075.74 + P-947 4975840.51 3897055.00 + P-949 4975507.00 3898210.26 + P-949 4975540.49 3898151.26 + P-95 4976054.64 3906370.13 + P-95 4976385.75 3906089.19 + P-950 4972180.51 3899938.50 + P-950 4972182.50 3899937.74 + P-950 4972922.51 3899581.99 + P-950 4973139.50 3899477.75 + P-950 4973292.51 3899404.25 + P-950 4973429.00 3899349.50 + P-950 4973504.50 3899318.25 + P-950 4973573.01 3899289.75 + P-950 4973594.00 3899279.99 + P-950 4973565.01 3899209.49 + P-952 4973897.99 3896421.25 + P-952 4973881.50 3896409.99 + P-952 4973369.00 3896597.00 + P-952 4973363.00 3896613.26 + P-952 4973528.01 3897136.74 + P-952 4973555.50 3897137.00 + P-953 4975587.00 3896611.49 + P-953 4975632.50 3896487.50 + P-953 4975599.01 3896210.26 + P-953 4975535.99 3896079.00 + P-953 4975440.01 3895974.25 + P-953 4975409.01 3895898.00 + P-953 4975383.50 3895799.74 + P-953 4975337.50 3895614.75 + P-953 4975289.50 3895570.51 + P-953 4975169.49 3895612.00 + P-954 4973720.50 3902860.76 + P-955 4972167.50 3903726.00 + P-958 4973230.00 3899128.00 + P-958 4973146.51 3898920.50 + P-961 4979845.99 3901788.99 + P-961 4979835.00 3901756.01 + P-961 4979857.01 3901727.73 + P-962 4975013.51 3898544.00 + P-962 4975019.50 3898506.25 + P-962 4975004.01 3898451.75 + P-964 4973427.50 3902800.00 + P-964 4973376.00 3902837.51 + P-964 4973242.99 3902935.26 + P-964 4973169.49 3902989.01 + P-964 4972892.50 3903192.00 + P-967 4974991.51 3898565.50 + P-968 4972383.01 3898167.75 + P-968 4972412.00 3898070.51 + P-97 4964636.35 3901594.12 + P-97 4964485.85 3901433.58 + P-97 4964495.88 3901273.04 + P-971 4959424.00 3898722.50 + P-971 4959448.51 3898723.76 + P-971 4959472.49 3898725.51 + P-971 4959497.01 3898727.50 + P-971 4959522.50 3898729.74 + P-971 4959548.50 3898732.25 + P-971 4959576.00 3898734.75 + P-971 4959602.49 3898737.26 + P-971 4959628.49 3898739.50 + P-971 4959653.49 3898741.49 + P-971 4959678.01 3898743.75 + P-971 4959703.01 3898745.75 + P-971 4959730.01 3898748.25 + P-971 4959760.51 3898750.75 + P-971 4959790.50 3898753.26 + P-971 4959820.51 3898755.74 + P-971 4959850.02 3898758.49 + P-971 4959878.49 3898761.00 + P-971 4959905.51 3898763.50 + P-971 4959932.51 3898766.49 + P-971 4959959.00 3898769.24 + P-971 4959985.50 3898772.25 + P-971 4960010.51 3898775.00 + P-971 4960033.49 3898777.00 + P-971 4960053.51 3898778.75 + P-971 4960072.99 3898780.26 + P-971 4960092.50 3898782.01 + P-971 4960110.49 3898783.27 + P-971 4960127.50 3898784.49 + P-971 4960143.50 3898785.51 + P-971 4960157.99 3898786.75 + P-971 4960171.00 3898787.75 + P-972 4985146.00 3907273.25 + P-972 4985148.50 3907293.25 + P-972 4985147.50 3907315.74 + P-972 4985143.49 3907339.99 + P-972 4985135.51 3907365.26 + P-972 4985124.01 3907390.99 + P-972 4985109.00 3907416.00 + P-972 4985092.00 3907439.00 + P-972 4985073.00 3907459.50 + P-972 4985052.50 3907476.99 + P-972 4985030.49 3907491.00 + P-972 4985007.00 3907502.52 + P-972 4984982.00 3907511.50 + P-972 4984957.50 3907519.00 + P-972 4984936.00 3907525.25 + P-972 4984916.50 3907530.74 + P-972 4984900.50 3907535.24 + P-972 4984888.50 3907538.50 + P-973 4985648.50 3907640.99 + P-973 4985687.51 3907631.75 + P-973 4985728.00 3907621.75 + P-973 4985769.01 3907611.25 + P-973 4985811.99 3907600.50 + P-973 4985855.50 3907588.50 + P-973 4985900.00 3907577.51 + P-973 4985945.51 3907566.23 + P-973 4985990.50 3907554.75 + P-973 4986035.50 3907543.51 + P-973 4986079.50 3907532.50 + P-973 4986121.50 3907521.50 + P-973 4986161.53 3907510.00 + P-973 4986200.85 3907497.24 + P-974 4984847.50 3907381.50 + P-974 4984844.50 3907405.25 + P-974 4984842.98 3907430.75 + P-974 4984844.00 3907458.00 + P-974 4984848.50 3907485.75 + P-974 4984854.99 3907513.50 + P-974 4984861.83 3907541.17 + P-974 4984862.58 3907544.42 + P-975 4984765.51 3907860.49 + P-975 4984810.00 3907849.74 + P-975 4984853.00 3907839.26 + P-975 4984895.02 3907828.75 + P-975 4984930.99 3907819.51 + P-976 4951374.99 3893383.26 + P-98 4973034.52 3904072.43 + P-98 4973195.05 3903952.03 + P-98 4973506.10 3903761.39 + P-98 4973686.70 3903630.95 + P-98 4973797.07 3903600.85 + P-98 4973927.51 3903651.02 + P-980 4950406.00 3894308.74 + P-980 4950328.00 3894322.24 + P-980 4950308.50 3894331.99 + P-980 4950197.50 3894963.25 + P-981 4951171.20 3894864.55 + P-981 4951100.96 3895085.29 + P-981 4950799.96 3895296.00 + P-981 4950679.55 3895326.10 + P-981 4950418.68 3895095.33 + P-981 4950428.71 3894904.69 + P-981 4950609.32 3894834.45 + P-984 4955366.84 3901132.08 + P-984 4955532.33 3901213.56 + P-985 4960138.00 3899564.50 + P-985 4959991.00 3900354.51 + P-985 4960064.50 3900370.00 + P-985 4960160.03 3900407.24 + P-985 4960519.00 3900547.50 + P-985 4960549.50 3900585.00 + P-985 4960554.50 3900910.74 + P-985 4960513.01 3901089.50 + P-985 4960467.00 3901293.75 + P-985 4960443.99 3901401.50 + P-985 4960349.50 3901843.25 + P-985 4960321.99 3901969.26 + P-985 4960271.50 3902103.49 + P-986 4959373.00 3898719.27 + P-986 4959346.51 3898717.24 + P-986 4959319.51 3898715.25 + P-986 4959292.00 3898713.25 + P-986 4959264.01 3898710.99 + P-986 4959236.50 3898709.00 + P-986 4959209.50 3898707.25 + P-986 4959187.50 3898705.51 + P-986 4959170.01 3898703.75 + P-987 4960247.50 3898813.50 + P-987 4960246.01 3898821.73 + P-991 4963195.71 3895629.91 + P-991 4963119.55 3895767.00 + P-991 4963058.63 3895919.32 + P-992 4962647.36 3894472.26 + P-992 4962738.75 3894807.37 + P-992 4962997.70 3894944.46 + P-992 4963271.88 3895081.55 + P-992 4963363.27 3895203.41 + P-992 4963241.41 3895401.43 + P-994 4965128.00 3901624.22 + P-996 4964616.29 3901152.64 + P-996 4964726.66 3901182.74 + P-996 4964786.86 3901122.54 + P-996 4964826.99 3900951.97 + P-998 4964094.54 3900463.33 + P-998 4964385.51 3900302.79 + P-998 4964485.85 3900142.25 + P-998 4964566.12 3899991.75 + P-998 4964736.69 3900031.88 + +[LABELS] +;X-Coord Y-Coord Label & Anchor Node + +[BACKDROP] + DIMENSIONS 4939914.03 3887306.80 4995771.21 3918639.20 + UNITS None + FILE + OFFSET 0.00 0.00 + +[END] diff --git a/requirements.txt b/requirements.txt index 8ffd8b319..da4347a42 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,6 +12,7 @@ folium utm openpyxl geopandas<1.0 +fiona<1.10 rtree # Documentation diff --git a/wntr/gis/geospatial.py b/wntr/gis/geospatial.py index 28f01c994..9ac3afb9a 100644 --- a/wntr/gis/geospatial.py +++ b/wntr/gis/geospatial.py @@ -110,6 +110,7 @@ def snap(A, B, tolerance): B.index.name = None # snap to points + snapped_points = None if B['geometry'].geom_type.isin(['Point']).all(): snapped_points = closest.rename(columns={"indexB":"node"}) snapped_points = snapped_points[["node", "snap_distance", "geometry"]] @@ -282,6 +283,98 @@ def intersect(A, B, B_value=None, include_background=False, background_value=0): return stats +def connect_lines(lines, threshold): + """ + Connect lines by identifying start and end nodes that are within a + threshold distance + + Parameters + ---------- + lines : gpd.GeoDataFrame + GeoDataFrame with LineString geometry + tolerance : float + Maximum distance between line endpoints, used to define connecting + Point geometry + + Returns + ------- + Tuple[line GeoDataFrame, node GeoDataFrame] + * line GeoDataFrame contains LineString geometry, start_node_name, and + end_node_name, along with original columns in lines + * node GeoDataFrame contains connecting Point geometry and node names + """ + if not has_shapely or not has_geopandas: + raise ModuleNotFoundError('shapley and geopandas are required') + + lines = lines.copy() + + # Create start and end node name and Point geometry for each line + nodes = [] + geometry = [] + lines['start_node_name'] = None #create new columns + lines['end_node_name'] = None + j = 0 + for i, line in lines.iterrows(): # loop through every line + try: + geom = line.geometry.geoms[0] + except: + geom = line.geometry + + geometry.append(Point([geom.coords[0][0], geom.coords[0][1]])) + nodes.append({'Line': i, 'Node': j}) #node list holds the line ID + #unique number for each start node and end node for each line + lines.loc[i,'start_node_name'] = j + j = j+1 + + geometry.append(Point([geom.coords[-1][0], geom.coords[-1][1]])) + nodes.append({'Line': i, 'Node': j}) + lines.loc[i,'end_node_name'] = j + j = j+1 + + nodes = gpd.GeoDataFrame(nodes, geometry=geometry) + nodes.set_crs(lines.crs, inplace=True) + + # Group nodes into "supernodes" + # supernode is composed of all nodes within certain radius + nodes_buffer = nodes.copy() + nodes_buffer.geometry = nodes_buffer.buffer(threshold) #how big is the buffer, to connect lines + intersect_nodes = intersect(nodes, nodes_buffer) + intersect_nodes.sort_values(by=['n'], ascending=False, inplace=True) # sort high to low + + intersect_nodes['visited'] = False #new column + nodes['supernode'] = None + # Walk through each node, and assign supernodes + # If node has already been visited, don't need to assign to supernode again + # The solution is dependent on node order + for i in intersect_nodes.index: + if intersect_nodes.loc[i,'visited'] == True: + continue + for j in intersect_nodes.loc[i,'intersections']: # list of intersecting vertices + if intersect_nodes.loc[j,'visited'] == True: # maybe see which point is closer, the current one of the new one + continue + nodes.loc[j, 'supernode'] = i + intersect_nodes.loc[j,'visited'] = True + + assert intersect_nodes['visited'].all() + + # Update lines GeoDataFrame with start and end supernode names + map_node_to_supernode = nodes['supernode'] + lines['start_node_name'] = map_node_to_supernode[lines['start_node_name']].values + lines['end_node_name'] = map_node_to_supernode[lines['end_node_name']].values + + # Update nodes GeoDataFrame to only include unique supernodes + unique_supernodes = nodes['supernode'].unique() + nodes = nodes[['Node', 'geometry']] + nodes.set_index('Node', inplace=True) + nodes = nodes.loc[unique_supernodes,:] + nodes.index.name = None + nodes.crs = lines.crs + + nodes.index = nodes.index.astype(str) + lines['start_node_name'] = lines['start_node_name'].astype(str) + lines['end_node_name'] = lines['end_node_name'].astype(str) + + return lines, nodes def reconnect_network(pipes, tolerance: float): """Connect a network where pipes are all disconnected from each other. @@ -322,7 +415,7 @@ def reconnect_network(pipes, tolerance: float): data=new_pipe_geom, columns=["start_node_name", "end_node_name", "geometry"] ) endpoints = gpd.GeoDataFrame(index=[tmp_sn_id, tmp_en_id], geometry=[first, last]) - snapped = snap(endpoints, finished, tolerance=10) + snapped = snap(endpoints, finished, tolerance=tolerance) if tmp_sn_id in snapped.index: tmp_sn_id = snapped.loc[tmp_sn_id].node else: @@ -340,6 +433,9 @@ def reconnect_network(pipes, tolerance: float): pipes.geometry = finished.geometry pipes['new_start_node'] = finished.start_node_name pipes['new_end_node'] = finished.end_node_name + + junctions = gpd.GeoSeries(junctions) + return pipes, junctions def estimate_elevations(junctions: dict, elevations): diff --git a/wntr/network/model.py b/wntr/network/model.py index 26aaeffc1..dad8c7b5c 100644 --- a/wntr/network/model.py +++ b/wntr/network/model.py @@ -625,9 +625,16 @@ def add_control(self, name, control_object): ---------- name : string control object name. - control_object : Control or Rule - Control or Rule object. + control_object : Control/Rule object or string + Control object, Rule object, or string with the control. The string + must be written in EPANET INP file format and SI units + (i.e., "LINK Pump-1 OPEN IF NODE Tank-1 BELOW 10") """ + if isinstance(control_object, str): + line = control_object + flow_units = wntr.epanet.util.FlowUnits['SI'] + control_object = wntr.epanet.io._read_control_line(line, self, flow_units, name) + if name in self._controls: raise ValueError( "The name provided for the control is already used. Please either remove the control with that name first or use a different name for this control."